Skip to content

Instantly share code, notes, and snippets.

View sysatom's full-sized avatar
🎯
Focusing

Robin sysatom

🎯
Focusing
View GitHub Profile
@sysatom
sysatom / sp_keys.txt
Last active May 11, 2024 16:53
StrokesPlus : Full SendKeys listing
@ = WINKEY
+ = SHIFT
^ = CTRL
% = ALT
{ADD} = VK_ADD
{APPS} = VK_APPS
{AT} = @
{BACKSPACE} = VK_BACK
{BKSP} = VK_BACK
@sysatom
sysatom / ch1.lisp
Last active August 29, 2015 14:05
ACL ch1
;2.
(cons 'a '(b c))
(cons 'a (cons 'b (cons 'c nil)))
(cons 'a (cons 'b '(c)))
;3.
(defun fourth_number (x)
(car (cdr (cdr (cdr x)))))
;4.
@sysatom
sysatom / namespace.js
Created July 31, 2014 10:02
Javascript namespace
var YourGlobal = {
namespace: function(ns) {
var parts = ns.split("."),
object = this,
i, len;
for(i = 0, len=parts.length; i < len; i++) {
if(!object[parts[i]]){
object[parts[i]] = {};
}