I hereby claim:
- I am fauverism on github.
- I am fauverism (https://keybase.io/fauverism) on keybase.
- I have a public key ASBIZtf_awSytO3Z8Nwu-K4b6dSHvk09NTLyBcLtsK-9XQo
To claim this, I am signing this object:
#!/bin/bash | |
iatest=$(expr index "$-" i) | |
####################################################### | |
# SOURCED ALIAS'S AND SCRIPTS BY zachbrowne.me | |
####################################################### | |
# Source global definitions | |
if [ -f /etc/bashrc ]; then | |
. /etc/bashrc |
I hereby claim:
To claim this, I am signing this object:
git log --graph --full-history --all --color --pretty=format:"%x1b[31m%h%x09%x1b[32m%d%x1b[0m%x20%s" |
str = JSON.stringify(obj); | |
str = JSON.stringify(info, null, 4); | |
console.log(str); |
Type ("_" is the cursor position): | |
html:5_ | |
Then type <c-y>, (Ctrly,), and you should see: | |
<!DOCTYPE HTML> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title></title> |
_.compact(array) | |
# Ⓢ Ⓝ | |
Creates an array with all falsey values removed. The values false, null, 0, "", undefined, and NaN are falsey. | |
Arguments | |
array (Array): The array to compact. | |
Returns | |
(Array): Returns the new array of filtered values. |
val = moment(val, "YYYY-MM-DD").format('L'); | |
val = new Date(val); |
JS | |
$scope.options = [{ name: "a", id: 1 }, { name: "b", id: 2 }]; | |
$scope.selectedOption = $scope.options[1]; | |
HTML | |
<select data-ng-options="o.name for o in options" data-ng-model="selectedOption"></select> |
<ul> | |
<li ng-repeat="(key,val) in data">{{key}}: {{val}}</li> | |
</ul> |
chrome://net-internals tool in Chrome. | |
Just type that in the address bar and hit enter. | |
Then open the page that is showing problems. Then go back to net-internals, | |
click on events (###) and use the textfield to find the event related to your resource (use parts of the URL). | |
Finally, click on it and see if the info shown tells you something. |