Skip to content

Instantly share code, notes, and snippets.

<?php
// DISPLAYS COMMENT POST TIME AS "1 year, 1 week ago" or "5 minutes, 7 seconds ago", etc...
function time_ago($date,$granularity=2) {
$date = strtotime($date);
$difference = time() - $date;
$periods = array('decade' => 315360000,
'year' => 31536000,
'month' => 2628000,
'week' => 604800,
'day' => 86400,
@youssman
youssman / time-conversion.php
Created October 21, 2014 09:51
Give the days, hours, minutes, and seconds for a passed-in seconds value
<?php
// 137 seconds => 2min 17s
protected function _timeConversion( $seconds ) {
$datetime = new DateTime('@' . $seconds, new DateTimeZone('UTC'));
$formatted = array( 'd' => $datetime->format('z'),
'h' => $datetime->format('G'),
'min' => $datetime->format('i'),
's' => $datetime->format('s')
);
@youssman
youssman / usort-example.php
Last active August 29, 2015 14:08
Sort array of objects by object fields
<?php
protected function compareFunction($a, $b){
//any compare function (like strcmp, ...) or treatment we want
if ($a->objIntField == $b->objIntField) {
return 0;
}
return ( $a->objIntField > $b->objIntField );
}
public function myAction(){
@youssman
youssman / split.m
Last active August 29, 2015 14:08
explode in iOS (Split an NSString)
NSArray* split = [@"10/04/2011" componentsSeparatedByString: @"/"];
NSString* mounth = [split objectAtIndex: 1];
@youssman
youssman / escape-html.html
Last active August 29, 2015 14:08
escape HTML tags in phpTal
<!-- ... -->
<!-- You have to use ${structure expresssion} syntax to escape HTML tags.
The use of "tal:define" (to handle the case when no string is defined in the array) is important
because we can't combine the two PHPTALES "structure" and "string" in the same expression. -->
<div tal:define="myVarWithTags string:a br tag<br/>for example">
${structure myArray/ofString | myVarWithTags}
</div>
<!-- ... -->

Keybase proof

I hereby claim:

  • I am youssman on github.
  • I am wassimboy (https://keybase.io/wassimboy) on keybase.
  • I have a public key whose fingerprint is 137A D131 6310 FAAF 0E52 6293 F52D 1147 6974 5004

To claim this, I am signing this object:

@youssman
youssman / regex-camelCase-to-dash.js
Created November 5, 2014 11:19
Javascript convert camelcase to dash (hyphen)
function camelCaseToDash( myStr ) {
return myStr.replace( /([a-z])([A-Z])/g, '$1-$2' ).toLowerCase();
}
var myStr = camelCaseToDash( 'thisString' );
alert( myStr ); // => this-string
@youssman
youssman / dash-to-camelCase.js
Created November 5, 2014 11:25
Javascript convert dash (hyphen) to camelcase
function dashToCamelCase( myStr ) {
return myStr.replace(/-([a-z])/g, function (g) { return g[1].toUpperCase(); });
}
var myStr = dashToCamelCase( 'this-string' );
alert( myStr ); // => thisString
NSArray *array1 = [NSArray arrayWithObjects:@"1", @"2", @"3", nil];
NSString *joinedString = [array1 componentsJoinedByString:@","];
@youssman
youssman / trim.m
Created February 13, 2015 11:35
Trim spaces from start/end of a NSString
NSString *string = @" this text has spaces before and after ";
NSString *trimmedString = [string stringByTrimmingCharactersInSet:
[NSCharacterSet whitespaceCharacterSet]];