John Michael Reed

Results 17 comments of John Michael Reed

This is the same issue from Oct 24: https://github.com/microsoft/TypeScript-Node-Starter/issues/243

I tried updating it to this for the gsdk theme: ``` // @import "themes/default/variables"; @import "lib/bootstrap/bootstrap"; @import "lib/font-awesome/font-awesome"; @import "themes/gsdk/gsdk"; ``` I did `npm run build-sass` before `npm run build...

@YasharF I want to use literally any theme that isn't the default because the default looks bad. I cannot get any non-default theme to work. Is there any way you...

Full Question: https://serverfault.com/questions/944292/how-do-i-do-traceroute-tracepath-without-any-admin-privileges

I think that what's actually happening is it is doing ``` toString("omg" -> "omg"); ("omg" -> "omg") ```

I am not considering it for myself right now, but in general, for software that I use, I prefer to have less restrictions.

> "sourcecode.Text[T]: when you want to take a value of type T, but also want to get the "source text" of that particular value. Note that if you have multiple...

Hey Gaullaume, I was wrong about the source code. Check this out: case class Text[T](value: T, source: String) object Text{ implicit def generate[T](v: T): Text[T] = macro Impls.text[T] def apply[T](v:...

I solved the problem. ``` val fooVar = "foo" val barVar = "bar" Debug.traceCode{fooVar + barVar} // "(fooVar + barVar) -> foobar" in thread run-main-0: Debug.traceCode({fooVar + barVar}, 3) Debug.traceStackCode{fooVar...

Also, I want to make my Google Vision API calls from my node.js server. If you can figure out a way for me to do that (without doing say a...