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
| jQuery(".terminal-wrap .terminal").attr("style","color:#00FF00"); |
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
| #http://stackoverflow.com/questions/1139762/ignore-files-that-have-already-been-committed-to-a-git-repository | |
| git rm -r --cached . | |
| git add . | |
| git commit -m ".gitignore is now working" |
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
| <?php | |
| /** | |
| * @file | |
| * Contains \Drupal\Core\Session\AccountProxy. | |
| */ | |
| namespace Drupal\Core\Authentication; |
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
| sudo discoveryutil mdnsflushcache |
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
| php core/scripts/run-tests.sh --url http://drupal8.loc/ --color --verbose --class "Drupal\system\Tests\Session\AccountSwitcherTest" & | |
| php core/scripts/run-tests.sh --url http://drupal8.loc/ --color --verbose --class "Drupal\Tests\Core\Session\UserSessionTest" & | |
| php core/scripts/run-tests.sh --url http://drupal8.loc/ --color --verbose --class "Drupal\Tests\Core\Session\AnonymousUserSessionTest" & | |
| php core/scripts/run-tests.sh --url http://drupal8.loc/ --color --verbose --class "Drupal\Tests\Core\Session\PermissionsHashTest" & | |
| #Drupal\Tests\Core\PageCache\NoSessionOpenTest 1 passes | |
| php core/scripts/run-tests.sh --url http://drupal8.loc/ --color --verbose --class "Drupal\Tests\Core\Session\SessionConfigurationTest" |
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
| #http://drupal.gatech.edu/handbook/module-updates-drush | |
| #http://www.drushcommands.com/drush-7x/pm/pm-update | |
| drush pm-update projects drupal-7.38 | |
| drush pm-update | |
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
| [color] | |
| ui = auto | |
| [color "diff"] | |
| meta = yellow bold | |
| frag = magenta bold | |
| old = red bold | |
| new = green bold | |
| whitespace = red reverse | |
| [core] | |
| whitespace=fix,-indent-with-non-tab,-indent-with-tab,trailing-space,cr-at-eol |
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
| [user] | |
| name = Jaime Guzman | |
| email = me@jguzman.cl | |
| [core] | |
| editor = vim | |
| whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol | |
| excludesfile = ~/.gitignore | |
| [sendemail] | |
| smtpencryption = tls | |
| smtpserver = smtp.gmail.com |
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
| # Git branch in prompt. | |
| parse_git_branch() { | |
| git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/' | |
| } | |
| export PS1="\u@\h \W\[\033[32m\]\$(parse_git_branch)\[\033[00m\] $ " |
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
| hide = update-index --assume-unchanged | |
| unhide = update-index --no-assume-unchanged |
OlderNewer