Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
tom9729
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
by
tom9729
3y ago
It's a neat feature, but I'd be worried about it getting stuck and being unable to retract. Later model years removed the ability to retract the screen on demand, due to backup-camera laws, and the 2021-ish refresh ditched the ret
2.
▲
by
tom9729
3y ago
Anything that depends on Safedisc is also screwed because Microsoft pulled the driver for security reasons. This includes a lot of first-party stuff like Mechwarrior 4 and Freelancer. Really wish they would put those up on GOG!
3.
▲
by
tom9729
4y ago
Personally as a beginner it's nice to have GDScript built-in. You can literally install Godot as a single executable and everything is self contained which vastly simplifies getting started versus Unreal where you have to install Visua
4.
▲
by
tom9729
4y ago
The data stores are pluggable. Postgres (with PostGIS) is one option.
5.
▲
by
tom9729
4y ago
The VW CEO recently said that physical buttons would be coming back sometime this year, so you may be able to get that Golf after all. :-) https://www.carmagazine.co.uk/car-news/tech/vw-infotainment-...
6.
▲
by
tom9729
4y ago
The space wasn't necessary previously, and pasting code DID work, and then an update silently broke it and it's been like that ever since. Now you're supposed to use the formatting toolbar to insert a snippet. What a joke!
7.
▲
by
tom9729
4y ago
Teiid can also be deployed as a standalone server (see the Wildfly route). There is a JDBC driver to connect to it, and they emulate the Postgres wire protocol so you can even use psql to connect to it and run queries.
8.
▲
by
tom9729
8y ago
I think what you want is this: https://github.com/boundlessgeo/prj2epsg GeoTools (Java GIS library) has several versions of the EPSG database available as JARs and you can use the CRS class to do lookups in both direct
9.
▲
by
tom9729
10y ago
It's possible with all of the languages. Perhaps static analysis is just difficult with Python?
10.
▲
by
tom9729
10y ago
Git does support custom merge "drivers" on a per file basis. For example: https://gist.github.com/seanh/378623
11.
▲
by
tom9729
10y ago
Or just write down the latest commit (or use git reflog to find it post facto) and if you mess up, do "git reset --hard <commit>" to get back to it.
12.
▲
by
tom9729
11y ago
It wouldn't have to be a new DVCS. It could be a Rust implementation of Git. e.g. Java Git implementation (JGit) used by Eclipse, Gerrit, etc.
13.
▲
by
tom9729
11y ago
It's unfortunate that people are down-voting instead of responding to you. I'm far from an expert but it would be interesting to see what other people think here... Basic auth is insecure (i.e. sending credentials in plaintext) an
14.
▲
by
tom9729
11y ago
Managers find a way. They will just use (or invent) another tool that lets them do it how they want. Now you have two tools, and some poor schmuck (or the developers) will get stuck with the job of keeping them in sync.
15.
▲
by
tom9729
11y ago
Gitg ( https://wiki.gnome.org/Apps/Gitg/ ) looks decent, although it's Linux-only. It's like git-gui and gitk merged into a GTK3 interface. It would be cool if Atlassian would open-source their client (Sou
16.
▲
by
tom9729
11y ago
One way to get this would be to develop a Teiid translator (plugin) for Rethink. https://issues.jboss.org/browse/TEIID-3303 http://teiid.jboss.org/ The normal use case is to use the Teiid JDBC driver (
17.
▲
by
tom9729
11y ago
I'm also curious about this. It seems like the ASL drivers are a bit of a loophole. What happens if later Rethink decides to relicense their drivers as AGPL with a commercial option for businesses? Can 3rdparty drivers be ASL or is tha
18.
▲
by
tom9729
12y ago
You could use Teiid ( https://github.com/teiid/teiid ). The SQL dialect is similar to Postgres, and it has built-in translators to handle all of the popular relational databases (Postgres, Oracle, MySQL). Added bonus is
19.
▲
by
tom9729
12y ago
From the spec: "The syntax of path data is concise in order to allow for minimal file size and efficient downloads, since many SVG files will be dominated by their path data. " http://www.w3.org/TR/SVG11/
20.
▲
by
tom9729
12y ago
> Solved much more elegantly by the likes of daemontools and derivatives (s6, runit, etc.), many years before systemd. Then why is no one using them? > Hardly "new". Dependency systems in init daemons and service managers ha
21.
▲
by
tom9729
12y ago
You clearly haven't used Unity; it's basically a clone of the OS X 10.6 interface (before they changed spaces) built on top of GTK3. It's got a useful set of standard key bindings (hold SUPER for a cheat sheet). It would actu
22.
▲
by
tom9729
12y ago
Have you considered just using the open source driver?
23.
▲
by
tom9729
12y ago
Maybe proprietary isn't the right word. I don't like that the only way to do pre-commit code review is using a CLI tool that only works with Phabricator. Contrast this with the GH-style system where you use a standard Git client a
24.
▲
by
tom9729
12y ago
Shopping around for these kinds of tools recently. Phabricator looks great, but the point you mentioned is a show stopper for me. I would love to see Phabricator have GH-style code review, even if it meant dropping support for non-DVCS. Arc
25.
▲
by
tom9729
12y ago
I remember it being the case in 2007/2008. This is the closest thing I could find to a citation. http://www.codeproject.com/Articles/4439/Getting-started-wit... "To create a new project you simply regist
26.
▲
by
tom9729
12y ago
http://regex101.com/ is (I think) a really nice way to learn/use regex. It explains each piece, displays capture groups from the regex applied to sample data, and has built-in documentation. Simple example: http:/
27.
▲
by
tom9729
12y ago
Problem is that not everyone agrees on what that means, or if that is a good thing. Gnome is getting less and less extensible, while KDE is almost too extensible. LXDE is focused on low resource usage, and I'm not sure what XFCE's
28.
▲
by
tom9729
12y ago
PunkBuster (used by many games including Battlefield) does this as well.
29.
▲
by
tom9729
12y ago
Isn't GitHub Enterprise self hosted? I'd imagine the main reason to go with GitLab is that it's free. GitHub Enterprise costs more than Stash (although it offers more).
30.
▲
by
tom9729
12y ago
Explanation here: https://answers.atlassian.com/questions/106359/stash-bitbuck... Edit: Well, sorta. It sounds like Atlassian bought BitBucket but ended up rewriting it as a standalone product (instead of SaaS).
More ›