This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
####################################################################################################################### | |
# | |
# Purpose: Bash script to fix a few elements of the default Dokku script with running correctly on Debian Wheezy | |
# Run as root | |
# Author: Shirkey <[email protected]> | |
# License: MIT | |
# Tested with: | |
# * Linux 3.2.0-4-amd64 #1 SMP Debian 3.2.41-2+deb7u2 x86_64 GNU/Linux | |
# * v0.2.1 of Dokku installer script | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- ExportSQLite: SQLite export plugin for MySQL Workbench | |
-- Copyright (C) 2009 Thomas Henlich | |
-- | |
-- This program is free software: you can redistribute it and/or modify | |
-- it under the terms of the GNU General Public License as published by | |
-- the Free Software Foundation, either version 3 of the License, or | |
-- (at your option) any later version. | |
-- | |
-- This program is distributed in the hope that it will be useful, | |
-- but WITHOUT ANY WARRANTY; without even the implied warranty of |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//this is a tiny helper method for making JSON Http Requests | |
//if you want a more comprehensive solution, write it yourself | |
// | |
//the callback function will receive two arguments: the response, | |
// parsed as JSON, and the xhr object used inside jhr, with an added | |
// responseJSON property (you can probably guess what it is) | |
// | |
//this always sends a POST request, and the data is always serialized to JSON | |
// | |
//returns the xhr object used |