Here's an experiment to work locally on a Mac using Git and my editor of choice -- while integrating well with Microsoft TFS which houses company-wide code.
If you want to work completely in Windows see:
<?php | |
$string = '123-23-1234'; | |
$pattern = '^\d{3}-\d{2}-\d{4}^'; | |
preg_match($pattern, $string, $matches); | |
print_r($matches); | |
?> |
/* =IE7 & IE8 hax | |
---------------------------------------------- */ | |
#heroku-header { | |
min-width/*\**/: 991px\9; | |
} | |
/* ------------------------------------------- */ |
' Code lifted and adjusted from: http://superuser.com/questions/71786/can-i-create-a-link-to-a-specific-email-message-in-outlook | |
' You may have to enable links in Outlook if these links are destined for Outlook itself - http://www.davidtan.org/outlook-2007-adding-outlook-url-protocol/ | |
' Reference: http://www.davidtan.org/create-hyperlinks-to-outlook-messages-folders-contacts-events/ | |
' To Assign Keyboard Shortcut to your new Macro: http://stackoverflow.com/questions/57075/how-do-i-assign-a-keyboard-shortcut-to-a-vba-macro-in-outlook-2007 | |
'Adds a link to the currently selected message to the clipboard | |
Sub AddLinkToMessageInClipboard() | |
Dim objMail As Outlook.MailItem |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>DVTConsoleDebuggerInputTextColor</key> | |
<string>0.811765 0.796078 0.564706 1</string> | |
<key>DVTConsoleDebuggerInputTextFont</key> | |
<string>Inconsolata - 16.0</string> | |
<key>DVTConsoleDebuggerOutputTextColor</key> | |
<string>1 1 1 1</string> |
Here's an experiment to work locally on a Mac using Git and my editor of choice -- while integrating well with Microsoft TFS which houses company-wide code.
If you want to work completely in Windows see:
# | |
# This is the main Apache HTTP server configuration file. It contains the | |
# configuration directives that give the server its instructions. | |
# See <URL:http://httpd.apache.org/docs/2.2> for detailed information. | |
# In particular, see | |
# <URL:http://httpd.apache.org/docs/2.2/mod/directives.html> | |
# for a discussion of each configuration directive. | |
# | |
# Do NOT simply read the instructions in here without understanding | |
# what they do. They're here only as hints or reminders. If you are unsure |
var switchComponent = { | |
init : function(){ | |
var firstSwitch = ".swfirst"; | |
var secondSwitch = ".swsecond"; | |
var compContent = $(".componentscontent"); | |
var envContent = $(".environmentscontent"); | |
$(firstSwitch).click(function() { | |
$(this).css({background: '#eaefd8', color: '#000', borderRight: '2px solid #d6e1b4'}); | |
$(secondSwitch).css({background: '#e0e8c6', color: '#ccc', borderLeft: '2px solid #ccc'}); |
obj | |
bin | |
*.user | |
*.suo | |
*.cache | |
*.scc | |
*.vssscc | |
*.vspcc | |
*.bak | |
*.log |
; Change your hotkey here | |
^1:: | |
DetectHiddenWindows, on | |
IfWinExist ahk_class Console_2_Main | |
{ | |
IfWinActive ahk_class Console_2_Main | |
{ | |
WinHide ahk_clasas Console_2_Main | |
WinActivate ahk_class Shell_TrayWnd |
<div class=container-fluid> | |
<div class=row-fluid> | |
<div class=span2> | |
<div class="well sidebar-nav"> | |
<ul class="nav nav-list"> | |
<li class=nav-header>Sidebar</li> | |
<li class=active><a href="#">Link</a></li> | |
<li><a href="#">Link</a></li> | |
<li><a href="#">Link</a></li> | |
<li><a href="#">Link</a></li> |