Search input for Bootstrap grid with jQuery
A Pen by Tiago França on CodePen.
Search input for Bootstrap grid with jQuery
A Pen by Tiago França on CodePen.
My objective is to have some production files ignored on specific branches. Git doesn't allow to do it.
My solution is to make a general .gitignore file and add .gitignore.branch_name files for the branches I want to add specific file exclusion.
I'll use post-checkout hook to copy those .gitignore.branch_name in place of .git/info/exclude each time I go to the branch with git checkout branch_name.
http://gcctech.org/csc/javascript/javascript_keycodes.htm | 04-aug-2020
keydown event
keypress event
keyup event
//nos snippets tem o arquivo: ExecTimeTrack.php
//Rastrear pontos da aplicação que demoram mais tempo
$timer = new ExecTimeTrack('aaa');
$timer->startCheckpointToList('validacao');
sleep(1);
$timer->endCheckpointToList('validacao');
dd($timer->getCheckpointList());| #curl POST com dados via JSON com autenticação básica | |
| curl -X POST -u teste1:123 \ | |
| -H "Content-Type: application/json" \ | |
| -d '{"username":"abc","password":"abc"}' \ | |
| http://localhost:5678/webhook-test/create_account-start | |
| https://gist.github.com/tiagofrancafernandes/0ddbed3f8f30bf2aeb9f211a6d468636 |
| <!-- | |
| https://codepen.io/tiagofranca/pen/BaZpzrN | |
| https://jsfiddle.net/TiagoFranca/c1gL598j/ | |
| --> | |
| <style> | |
| [x-cloak] {display: none !important;} | |
| .transition-500ms, .transition { | |
| -webkit-transition: opacity 0.5s ease-in-out; | |
| -moz-transition: opacity 0.5s ease-in-out; | |
| -ms-transition: opacity 0.5s ease-in-out; |
| ##PS1 Com git branch | |
| gbranch() | |
| { | |
| git branch > /dev/null 2>&1; | |
| # if [ -d .git ]; then | |
| if [ $? -eq 0 ]; then | |
| local ref_branch=$(git symbolic-ref --short HEAD 2> /dev/null) | |
| echo BRANCH ["${ref_branch:-}"]; |