January 2011
10 posts
2 tags
Confused on startup advice ..? →
Just stick to the basic principle: build something people want.
1 tag
A brief explanation of what lisp macros are
A lisp program looks something like this:
(a b c d)
(m o (p k))
(a b c (d e f g (h i j k) l m)
n
(o p q (r s t (u v) (w x y))
z))
The only form of syntax in lisp is the (a b c ..) form.
The if statement looks like this:
(if a b)
A function call also looks like this:
(foo a b)
A function definition looks sorta like this:
(def foo (a b) body)
Contrast...
http://thinkery.me/ →
List of langauges that compile to javascript →
SibilantJS: Javascript in lisp syntax →
منصة نشر محترمة
منصة النشر المحترمة يجب ان يتوفر فيها على الاقل:
دعم كامل للغة العربية بكل معنى الكلمة، من اكتشاف تلقائي لاتجاه الكلام، و ادخال كلمات اجنبية داخل النص العربي (و العكس)، و محرر يدعم هذه الاشياء (كما تحدثت في السابق).
لغة ترميز خفيفة مثل markdown او reStructured text، و ما اعنيه بكونها “خفيفة” اي ان اغلب الكلام سيكون شكله عادي بدون اي علامات ترميز، و ان وجدت علامات الترميز فهي بأقل...
2 tags
الخط العربي في الانترنت
ملاحظة صغيرة احببت ان ابديها، الخطوط العربية في الانترنت (خط النسخ المبني على اريل Ariel من وندوز) لا يمكن قرائتها بحجم صغير، بعكس الخطوط الانكليزية.
الخط الوحيد الذي يمكن قرائته بحجم صغير هو خط تاهوما Tahoma،
اما خط النسخ فيجب ان يكون على الاقل بحجم 12 بكسل، و يمكن ايضا في هذه الحال جعله ثخينا bold لكي يصبح افضل.
لهذا يرجى ان ينتبه اصحاب المنتديات و المدونات لهذا الأمر و ان يجعلوا الحجم...
3 tags
html5 music notes (firefox4) →
Note to self:
For note number n:
frequency = 440 * 2^(n/12)
where n is the distance from “A” on the forth octave
3 tags
Html engine for arc
I was looking at the coffekup html engine, and as I was trying to use it, I realized something: it’s not really extensible. The same thing is true for Haml, and probably some other html DSLs out there.
While it’s interesting that:
.book
.title = "Something"
compiles into:
<div class="book"><div class="title">Something</div></div>
It’s not...
Awesomeness everywhere
I’m getting kinda overwhelmed. When did all this happen?.
http://expressjs.com/
URL routing (and more) for Node.js
http://lesscss.org/
Better css
https://github.com/mauricemach/coffeekup
Great looking template engine that’s actually a DSL on top of coffee
https://github.com/mauricemach/zappa
Zappa: Razor-sharp DSL for modern web apps
This one (zappa) is possibly the...