This file contains 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
print "Salut" |
This file contains 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
# Want to show hidden files and folders in your TextMate project drawer? Simple, just modify the file and folder patterns in TextMate's preferences. | |
# Instructions: | |
# Go to TextMate > Preferences... | |
# Click Advanced | |
# Select Folder References | |
# Replace the following: | |
# File Pattern |
This file contains 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
defaults write com.apple.LaunchServices LSQuarantine -bool NO |
This file contains 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
<title>Flot Examples</title> | |
<link href="layout.css" rel="stylesheet" type="text/css"> | |
<!--[if lte IE 8]><script language="javascript" type="text/javascript" src="../excanvas.min.js"></script><![endif]--> | |
<script language="javascript" type="text/javascript" src="../jquery.js"></script> | |
<script language="javascript" type="text/javascript" src="../jquery.flot.js"></script> | |
</head> |
This file contains 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
$(document).ready(function(){ | |
var user; | |
/* Sign in with Twitter */ | |
// On load we check whether user's logged in or not: | |
$.get("api/oauth_ajax.php", null, function(data){ | |
$("#spinner").hide(); |
This file contains 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
imac:laravel-irclogs gibbon$ php artisan irc:log | |
2013-03-05 08:12:53 DEBUG USER irclogs irc.freenode.net irc.freenode.net :IRC Logs | |
2013-03-05 08:12:53 DEBUG NICK :irclogs | |
2013-03-05 08:12:53 DEBUG :zelazny.freenode.net NOTICE * :*** Looking up your hostname... | |
2013-03-05 08:12:53 DEBUG :zelazny.freenode.net NOTICE * :*** Checking Ident | |
2013-03-05 08:12:53 DEBUG :zelazny.freenode.net NOTICE * :*** No Ident response | |
2013-03-05 08:12:54 DEBUG :zelazny.freenode.net NOTICE * :*** Found your hostname | |
2013-03-05 08:12:54 DEBUG :zelazny.freenode.net 001 irclogs :Welcome to the freenode Internet Relay Chat Network irclogs | |
2013-03-05 08:12:54 DEBUG :zelazny.freenode.net 002 irclogs :Your host is zelazny.freenode.net[140.211.167.106/6667], running version ircd-seven-1.1.3 | |
2013-03-05 08:12:54 DEBUG :zelazny.freenode.net 003 irclogs :This server was created Tue Sep 25 2012 at 08:51:49 UTC |
This file contains 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
imac:laravel-irclogs gibbon$ php artisan irc:log | |
2013-03-05 08:21:19 DEBUG USER irclogs irc.freenode.net irc.freenode.net :IRC Logs | |
2013-03-05 08:21:19 DEBUG NICK :irclogs | |
2013-03-05 08:21:19 DEBUG :niven.freenode.net NOTICE * :*** Looking up your hostname... | |
2013-03-05 08:21:19 DEBUG :niven.freenode.net NOTICE * :*** Checking Ident | |
2013-03-05 08:21:19 DEBUG :niven.freenode.net NOTICE * :*** No Ident response | |
2013-03-05 08:21:20 DEBUG :niven.freenode.net NOTICE * :*** Found your hostname | |
2013-03-05 08:21:20 DEBUG :niven.freenode.net 001 irclogs :Welcome to the freenode Internet Relay Chat Network irclogs | |
2013-03-05 08:21:20 DEBUG :niven.freenode.net 002 irclogs :Your host is niven.freenode.net[140.211.167.105/6667], running version ircd-seven-1.1.3 | |
2013-03-05 08:21:20 DEBUG :niven.freenode.net 003 irclogs :This server was created Tue Sep 25 2012 at 08:52:30 UTC |
This file contains 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
Process: Mou [48855] | |
Path: /Applications/Mou.app/Contents/MacOS/Mou | |
Identifier: com.mouapp.Mou | |
Version: 0.8.3 (830) | |
Code Type: X86-64 (Native) | |
Parent Process: launchd [136] | |
Date/Time: 2013-03-19 14:46:40.625 +0100 | |
OS Version: Mac OS X 10.7.5 (11G63) | |
Report Version: 9 |
This file contains 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 | |
if (Config::has('sentry.key')) { | |
$bufferHandler = new Monolog\Handler\BufferHandler( | |
new Monolog\Handler\RavenHandler( | |
new Raven_Client(Config::get('sentry.key')), | |
Monolog\Logger::WARNING | |
) | |
); | |
This file contains 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 | |
Route::post('oauth/token', function() { | |
$oauth = new OAuth2\Provider(); | |
return $oauth->tokenRequest(); | |
}); | |
Route::filter('oauth', function() { | |
$oauth = new OAuth2\Provider(); | |
return $oauth->filter(); |
OlderNewer