Viewing profile — sebilasse
sebilasse
HN member- Joined
- Mon, Nov 29, 2010, 11:14 AM UTC
- HN karma
- 142
- Public activity
- 77 items
- HN profile
- View on Hacker News ↗
About sebilasse
No profile information was provided.
Recent public activity
-
comment
Comment #27033181
Bluecode | Remote | Full-time | Head of Engineering, Elixir Dev Bluecode ( https://bluecode.com ) is building a European payment scheme, mobile-first, fully anonymous. Home markets…
-
comment
Comment #8515651
Google Cache: https://webcache.googleusercontent.com/search?q=cache:-6M0xy...
-
comment
Comment #8086533
i felt even older when I realized I've been coding Javascript for almost 20 years.
-
comment
Comment #7276075
Happy to answer any questions. The idea originated from a client project where we replaced a legacy rails app with a 20mbyte Excel report that was updated with a script every x hou…
- story
-
comment
Comment #6844697
Are thieves an issue here? The parts might valuable in these low-income countries. When drones land to drop down goods, they are quite "vulnerable" for a thieve to catch them. Gett…
-
comment
Comment #6710862
I asked a bunch of Thais why they switched to Line 1-2 years ago. Number one reason: cute stickers. Sending stickers, is quicker and more fun.
-
comment
Comment #6499798
2'500 CHF is about the budget for a student life-style in Zurich. I expect a lot of young Swiss going on long holidays to cheaper places like south-east asia or eastern europe.
-
comment
Comment #6476161
SEEKING WORK - Remote / onsite negotiable Fullstack: Ruby, Rails, AngularJS, JavaScript, Haml&Sass, RubyMotion, Ansible, TorqueBox/JRuby and Java Community: Commits to Rails, Haml,…
-
comment
Comment #6338894
It's super popular all over south-east asia. One of the reasons are the cute and fun "stickers" that can convey 80% of your daily emotions and situations. Stuck in overcrowded subw…
-
comment
Comment #6313449
SEEKING WORK - Remote, onsite negotiable Full stack: Ruby, Rails, JavaScript, RubyMotion, Torquebox - Web developer since 15 years, startups since 2007, as founder and employee - E…
-
comment
Comment #6248353
For Switzerland hosted V or dedicated server: http://nine.ch/
-
comment
Comment #5971437
SEEKING WORK - Remote/Asia-Pacific and Europe Ruby, Rails, RubyMotion and JavaScript I created RubyJS, a port of all Ruby methods to JavaScript, that gave me a fairly well understa…
-
comment
Comment #5940446
Generally agree with you (benchmarking isn't what it used to be ;-). However the following examples all do nothing (except increasing i) and get different results. http://jsperf.co…
-
comment
Comment #5939656
'while' is actually faster than 'for'. But in this example the while loop does extra work (mutating the array). while loops are always faster than forEach, as they simply do less w…
-
comment
Comment #5939444
The for loop uses array access "items[j]", and the while loop uses "items.shift". At the end of the for loop 'items' is still the same, at the end of the while loop 'items' is empt…
-
comment
Comment #5939339
He probably just wanted to test the difference between 'while ' and 'do while' and takes the fastest possible solution (for) as a reference. It's however good to know that 'do whil…
-
comment
Comment #5905993
RubyJS has currently some beginner to advanced level things to get done. If you're interested in Ruby, JS this project gives you an excellent understanding of both.
-
comment
Comment #5574753
maybe work at hubba co-working space, couple of coders there. can contact me if you want, contact info: hasclass.com also have sign up at hackerhut.org
-
comment
Comment #5571122
Thailand has a decent developer community. Especially Bangkok and Chiang Mai.
-
comment
Comment #5362901
i have learned the thai alphabet and that "mega-combo character" comment just made my day. Reading thai pretty much feels like reading regexps. Anditdoesntmakeitanyeasierthattheydo…
-
comment
Comment #5132614
i pay 30$ every month for SAAS apps that provide even less value.
-
comment
Comment #5132500
it went from 59$ to 70$
-
comment
Comment #5127474
Pirating iPhone apps in SE Asia is rampant as well, at least in Thailand. Most people don't pay for apps.
-
comment
Comment #5091007
Yes. Primitives are boxed. However method arguments are only boxed when needed, which makes it as fast as normal. In the methods internally are all using JS primitives (there are s…