Anyone having question about Freelancing, Outsourcing and Tech Business might get help online and offline.
- Interactive Help Database
- Helpline
- Premium Consultation
This is a plan to make the best out of an Anime/Manga related group such as Otaku Evolution.
This group should host some particular game officially. Those games should be able to be played by almost everyone. Anyone will be able to join the group and play right away. If this is a MMORPG, group members should be able to TEAM UP and fight against everyone else.
OE Group will be to provide support, tips, tricks to group members about those games, hold contest, talk about experiences. Group should pick up the games by a Poll or just ask the members for their opinion.
#include <stdio.h> | |
#include <stdlib.h> | |
/* This is a Program to convert between Binary, Decimal and Octal numbers | |
How it'll operate: | |
First the program will ask user to choose what he want to do, | |
then get the input, convert it and output the result | |
Limitations: | |
The result is limited to 255 or FF in hex value. |
Updated: October 2017
/* | |
Credits and more resources: | |
https://gist.github.com/emenoh/65708b03f1a99d92f14db9b0d60d8fd0 | |
https://chromium.googlesource.com/chromium/blink-public/+/master/web/WebDeviceEmulationParams.h | |
*/ | |
const Nightmare = require('nightmare'); | |
Nightmare.action('emulateDevice', | |
(name, options, parent, win, renderer, done) => { |
var Nightmare = require('nightmare'), | |
path = require('path'), // ADD THIS | |
nightmare = Nightmare({ | |
show: true, | |
alwaysOnTop: false, | |
webPreferences: { | |
preload: path.resolve('preload.js') // USE PATH.RESOLVE FUNCTION | |
} | |
}); |
Lazy Dev Style (On Linux):
Grab a database from mlab and a free test SMTP server from mailtrap.io
Install NodeJS
curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
sudo apt-get install -y nodejs
let runfunc = (actions) => { | |
let current = actions.shift() | |
current[0](current[1]).then((result) => { | |
console.log(result) | |
if (actions.length) | |
runfunc(actions) | |
}) | |
} | |
module.exports = runfunc |
(() => { | |
/** | |
* Fill gaps of an array | |
* @param {Object} sourceArray - The source array to compare to | |
* @param {Object} targetArray - The target array to fill the gap | |
* @param {string} Filler - The element to be used to fill the gap | |
*/ | |
let similarFill = ((sourceArray, targetArray, filler) => { | |
let pos = 0; | |
for (let i = 0; i < targetArray.length; i++) { |