Note: Please check this blog post for more details on these functions.
Sort a SQL query with id and parentid so that
the rows have the correct order of the tree.
Parameters:
q(Array): A query result (see example below)
| username: vagrant | |
| password: vagrant | |
| sudo apt-get update | |
| sudo apt-get install build-essential zlib1g-dev git-core sqlite3 libsqlite3-dev | |
| sudo aptitude install mysql-server mysql-client | |
| sudo nano /etc/mysql/my.cnf |
Note: Please check this blog post for more details on these functions.
Sort a SQL query with id and parentid so that
the rows have the correct order of the tree.
Parameters:
q (Array): A query result (see example below)| <html> | |
| <body style="background: #333"> | |
| <script > | |
| var gui = require('nw.gui'); | |
| var win = gui.Window.get(); | |
| function takeSnapshot() { | |
| win.capturePage(function(img) { | |
| var popWindow = gui.Window.open('popup.html', | |
| {width: 420, height: 300}); | |
| popWindow.on('loaded', function() { |
| $(function( | |
| function Menu(cutLabel, copyLabel, pasteLabel) { | |
| var gui = require('nw.gui') | |
| , menu = new gui.Menu() | |
| , cut = new gui.MenuItem({ | |
| label: cutLabel || "Cut" | |
| , click: function() { | |
| document.execCommand("cut"); | |
| console.log('Menu:', 'cutted to clipboard'); |
| #!/bin/bash | |
| # Install script for Latest WordPress by Johnathan Williamson - extended by Don Gilbert | |
| # Disclaimer: It might not bloody work | |
| # Disclaimer 2: I'm not responsible for any screwups ... :) | |
| # DB Variables | |
| echo "MySQL Host:" | |
| read mysqlhost | |
| export mysqlhost |
| /* | |
| * Copyright (c) 2010 Tobias Schneider | |
| * This script is freely distributable under the terms of the MIT license. | |
| */ | |
| (function(){ | |
| var UPC_SET = { | |
| "3211": '0', | |
| "2221": '1', | |
| "2122": '2', |
| <?php | |
| namespace Renoir\AggregationBundle; | |
| /** | |
| * Abstract client to use for each Client | |
| * | |
| * Example location: src/Renoir/AggregationBundle/AbstractClient.php | |
| **/ |
| #!/bin/bash | |
| # <UDF name="ssh_key" Label="Paste in your public SSH key" default="" example="" optional="false" /> | |
| # root ssh keys | |
| mkdir /root/.ssh | |
| echo $SSH_KEY >> /root/.ssh/authorized_keys | |
| chmod 0700 /root/.ssh | |
| # update to latest |