- http://stackoverflow.com/questions/2954477/how-to-find-commits-by-a-specific-user-in-git
- http://git-scm.com/docs/git-log
git log --author=<pattern>
//[\r\n]+ | |
var users = [], | |
listId = JSON.parse(document.getElementById('init-data').value).list_id, //'762404565366956032', | |
headers = { | |
"Accept" : "application/json, text/javascript, */*; q=0.01", | |
"Accept-Language" : "en-US,en;q=0.5", | |
"Content-Type" : "application/x-www-form-urlencoded; charset=UTF-8", | |
"X-Requested-With" : "XMLHttpRequest", | |
}, | |
formData = { |
;(function(window) { | |
Notification | |
.requestPermission() | |
.then(function(result) { | |
if ('granted' === result) { | |
openIframe(); | |
window.timer = setInterval( | |
function() { | |
var change = '', | |
operator = '', |
//;(function(window, $, datos) { | |
/** | |
* | |
* @ToDo Find calendar days | |
* | |
*/ | |
var activities =[ | |
{ 'Id_Actividad' : 380814, 'horas' : 2 }, //ANALISIS | |
{ 'Id_Actividad' : 380812, 'horas' : 6 } //DESARROLLO |
;(function(){ | |
console.log( | |
/^([a-zA-Z]{3,4})-(\d{6})-((\D|\d){3})?$/.test('OIHG-551205-2L7'), //Check RFC Format | |
/[\r\n]+/.test('ABCD\n \t EFGHI\n \t ') //Select Line, | |
/(?=.*?\bbundle\b)(?=.*?\bstandalone\b)^.*$/i.test('standalone bundle'), // | |
/(?=.*?\bbundle\b)(?=.*?\bstandalone\b)^.*$/i.test('standalone? bundle'), // | |
/(?=.*?\bbundle\b)(?=.*?\bstandalone\b)^.*$/i.test('standalone_ bundle'), // | |
'/^[a-f0-9]{32}$/'.test('5d41402abc4b2a76b9719d911017c592'), // MD5 check | |
/cmb[\d\w-_]+/.test('cmbCountry'), // | |
' _ A + B _ '.replace(/^\s+|\s+$/g, ""), // Emulates trim() |
{ | |
".gitignore" : "https://github.com/github/gitignore/blob/master/Symfony.gitignore", | |
"gitbook" : "https://github.com/GitbookIO/gitbook", | |
"HBP Apache Settings": "https://github.com/h5bp/server-configs-apache" | |
} |
#REGEX REPLACE | |
find : <li>*.+?(echo)+.*<\/li> | |
replace : <?php if($userac->hasPermission('access','')) { ?>\n\t\t$0\n\t\t\t<?php } ?> | |
#http://stackoverflow.com/questions/20742076/regex-replace-uppercase-with-lowercase-letters | |
#Lowercase Replacement | |
find : \bAS\b | |
replace : \L$0 | |
#Uppercase Replacement |
##http://www.howtogeek.com/howto/linux/keep-your-linux-ssh-session-from-disconnecting/ | |
#Global Configuration | |
#Add the following line to the /etc/ssh/ssh_config file: | |
ServerAliveInterval 60 | |
#The number is the amount of seconds before the server with send the no-op code. | |
#Current User Configuration | |
#Add the following lines to the ~/.ssh/config file (create if it doesn’t exist) | |
Host * |
php vendor/bin/doctrine orm:convert-mapping --force --from-database --from-database xml test/Mapping
php vendor/bin/doctrine orm:convert-mapping --force --from-database --from-database xml module/Application/src/Entity/
#!/usr/bin/python | |
import sys | |
import os | |
os.system('meld "%s" "%s"' % (sys.argv[2], sys.argv[5])) | |
#git config -l | |
#diff.external=/path/to/script/diff.py |