This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| λ scoop.cmd list | |
| Installed apps: | |
| 7zip 18.01 | |
| adb 27.0.1 | |
| android-sdk 3859397 [extras] | |
| android-studio 3.0.1.0 [extras] | |
| ant 1.10.1 | |
| calibre 3.16.0 [extras] | |
| ccleaner 5.39.6399 [extras] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import com.intellij.database.model.DasTable | |
| import com.intellij.database.model.ObjectKind | |
| import com.intellij.database.util.Case | |
| import com.intellij.database.util.DasUtil | |
| /* | |
| * Available context bindings: | |
| * SELECTION Iterable<DasObject> | |
| * PROJECT project | |
| * FILES files helper |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [{ | |
| "name": "Priority: Low", | |
| "color": "#009800" | |
| }, | |
| { | |
| "name": "Priority: Medium", | |
| "color": "#fbca04" | |
| }, | |
| { | |
| "name": "Priority: High", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| // Use IntelliSense to learn about possible attributes. | |
| // Hover to view descriptions of existing attributes. | |
| // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "name": "Launch localhost with sourcemaps", | |
| "type": "chrome", | |
| "request": "launch", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package ecies | |
| import ( | |
| "crypto/aes" | |
| "crypto/cipher" | |
| "crypto/elliptic" | |
| "crypto/sha256" | |
| "crypto/sha512" | |
| "hash" | |
| "io" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -e | |
| cd $HOME | |
| # install zsh and tmux | |
| yum -y install git zsh tmux | |
| echo "setting antigen and zsh" | |
| curl -L git.io/antigen > /opt/antigen.zsh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # Configuration file for the CUPS scheduler. See "man cupsd.conf" for a | |
| # complete description of this file. | |
| # | |
| # Log general information in error_log - change "warn" to "debug" | |
| # for troubleshooting... | |
| LogLevel warn | |
| PageLogFormat |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # non root user example for alpine | |
| # | |
| # usage: | |
| # $ docker build --build-arg "USER=someuser" --tag test . | |
| # $ docker run --rm test | |
| FROM alpine | |
| ARG USER=default | |
| ENV HOME /home/$USER |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "name": "duplicate", | |
| "color": "ededed", | |
| "description": "This issue or Pull Request already exists" | |
| }, | |
| { | |
| "name": "help wanted", | |
| "color": "e99695", | |
| "description": "Extra attention is needed" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Main workflow | |
| on: | |
| push: | |
| branches: | |
| - raw | |
| jobs: | |
| build: |