- Item number 1
- Item number 2
- Item number 1
- This also uses
1.
, but will render as2.
- This is also
1.
, but will render as3.
MEM | tot 94.3G | free 9.2G | cache 5.4G | dirty 18.1M | buff 15.1M | slab 75.7G | slrec 75.5G | shmem 4.1G | shrss 0.0M | shswp 0.0M | |
me at node1 in ~ | |
strace -fc -e trace=access curl 'https://foobar.booking.com/' > /dev/null | |
Process 2390 attached | |
% time seconds usecs/call calls errors syscall | |
------ ----------- ----------- --------- --------- ---------------- | |
100.00 0.003180 0 6647 6643 access | |
------ ----------- ----------- --------- --------- ---------------- | |
100.00 0.003180 6647 6643 total | |
while (true); do | |
echo "$graphite_name_space.$(hostname|sed -e 's/\./_/g').dentry $(sudo slabtop -o | egrep 'dentry'|awk '{print $1}') $(date '+%s')"| nc 127.0.0.1 3002; | |
sleep 0.9; | |
done |
me at node1 in ~ | |
NSS_SDB_USE_CACHE=YES strace -fc -e trace=access curl 'https://foobar.booking.com/' > /dev/null | |
Process 14247 attached | |
% time seconds usecs/call calls errors syscall | |
------ ----------- ----------- --------- --------- ---------------- | |
100.00 0.000009 0 32 30 access | |
------ ----------- ----------- --------- --------- ---------------- | |
100.00 0.000009 32 30 total |
me at node1 in ~ | |
NSS_SDB_USE_CACHE=YES strace -fc -e trace=access curl 'https://foobar.booking.com/' > /dev/null | |
Process 14247 attached | |
% time seconds usecs/call calls errors syscall | |
------ ----------- ----------- --------- --------- ---------------- | |
100.00 0.000009 0 32 30 access | |
------ ----------- ----------- --------- --------- ---------------- | |
100.00 0.000009 32 30 total |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>test</title> | |
</head> | |
<body> | |
<style> |
function npm_update() { | |
for package in $(npm -g outdated --parseable --depth=0 | cut -d: -f2) | |
do | |
npm -g install "$package" | |
done | |
} |
git branch --no-color | while read sha ref; do | |
git branch -D $sha | |
done |
// or even better: https://blog.risingstack.com/mastering-async-await-in-nodejs/ | |
// https://github.com/iagodahlem/clima-cli/blob/master/src/utils/weather.js | |
// https://github.com/axios/axios | |
async function f() { | |
let result = await e(1500); | |
let output = await d(result); |