This file contains 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
{ | |
"tables": [ | |
{ | |
"title": [ | |
"Application Data Driven Events Summary: Exception Requests", | |
"System Name: RSA Archer GRC Version: 6.4.00200.1032", | |
"9/20/2018" | |
], | |
"info": { | |
"Application Name": "Exception Requests", |
This file contains 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
https://press.one/p/address/v?s=43db63b18a5592a3f955ef638bd8d247d7315e1e33d2b21bed8d4d91e45f8ed37518a0e7ec1ac83858dcb470311e18223dac5c8df23c698e3dda207186af54421&h=06ca22c7639b002267255305b79b5ad50b794cb561968cb3694e0d6ebeeb28e8&a=7ac6a4535e1726dd6eec4f952359dcee725017f1&f=P1&v=2 |
This file contains 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
#To Get List of Hardware | |
sudo networksetup -listallhardwareports | |
#To Disable IPv6 on Wifi Adapter | |
sudo networksetup -setv6off wi-fi | |
#To Disable IPv6 on Built-in Ethernet Adapter | |
sudo networksetup -setv6off Ethernet |
This file contains 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
sudo add-apt-repository "deb http://archive.canonical.com/ $(lsb_release -sc) partner" | |
sudo apt-get update | |
sudo apt-get install skype | |
sudo apt-get install build-essential libssl-dev | |
curl https://raw.githubusercontent.com/creationix/nvm/v0.25.0/install.sh | bash | |
关掉terminal,重新打开才能使用nvm命令 |
This file contains 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
FROM nowind/ubuntu_js_frontend:v0.12.9 |
This file contains 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
FROM codenvy/ubuntu_jdk8 |
This file contains 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
# migrating from https://github.com/robbyrussell/oh-my-zsh/blob/master/plugins/git/git.plugin.zsh | |
# Aliases | |
alias g='git' | |
#compdef g=git | |
alias gst='git status' | |
#compdef _git gst=git-status | |
alias gd='git diff' | |
#compdef _git gd=git-diff | |
alias gdc='git diff --cached' |
This file contains 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
王小红 | |
王小绿 | |
王小白 | |
王小紫 | |
王小青 | |
王小黑 | |
张飞 | |
张跑 | |
张跳 | |
张爬 |
This file contains 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 monocle.macros.Lenses | |
import language.higherKinds | |
@Lenses("_") case class Street(name: String) | |
@Lenses("_") case class Address(street: Street) | |
@Lenses("_") case class Company(addresses: Seq[Address]) | |
@Lenses("_") case class Employee(company: Company) | |
object ILens { | |
val employee = Employee(Company(Seq( |
This file contains 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
FILE SPACING: | |
# double space a file | |
sed G | |
# double space a file which already has blank lines in it. Output file | |
# should contain no more than one blank line between lines of text. | |
sed '/^$/d;G' |
NewerOlder