Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
xmatos
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
Zero-Configuration Django and React
(reactivated.io)
3 points
by
xmatos
5y ago
|
1 comments
2.
▲
by
xmatos
8y ago
AMP is not about fast websites, better user experience for either users or publishers, nor a trusted platform. It's about google hosting your site and capturing data from it. It's a shitty idea and i can't understand why peop
3.
▲
by
xmatos
8y ago
this was beautiful: Every step in a software project is solving problems. You don't know how long it will take to solve the problem. You don't know how many new problems you might run into along the way.
4.
▲
by
xmatos
8y ago
I like the idea of a tool like this, but I'm not sure it's a better process than having migration scripts. And I dislike migration scripts. To me, the perfect process would be, using an MVC web framework as an example, to generate
5.
▲
by
xmatos
9y ago
Like it or not, that enforces the beauty of GPL. I'm positively sure, if it wasn't it, linux wouldn't be in its position today. I actually prefer the LGPL, as it doesnt spread through, or "contaminate", the rest of
6.
▲
by
xmatos
9y ago
I've asked myself that many times before and I'd say it's because it's not an easy task and often you need to get things done to meet deadlines, instead of developing a general solution, that although could save time in
7.
▲
by
xmatos
9y ago
Regarding the last point, yes, that's what I'm saying. And it's not a matter of opinion, but of decades of computer engineering best practices. Your app's UX will depend on how much code runs on the client. It can vary f
8.
▲
by
xmatos
9y ago
Why use GraphQL? Why not simply expose one endpoint that takes a sql data parameter, queries the db and return the result set as json? Yes, you'd have to setup db security to allow those db commands to run only selects and restrict whi
9.
▲
by
xmatos
9y ago
Hype and lack of critical thinking abolutely had their role, but mostly because it's so much easier than a relational db. Relational db's are hard. You have schemas and query planners and the truth is, you have to take care of eve
10.
▲
by
xmatos
9y ago
GitLab's CI runs on every branch push, which I dislike, since you can push a branch that isn't ready yet for backup purposes. Although, it can be configured to automatically deploy only to staging, while having production deployme
11.
▲
Ask HN: GitLab Continuous Integration
3 points
by
xmatos
9y ago
|
1 comments
12.
▲
by
xmatos
9y ago
I love it! I owned an Atrix with a lapdock, which was the first device to embrace this concept. Unfortunately, it was poorly handled by Motorola in the sense that you had to hack it to enable a full linux desktop, instead of what was basica
13.
▲
by
xmatos
9y ago
Build tests against your app`s public interface. On a web app, that would be your controllers or API. That will give you good coverage, while avoiding too simple to be useful unit tests. It's really hard to foresee all possible input v
14.
▲
by
xmatos
9y ago
I've said it before here, but the best web app I've built was basically Django, with bare minimum js to handle in-page effects. I've been working on a project which is being ported to React for no reason, just because it'
15.
▲
by
xmatos
9y ago
I've been a web developer for 15 years now. Building the UI is always hard and where the waste of time is felt the most. That's why i prefer to work on the backend as much as i can. I'm against the front x back end split. I t
16.
▲
by
xmatos
9y ago
Amen! React might be the best tool for building hybrid mobile or even cross platform electron apps, but the truth is, it suck balls for web development. Bundling the entire website inside a single js file, that needs to be re-downloaded ev
17.
▲
by
xmatos
9y ago
...but the end result is just cover fire. The competition has no choice but to spend all their time porting and keeping up, time that they can't spend writing new features. Look closely at the software landscape. The companies that do
18.
▲
Fire and Motion
(joelonsoftware.com)
1 points
by
xmatos
9y ago
|
1 comments
19.
▲
by
xmatos
10y ago
The point of having it in a repository is not managing it through apt, but updating it without having to manually download deb files...
20.
▲
by
xmatos
10y ago
Am I the only one who misses an apt repository?
21.
▲
by
xmatos
10y ago
promising. it even has a clock widget :-) https://www.youtube.com/watch?v=EtuDS0ntaJY
22.
▲
Slack vs. Email
(zoho.com)
2 points
by
xmatos
10y ago
|
0 comments
23.
▲
by
xmatos
10y ago
Best web app I've developed was basically Django, with bare minimum JavaScript to handle some in-page effects. People been trying to shoehorn desktop concepts in the web since forever and it will never work. A desktop app is installabl
24.
▲
by
xmatos
10y ago
really? and how's that? to my understanding, data integrity is not a feature on any of them. but I asked that because I've been using redis a lot lately. I built a real-time analytics using bitmaps and I could use sorted sets to s
25.
▲
by
xmatos
10y ago
What specific features a time series database offer over mongo or redis?
26.
▲
by
xmatos
10y ago
I don't get the hate towards linode here, on hacker news. I've been their client for a couple of years now and I find it an excellent vps provider. Excellent uptime and performance at a pretty good price. AWS has a few outages eve
27.
▲
by
xmatos
11y ago
I use git hooks for my Django deployments and it couldn't be simpler. My post-receive hook look like this: #!/bin/sh dest=/var/www/myproj GIT_WORK_TREE=$dest git checkout -f $dest/manage.py collectstatic -
28.
▲
by
xmatos
11y ago
git push remote Setup the post_update git hook script to checkout to the webserver path and run django admin commands to collect static files and sync the database. You can also setup a test environment to run your tests first, before updat
29.
▲
by
xmatos
11y ago
Thanks for the suggestion! I'll work on it!
30.
▲
Show HN: Online Machine Learning System
(data-learn.com)
5 points
by
xmatos
11y ago
|
2 comments
More ›