If a commit contains a lot of changes (or important ones), make a git commit using this message format:
Version 20150607:
* New method: lalala
* Fix method: lalala
* Refactor in method: lalala
| var iframe = global.document.querySelector('#console-terminal'), | |
| currentConsole = new CodePicnic.Console(global.CP.consoles.MjQ2Njgy.console), | |
| myTextArea = document.querySelector('#code'), | |
| myResult = document.querySelector('#result'), | |
| ee = new global.EventEmitter(), | |
| currentCommand, | |
| prompts = { | |
| ruby: /^irb(.*)> $/, | |
| javascript: /^> $/, | |
| php: /^php > $/ |
| [ | |
| { "key": "cmd+k w", "command": "workbench.action.closeActiveEditor" }, | |
| { "key": "cmd+w", "command": "workbench.files.action.closeFile" }, | |
| { "key": "shift+cmd+7", "command": "editor.action.addCommentLine" } | |
| ] |
| var brand = { href: 'https://codepicnic.com', image: 'https://codepicnic.com/logos/small/missing.png' }, | |
| options = [ | |
| { | |
| id: 'test', | |
| title: 'Test', | |
| icon: 'icon-test', | |
| href: '/test', | |
| target: '_blank' | |
| } | |
| ]; |
| var gulp = require('gulp'), | |
| cordova = require('cordova-lib').cordova, | |
| notifier = require('node-notifier'); | |
| gulp.task('serve', function(callback) { | |
| cordova.serve().then(function() { | |
| notifier.notify('Cordova app served!'); | |
| }).then(function() { | |
| callback(); | |
| }); |
| if (conozcoAlOP) { | |
| if (alguienHaComentadoEstupidecesOMemes) { | |
| return false; | |
| } | |
| else { | |
| if (esEnTwitter) { | |
| return false; | |
| } | |
| else { | |
| return true; |
| var fs = require('fs'), | |
| path = require('path'), | |
| args = process.argv.slice(2), | |
| dir = args[0], | |
| match = RegExp(args[1], 'g'), | |
| replace = args[2], | |
| files; | |
| files = fs.readdirSync(dir); |
| package com.biciq.biciqscan; | |
| import android.app.Activity; | |
| import android.app.AlertDialog; | |
| import android.content.DialogInterface; | |
| import android.content.Intent; | |
| import android.os.Bundle; | |
| import android.util.Log; | |
| import android.widget.Toast; |
| <!DOCTYPE html> | |
| <meta charset='utf-8'> | |
| <title>CodePicnic Console</title> | |
| <link rel="stylesheet" type="text/css" href="style.css"> | |
| <style type="text/css"> | |
| #loader { | |
| font-family: "Monaco", "DejaVu Sans Mono", "Menlo","Liberation Mono", Consolas, "Courier New", monospace; | |
| } | |
| </style> | |
| <script src="bundle.js"></script> |