WATCH THIS IF YOU WANT TO BECOME A WEB DEVELOPER! - Web Development Career advice
Aqua Utopia|海の底で記憶を紡ぐ
h
YOU ARE THE REASON

izzy's playlists!

No title available
let's talk about Bridgerton tea, my ask is open

Discoholic 🪩
he wasn't even looking at me and he found me
we're not kids anymore.
Game of Thrones Daily
Stranger Things

PR's Tumblrdome
almost home

Kiana Khansmith
Sweet Seals For You, Always
$LAYYYTER
Monterey Bay Aquarium

⁂
hello vonnie
I'd rather be in outer space 🛸

seen from Malaysia

seen from United States
seen from United States

seen from Kuwait

seen from Italy

seen from United States

seen from United States
seen from Chile
seen from Saudi Arabia

seen from Singapore
seen from United States

seen from United States
seen from United States

seen from United States
seen from United States
seen from United States
seen from United States
seen from United States
seen from United States
seen from Türkiye
@learn2code
WATCH THIS IF YOU WANT TO BECOME A WEB DEVELOPER! - Web Development Career advice
How to send server email with Node.js - sendgrid, mandrill, mailgun, etc.
PHP drag and drop file upload using DropzoneJS - Learn how to implement drag and drop file upload within 5 minutes using Dropzone and PHP.
Promises
Over the weekend, a question came in about Promises. I haven’t worked much with Promises, nor have I done the NodeSchool module, so this will be a learning experience.
So first off, what is a Promise? A Promise is a way to make async calls neater and cleaner. Instead of having to nest functions inside of functions, you just make a series of .then() calls. This tells the code “once this one finishes, then do this other thing” and you can keep piling on “and then” as much as you want.
So let’s take a look at Promise.
Keep reading
Codeigniter tutorial for beginners from scratch – Learn Codeigniter (PHP framework) with step by step tutorial. Codeigniter framework basic setup guide.
Responsive HTML Email with Node.js - Send Rich, Responsive HTML Emails Using Ink, Yeoman & Express
What is Node.js Exactly? - a beginners introduction to Nodejs
Tired of working your dead-end job, tired of answering to someone else, tired of the 9-5 right? 9 steps for how to create an app to generate passive income!
Craig recommends several packages and themes that transform GitHub's Atom from a being good editor into a truly great editor.
GitHub’s Atom is rapidly maturing into one of the best code editors available. While it lost to Sublime Text in last year’s SitePoint Smackdown, many issues no longer exist:
version 1.0 has been released
it’s easy to install on Windows, Mac and Linux
speed has significantly improved, and
it’s still free but betters many commercial offerings.
The number of add-ons has increased exponentially, with more than 750 themes and 2,400 packages at the time of writing. The reason: Atom can be extended using web technologies. If you’re working on Node.js or front-end projects, Atom is a great choice.
Package installation is simple. You can either:
open the + Install panel in the Settings tab then search for a package by name, or
install from the command line using apm install <package-name>.
Here are ten essential add-ons, plus a few bonus ones, to make Atom even better …
This quick Node.js tutorial will teach you how to implement the Node.js async package in a sample mass mailer app. The...
Node.js is asynchronous in nature and runs on single threaded event loop. But how that work ? Well let’s say you have fired a database query and you are waiting for query to execute and then proceed further, but in a same scenario, what will happen to the piece of code which is not dependent on that database query? They won’t execute and wait for their turn.
Asynchronous is exactly opposite of this. While you are doing database query Node.js will continue executing code and when database query will be done, it will come back to process it.
Download the Mass Mailer from Github
This is one of the great feature to improve performance of the application but as a developer you got little more pain to handle particular scenarios ( like sending E-mail Mass mailer ) or your code will turn-up into callback hell.
Our demo application :
To demonstrate how to use the Async package, I am going to show you how to build a mass mailer program which can run as background job and pick up emails from a database, invokeemail sending operation parallel. Once it’s done, it gives you a complete result.
Develop complete REST service app using pure Node.js (GET, POST, PUT and DELETE)
Sails.js is a node.js framework that allows you to build enterprise-ready, custom MVC ( model, view, controller )...
Introduction
Sails.js is node.js framework that allows you to build enterprise-ready, custom MVC ( model, view, controller ) application on-the-go. Sails.js has built-in features such as an API creator, and its socket integration in every route and database ORM makes it very useful and helps speed up development.
Sails.js features
Sails.js has lots of features which will help you to build custom, enterprise-ready applications. Some of them are as follows:
Auto generated API
Database ORM
Inbuilt task runner
Security code
Built-in web sockets in routes.
Unlike MEAN stack, where you need to create API's manually and do same repetitive thing again and again, Sails.js allows you to automatically create skeleton APIs. Just a single command, and you will have block of code generated to get you started.
Additionally, Sails.js provides database drivers for every major database systems such as MySQL, MongoDB, PostgreSQL. Sails.js uses Grunt task runner as the default task runner, and also provides an effective way to manage custom grunt tasks.
Furthermore, common security parameters such as CORS and CSRF are already included in Sails.js project. All you need to do is to enable them from respective files and your application is secured with the latest security standards.
Sails.js uses Express to handle HTTP operations and Socket.io to handle web socket messages. It provides web socket messages to your routes without configuring it in back-end or front-end layer.
We will learn about all of these features in a practical way in the coming section, where we'll generate an API and configure our database with models.
Learn Angularjs step by step ( Training video)
The reasons why AngularJS implementation is best choice over jQuery. Both frameworks are used to create front-end development but AngularJS development is superior to jQuery.
Building a HTML5 Mobile App Using AngularJS
At GitHub, we’re building the text editor we’ve always wanted: hackable to the core, but approachable on the first day without ever touching a config file. We can’t wait to see what you build with it.
Node.js Development Workflow in WebStorm