I hereby claim:
- I am kapolos on github.
- I am kapolos (https://keybase.io/kapolos) on keybase.
- I have a public key ASBE3YtHhBg3zvxX8kBZmaB84DreRxEop7nGC01VSL1miAo
To claim this, I am signing this object:
/** | |
* Recursively flattens an array | |
* | |
* @param array $arr | |
* | |
* @return array | |
*/ | |
function flatten(array $arr) | |
{ | |
$recursiveIterator = new RecursiveArrayIterator($arr); |
/** | |
* Checks if the sum of any 2 values of the array equals to $sum | |
* Assumes a non-associative array with numeric values | |
* | |
* @param array $arr | |
* @param integer $sum | |
* | |
* @return bool | |
*/ | |
function checkSumExists(array $arr, $sum) |
<?php | |
/** | |
* Returns an array with each position filled with the product of all | |
* elements of the original array except for the one on the respective position | |
* | |
* @param array $arr | |
* | |
* @return array | |
*/ |
<?php | |
class SingleLinkedListNode | |
{ | |
public $value, $next; | |
public function __construct($value = NULL) | |
{ | |
$this->value = $value; | |
} |
I hereby claim:
To claim this, I am signing this object:
Given //site/variable
, what are the steps to resolve the template & content.
The priority is from higher to lower. Once a match is found, the chain breaks.
variable
is a hardcoded url (like the footer links, about page, login page etc.)variable
into its parts (e.g. ["inner-circle", "special-reports"]
)Given //site/variable
, what are the steps to resolve the template & content.
The priority is from higher to lower. Once a match is found, the chain breaks.
variable
is a hardcoded url (like the footer links, about page, login page etc.)variable
into its parts (e.g. ["inner-circle", "special-reports"]
)#!/usr/bin/env bash | |
set -e | |
git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.14.0 | |
echo '. "$HOME/.asdf/asdf.sh"' >> ~/.bashrc | |
echo '. "$HOME/.asdf/completions/asdf.bash"' >> ~/.bashrc | |
source ~/.bashrc | |
asdf plugin add bun |