Hacker News new | past | comments | ask | show | jobs | submit | mrlucax's comments login

All WFM (Brazil).


Our credit card invoice system shifted all invoices that were due 28th to the 29th of February. Still trying to figure out what happened.


Are they monthly invoices? Most billing systems will bill monthly recurring bills that have an anniversary of 28, 29, 30, or 31 on Feb 28. Maybe your system was actually doing the right thing and putting only 29, 30, and 31 on Feb 29.


Yes! It's anniversary based. What went wrong actually was the notification part. As Feb 29 was not an expected anniversary, it didn't schedule any notification to be sent.


Hi! Someday, I feared Pocket [1] would disapear and I would suddenly lose all links I saved there. So I made pouch [2]. It let's you save links and, if possible, automatically saves the text, for a reading mode.

I never showed it publicaly, so I'm the only user. Fell free to use it and I'm open to any feedback.

Mind you I'm a backend dev, so in terms of design and overall frontend quality it is definitely lacking.

[1] https://getpocket.com/pt/

[2] https://pouch.lucashmsilva.com/



The Gamer Nexus reviews are independent and extremely methodical and honest. It's by far the best PC components reviewer on YouTube right now.


YouTube is almost completely useless for reviews. You can't scroll the video, meaning you have to watch almost all of it to realize they're actually not evaluating the metrics you are interested in. One would think a video would make it harder for a reviewer to just parrot official PR, but alas...

The only time I ever find a YouTube review of interest is when e.g you are actually showing some physical characteristic of the product, which is almost never the case for PC components, but maybe the case in some portable devices (tablet PCs come to mind). Notice that on these types of physical aspect reviews the reviewer himself doesn't appear at all on the video. In most PC components "video reviews" you are simply staring at the face of the reviewer. They could literally do without the video at all (save for a couple of still images where tables are presented) and would still be as informative, if not more. Some could even do without the audio...


Have you actually looked at the GN reviews or are you just assuming this... I agree that text would be nicer to have but man. Also there's chapters now at least, so if you don't care about the analysis you can just jump to the numbers.


> so if you don't care about the analysis you can just jump to the numbers.

I really disagree. See for example https://www.youtube.com/watch?v=VtVowYykviM . Does he measure idle power consumption ? It's impossible to tell from the chapter names. (Spoiler: he doesn't). Also whether he compares the performance of the 7900 sans X with the 7900X at similar power levels (Spoiler: he does, albeit only for 7950X and a minority of the benchmarks.) This is a video which is supposed to be about power efficiency, so it catches my attention; but most of it is about runtime benchmarks with only a couple power/efficiency comparisons early on. And after watching the full video, I cannot think of anything about the visuals that helped made his point clearer. A simple plain page with a couple of tables would have been at least as much helpful, or even more helpful, since it would have been searchable. If you disagree, can you elaborate what did you feel the video/audio provided over a static HTML page ?


No you're right that text would be better, especially when you're looking for specific things. I have a feeling though that we're in the minority with that unfortunately. What's sad, and what I had assumed was still the case, is that GN no longer uploads transcripts to their website.

I had the same gripe learning firebase with pretty great official tutorials, which would have taken half the time if I could just read them.

The automatic transcripts work fairly well which is how I cope with it.


If youtube is not your thing, they also post results on their site. Here's their most recent review:

https://www.gamersnexus.net/hwreviews/3635-fractal-meshify-2...

Look at that set of tests for a case. What more could you want?


The most recent review is from more than 2 years ago ?


Oh dear you're right, I didn't look at the date. I guess you're stuck with youtube then, sorry, forget everything I said.


yd-dl / youtube-download helps.


“It's all in videos or really low-effort stuff nowadays,”

GN doesn’t really update their website with written reviews.


https://techpowerup.com is still alive.

I can think of a few others, including an offshoot of [H] called thefpsreviews.com but I've seen a lot of crappy, low effort "reviews" just in time for the "video cards are finally cheap" manufactured craze last year, which was last straw for me.


They have degraded significantly over the last few years. Up to around 2015 it was about my #1 reference source. It's how I found out about the fact many GPUs used to triple or quadruple their power consumption just because of an extra monitor being connected, and that AMD's HBM-based GPUs were at that point a surprising exception (when otherwise AMDs GPUs are usually the worst at it). These days however I have to take everything they measure with a grain of salt, and at some point I even had a discussion with a member of staff on the merits of having idle power consumption measurements at all. Something has definitely changed on their side.


The one I really miss is techreport.com

Now, these guys used to deliver some quality stuff, including the big frame pacing thing that finally convinced the masses that no, fps number is not everything. One of the owners joined AMD and yeah, it's been dead for several years.

Community was quite nice, too.


I'm working for a company that was originally a 40h workplace, but since last month and until the end of January will test a 32h week, with preferably the Fridays off (preferably because there are some departments that must have at least one person every day). After this test period the management will evaluate the productivity, basically some OKRs set before the change and if objectives were met we will keep this benefit.

Important to mention that no other benefit was removed or any salary reduced.


Nice! How big in size of FTEs is this company and what industry is it in?


I'm sorry, I don't know what FTE is, but the company has abou 300 employees about half of it in engineering. The industry is financial services.


I imagine this is particular to company/team policy. In my case, the team does 2 reviews before a deployment. The first validates architecture and gerneral structure, what is considered not be a code review. The second is a "functional" validation, where the person must run and test the use cases.


Some time ago I tried to scrap some posts from the Cloudflare Blog (https://blog.cloudflare.com/) with Node.js and got 503. I was hoping I could use those tips from OP, but no luck. Maybe they're using some other type Id.


Really great talk! He talks about some problems about the BEAM Distribution, but didn't get into details about it. Do you have any idea about those problems?


Does anyone know of any good resources to learn about data streams in general? Some weeks ago I had to implemnt some streams (in nodejs) to upload a file to s3 "on the fly", without storing the file locally and then uploading it, but I culdn't wrap my head about the data stream concept.


Have you reviewed data-intensive architectures? I've found that book quite useful.

I'm just talking out my butt right now but I think fundamentally, a stream is just a chunk of data lifted from persist into memory. I imagine a cursor process traversing some bytes in a file, and then lifting some of those bytes into memory, and sending that memory over network.


Yes, however I think there's a lot more complexity in modern steaming architectures: event sourcing, concurrency, eventual consistency, pub-sub, queueing, event handlers, microservices, stateless messages, data lakes - to name a few. I would also be interested in a resource that tackles major concepts here.


> data-intensive architectures

I suspect you mean __Designing Data-Intensive Applications__, by Martin Kleppman, but I am not entirely sure.


Yeah, I just didn't want to type it out :P


Check out dataflows in Composable for a quick way to implement these data streams. https://docs.composable.ai/en/latest/03.DataFlows/01.Overvie...


you can also use the upload multipart feature of s3. Basically, you buffer until you have a sizeable chunk of the incoming stream, then upload that chunk; iterate. At the end you tell s3 to concatenate the parts.


Is there an open source alternative that could be self-hosted and configured to run automated and periodical checks?


While not a web or automated option - if you want to run a quick crawl and scan on your apps you could try OWASP ZAP, it also has quite a few handy plugins - https://www.owasp.org/index.php/OWASP_Zed_Attack_Proxy_Proje...


Metasploit? You don't even need to host it (why are we so obsessed with making everything a website?)


Metasploit isn't the best choice for webapps, you probably want nikto or similar. Here's the owasp list: https://www.owasp.org/index.php/Category:Vulnerability_Scann...


The key part is automation, not a website. Make it part of your ci/cd pipeline.


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: