Sunday, March 31, 2013
Saturday, March 30, 2013
http://ruby.awsblog.com/
http://ruby.awsblog.com/
Amazon's Platform-as-a-service (Paas) - AWS Elastic BeanStalk - started supporting Ruby since 2012 Nov.
Above is the Ruby related blog link
Amazon's Platform-as-a-service (Paas) - AWS Elastic BeanStalk - started supporting Ruby since 2012 Nov.
Above is the Ruby related blog link
RubyMine (Rails) tutorial
Tutorial shows the "(work)flow" i.e. steps that need to happen, when we need to do something in Rails
Friday, March 29, 2013
Thursday, March 28, 2013
Friday, March 22, 2013
SignalR & Shopping Cart
Seems like a good tutorial to do as an example -
http://tech.pro/tutorial/1146/building-a-shopping-cart-with-signalr-aspnet-web-api-and-knockoutjs
http://tech.pro/tutorial/1146/building-a-shopping-cart-with-signalr-aspnet-web-api-and-knockoutjs
Dino Esposito on "conventions"
Dino Esposito on "conventions"
"Conventions when not well explained, understood, and known, are quite dangerous. They do not favor readable code and even may create more issues than they would solve in development scenarios where awareness of conventions is not high. Too many, and too deep conventions, look undistinguishable from magic. Personally, I find acceptable the level of conventions you find in ASP.NET MVC; much less the extreme level of conventions you find in Web API."This is from his article comparing Web API vs ASP.Net MVC Controllers vs WCF - https://www.simple-talk.com/dotnet/.net-framework/building-a-public-http-api-for-data/
Thursday, March 21, 2013
Tuesday, March 19, 2013
Monday, March 18, 2013
Saturday, March 16, 2013
Javascript code - Bookmarklet that loads jQuery and then executes some jQuery commands
RunSomejQueryCommands() - Put whatever jQuery statements that need to be run after jQuery finishes loading
Note: the code loads jQuery into the page only if it is Not already there
Below example - in google.com page, clicking on the bookmarklet will load jQuery and put the text "jQuery loaded...Inserted via jQuery" into the Search box
Note: the code loads jQuery into the page only if it is Not already there
Below example - in google.com page, clicking on the bookmarklet will load jQuery and put the text "jQuery loaded...Inserted via jQuery" into the Search box
javascript:if (typeof jQuery == 'undefined') { var s=document.createElement('script');s.setAttribute('src', '//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js');document.getElementsByTagName('body')[0].appendChild(s);} var WaitTilljQueryLoads = function() { if (typeof jQuery != 'undefined') { clearInterval(timer);RunSomejQueryCommands(); }}; var timer = setInterval(WaitTilljQueryLoads);void(s);var RunSomejQueryCommands = function() {$('[name=q]').val('jQuery loaded...Inserted via jQuery');};
Wednesday, March 13, 2013
Saturday, March 9, 2013
Zen Coding (Plugins)
Plugins are available for Visual Studio, Notepad++ etc..
To use with Sublime Text - https://github.com/sergeche/emmet-sublime
(Github link has instructions on how to install and use it)
From http://en.wikipedia.org/wiki/Zen_Coding:
EDIT (Mar 31 2013) -
Zen Coding is now Emmet - emmet.io
Documentation links -
http://docs.emmet.io/
Abbreviations Syntax - http://docs.emmet.io/abbreviations/syntax/
Actions - http://docs.emmet.io/actions/
Cheat Sheet - http://docs.emmet.io/cheat-sheet/
To use with Sublime Text - https://github.com/sergeche/emmet-sublime
(Github link has instructions on how to install and use it)
From http://en.wikipedia.org/wiki/Zen_Coding:
Intro by author - http://coding.smashingmagazine.com/2009/11/21/zen-coding-a-new-way-to-write-html-code/Zen Coding uses a specific syntax in order to expand small snippets of code, similar to CSS selectors, into full-fledged HTML code.[2] For example, the sequencediv#page>div.logo+ul#navigation>li*5>a
expands into<div id="page"> <div class="logo"></div> <ul id="navigation"> <li><a href=""></a></li> <li><a href=""></a></li> <li><a href=""></a></li> <li><a href=""></a></li> <li><a href=""></a></li> </ul> </div>
EDIT (Mar 31 2013) -
Zen Coding is now Emmet - emmet.io
Documentation links -
http://docs.emmet.io/
Abbreviations Syntax - http://docs.emmet.io/abbreviations/syntax/
Actions - http://docs.emmet.io/actions/
Cheat Sheet - http://docs.emmet.io/cheat-sheet/
Friday, March 8, 2013
Thursday, March 7, 2013
UI Mockup Tools
balsamiq.com - http://builds.balsamiq.com/b/mockups-web-demo/
lucidchart.com
moqups.com
To convert balsamiq wireframes to Bootstrap html - http://www.wire2app.com/product/wireframe-design-best-practices.aspx
lucidchart.com
moqups.com
To convert balsamiq wireframes to Bootstrap html - http://www.wire2app.com/product/wireframe-design-best-practices.aspx
Subscribe to:
Posts (Atom)
Followers
Blog Archive
-
▼
2013
(180)
-
▼
March
(20)
- Online IDEs (for HTML, CSS, Javascript)
- Kanban process for Project Management
- http://ruby.awsblog.com/
- RubyMine (Rails) tutorial
- Next generation Code Editors
- ifttt
- Stanford University - iPad and iPhone Application ...
- SignalR & Shopping Cart
- Markdown - tool for webwriters
- Dino Esposito on "conventions"
- Web Essentials 2012 - VS.Net Plugin
- Rails on Heroku
- Git book
- Javascript code - Bookmarklet that loads jQuery an...
- html5shim for IE6-8
- Bootstrap Tools
- Zen Coding (Plugins)
- Speed Test (with Singapore servers)
- Objective C, iOS
- UI Mockup Tools
-
▼
March
(20)