I hereby claim:
- I am srghma on github.
- I am srghma (https://keybase.io/srghma) on keybase.
- I have a public key ASD1MDtsbC5cqzbn5RevzNhsStSznnYts4jteE43idPIAwo
To claim this, I am signing this object:
stage_ssh () { | |
ssh \ | |
root@${stage_ip} \ | |
-i ${toString ../secrets/stage_root_key} \ | |
$@ | |
} | |
state_nixos_rebuild () { | |
NIX_SSHOPTS="-i ${toString ../secrets/stage_root_key}" \ | |
nixos-rebuild \ |
```js | |
async function fetch(_ignoring) { | |
return { | |
user: { | |
username: "MyUsername" | |
} | |
} | |
} | |
async function fetchUserAndDoCalaculation() { |
I hereby claim:
To claim this, I am signing this object:
fix
function - https://github.com/NixOS/nixpkgs/blob/9f087964709174424bca681b600af8ee8e763df5/lib/fixed-points.nix#L19 , https://en.m.wikipedia.org/wiki/Fixed_point_(mathematics) , point where x = f(x) = f(f(f(f....f(x)....)))
rec { a = 1; b = a + 1; }
is the same as fix (self: { a = 1; b = self.a + 1; })
builtins.trace
- https://github.com/NixOS/nixpkgs/blob/9f087964709174424bca681b600af8ee8e763df5/lib/debug.nix#L4 trace has different flavors, http://hackage.haskell.org/package/base-4.12.0.0/docs/Debug-Trace.html#v:trace all lazy languages have trace
builtins.seq
- in lazy languages data is represented as thunks (IF data has not been yet evaluated THEN it's pointer on function that should produce this data ELSE it's pointer on data), builtins.seq
forces first layer of data to evaluate (evaluates it to WHNF?), builtins.deepSeq
is recursive variant of seq
, it forces whole data to evaluate (evaluates it to NF?), (more https://wiki.haskell.org/Seq, https://www.google.com/amp/s/amp.reddit.
builtins.scopedImport
builtins.importNative:
pkgs.package.override - res of lib.makeOverridable (used by callPackage),
overrides arguments of callPackage
https://nixos.org/nixos/nix-pills/override-design-pattern.html
pkgs.foo.override { arg1 = val1; arg2 = val2; ... }
$(".chosen-select-with-add-new").chosen({ | |
no_results_text: "Click Enter or Tab to add new option", | |
width: '100%' | |
}).parent().find('.chosen-container .search-field input[type=text]').keydown(function (evt) { | |
// get keycode | |
const stroke = evt.which != null ? evt.which : evt.keyCode; | |
// If enter or tab key | |
if (stroke === 9 || stroke === 13) { | |
const target = $(evt.target); | |
// get the list of current options |
make_dhparam: | |
openssl dhparam -out backend/dhparams.pem 2048 | |
nixops_create: | |
nixops create '<base.nix>' | |
nixops_purge: | |
nixops destroy --all | |
nixops delete --all |