This file contains hidden or 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 | |
| date_default_timezone_set('Europe/Paris'); | |
| function another_world($str) | |
| { | |
| $splitted = explode(" ", $str); | |
| foreach ($splitted as $key => $value) { | |
| $splitted[$key] = ucfirst($value); | |
| } | |
| $str = implode(" ", $splitted); |
This file contains hidden or 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
| /* ************************************************************************** */ | |
| /* */ | |
| /* ::: :::::::: */ | |
| /* ft_printf_test.c :+: :+: :+: */ | |
| /* +:+ +:+ +:+ */ | |
| /* By: aaubin <[email protected]> +#+ +:+ +#+ */ | |
| /* +#+#+#+#+#+ +#+ */ | |
| /* Created: 2013/12/16 10:10:21 by aaubin #+# #+# */ | |
| /* Updated: 2013/12/16 10:10:34 by aaubin ### ########.fr */ | |
| /* */ |
This file contains hidden or 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
| -t#. | |
| -t#.. | |
| -l#. | |
| -l#.. | |
| -t# | |
| -l# | |
| -la# | |
| -lar# | |
| -lart# | |
| -la# |
This file contains hidden or 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
| /* ************************************************************************** */ | |
| /* */ | |
| /* ::: :::::::: */ | |
| /* ft_memrealloc.c :+: :+: :+: */ | |
| /* +:+ +:+ +:+ */ | |
| /* By: aaubin <[email protected]> +#+ +:+ +#+ */ | |
| /* +#+#+#+#+#+ +#+ */ | |
| /* Created: 2013/11/28 02:36:34 by aaubin #+# #+# */ | |
| /* Updated: 2013/11/28 03:35:07 by aaubin ### ########.fr */ | |
| /* */ |
This file contains hidden or 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
| .mejs-controls .mejs-time-rail .mejs-time-total | |
| { | |
| margin: 5px 0px; | |
| } |
This file contains hidden or 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 getHeure(container, utc) | |
| { | |
| d = new Date() | |
| if (utc) | |
| { | |
| t = date.getUTCHours()+":"date.getUTCMinutes()+":"+date.getUTCSeconds(); | |
| } | |
| else | |
| { | |
| t = date.getHours()+":"date.getMinutes()+":"+date.getSeconds(); |
NewerOlder