|
|
|
|
|
by jcinau
493 days ago
|
|
Location: Sydney, NSW, Australia
Remote: Local time only
Willing to relocate: Yes
Technologies: Common Lisp, Clojure, etc.
Résumé/CV: Upon request
Email:
(loop with hex-str = "6731332e64744070726f746f6e2e6d65"
for i from 0 below (length hex-str) by 2
collect (code-char (parse-integer hex-str :start i :end (+ i 2) :radix 16))
into ch-list
finally (return (format nil "~{~A~}" ch-list)))
or
(->> "6731332e64744070726f746f6e2e6d65"
(partition 2)
(map (comp char #(Integer/parseInt % 16) #(apply str %)))
(apply str))
Visa sponsorship required(For US, E3 visa) |
|