I hereby claim:
- I am fullkomnun on github.
- I am fullkomnun (https://keybase.io/fullkomnun) on keybase.
- I have a public key ASBjHkwxbFrgXHFFR7inDXyp3_4T9QoHzVtYISH0KBJk2wo
To claim this, I am signing this object:
| program example_program1.aleo { | |
| mapping data_map: address => u8; | |
| // transition is executed off-chain | |
| async transition save_sum(private a: u8, private b: u8) -> (u8, Future) { | |
| let sum: u8 = a + b; | |
| return (sum, finalize_save_sum(self.caller, sum)); | |
| } | |
| // finalize is executed on-chain |
| { | |
| "config": { | |
| "chainId": 59000, | |
| "homesteadBlock": 0, | |
| "eip150Block": 0, | |
| "eip155Block": 0, | |
| "eip158Block": 0, | |
| "byzantiumBlock": 0, | |
| "constantinopleBlock": 0, | |
| "petersburgBlock": 0, |
| #!/usr/bin/env sh | |
| find_up() { | |
| path=$(pwd) | |
| while [ "$path" != "" ]; do | |
| if [ -f "$path/$1" ]; then | |
| echo "$path/$1" | |
| return 0 | |
| elif [ -d "$path/.git" ] || [ -f "$path/pnpm-workspace.yaml" ]; then # stop at Git root or pnpm workspace root | |
| break |
| set zoomAppName to "zoom.us" | |
| tell application zoomAppName to quit | |
| repeat | |
| tell application "System Events" | |
| if zoomAppName is not in (name of application processes) then exit repeat | |
| end tell | |
| do shell script "sleep 0.5" | |
| end repeat | |
| set iriunAppName to "IriunWebcam" | |
| tell application iriunAppName to quit |
| # OpenAPI Generator Ignore | |
| # Generated by openapi-generator https://github.com/openapitools/openapi-generator | |
| # Use this file to prevent files from being overwritten by the generator. | |
| # The patterns follow closely to .gitignore or .dockerignore. | |
| # As an example, the C# client generator defines ApiClient.cs. | |
| # You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line: | |
| #ApiClient.cs |
I hereby claim:
To claim this, I am signing this object:
| # There are times when you want to ignore files that are already managed with Git locally. | |
| # This can be achieved using `git update-index` command. | |
| # For ignoring entire paths recursively, one can use the following commands: | |
| git ls-files -z <path> | xargs -0 git update-index --skip-worktree | |
| git ls-files -z <path> | xargs -0 git update-index --assume-unchanged | |
| # Aliases can be created to ease usage: | |
| # checks for any files flagged w/ --skip-worktree alias |
There are times when you want to ignore files that are already managed with Git locally.
This can be achieved using git update-index command.
For ignoring entire paths recursively, one can use the following commands: $ git ls-files -z | xargs -0 git update-index --skip-worktree $ git ls-files -z | xargs -0 git update-index --assume-unchanged
Aliases can be created to ease usage:
check="git ls-files -v|grep '^S'"
| FROM fabric8/java-centos-openjdk8-jdk | |
| LABEL maintainer=fullkomnun | |
| ENV SOFTHSM2_CONF=/etc/softhsm2.conf | |
| USER root | |
| RUN set -xe; \ | |
| yum update -y && \ |
| # mount the drive as read/write | |
| mount -rw / | |
| # create a directory for "disabled" extensions | |
| mkdir /Volumes/Macintosh\ HD/Library/ExtensionsDisabled | |
| # view files that exist in your Extensions folder but not the recovery partition | |
| kexts=`comm -23 <(ls /Volumes/Macintosh\ HD/Library/Extensions|sort) <(ls /Library/Extensions|sort)` | |
| echo $kexts | |