Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
AtNightWeCode
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
7 ms
·
151.
▲
by
AtNightWeCode
1y ago
This is 100% incorrect.
152.
▲
by
AtNightWeCode
1y ago
I have not looked at those formats but take docx for example. That structure is complicated because the layout needs to be described and editable.
153.
▲
by
AtNightWeCode
1y ago
PDF is a format for preserving layouts across different platforms when viewing and printing. It is not intended for data processing and so on. I don't see why a structured document format can't exist that simplifies processing and
154.
▲
by
AtNightWeCode
1y ago
The problem for me is to predict what AI might get wrong. Claude can solve hard coding problems one day just to fail with basic stuff like thread safety the next. But overall I think it is clear that we reached the point where AI, if used c
155.
▲
by
AtNightWeCode
1y ago
It is a plague across the whole industry. The format in this case is highly influenced by how one corp designed their own products. Multiple document formats have this problem. But you can also find the exact same thing in PCI DSS and other
156.
▲
by
AtNightWeCode
1y ago
Ok, I see. Thanks.
157.
▲
by
AtNightWeCode
1y ago
Not sure about CF but a lot of corps report to https://www.abuseipdb.com . So it is not hard to get the IPs of attackers.
158.
▲
by
AtNightWeCode
1y ago
I never seen IPv6 used for origins in CF. Why do you need that?
159.
▲
by
AtNightWeCode
1y ago
Name one big US cloud provider or similar that is not ISO 27001 compliant.
160.
▲
by
AtNightWeCode
1y ago
I might be out of date but. I think the article is incorrect. It is the same corp that owns both the streaming rights and the ISPs. The court order allows those ISPs to block IP-addresses of sites that hosts illegal streaming. I find it har
161.
▲
by
AtNightWeCode
1y ago
Entire Amazon AS-numbers are sometimes blocked so CloudFront consumers have the same issue. The thing with CF is the scale. They are really big and that is why it gets noticed. When it comes to Akamai they don't have shady customers in
162.
▲
by
AtNightWeCode
1y ago
Well, it is a point. But also remember the horrors of the monoliths he made. Like in Quake (123?) where you have hacks like if level name contains XYZ then do this magic. I think the conclusion might be wrong.
163.
▲
by
AtNightWeCode
1y ago
Google has always been hostile towards indiedevs but they have become complete garbage. They do things like removing apps because they have "banned" keywords in the naming. Apps that been around for +5 years. Or you have to comply
164.
▲
by
AtNightWeCode
1y ago
Impossible. Speed option may do things like loop unrolling, function inlining and today even way more complicated things than that and therefor creates larger binaries.
165.
▲
by
AtNightWeCode
1y ago
Agree with this. But not what I concluded from OP. Architectural decisions from the start is where most optimizations should happen. I remember from school some kids that did this super optimized loop and the teacher said. Do you really hav
166.
▲
by
AtNightWeCode
1y ago
Agree. A classic example is compilers that let you choose between optimizing for speed or binary size. But a smaller sized binary is sometimes faster.
167.
▲
by
AtNightWeCode
1y ago
Yeah, but the problem as I see it is not to renew the certs. Some systems becomes unstable or needs to reboot during installation of new certificates. I worked on systems where it takes hours to install and use new certificates.
168.
▲
by
AtNightWeCode
1y ago
Github Actions are simple things for tasks. I do btw also not like them. But, there are so many red flags in this post. Clearly this corp does not know how to build, test and release professional software.
169.
▲
by
AtNightWeCode
2y ago
Thought it was strange that X got hit when they are using Cloudflare. Not much competence left at X I guess. What more have they done? No encryption between CF and origins? The hackers can probably just launch a new attack from CF. Not lik
170.
▲
by
AtNightWeCode
2y ago
Preteen girls using peeling skin cream is a thing where I live. It causes skin damage. Tiktok bs.
171.
▲
by
AtNightWeCode
2y ago
So to mostly prevent this. Disable direct IP access. Use wildcard certificates. Don't use guessable subdomains like www or mail.
172.
▲
by
AtNightWeCode
2y ago
Assuming this is not direct traffic to your IP people will say it is because of TLS logs. Maybe it is in your case. But if you spin up a CF worker on a subdomain to it you will also get hit by traffic immediately. And those certificates are
173.
▲
by
AtNightWeCode
2y ago
Jesus. The problem is not WHERE 1=1. It is WHY people do it. People do it because they then in Python, JS or whatever can easily add conditions. Like QUERY + "AND x='blabla'". There is the problem. Every time you create
174.
▲
by
AtNightWeCode
2y ago
Not sure I get this. But I think it does matter since you understand why people do it to begin with. I worked on two enterprise solutions over the last couple of years that have this exact problem. That people are using WHERE 1=1 and then
175.
▲
by
AtNightWeCode
2y ago
Both columns needs the correct type of index. The best thing to do is to use a tool that scans for missing indexes.
176.
▲
by
AtNightWeCode
2y ago
No, because nobody needs to run anything on WS. Even we people that build stuff for Azure avoids WS. The whole claim is just stupid.
177.
▲
by
AtNightWeCode
2y ago
I think this is the most desperate and pathetic claim for a long time. I mean, it's Google. Google is a dead company. They destroyed the only hand that feeds them. The search engine. They did this on purpose to increase the number of s
178.
▲
by
AtNightWeCode
2y ago
Read my other comments. I worked with SQL on and off since the last century. It has nothing to do with your poor assumptions.
179.
▲
by
AtNightWeCode
2y ago
A common mistake I see is that people think foreign keys will automatically create indexes. Missing indexes is a general problem in SQL. Missing indexes on columns that are in foreign keys are even worse.
180.
▲
by
AtNightWeCode
2y ago
You can motivate it with the same reasons as trailing commas. Making code reviews easier since changes to WHERE statements does not effect other lines. But if the reason is, as in this case to be able to add dynamic conditions. You will for
More ›