If VS Code is written in HTML/CSS/JS wouldn't it be possible to use it without devmode on Chromebook?
Oh, I just found a issue for that: https://github.com/Microsoft/vscode/issues/1031
HN user
If VS Code is written in HTML/CSS/JS wouldn't it be possible to use it without devmode on Chromebook?
Oh, I just found a issue for that: https://github.com/Microsoft/vscode/issues/1031
I should've done the same. After 8 months of having it it still has a lot of very weird issues. I hoped Dell would somehow fix it with a firmware update but nope... everything is still the same.
Which version? I've got XPS 13 9350 and it's been a constant pain. Boot time is very slow [0], bluetooth connectivity is weak, I've got constant graphic glitches when on battery. Latest update of the video driver introduced annoying coil noise, I had to downgrade. Actually I have two XPS 13s at home and both of them have some issues.
I'm also using Dell Thunderbold Dock TB15 and it drops video output and USB connections after 3h (because of heat) [1].
Of course I've got everything updated.
I had an excellent experience with XPS 12 years ago but this 9350 is constantly driving me crazy. I would certainly not recommend it.
[0] http://en.community.dell.com/support-forums/laptop/f/3518/p/...
[1] http://en.community.dell.com/support-forums/laptop/f/3518/p/...
Something like this https://github.com/google/git-appraise ?
Not the parent but I'm using it to stage sections of the file and then revert everything that is not staged. For example all logging statements. Or use staging as a mini commit. It's sometimes easier to look at the diff and stage what you consider to be working code without introducing commits. That of course could also be done with committing and then squashing but that's more work :)
This is by far the most interesting scheme in this entire thread!
How do your software components authenticate to each other? With client certificates?
Exactly but not for all surnames. See: https://www.quora.com/Is-it-true-that-in-Russian-culture-a-w...
Reminds me of RancherOS that also have Docker running as PID 1: https://github.com/rancher/os#how-this-works
Cool! Reminds me of https://github.com/kanaka/miniMAL
Yep. Not long ago a remote code execution hole in Java was found. Fortunately Jenkins was quickly patched: https://jenkins-ci.org/content/mitigating-unauthenticated-re...
Probably the same way that git handles author and committer fields see: https://news.ycombinator.com/item?id=10005577
What's interesting is that this project seems to be using itself for code review.
Clone the repo and then fetch notes manually:
git fetch origin refs/notes/*:refs/notes/*
After installing it through "go get" check existing code reviews with "git appraise list".There are notes from Jenkins and comments from developers as far as I can see.
Seems to be a little bit slow on my computer but the idea is really brilliant.
See also something similar using Bitcoin: http://eternitywall.it/
Wow, excellent! I've been looking for lightweight websockets pubsub and had to create something simple in Node to achieve it but this would've sufficed.
I can't wait to give it a try.
Unfortunately most of the material on ChatOps currently covers only how to get Hubot to display cat pictures or other trivia [1]. Maybe it's because each company should create their own "chat API" but I'd also like to hear some real, inside "war stories".
Does anyone knows what app does GitHub use for chats? Looks like a simple and elegant UI over Basecamp.
TLS is not strictly mandatory in HTTP/2 (see h2c) but even if it was this list solves another problem - when user types e.g. Google.com in their browser the initial connection is made via HTTP. Preload list says "if this domain is typed in address bar go straight to HTTPS, if that's not possible stop the connection".
Then the attacker could just block the update servers.
Thanks!
Would you mind sharing which XMPP client do you use?
Why the funky name?
Since all the good ones are taken. Comes from the loose association of ideas across coverage, carpet-area coverage, the country that makes good carpets and so on...
Wow, I didn't know about it! That's a shame it was removed - I couldn't find a site to test it or the issue in Chromium tracker about removing it though.
More information: https://code.google.com/p/chromium/issues/detail?id=50874
And in Mozilla Wiki: https://wiki.mozilla.org/Security/DNSSEC-TLS-details
Use this syntax, IMHO it's a LOT more readable:
define(function(require) {
var $ = require('jquery'),
Handlebars = require('handlebars'),
Backbone = require('backbone'),
MyModel = require('mymodel'),
MyControllerAnimals = require('mycontrolleranimals');
Also require.js comes with an optimizer that automatically concatenates all required files (and no more!) minifies them and you don't have to worry about script order. Also using the text plugin you can package templates (text files) along with the rest of the scripts.Yep, that's the same editor (Monaco). This can be easily verified by checking the HTML.
Interesting that this snippet:
func (g *Gopher) DumpBinary(w io.Writer) error {
err := binary.Write(w, binary.LittleEndian, int32(len(g.Name)))
if err != nil {
return err
}
_, err = w.Write([]byte(g.Name))
if err != nil {
return err
}
err = binary.Write(w, binary.LittleEndian, g.Age)
if err != nil {
return err
}
return binary.Write(w, binary.LittleEndian, g.FurColor)
}
could be written like this: func (g *Gopher) DumpBinary(w io.Writer) {
binary.Write(w, binary.LittleEndian, int32(len(g.Name)))
w.Write([]byte(g.Name))
binary.Write(w, binary.LittleEndian, g.Age)
binary.Write(w, binary.LittleEndian, g.FurColor)
}
if the language supported exceptions.Very similar to this extension: https://chrome.google.com/webstore/detail/tab-focused/mhdlja... (except the permissions)