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
mvn org.fusesource.mvnplugins:maven-graph-plugin:reactor -Dhide-external=true |
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
courtesy to https://foofish.net/https-free-for-lets-encrypt.html | |
第一步:创建 Let's Encrypt 账号 | |
openssl genrsa 4096 > account.key | |
第二步:创建域名的CSR(CERTIFICATE SIGNING REQUEST) | |
#创建普通域名私钥 | |
openssl genrsa 4096 > domain.key | |
#单个域名 | |
openssl req -new -sha256 -key domain.key -subj "/CN=foofish.net" > domain.csr |
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 https://medium.com/@giposse/scala-reflection-f5bde5fce630: | |
import javaAnnotations.{ SomethingIzable, VaporElement} | |
import scala.reflect.runtime.{universe => ru} | |
import ru._ | |
@SomethingIzable(value = “Teletransport”, level = 35) | |
case class Annotated ( | |
field1 : Integer, |
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
- Open Automator | |
- File -> New -> Quick Actions | |
- Change "Service Receives" to "files or folders" in "Finder" | |
- Add a "Run Shell Script" action | |
- Change "Pass input" to "as arguments" | |
- Paste the following in the shell script box: open -n -b "com.microsoft.VSCode" --args "$*" | |
- Save it as something like "Open in Visual Studio Code" |
OlderNewer