hello.js

var please = require('share');
console.log('thank you');

NEW !!!

Thursday, 4 August, 2016 UTC

Write Simple Nodejs Auto Installation script (Day 0 Idea)

I have an idea about write small script to install and management Node JS version. Require: - Smallest dependencies - Stable - Automatic So function feature focust to : - Check curent node version. - Switch node version(manage node version). - Auto install ... more


Tuesday, 26 July, 2016 UTC

Get the all URL link in a website use Java scip

Get all a href link in website in javascript 1. Open console - Open Javascript console 2. Use code bellow to get the full URI from the href property of a link. var links = document.links; for (var i = 0, linksLength = links.length; i < linksLength; ... more


Tuesday, 26 July, 2016 UTC

Get the all URL link in a website use Java script

Get all a href link in website in javascript 1. Open console - Open Javascript console 2. Use code bellow to get the full URI from the href property of a link. var links = document.links; for (var i = 0, linksLength = links.length; i < linksLength; ... more


Sunday, 24 July, 2016 UTC

Awesome Headless Browsers - A list of (almost) all headless web browsers in existence

A list of (almost) all headless web browsers in existence I'm trying to put list of possible solutions for browser automatic tests suits and headless browser platforms capable of scraping. BROWSER TESTING / SCRAPING: Selenium - polyglot flagship in browser ... more


Saturday, 2 July, 2016 UTC

Custom Ghost tag author router keywords to everything you want

If you're running a music blog, you might want the route to be /genre/ rather than /tag/, and perhaps you'd rather the route be /by/ rather than /author Edit routeKeywords at core/server/config/index.js routeKeywords: { tag: 'genre', author: 'by', page: ... more


Tuesday, 28 June, 2016 UTC

Awesome Python-A curated list of awesome Python frameworks, libraries, software and resources

Awesome Python A curated list of awesome Python frameworks, libraries, software and resources. Inspired by awesome-php. Awesome Python Environment Management Package Management Package Repositories Distribution Build Tools Interactive Interpreter Files ... more


Thursday, 16 June, 2016 UTC

Awesome Sysadmin - A curated list of amazingly awesome open source sysadmin resources

A curated list of amazingly awesome open source sysadmin resources. Table of Contents Awesome Sysadmin Backups Build Automation ChatOps Cloning Cloud Computing Cloud Storage Code Review Collaborative Software Configuration Management Database Configuration ... more


Thursday, 16 June, 2016 UTC

Real-time performance monitoring for Linux systems and applications use Netdata

What is Netdata ? Netdata is a highly optimized Linux daemon providing real-time performance monitoring for Linux systems, Applications, SNMP devices, over the web ! It tries to visualize the truth of now , in its greatest detail , so that you can get ... more


Monday, 13 June, 2016 UTC

How to install Nodejs LTS on any Linux distro

1.Choose Nodejs version Go to https://nodejs.org/dist/ and choose a version to fit with your needs. Such as for deploy Ghost, we need Node v4.2.x so download v4.2.5 can make Ghost work. uname -m *If i686 download x86.tar.gz tar If x86_64 download x64.tag.gz ... more


Monday, 13 June, 2016 UTC

Node deployment series

Node deployment I’ve been writing posts about nodejs deployment 1. Install Nodejs on any Linux distro 2. The simplest way to run node.js as service use systemd 3. Use Nginx for speedup Nodejs application 4. DeployGhost blogging platform in Linux VPS ... more


Monday, 13 June, 2016 UTC

Automatic Installation Nodejs on any Linux distro in 12 seconds

I have write How to install Nodejs LTS on any Linux distro. Here are an automatic script install Nodejs for who want to fast :) Read another post on Node Deployment Series ... more


Monday, 13 June, 2016 UTC

The simplest way to run node.js as service use systemd

Node deployment series This post is belong to Node deployment series Why start Nodejs service use Systemd ? Systemd is a system and service manager for Linux, compatible with SysV and LSB init scripts. systemd provides aggressive parallelization capabilities. ... more


Monday, 6 June, 2016 UTC

Setup Ternjs Node/Javascript autocomplete plugin for Vim editor

Ternjs is a stand-alone code-analysis engine for JavaScript Ternjs. It is an intelligent code completion for javascript. To use Ternjs you must install Nodejs and Python. Install TernJS for Vim Place this in your .vimrc: For Vundle Plugin 'ternjs/tern_for_vim' ... more


Friday, 3 June, 2016 UTC

The complete guide to self-hosted Ghost blog on Ubuntu/Debian

I have used Ghost for year. I Install Ghost in Debian with Node LTS 4 and Nginx server. Stack : Nodejs, Nginx, Sqlite,Debian, Systemd 1. Prepair to install Ghost You need to install Nodejs , the best is Node LTS version cd /tmp // For x86 wget http://nodejs.org/dist/v4.2.5/node-v4.2.5-linux-x86.tar.gz ... more


Friday, 3 June, 2016 UTC

Awesome-rethinkdb resource libraries and applications

Awesome RethinkDB A curated list of awesome RethinkDB resources, libraries, tools and applications Inspired by the awesome list. Feel free to improve this list by contributing! Table of Contents Resources Documentation Community JavaScript Python Ruby ... more


Wednesday, 1 June, 2016 UTC

Get started with Node.js (Learning resource)

Tutorials & learning resources NodeSchool.io interactive lessons The Art of Node (an introduction to Node) Hello World Hello World Web Server (paid) Node.js guide Build a blog with Node.js, express and MongoDB Node.Js Tutorials At Project 70 Node.js ... more


Monday, 9 May, 2016 UTC

Speed up Nodejs Application with Nginx proxy caching

“Don’t use #nodejs for static content”. "Don't use nodejs for static content" @trevnorris. If #nginx isn't sitting in front of your node server, you're probably doing it wrong.— Bryan Hughes August 30, 2014">@nebrius Why caching ? Caching ... more