git clone git@github.com:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
| #!/bin/bash | |
| # | |
| # MongoDB Backup Script | |
| # VER. 0.1 | |
| # Note, this is a lobotomized port of AutoMySQLBackup | |
| # (http://sourceforge.net/projects/automysqlbackup/) for use with | |
| # MongoDB. | |
| # | |
| # 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 |
| # Note that while this file is in our config folder, it is | |
| # symlinked to our site folders, so paths are relative from there | |
| # Require gems and Compass plugins | |
| # require 'rgbapng' | |
| # require 'compass-fancybox-plugin' | |
| require 'compass-growl' | |
| # General | |
| output_style = :expanded |
| var FadeTransitionRegion = Backbone.Marionette.Region.extend({ | |
| show: function(view){ | |
| this.ensureEl(); | |
| view.render(); | |
| this.close(function() { | |
| if (this.currentView && this.currentView !== view) { return; } | |
| this.currentView = view; |
| module.exports = function (grunt) { | |
| // show elapsed time at the end | |
| require('time-grunt')(grunt); | |
| // load all grunt tasks | |
| require('load-grunt-tasks')(grunt); | |
| //MODIFIED: add require for connect-modewrite | |
| var modRewrite = require('connect-modrewrite'); | |
| grunt.initConfig({ |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>JS Bin</title> | |
| </head> | |
| <body> | |
| </body> | |
| </html> |
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
| Copyright (C) 2014 ADDY OSMANI <addyosmani.com> | |
| 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. | |
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
| TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION |
| var tracks = [];$('.album_songlist .playcol').map(function(index, track) {tracks[index] = $(track).data('value')});var getURL = function(track_id) {$.post('http://gaana.com//streamprovider/get_stream_data_v1.php', {track_id:track_id}, function(data){console.log($.parseJSON(data).stream_path)})};tracks.map(getURL); |
| /* global fetch*/ | |
| import {Dis, act} from 'disto'; | |
| let {dispatch, register} = new Dis(); | |
| function timeout(t){ | |
| return new Promise(resolve => | |
| setTimeout(()=> resolve(true), t)); | |
| } |
| [Unit] | |
| Description=X Virtual Frame Buffer Service | |
| After=network.target | |
| [Service] | |
| ExecStart=/usr/bin/Xvfb :1 -screen 0 1024x768x24 -ac +extension GLX +render -noreset | |
| [Install] | |
| WantedBy=multi-user.target |