Advertisement ยท 728 ร— 90

Posts by Arnold Chand (creativenull)

I've started using AI more on my codebases not because they are any good at solving problems (they do a decent job tho ngl) but because they're just fast typers vs my slow ass 60 wpm ๐Ÿ˜ญ

1 month ago 2 0 0 0
Preview
Encryption - Laravel 12.x - The PHP Framework For Web Artisans Laravel is a PHP web application framework with expressive, elegant syntax. Weโ€™ve already laid the foundation โ€” freeing you to create without sweating the small things.

I should've made a copy of the env file and brought back the old key as a APP_PREVIOUS_KEYS var so I could re-encrypt the data with the new key (not sure how this would work but was thinking this as the solution)

laravel.com/docs/12.x/en...

3 months ago 0 0 0 0

Had a table with encrypted data and ran `php artisan key:generate --force` because I panicked about a livewire exploit thinking my key was compromised

This was the post I read after I started seeing errors on the server coming from POST /livewire/update

x.com/barryvdh/sta...

3 months ago 0 0 1 0

PSA: Do not run any command with --force on the prod server THINK TWICE!!!

Man I've really messed up what a great start to the new year..

3 months ago 1 0 1 0

Windows taking over half my ram from 32gb to 16gb during this time where ram prices are astronomically high was not on my 2025 bingo card

4 months ago 0 0 0 0

Is it too late to start working on hactoberfest? ๐Ÿ˜…

oof it's 6 PRs now..

5 months ago 1 0 0 0

The new Laravel Forge looking nice! The only problem is it's not mobile friendly yet ๐Ÿค”

Regardless congrats to the team!

#laravel #forge #php

6 months ago 0 0 0 0

Upgrade from nuxt 3 to 4 was easy just had issue with nuxt-content and better-sqlite3 but seems like updating them one package at a time after upgrading to nuxt 4 did the trick

7 months ago 2 0 0 0

Has anyone done key-pair authentication in laravel?

Instead of the usual email/password I was wanting to see if there is anything out there that uses private/public key pairs to authenticate from a device to the server

Something to implement for IoT devices

#laravel #auth

7 months ago 1 0 0 0
Advertisement

I'm getting back into using RSS feeds again and it feels like a nice breath of fresh air. Now I want to learn how to make RSS for my website

7 months ago 2 0 0 0

Not sure why I got signed out from the bluesky app maybe an update triggered it ๐Ÿค”

7 months ago 0 0 0 0

Pushed to main, and with some additional fix looks to be working now

I should start tagging the releases

8 months ago 0 0 0 0

Also trying to keep it backward compatible with vue language server v2 having some problems with inlay hints

I think I will note this down in the readme for now and suggest disabling inlay hints on vue file

This is not a problem with v3 though so inlay hints work as expected

8 months ago 0 0 0 0

Draft PR: github.com/creativenull...

8 months ago 0 0 1 0

Currently working on just following the guides from vue/language-tools repo

github.com/vuejs/langua...

Following the guide to for some more pointers

github.com/vuejs/langua...

8 months ago 0 0 1 0

Alright got some time to work on my nvim plugins.

Starting with web.nvim I need to update some logic for vue-language-server since v3 was out I didn't know that there was a change from typescript-language-server to vtsls server

#neovim #vue

8 months ago 2 0 1 1

For second I thought you said you go straight to your neighbors chickens and pigs and pay them money for their eggs and meat ๐Ÿ˜‚

1 year ago 6 0 1 0
Advertisement

Yeah also including that. It's still a little bit weird for me to press `za` just need enough practise to get used to it ๐Ÿ˜…

1 year ago 0 0 0 0

Ok so updated my muscle memory to incorporate folds in my dev flow.

Pretty much `zc` to close and `zo` to open the fold.

And `zR` to open all folds, my reset trigger so I can practise `zc` and `zo`.

In my config, I set `vim.opt.foldenable = false` so it will not fold the code by default.

1 year ago 3 0 1 0

So I've been using vim for about 6 years now and I've never really got into folding code until recently lol

Time to do a crash course on how to use it and how to integrate with treesitter or does it come built in ๐Ÿค”

#vim #neovim

1 year ago 1 0 0 1
AI as Coding Assistant My take on AI and how it helps with my coding and what it lacks in different areas.

It took some time but here is my post on AI as a coding assistant #ai #coding #vim #neovim

creativenull.dev/posts/11-ai-...

1 year ago 0 0 0 0

Why do apps make it so difficult to log in but when you log out there is no prompt to log out?

Like, can they at least put up a confirm dialog to ask if I want to log out or not, what if I clicked on it by mistake?? Now I have to start all over again ๐Ÿ˜ฎโ€๐Ÿ’จ

1 year ago 2 0 0 0

Here is how I have it on my config

github.com/creativenull...

#kitty #terminal #config

1 year ago 0 0 0 0
Preview
Add Cursor Trail Feature to Enhance Cursor Visibility by jinhwanlazy ยท Pull Request #7970 ยท kovidgoyal/kitty This pull request introduces a new feature that adds a trailing effect behind the cursor as it moves within the terminal window. The cursor trail enhances cursor visibility, making it easier to tra...

I've been trying the new `cursor_trail` in kitty for couple days now and I'm really loving it

Really feels like neovide without installing it haha

PR w/ example: github.com/kovidgoyal/k...

#kitty #terminal #cursor

1 year ago 0 0 1 0

It's quite scary when your client asks to get access to the source code repo

Have to make sure there are no curse words in there directed at the client ๐Ÿ˜‚

1 year ago 2 0 0 0

phpstan/larastan has been making me write so much boilerplate code it's not letting me enjoy the new stuff like match and shorthand/anon functions :((

should not have run `composer update`

#php #laravel #phpstan

1 year ago 0 0 0 0

Now I don't know how to do step 4, how to ensure that the link generated will have proper params to securely log in the user? Will it be a button that the user will press or do I just automatically redirect to the app?

Or is this all wrong way of doing the auth on mobile ๐Ÿค”

1 year ago 0 0 0 0
Advertisement

Only one way I'm thinking is

1. Link from mobile app to open a web url, now it will follow socialite auth flow example
2. User authenticates (socialite)
3. Oauth2 then redirects back to the web page (socialite)
4. From there I add a link back to the app via a deep link (custom)

1 year ago 0 0 1 0

The problem I'm trying to now solve with auth is how to do this for a mobile app?

It's easy with just sanctum but I'm not sure how to do this with sanctum + social login. Since it is a mobile app there is no web interface.

1 year ago 0 0 1 0

I'm really liking how easy it is to setup register/login in laravel which also incl social auth via socialite.

#laravel #php #auth

1 year ago 1 0 1 0