HN user

tslater2006

84 karma
Posts0
Comments30
View on HN
No posts found.

Foesn't this show other top level functions besides main? From the JEP

```Top-level members are interpreted as members of the unnamed class, so we can also write the program as:

String greeting() { return "Hello, World!"; }

void main() { System.out.println(greeting()); }```

I maintain a joke domain which I've found sadly applicable through the years. https://adventofrealizingicantread.com. I try to keep it updated pointing to the current day throughout the month

I've found especially as the month progresses it's just as much Advent of Reading Comprehension as it is coding :)

I struggled with this through highschool. Pencil and gel pens were the worst. I never learned to write with my paper tilted like some lefties. I write just like a mirror image of a right hander, which lead to a lot of smudging and having to rewrite papers etc

This change my sophomore year in English class when my teacher told me a trick! Place a sticky note on the side of your hand that rests on the paper. No more smudging!

Looking at pricing, its $15 per 1M input tokens, and $60 per 1M output tokens. I assume the CoT tokens count as output (or input even)? If so and it directly affects billing, I'm not sure how I feel about them hiding the CoT prompts. Nothing to stop them from saying "trust me bro, that used 10,000 tokens ok?". Also no way to gauge expected costs if there's a black box you are being charged for.

Equinox.space 2 years ago

No need for a plane, works that way for my head in real life too :) tilt your head back and you look up

Equinox.space 2 years ago

I could see this. Like obviously I live first person, and when I want to look up I pull my head back, to look down I push my head forward. Similarly I expect pushing my mouse forward (up) to look down and pulling my mouse back (down) to look up.

What a wonderful and detailed wrote up. Thank you for this! I wrote something similar but never released it due to not having a lot of hobby paint colors to include. It uses LAB for linear distance as a scoring mechanism and reflectance curves from RGB for the mixing. And a genetic algorithm for finding a recipe.

Here's a short video of an older version. Newer one let's you set how long to search for.

https://youtu.be/eGgrowt1fWg?si=NwucIgfpeWpbmCPX

My (limited) understanding is that if you have say a 5mb file, and you open it for writing and wrote 3mb. You might expect the file to be 3mb, but...if you didn't specify the truncate flag (the bug here) the file is still actually the 5mb it was. The image appears cropped because the relevant metadata has the new sizes etc, but that 2mb of extra data is still there by mistake. This can be used to recover some of the original image.

The linked tweet is part of a larger thread which details an issue with how they set up transmitters in factorio which led to the destruction of the entire base. The thread then pivots to how it applies to other areas.

I'm guessing you are referring to the new format they released with Chitubox 1.9 that encrypts portions of the layer data. The Chitubox file format has been reverse engineered and their encryption as well. The format is in the CTBEncryptedFile.cs of the UVTools project, and the encryption specifically is handled in the CryptFile mehtod: https://github.com/sn4k3/UVtools/blob/master/UVtools.Core/Fi...

010 Editor templates for both the encrypted CTB and the decrypted CTB are also provided in the repository: https://github.com/sn4k3/UVtools/tree/master/Scripts/010%20E...

As someone that has recently started learning Rust, I am certainly interested in looking at source for bigger projects than I've made. Getting a feel for patterns and examples of how to do certain things.

If your interest in jless is about its utility, you are right, language doesn't matter. If your interest in jless is looking at its code, I think language is relevant. And personally seeing it in the title let's me know without clicking that I might want to check out it's code later.

I built a few utilities that help PeopleSoft developers do their job. It's a pretty niche market and it's all MIT licensed. I work on it when I need it to do something, or someone requests a feature. They have stayed pretty low on radars since they were released (the oldest was 6 years ago). I don't work on them for them to be popular. I work on them because the few times I've needed them, they were indispensable.

Trace Wizard [0] - Peoplesoft App Server trace file analyzer. Shows execution paths, sql statements, exceptions and a bunch of stars.

DMS-Viewer [1] - Peoplesoft uses a program called Data Mover to migration data between databases. It exports the data into an undocumented file format. This utility allows you to inspect and alter the data before importing to a new database.

Pivet [2] - command line utility that dumps various Peoplesoft definitions/code to disk and leverages git for tracking the changes. Intended to be run as a scheduled process.

[0] https://github.com/tslater2006/Trace-Wizard

[1] https://github.com/tslater2006/DMS-Viewer

[2] https://github.com/tslater2006/Pivet

This led me one year to registering adventofrealizingicantread.com

It just redirects to the advent site but I've grown to love it :)

How was the experience for you? I've done the past few years in C#, but am considering using 2021 to learn Rust.

Case number for locating it in PACER: 5:2021cv02419

At a glance of the complaint it seems that Impossible X started this with complaints and legal action against mpossible Foods for infringing on their trademarks. The complaint additionally shows that Impossible X was granted their registration of IMPOSSIBLE on Jan 9th, 2018.

From the GitHub:

To use WinObjC, there are a few requirements. You need:

Windows 10

Visual Studio 2015 with Windows developer tools. Visual Studio 2015 Community is available for free here. Select (at least) the following components during installation:

Bézier Clock 12 years ago

Per the Processing.js site, you include the processing.js file and then set an attribute on the canvas showing where to get the PDE file (your code). In this case they set it to: data-processing-sources="bezier_clock.pde"

Making the sources to the clock available here: http://jackf.net/bezier-clock/bezier_clock.pde