Skip to content

Instantly share code, notes, and snippets.

@hitme
hitme / module-graph.sh
Created April 11, 2018 01:58 — forked from meeuwer/module-graph.sh
Generate Maven module dependency graph for a project
mvn org.fusesource.mvnplugins:maven-graph-plugin:reactor -Dhide-external=true
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
@hitme
hitme / scala-annotations
Created May 10, 2019 04:53
scala-annotations
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,
@hitme
hitme / Mac OS X: Open in Visual Studio Code
Last active April 14, 2020 07:44 — forked from tonysneed/Mac OS X: Open in Visual Studio Code
Add a command to Finder services in Mac OSX to open a folder in VS Code
- 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"