- 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
<?php | |
/* Start in the correct directory */ | |
chdir(dirname(__FILE__)); | |
$bootstrap = 'wp-load.php'; | |
while (!is_file($bootstrap)) | |
/* If there is a parent directory and we are not in the root dir */ | |
if (is_dir('..') && getcwd() != '/') { | |
chdir('..'); | |
} else { |
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 | |
$address = '31 rue du 2 chat, 75011 Paris'; | |
function extract_address_fr($address) { | |
$address_parts = array(); | |
// Remove all punctuation | |
$address_clean = str_replace(array(',', ';'), ' ', $address); |
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') { |
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
var archive = []; | |
jQuery('#bodyContent').find('table[cellspacing]').find('tt a').each(function() { | |
archive.push(jQuery(this).text().trim()) | |
}); | |
console.log(JSON.stringify(archive)); |
-
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
#!/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
<!--[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
# 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 |
NewerOlder