All frameworks are not created equal...but what really is the difference? And when should I use which one?
#!/bin/sh | |
# Quick start-stop-daemon example, derived from Debian /etc/init.d/ssh | |
set -e | |
# Must be a valid filename | |
NAME=foo | |
PIDFILE=/var/run/$NAME.pid | |
#This is the command to be run, give the full pathname | |
DAEMON=/usr/local/bin/bar |
/* Copyright (c) 2012 Sven "FuzzYspo0N" Bergström | |
http://underscorediscovery.com | |
MIT Licensed. See LICENSE for full license. | |
Usage : node simplest.app.js | |
*/ | |
var |
/* vim:fileencoding=utf-8 tabstop=2 expandtab shiftwidth=2 softtabstop=0: | |
* | |
* DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
* Version 2, December 2004 | |
* | |
* Copyright (C) 2014 @cat_in_136 | |
* | |
* Everyone is permitted to copy and distribute verbatim or modified | |
* copies of this license document, and changing it is allowed as long | |
* as the name is changed. |
/** | |
* | |
* Before use, type: | |
* ``` | |
* npm install xmldom --save | |
* ``` | |
*/ | |
window.DOMParser = require('xmldom').DOMParser; | |
PandaLogger is a plugin for Panda.js that brings basic logger features into the game scope. To learn more about this plugin, read the following samples.
In order to install PandaLogger, simply copy this file into your <project_root>/src/plugins
folder. That's all !
You'll then have to require it whenever you want to use it in your code. (see samples)
/** | |
* COPYRIGHT (c) 2016 SkyzohKey & Benwaffle | |
* | |
* MIT License | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining | |
* a copy of this software and associated documentation files (the | |
* "Software"), to deal in the Software without restriction, including | |
* without limitation the rights to use, copy, modify, merge, publish, | |
* distribute, sublicense, and/or sell copies of the Software, and to |
{ | |
"clients": { | |
"qTox": { | |
"description": "A Qt graphical user interface for Tox.", | |
"website": "https://qtox.github.io/", | |
"source": "https://github.com/tux3/qTox/", | |
"maintainer": "Tux3", | |
"downloadLinks": { | |
"linux": { | |
"packages-obs": "https://software.opensuse.org/download.html?project=home%3Aantonbatenev%3Atox&package=qtox" |
/** | |
* @class EventSocket - A JSON event based client-side websocket wrapper. | |
* @param {String} scheme - The websocket server address scheme, can be `ws`, `wss`, `http`, `https`, whatever... | |
* @param {String} host - The websocket server ip address. | |
* @param {String} port - The websocket server port. | |
**/ | |
function EventSocket (scheme, host, port) { | |
this.uri = [ scheme, '://', host, ':', port ].join(''); | |
this.callbacks = {}; | |
this.socket = null; |
Konv aims to be a modern, easy-to-use and secure Instant Messaging Skype replacement. It should provides a cool UI/UX to end-users, with a « Power user » mode to allow more skilled guys to enjoy it too.
Konv should be finely designed and simple to understand with the first time, even a grandma should be able to use it without troubles.
Konv should provides at least features others IM apps (Skype, Whatsapp, Messenger, etc) has plus extra features that'll make it unique.