Skip to main content

Posts

Learn Meteor and Build a real-time polling app Install Meteor download for windows: https://install.meteor.com/windows install for osx/linux: curl https://install.meteor.com/ | sh open cmd and type meteor --version Meteor comes with a few demo applications that you can try out. If you want to check out a few demo apps now, you can go into your command line and grab the demo application using: // todo sample app meteor create --example todos // example mobile application meteor create --example localmarket Once you create a demo app, just cd into that project and run the application with: meteor This will grab the necessary packages, bundle all the css and js, start your application using a Node server, and make it viewable in your browser. http://localhost:3000 Here is the sample Todos application which is quite good looking: meteor-demo-todos Definitely click around the files in these demo applications and you’ll see how Meteor apps tick. Let’s move onto creating our own a...
NodeJs Installation Guide
Develop desktop app using Node-webkit Node.js is built on Chrome V8 JavaScript engine. V8 is one of the fastest JavaScript engine which runs inside of your chrome browser. Node Organisation You can install node-webkit in Linux,Windows and MacOS. Here is direct link to download node-webkit package for your system. You don’t need to install it, just place it somewhere and proceed with tutorial. Windows : Download Node-webkit for Windows (32 bit) (64 bit). Linux : Download Node-webkit for Linux (32 bit) (64 bit). Mac : Download Node-webkit for MacOS (32 bit) Hello Node-webkit Program ! To get you started let’s build sample program which prints “Hello World !” on screen using node-webkit. Hope you have downloaded and extracted the node-webkit files. Package.json { "name" : "nw-demo", "main" : "index.html", "window" : { "toolbar" : true } } You don’t need to install any dependency here. Just save the file and cre...
# How to include favicon img in title bar locally....?? I am making a HTML page that is unpublished . One of the things I wanted to do was add a favicon to appear next to the title. I'm using google chrome and I noticed that other websites have favicons that appear next to the tile in the browser, but the one I'm trying to display won't show up.The site in in a folder on my desktop named site. This is the code: link rel="shortcut icon" href="/favicon.ico" Use Following Instruction:- Since you have a leading / in your href, you are referencing a file that will be in the root-folder. In case you have your page in a folder on your computer, not serving it from a local webserver, the leading / will tell the browser to look in the root folder of your filesystem. So the browser expect the file to be at C:/favicon.ico or similar, which is probably not what you've expected. If you have the favicon.ico in the same folder as the web...

FrontEnd and BackEnd Developement List of Languages.....Enjoy Coading

If you want lists, for back-end languages (in order of my ability to recall): Java (and other JVM languages like Scala, Groovy, Clojure) Nodejs(javascript On Server My Hot Fav) New World Of Backend PHP .NET (C#, VB) Ruby Python Perl Actionscript (Flash Media Server) CoffeeScript C (CGI) Erlang oh, and SQL for db queries For browser-based front-end languages, you're somewhat limited in what the browser can support (excluding launching out-of-browser applications). We could talk about: HTML Javascript(angularjs,jquery,ajax) CSS Actionscript CoffeeScript (compiled to Javascript) XML-based languages (X3D, SMIL, SVG, DITA, some interpreted by the browser, others transformed using XSL) VBScript Silverlight Java (applets) For native PC desktop front-ends, most popular front-end languages would probably be (I'm guessing, in no order): Visual Basic 6 (from my experience with big enterprises, I bet a lot of those are still out there, just like Windows Vista) .NET Java (Swing...
If you want lists, for back-end languages (in order of my ability to recall): If you want lists, for back-end languages (in order of my ability to recall): Java (and other JVM languages like Scala, Groovy, Clojure) PHP .NET (C#, VB) Ruby Python Perl Javascript (Node JS) Actionscript (Flash Media Server) CoffeeScript C (CGI) Erlang oh, and SQL for db queries For browser-based front-end languages, you're somewhat limited in what the browser can support (excluding launching out-of-browser applications). We could talk about: HTML Javascript CSS Actionscript CoffeeScript (compiled to Javascript) XML-based languages (X3D, SMIL, SVG, DITA, some interpreted by the browser, others transformed using XSL) VBScript Silverlight Java (applets) For native PC desktop front-ends, most popular front-end languages would probably be (I'm guessing, in no order): Visual Basic 6 (from my experience with big enterprises, I bet a lot of those are still out there, just like Windows Vista) .NET Jav...

Learn Nodejs

My favorite resource is "nodeschool.io!" "Install these choose-your-own-adventure style lessons and learn how to use node.js, npm and other related tools by writing code to solve realistic problems. The lessons run in your terminal and work on Windows, Mac and Linux."   Tutorials Hello World Hello World Web Server Node.js guide Build a blog with Node.js, express and mongodb Node.Js Tutorials At Project 70 Node.js for Beginners Learn Node.js Completely and with Confidence Videos Node tuts Introduction to Node.js with Ryan Dahl Node.js: Asynchronous Purity Leads to Faster Development Parallel Programming with Node.js Server-side JavaScript with Node, Connect & Express Node.js First Look Node.js with MongoDB Ryan Dahl's Google Tech Talk Screencasts Learn All The Nodes NodeTuts NodeCasts Books " The Node Beginner Book Mastering Node.js Up and Running with Node.js Node.js in Action Smashing Node.js: JavaScript Ev...