Aijan

joined 6 months ago
MODERATOR OF
[–] Aijan -1 points 1 week ago (1 children)

Perhaps I was unclear. What I meant to say is that, whenever possible, we shouldn't have multiple versions of a field, especially when there is no corresponding plaintext password field in the database, as is the case here.

[–] Aijan 16 points 1 week ago* (last edited 1 week ago)

Thanks for the tip. password.trim() can indeed be problematic. I just removed that line.

86
Self-documenting Code (lackofimagination.org)
submitted 1 week ago by Aijan to c/programming
31
Firewalling Your Code (lackofimagination.org)
submitted 2 months ago by Aijan to c/programming
72
Teaching Programming with BASIC (lackofimagination.org)
submitted 3 months ago by Aijan to c/programming
122
I Don't Trust My Own Code (lackofimagination.org)
submitted 5 months ago by Aijan to c/programming
[–] Aijan 7 points 5 months ago

Seriously, why the negative tone? If I've offended you, I'm sorry. You might think that I'm wasting time, but there are multiple ways to skin a cat. I prefer not to use DEB packages for deployment, though others might.

[–] Aijan 4 points 5 months ago

Cleanup can be as simple as deleting the latest deployment directory, if the script gets that far. The article is about using built-in Linux tools for 'easy' application deployments. One can also use dedicated tools, as you suggested, to further automate the deployment process.

[–] Aijan 7 points 5 months ago (2 children)

Author here. In case it’s not clear, this article isn't about installing Linux packages; it's about deploying multiple versions of software to development and production environments.

25
submitted 5 months ago by Aijan to c/programming
[–] Aijan 3 points 6 months ago* (last edited 6 months ago) (1 children)

Author here. My blog is also generated with Hugo, and it's great. I just prefer not to generate HTML and CSS from JavaScript unless it's necessary.

Sorry, I haven’t seen that movie. Thanks for the recommendation though.

21
Back to Basics in Web Apps (lackofimagination.org)
submitted 6 months ago by Aijan to c/webdev
[–] Aijan 3 points 6 months ago* (last edited 6 months ago)

That idea crossed my mind too, but you can’t really use the full capabilities of SQL in graph databases, and that’s a deal breaker for me.

[–] Aijan 2 points 6 months ago

There's certainly the danger of creating too many ad-hoc or sparse relationships, which can cause issues. That said, when used for supplementing foreign keys, Tie-in can be a useful tool in a production system as well.

[–] Aijan 3 points 6 months ago (5 children)

Yes, that's correct. Here's how an entry in the join table looks like:

{
  "id": 6,
  "sourceComp": "user",
  "sourceId": 2,
  "targetComp": "post",
  "targetId": 3,
  "type": "author",
  "createdAt": "2024-03-28T13:28:59.175Z",
  "updatedAt": "2024-03-28T13:28:59.175Z"
}
[–] Aijan 3 points 6 months ago

AFAIK, no NoSQL database fully supports SQL, and only some offer support for transactions and joins. The idea here is to augment a relational database by adding capabilities for dynamic relationships.

15
Beyond Foreign Keys (lackofimagination.org)
submitted 6 months ago* (last edited 6 months ago) by Aijan to c/programming
6
submitted 6 months ago by Aijan to c/alpinejs
[–] Aijan 1 points 6 months ago

You're welcome.

 

Unlike most modern javascript frameworks, Alpine requires absolutely no build, you simply include the library and away you go, all features included. It’s also super lightweight. If you already know Vue, you basically know Alpine, making it perfect for Vue developers to turn to for projects where Vue is simply overkill and without the headache of learning something completely alien.

view more: next ›