I hereby claim:
- I am phryneas on github.
- I am phryneas (https://keybase.io/phryneas) on keybase.
- I have a public key whose fingerprint is 8331 9323 EF6D 1C7E 8835 59A1 D8C4 AE56 B76C 94DD
To claim this, I am signing this object:
| # Baseed on previous attempts of others: https://github.com/NixOS/nixpkgs/issues/41189 | |
| { lib, vscode-utils, autoPatchelfHook, bash, file, makeWrapper, dotnet-sdk | |
| , curl, gcc, icu, libkrb5, libsecret, libunwind, libX11, lttng-ust, openssl, utillinux, zlib | |
| , enableDiagnosticsWorkaround ? false, gccStdenv | |
| }: | |
| with lib; | |
| let | |
| # https://docs.microsoft.com/en-us/visualstudio/liveshare/reference/linux#install-prerequisites-manually |
| {pkgs, lib, config, ...}: | |
| with lib; | |
| let | |
| liveshareGist = builtins.fetchTarball { | |
| url = "https://gist.github.com/phryneas/698996d24748d3ce7f61ef818949a28e/archive/3dbf12cd282ebcb6cacf40d466e4a519d4ce1dfe.tar.gz"; | |
| sha256 = "0mas9rnr6hn7yiivjs5xvnprhrqwac47nqfxh3vgmm67v982v83l"; | |
| }; | |
| livesharePkg = pkgs.callPackage liveshareGist {}; | |
| cfg = config.services.vsliveshare; | |
| pkg = livesharePkg.override { enableDiagnosticsWorkaround = cfg.enableDiagnosticsWorkaround; }; |
| { stdenv, runCommand, electron, callPackage, | |
| bash, python, jq, nodejs-8_x, node? nodejs-8_x, neovim, ripgrep, xorg, | |
| ...}: | |
| let | |
| yarn2nix = callPackage ( builtins.fetchTarball { | |
| url = "https://github.com/phryneas/yarn2nix/archive/8a6b9dcf7cef8840eb7bc64d7639bad566af2e9d.tar.gz " ; | |
| sha256 = "0ih11vcd9ad5y13877bxz7ijsykhqwdfwmvwhic3xlgcdhxji80v"; | |
| }) {}; | |
| version = "v0.3.6"; | |
| oniSrc = builtins.fetchTarball { |
| { config, pkgs, ... }: | |
| { | |
| imports = | |
| [ | |
| ./hardware-configuration.nix | |
| # use zfs from current master instead of nixos bundled versoin | |
| ./zfs-master.nix | |
| ]; |
I hereby claim:
To claim this, I am signing this object:
| { | |
| "name": "demo-redux", | |
| "version": "1.0.0", | |
| "description": "", | |
| "main": "thunk.js", | |
| "scripts": { | |
| "test": "echo \"Error: no test specified\" && exit 1" | |
| }, | |
| "keywords": [], | |
| "author": "", |
run
./generate.shell
| /** | |
| * @property {boolean} synchronousCalls | |
| * @property {string} instanceName | |
| */ | |
| class BgCallExample { | |
| /** | |
| * @param {boolean} synchronousCalls | |
| * @param {string} instanceName | |
| */ |
| ########## | |
| # Tweaked Win10 Initial Setup Script | |
| # Primary Author: Disassembler <[email protected]> | |
| # Original Version: 1.4, 2016-01-16 | |
| # Tweaked based on personal preferences for @alirobe 2016-03-23 - v1.4.1 | |
| # NOTE: MAKE SURE YOU READ THIS SCRIPT CAREFULLY BEFORE RUNNING IT + ADJUST COMMENTING AS APPROPRIATE | |
| # This script will reboot your machine when completed. | |
| ########## | |
| # Ask for elevated permissions if required |