I hereby claim:
- I am jeremytregunna on github.
- I am jer (https://keybase.io/jer) on keybase.
- I have a public key whose fingerprint is 5C6A A4DF 33A2 3BBE 82E2 50A8 1278 B36B A6F5 D5E4
To claim this, I am signing this object:
| SERVER ID IMAGE ZONE CREATED STATUS PORTS NAME COMMERCIAL TYPE | |
| ea26208b Ubuntu_Xenial_16_04_lates par1 36 hours running 51.15.X.Y proxy0 VC1S | |
| 208338ad Ubuntu_Xenial_16_04_lates par1 36 hours running master1 C2S | |
| 2c4a87b0 Ubuntu_Xenial_16_04_lates par1 36 hours running master2 C2S | |
| f6af16b4 Ubuntu_Xenial_16_04_lates par1 36 hours running master0 C2S | |
| 99b83c2e Ubuntu_Xenial_16_04_lates par1 36 hours running proxy1 VC1S | |
| 978d2833 Ubuntu_Xenial_16_04_lates par1 36 hours running |
| SERVER ID IMAGE ZONE CREATED STATUS PORTS NAME COMMERCIAL TYPE | |
| ea26208b Ubuntu_Xenial_16_04_lates par1 36 hours running 51.15.217.107 proxy0 VC1S | |
| 208338ad Ubuntu_Xenial_16_04_lates par1 36 hours running master1 C2S | |
| 2c4a87b0 Ubuntu_Xenial_16_04_lates par1 36 hours running master2 C2S | |
| f6af16b4 Ubuntu_Xenial_16_04_lates par1 36 hours running master0 C2S | |
| 99b83c2e Ubuntu_Xenial_16_04_lates par1 36 hours running proxy1 VC1S | |
| 978d2833 Ubuntu_Xenial_16_04_lates par1 36 hours running |
| <student> Yes I am | |
| <ZipCPU> You asked a question on ##verilog some time ago, and then left before I noticed and answered the question. | |
| <ZipCPU> I wanted to make certain you were on line before I commented on any of your issues. | |
| <ZipCPU> Further, because the ##fpga discussion is struggling to handle about 3 topics at once, I thought it might be simpler to leave the discussion channel. | |
| <student> Yea that's right, I left before receiving any answers, I waited a lot but none answered. | |
| <ZipCPU> You were asking some fascinating questions on ##fpga. | |
| <ZipCPU> May I try my hand at answering any of them? | |
| <student> Yea sure, I would be too thankful for that as I'm starting my way in digital design and I have multiple issues that I didn't find answer on edaboard forums, and IRC as well! | |
| <ZipCPU> So ... I started digital design in earnest almost two years ago. In many ways, I'm a newbie. On the other hand, I do have a graduate degree in computer engineering, so ... I might know a thing or two ... | |
| <ZipCPU> At one time, |
| export PASS_RECIPIENT="you@your-gpg-identity.com" | |
| export PASS_HOME=$HOME/.secret-or-some-other-place-you-want-to-keep-the-files |
| mappings in Universal ++= contentOf("data") | |
| dockerfile in docker := { | |
| val appDir: File = stage.value | |
| val targetDir = "/app" | |
| new Dockerfile { | |
| from("openjdk:latest") | |
| entryPoint(s"$targetDir/bin/${executableScriptName.value}") | |
| copy(appDir, targetDir) |
| precedencegroup BindingPrecedence { | |
| associativity: left | |
| lowerThan: DefaultPrecedence | |
| higherThan: TernaryPrecedence | |
| } | |
| infix operator |>: BindingPrecedence | |
| public func |>(f1: @escaping Filter, f2: @escaping Filter) -> Filter { | |
| return { image in | |
| f2(f1(image)) |
I hereby claim:
To claim this, I am signing this object:
| LogLevel | |
| Log := Object clone do( | |
| with := method(file, | |
| logger := Log clone | |
| logger logfile := file | |
| logger logfile openForUpdating | |
| return logger | |
| ) | |
Unfortunately, xcode does not yet have support for importing OSX crash logs and symbolizing them. Therefore, you must use the command line and a little bit of manual work.
| protocol Fooable { var x: Int { get } } | |
| class Foo: Fooable { lazy var x: Int = { return 42 }() } | |
| let f = Foo() // No error here |