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 amqp = require('amqplib'); | |
var config = require('../config/config'); | |
function generateUuid() { | |
return Math.random().toString() + | |
Math.random().toString() + | |
Math.random().toString(); | |
} | |
const connect = (url) => { |
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 | |
/** | |
* Find a number within an array in recursive mode | |
*/ | |
function findNumber($a, $num, $start, $end) { | |
$mid = floor(($end - $start) / 2) + $start; | |
if ($num > $a[$end] || $num < $a[0] || $start > $end) { | |
return "number does not exist"; | |
} | |
if ($a[$mid] == $num) { |
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 | |
/** | |
* Fibonacci series as simple for loop | |
*/ | |
function fibonacciLoop($n) { | |
$series = [0, 1]; | |
if ($n == 0 || $n == 1) { | |
return $n; | |
} | |
for ($i=2; $i<=$n; $i++) { |
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 | |
/** | |
* Author:Wajdi Jurry <[email protected]> (https://github.com/wajdijurry) | |
* Requires PHP >= 5 | |
*/ | |
class ArrayHelper | |
{ | |
private $parentIdAttribute; | |
private $itemIdAttribute; |
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 | |
/** | |
* Author:Wajdi Jurry <[email protected]> (https://github.com/wajdijurry) | |
* Gist: https://gist.github.com/wajdijurry/a00752123134342ccc9d13a480c9f013 | |
*/ | |
class ArrayManipulation | |
{ | |
private $array; | |
public function __construct(array $array) |