Archive | Uncategorized RSS feed for this section

@seb_ly’s battle of the browsers. Sweet live-coding canvas demo in 20mins #lwsbrowser

28 Apr

sent from my android

MWC Feedback for HTML5 Best Practices talk

1 Mar

* AJAX design pattern??? ?????? michael mahenoff ??? ??????. ??????????????????. ????????? ????????? ??????????????? ??????????????? #MWC2012 #html5best #fb http://t.co/aGS2pvNO
Wed Feb 29 16:29:44 +0000 2012
(http://twitter.com/manyoungc)
 
* RT @manyoungc: ????????? ??????????????? ???????????? ????????? ?????? ????????? html/css/js ????????? ???????????? ??????. Mediator??? ?????? ????????? ????????? ??????. #html5best #fb http://t.co/1bPkpwtj
Wed Feb 29 16:02:40 +0000 2012
(http://twitter.com/statuses/174887316811288580 http://twitter.com/gonesama)
 
* RT @manyoungc: Html ??? ????????? ?????????. JADE #html5best #MWC2012 #fb http://t.co/JmbCclwr
Wed Feb 29 16:02:30 +0000 2012
(http://twitter.com/statuses/174887276881526800 http://twitter.com/gonesama)
 
* #mwc interesting session about #html5best practices.a lot of resources given to take a look into.
Wed Feb 29 14:38:24 +0000 2012
(http://twitter.com/statuses/174866110422843400 http://twitter.com/aichamorro)
 
* Html ??????????????? ?????? ????????? ?????? msi ????????? ??????????????????. ?????? ?????????^^ ?????? ?????? ????????? ??? ????????? ????????? #html5best #MWC2012 #fb
Wed Feb 29 14:08:36 +0000 2012
(

http://twitter.com/manyoungc)
 
* Very technical presentation of html 5 programming techniques at #MWC12 #html5best @mahemoff soon available at http://t.co/F9lw3SW9
Wed Feb 29 14:05:44 +0000 2012
(http://twitter.com/statuses/174857889368915970 http://twitter.com/mobiosis)
 
* ????????? ??????????????? ???????????? ????????? ?????? ????????? html/css/js ????????? ???????????? ??????. Mediator??? ?????? ????????? ????????? ??????. #html5best #fb http://t.co/1bPkpwtj
Wed Feb 29 13:53:13 +0000 2012
(http://twitter.com/statuses/174854739459186700 http://twitter.com/manyoungc)
 
* Html ??? ????????? ?????????. JADE #html5best #MWC2012 #fb http://t.co/JmbCclwr
Wed Feb 29 13:48:12 +0000 2012
(http://twitter.com/statuses/174853475535032320 http://twitter.com/manyoungc)
 
* ????????????????????? ??????????????? ???????????? ??????????????????. ????????? ????????? ???????????? ?????? ???????????????… ????????? ????????? ???????????? ????????????. #html5best #fb
Wed Feb 29 13:44:48 +0000 2012
(http://twitter.com/statuses/174852623541878800 http://twitter.com/manyoungc)
 
* RT @rakelka: +1 RT @elecash Awesome lecture by @mahemoff about Best Practices Every HTML5 Developer Should Know #html5best #Intel
Wed Feb 29 13:27:17 +0000 2012
(http://twitter.com/statuses/174848216439857150 http://twitter.com/_Alijo)
 
* RT @rakelka: +1 RT @elecash Awesome lecture by @mahemoff about Best Practices Every HTML5 Developer Should Know #html5best #Intel
Wed Feb 29 13:18:32 +0000 2012
(http://twitter.com/statuses/174846011099983870 http://twitter.com/MonikaLischke)
 
* RT @anadalg: CoofeeScript pinta bé, caldrà fer-hi un cop d’ull. #html5best #MWC #mwc12 #MWC12CAT http://t.co/aND1k4K5
Wed Feb 29 11:12:13 +0000 2012
(http://twitter.com/statuses/174814225615699970 http://twitter.com/espaimatic)
 
* CoofeeScript pinta bé, caldrà fer-hi un cop d’ull. #html5best #MWC #mwc12 #MWC12CAT http://t.co/aND1k4K5
Wed Feb 29 11:11:37 +0000 2012
(http://twitter.com/statuses/174814068069249020 http://twitter.com/anadalg)
 
* RT @txapao: Awesome talk the one on #HTML5best practices by #mahehoff at #intel #app up developers today at #MWC2012
Mon Feb 27 15:37:39 +0000 2012
(

http://twitter.com/carolinapress)
 
* Awesome talk the one on #HTML5best practices by #mahehoff at #intel #app up developers today at #MWC2012
Mon Feb 27 15:36:53 +0000 2012
(http://twitter.com/statuses/174156055356510200 http://twitter.com/txapao)
 
* .@mahemoff You’re welcome. Really interesting and productive talk. -Have a great #MWC2012 cc @carolinapress
Tue Feb 28 21:16:29 +0000 2012
(http://twitter.com/statuses/174603905370554370 http://twitter.com/txapao)
 
* listening to @mahemoff in intel html5 best practices!
Wed Feb 29 10:50:04 +0000 2012
(http://twitter.com/statuses/174808649372401660 http://twitter.com/diegui1008)
 
* RT @diegui1008: listening to @mahemoff in intel html5 best practices!
Wed Feb 29 11:10:25 +0000 2012
(http://twitter.com/statuses/174813770365927420 http://twitter.com/murbaheu)
 
* @fillito el tío de HTML5 que ha hablado era muy crack de todas formas! @mahemoff
Wed Feb 29 12:16:26 +0000 2012
(http://twitter.com/statuses/174830384805183500 http://twitter.com/JaviSoto)
 
* huuuuiiii, finally I am seeing html5 guru @mahemoff live on stage #AppUp
Wed Feb 29 13:17:58 +0000 2012
(http://twitter.com/statuses/174845867923214340 http://twitter.com/MonikaLischke)
 
* @mahemoff On stage #MWC12 #AppUp
Wed Feb 29 13:23:08 +0000 2012
(http://twitter.com/statuses/174847170841817100 http://twitter.com/soussis)

remote bash gotcha: aliases

9 Feb

I found the following useful in simulating a login.

Specifically, the -l will cause /etc/profile to be read.

But the real gotcha was, why aren’t those aliases in /etc/profile
being evaluated? The answer was the -i flag; bash by default doesn’t
expand aliases on a non-interactive shell!

Also, set -e is very recommended. Stops the script if something breaks.

ssh user@host ‘bash -i -l -s’ set -e

END

#appsworld feedback

29 Nov
  • Great talks by @mahemoff @theglenpaul #AppUp #appsworldeu enjoyed by #mosync crew??2 hours ago??by@dr_alexj
  • @mahemoff Was at the HTML5 talk at #appsworld Learned loads about HTML5. What was the is.gd link for the input type examples???2 hours ago??by??@IanOh85
  • At #AppsWorld listening to why HTML5 is important from @mahemoff??4 hours ago??by??@Catalysis_Comms
  • Interesting talk by @mahemoff on latest HTML5 technologies at #AppsWorld.??5 hours ago??by??@xenopunk
  • RT @drfonz: Awesome metaphor by @mahemoff: Ajax came from devs discovering the laws of physics of the Web as XmlHttpRequest is a 90's tech #appsworld??5 hours ago??by??@mahemoff
  • @mahemoff great talk, loved the Reddit memes.??5 hours ago??by??@tomhut
  • For real, a pigeon took the stage! RT @Develop4AppUpEU: Auf pigeon just joined @mahemoff talk about HTML5 #AppUp pf #appsworld??5 hours ago??by??@mahemoff
  • Good talk on HTML5 by Michael Mahemoff at #AppsWorld. Will have a play with web workers when I get home.??5 hours ago??by??@tomtheguvnor
  • #appsworld @mahemoff When do u think HTML 5 will catch up to Flash's present capabilities and allow Flash to be buried???5 hours ago??by??@logicbureau
  • HTML5 resources, cheers @mahemoff #appsworld??http://t.co/SuG1g0NP??5 hours ago??by??@zebrapeople
  • HTML5 resources, cheers @mahemoff #appsworld??http://t.co/pEC6fg95??5 hours ago??by??@MarkZebra
  • RT @MarkZebra: The future of HTML5 #webintents #webGL #realtimecommunications @mahemoff #appsworld??http://t.co/2uu9MX3u??5 hours ago??by??@becomeukjobs
  • What a great talk on HTML5 by @mahemoff here at #AppsWorld, I still learned something new! Now dashing over to #online11 for more nectar…??5 hours ago??by??@m_lorek
  • The future of HTML5 #webintents #webGL #realtimecommunications @mahemoff #appsworldhttp://t.co/S3rAN3At??5 hours ago??by??@zebrapeople
  • The future of HTML5 #webintents #webGL #realtimecommunications @mahemoff #appsworldhttp://t.co/2uu9MX3u??5 hours ago??by??@MarkZebra
  • @mahemoff: The future of HTML will allow for cross-domain and intra-browser data sharing. Less secure, less painful. #appsworld??5 hours ago??by??@drfonz
  • JavaScript++ = CoffeeScript and Kaffeine @mahemoff #appsworld??5 hours ago??by??@zebrapeople
  • JavaScript++ = CoffeeScript and Kaffeine @mahemoff #appsworld??5 hours ago??by??@MarkZebra
  • The new JavaScript JS Syntax Remixed @mahemoff #appsworld??http://t.co/Qq9Vnlzu??5 hours ago??by@zebrapeople
  • The new JavaScript JS Syntax Remixed @mahemoff #appsworld??http://t.co/jlmh2qD9??5 hours ago??by@MarkZebra

jsfiddle experiment

19 Nov

http://jsfiddle.net/C6M8h

Somehow most of the random links are 404, probably because creators have been logged in and left them private.

@johanadriaans @mattlucht can’t see the icon, am I missing something here dudes?

8 Oct
Photo

Sent from my iPad

Conversion RAGE at #LsmLondon final demos. #rezycle

18 Sep
Photo

Sent from my iPad

Monit lesson learned: use “as uid”, not sudo

15 Aug

Been setting up monit to auto-restart node if there's a problem.

Not wanting to run Node as root, I tried a sudo in the restart rule, but it failed. Log message:
?? Error: Could not execute sudo

Tried using "as uid" instead and it works. Here's the full working stanza:

?? check host appname with address 127.0.0.1
?? ?? start program = "/usr/local/bin/node /path/to/app.js"
?? ?? ?? as uid??theusername??and gid theusername
?? ?? stop program ??= "/usr/bin/pkill -f 'node /path/to/app.js'"
?? ?? if failed port 3000 protocol HTTP
?? ?? ?? ?? request /
?? ?? ?? ?? with timeout 10 seconds
?? ?? ?? ?? then restart

Ribbit (BT’s phone API) is closing down and directing people to Twilio with a discount offer

10 Aug

The Ribbit Developer Program is Closing

—-

Tuesday August 9th, 2011

??

Dear Ribbit Developers,

Thank you for your participation in the Ribbit Developer program over the past few years. ??We recently changed our business objectives to focus our efforts on voice technology for our parent company, BT Group, and have decided to discontinue support and external access to our voice platform, SDKs and APIs.

To give you time to make transition plans, Ribbit will be closing the Developer and Account Portals, disabling all Ribbit API Keys, and removing all Voicemail Boxes, Transcriptions and Sub Users, 60 days from the date of this notice (Tuesday August 9th, 2011). ??Please prepare accordingly and remove any dependencies on the Ribbit platform from your applications prior to the effective shut down date.

One alternative that might be of interest to you is??Twilio, a programmable voice platform with comparable features and pricing. ??We're pleased to confirm that the team at Twilio have agreed to offer you $100 of FREE credit??and in addition, a $100 discount to their upcoming Twilio Conference to get you started. ??Use coupon code??RIBBITDEVELOPER??to redeem these offers when you sign up for a Twilio account, or register for the conference. ??If you have any questions please contact Twilio at ribbit@twilio.com

Sign up for Twilio

IMPORTANT NOTES:

– All of your saved messages, transcriptions, and any contacts will be permanently deleted.

– All accounts, application API keys, and devices will be permanently disconnected and deleted.

– This notice only refers to Ribbit Developers and does NOT impact??Ribbit Mobile or Ribbit for Salesforce users.

– Twilio free credit offer expires on January 1, 2012.

Please contact us at support@ribbit.com??with any questions.

Sincerely,

??

The Ribbit Platform Product Team

Imran Ghory on ads at leancamp

24 Jul

He’s shard a lot of tips for non conventional tips

Facebook can be cheap esp if your ads are popular and with demographic data supports ab testing. Requires a lot of experiments though.

Linkedin can be great for b2b ads because of the targeting. I you’re a member of a group can reach people directly but don’t abuse it.

Plentyoffish IRS even more detailed demog targeting than fb, which is great for niches.

Stumbleupon you can get a site feaured easily but users tend to be checking the site out and not hang around.

Fb – image is much more important, people hardly look at the title. Amateur photos convert better than professional/stock photos.

Don’t just do first-touch conversions on fb…often people will visit more than once before buying, so need to check it. Upcast-great case studies on fb.

Sent from my iPad