Standard escape codes are prefixed with Escape:
- Ctrl-Key:
^[ - Octal:
\033 - Unicode:
\u001b - Hexadecimal:
\x1B - Decimal:
27
What did you learn at your last job that was so valuable that you want to bring it here with you?
Talk about a few things you don't know. Do you have a strategy for learning them?
What are your least/favorite things about development?
What are your least/favorite things about your primary language/stack?
Do you prefer long running projects? Many iterations on one application or fewer iterations on unrelated projects?
| DROP PROCEDURE IF EXISTS deleteBadProjectAssignments; | |
| DELIMITER $$ | |
| CREATE PROCEDURE deleteBadProjectAssignments( ) | |
| BEGIN | |
| DROP TEMPORARY TABLE IF EXISTS table2; | |
| CREATE TEMPORARY TABLE IF NOT EXISTS table2 AS( | |
| SELECT DISTINCT | |
| utp.project_id | |
| FROM | |
| users_to_projects utp |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env php | |
| <?php | |
| `git fetch -p --all`; | |
| $branches = `git branch -vv`; | |
| preg_match_all('%^\ +(?P<branch>[\w/=\-.#]+)\ +(?P<hash>[0-9a-fA-F]+)\ \[[\w/=\-.#]+:\sgone\]%smx', $branches, $result, PREG_PATTERN_ORDER); | |
| foreach( $result['branch'] as $index => $branch ) { | |
| $output = [ ]; |
A very basic starter template with fundamental HTML5 markup -- only the basics.
Based on HTML5 Bones | http://html5bones.com