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 | |
/** | |
* Get a distinct multi dimensional array | |
* | |
* @param array $array | |
* array to distinct | |
* @param string $keySearch | |
* string key to search double array | |
* @param boolean $overwrite = false | |
* boolean to allow values to be overwritten |
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> | |
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="lang"> <![endif]--> | |
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="lang"> <![endif]--> | |
<!--[if gt IE 8]><!--> <html class="no-js" lang="${1:fr}"> <!--<![endif]--> | |
<head> | |
<meta charset="utf-8" /> | |
<meta name="description" content="" /> | |
<meta name="keywords" content="" /> | |
<!-- Geo position --> |
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
function strrchr (haystack, needle) { | |
var pos = 0; | |
if (typeof needle !== 'string') | |
needle = String.fromCharCode(parseInt(needle, 10)); | |
needle = needle.charAt(0); | |
pos = haystack.lastIndexOf(needle); | |
if (pos === -1) |
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
private function twoDigits($number) | |
{ | |
if($number <= 9) | |
return '0' . $number; | |
else | |
return $number; | |
} |
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
function generateRandomKey(size) | |
{ | |
var keyset = 'abcdefghijklmnopqrstuvwxyz0123456789'; | |
var randomKey = ''; | |
for (var i = 0; i < size; i++) | |
{ | |
var rnum = Math.floor(Math.random() * keyset.length); | |
randomKey += keyset.substring(rnum,rnum + 1); | |
} |
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
public class GoogleCalendar { | |
private Context _context; | |
private GoogleCalendarCallback _callback; | |
public GoogleCalendar(Context c, GoogleCalendarCallback cb) { | |
_context = c; | |
_callback = cb; | |
} | |
public void add(final String title, final Long dateStart, final Long dateEnd, |
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
# Symfony aliases | |
## Cache | |
alias sf_cache_clear="php app/console cache:clear" # Clears the cache | |
alias sf_cache_warmup="php app/console cache:warmup" # Warms up an empty cache | |
## Doctrine | |
alias sf_doctrine_="php app/console doctrine:cache:clear-metadata" # Clears all metadata cache for a entity manager | |
alias sf_doctrine_="php app/console doctrine:cache:clear-query" # Clears all query cache for a entity manager | |
alias sf_doctrine_="php app/console doctrine:cache:clear-result" # Clears result cache for a entity manager | |
alias sf_doctrine_="php app/console doctrine:database:create" # Creates the configured databases |
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 | |
/** | |
* | |
*/ | |
class sfValidatorBIC extends sfValidatorBase | |
{ | |
protected $validator; | |
protected $errors; | |
protected function configure($options = array(), $messages = array()) |
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
# At 9, 13, 16 and 19 hour every monday, tuesday, wednesday, thursday and friday | |
* 9,13,16,19 * * 1,2,3,4,5 root /Applications/XAMPP/xamppfiles/bin/mysqldump -u root --all-databases | gzip > /Users/pierrick/Documents/Backups/Sites/database_`date +"%m_%d_%Y_%H_%M"`.sql.gz |
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
private int _twoDigitsYear(int year) { | |
if (year > 0) | |
year = year % 100; | |
return year; | |
} |
OlderNewer