-
Dolor
-
Ipsum
-
Ipsum
-
Ipsum
-
Dolor
-
Facto
-
Facto
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
<meta name="viewport" content="width=device-width" /> | |
<meta name="viewport" content="width=1020" /> |
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
# Screenshots | |
############# | |
# Disable Screenshot shadow | |
defaults write com.apple.screencapture disable-shadow -bool true | |
# Screenshot name | |
defaults write com.apple.screencapture name "capture" | |
# Files |
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
# Install Command Line Tools from Xcode | |
# Install RVM | |
curl -L https://get.rvm.io | bash -s stable --rails --autolibs=enabled | |
# http://stackoverflow.com/questions/15324590/rvm-install-ruby-1-9-3-missing-required-packages | |
rvm requirements | |
brew install autoconf automake libtool pkg-config apple-gcc42 libyaml readline libxml2 libxslt libksba openssl sqlite |
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
<!--[if lt IE 8 ]><html lang="fr-FR" class="no-js is_ie7 lt_ie8 lt_ie9 lt_ie10"><![endif]--> | |
<!--[if IE 8 ]><html lang="fr-FR" class="no-js is_ie8 lt_ie9 lt_ie10"><![endif]--> | |
<!--[if IE 9 ]><html lang="fr-FR" class="no-js is_ie9 lt_ie10"><![endif]--> | |
<!--[if gt IE 9]><html lang="fr-FR" class="no-js is_ie10"><![endif]--> | |
<!--[if !IE]><!--> <html lang="fr-FR" class="no-js"><!--<![endif]--> |
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
#!/bin/bash | |
function pullall { | |
# Go to folder | |
cd $1; | |
# Check if it's a git repository | |
if test -d ".git/"; then | |
# Display repository name | |
echo -e "\033[33m "$1" \033[0m"; | |
# Check repository status |
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
var archive = []; | |
jQuery('#bodyContent').find('table[cellspacing]').find('tt a').each(function() { | |
archive.push(jQuery(this).text().trim()) | |
}); | |
console.log(JSON.stringify(archive)); |
- Amazon.fr : Then click on "Modifier les paramètres du compte"
- Amazon.com : Then click on "Change Account Settings"
- Foursquare
- LinkedIn : Then click on Password | Edit below your email
- Viadeo
- WordPress.org : https:// wordpress.org/support/profile/[yourpseudo]/edit
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
# Disable iTunes launch at every media key press | |
launchctl unload -w /System/Library/LaunchAgents/com.apple.rcd.plist | |
# Enable | |
launchctl load -w /System/Library/LaunchAgents/com.apple.rcd.plist |
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
#!/usr/bin/php | |
<?php | |
$fromLang = 'fr'; | |
$toLang = 'en'; | |
$text = <<<'CLIP' | |
%clipboard | |
CLIP; | |
function wd_remove_accents($str, $charset = 'utf-8') { |
OlderNewer