Skip to content

Instantly share code, notes, and snippets.

class a
b:->
"foo"
class kdApi
constructor : (className,funcName) ->
if [className][funcName]
console.log "class and function exists"
else
@devrim
devrim / gist:628727
Created October 15, 2010 18:50
Mongo $exists problem
$q = array("myKey" => array('$exists'=>true));
$cursor = $mongo->db->coll->find($q);
echo $cursor->count(); // this returns the number 51
while($cursor->hasNext()){
$v = $cursor->getNext();
print_r($v); // this returns nothing
/* use this function before inserting any array to mongo */
array_walk_recursive($array,"typeCast");
/* then do insert: $mongo->$db->$collection_name->insert($array); */
/* careful with & sign before the $item, dont remove it, */
function get_4sq_venue_name($url){
$curl_handle=curl_init();
curl_setopt($curl_handle,CURLOPT_URL,$url);
curl_setopt($curl_handle,CURLOPT_CONNECTTIMEOUT,2);
curl_setopt($curl_handle,CURLOPT_RETURNTRANSFER,1);
curl_setopt($curl_handle,CURLOPT_FOLLOWLOCATION,1);
curl_setopt($curl_handle,CURLOPT_HEADER,1);
$buffer = curl_exec($curl_handle);
curl_close($curl_handle);