Chris, The 0.5x Engineer's Avatar

Chris, The 0.5x Engineer

@llcoolchris.dev.bsky.social

πŸ‡¨πŸ‡¦πŸ‡«πŸ‡· Twitch Partner http://twitch.tv/LLCoolChris_ Software Engineer #ElixirLang #Typescript #OCaml Built https://concentration.app https://asklive.co https://swapify.live

2,506 Followers  |  398 Following  |  966 Posts  |  Joined: 08.04.2023  |  1.689

Latest posts by llcoolchris.dev on Bluesky

i hope i'm she/they enough for you guys bc I *need* to tell every last person in the replies to shut the fuck up omg

18.07.2025 18:45 β€” πŸ‘ 23    πŸ” 2    πŸ’¬ 3    πŸ“Œ 0

I heard y'all are having a meltdown here, are you bluesky?

19.07.2025 09:37 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

AHAHAH

01.07.2025 16:22 β€” πŸ‘ 2    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

What's up here, did y'all finally blocked each other?

15.06.2025 03:54 β€” πŸ‘ 3    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0

What happened to the markdown support here?

26.05.2025 11:48 β€” πŸ‘ 4    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

βœ‹πŸ₯ΈπŸ€š never let them know what you really think

26.05.2025 11:45 β€” πŸ‘ 2    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

Fuck bots are there too?

25.05.2025 04:33 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 3    πŸ“Œ 0

Je suis sur le trone la, incroyable sensation de liberer mon estomac du Jerk Chicken x Mac n Cheese d'hier. Vive la vie

24.05.2025 15:05 β€” πŸ‘ 2    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

Γ‡a dit quoi

24.05.2025 00:47 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0

Oui mdrrrr

24.05.2025 00:46 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

PTDRRR

22.05.2025 22:24 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

Hello World!

22.05.2025 22:11 β€” πŸ‘ 5    πŸ” 0    πŸ’¬ 3    πŸ“Œ 0

Putain de sa mΓ¨re j’suis heureux

07.05.2025 21:56 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

@llcoolchris.dev on va de nouveau manger

07.05.2025 21:04 β€” πŸ‘ 1    πŸ” 1    πŸ’¬ 1    πŸ“Œ 0

Moving is tiring

07.05.2025 18:48 β€” πŸ‘ 3    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

Seeing my friends having kids and doing ok is a sign that I can do it too

17.04.2025 03:56 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0
Video thumbnail

Remember to always have a static sized input in React Native. Notice the flickering on the dynamic sized input

17.04.2025 03:52 β€” πŸ‘ 9    πŸ” 1    πŸ’¬ 1    πŸ“Œ 0
## basic file stuff

touch - create file
mkdir - create directory
cp - copy
mv - move
rm - delete
ln - create symlink
ls - list directory

## how big is it
wc - word count
du - file size in bytes
df - filesystem usage

## slice & dice files
sed - replace regex
tr - replace character
grep - search file
cut - get column
awk - get column (+ more)
sort - sort lines
uniq - unique lines
head - first 10 lines
tail - last 10 lines

## filesystems
mount - mount a filesystem
umount - unmount
dd - copy data to a disk

## manage processes
ps - list processes
lsof - list open files
kill - send a signal
pkill - fancy `kill`
top - who's using CPU?
uptime - time since reboot

## permissions
chown - change owner
chmod - change permissions


## time stuff
time - measure runtime
date - current time
sleep - wait X seconds
cal - cute calendar


## useful with pipes
less - scroll text
cat - print file contents
tee - stdin -> file + stdout
xargs - run cmd for each line
find - find files by name


## compression
tar - make/extract tar files
gzip - compress with gzip
gunzip - decompress
zip - compress with zip
unzip - decompress


## & more
which - find cmd on PATH
man - read man page
crontab - edit crontab
md5sum - calculate md5sum
diff - diff files

## basic file stuff touch - create file mkdir - create directory cp - copy mv - move rm - delete ln - create symlink ls - list directory ## how big is it wc - word count du - file size in bytes df - filesystem usage ## slice & dice files sed - replace regex tr - replace character grep - search file cut - get column awk - get column (+ more) sort - sort lines uniq - unique lines head - first 10 lines tail - last 10 lines ## filesystems mount - mount a filesystem umount - unmount dd - copy data to a disk ## manage processes ps - list processes lsof - list open files kill - send a signal pkill - fancy `kill` top - who's using CPU? uptime - time since reboot ## permissions chown - change owner chmod - change permissions ## time stuff time - measure runtime date - current time sleep - wait X seconds cal - cute calendar ## useful with pipes less - scroll text cat - print file contents tee - stdin -> file + stdout xargs - run cmd for each line find - find files by name ## compression tar - make/extract tar files gzip - compress with gzip gunzip - decompress zip - compress with zip unzip - decompress ## & more which - find cmd on PATH man - read man page crontab - edit crontab md5sum - calculate md5sum diff - diff files

every core unix command I use

16.04.2025 18:34 β€” πŸ‘ 413    πŸ” 67    πŸ’¬ 22    πŸ“Œ 12

Please, any recommendation for an email client on macOS that doesn't suck ass?

16.04.2025 23:17 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 2    πŸ“Œ 0

LFGGGGGG

12.04.2025 02:06 β€” πŸ‘ 6    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Preview
Expo SDK 53 beta is now available - Expo Changelog Learn about the changes, how to try it out, and how to give feedback.

πŸ†• We just released the SDK 53 beta. Please go test it out and make sure it doesn't introduce any regressions for you.

Just a heads up that we’ll be releasing fixes and improvements during the ~2 week beta period β€” some of these may include breaking changes.

expo.dev/changelog/sd...

11.04.2025 23:30 β€” πŸ‘ 79    πŸ” 13    πŸ’¬ 1    πŸ“Œ 3

I did the soldering job myself and I didn't made something disgusting, I'm proud of myself

06.04.2025 03:36 β€” πŸ‘ 12    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

Alright let's see how homerow mods are working on my new keyboard

06.04.2025 03:34 β€” πŸ‘ 2    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Preview
LLCoolChris_ - Twitch πŸ“± | React Native, Expo & SQlite 3 | App de productivitΓ© | 0.5x Engineer

Alright, catch me live coding on twitch this morning tv.llcoolchris.dev

27.03.2025 11:16 β€” πŸ‘ 3    πŸ” 1    πŸ’¬ 0    πŸ“Œ 0

Catch me on twitch, we're doing some React Native this morning tv.llcoolchris.dev

25.03.2025 11:18 β€” πŸ‘ 3    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0

Sympa Γ§a, Γ§a va Γ©couter autre chose que React Native Radio ajd

20.03.2025 15:23 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Le Cross Platform Show, le podcast francophone React Native animé par David Leuliette — weshipit.today Interviews de développeurs React Native, discussions sur les dernières tendances et conseils pratiques pour améliorer vos compétences en développement cross-platform.

@moox.io vu que tu es passé à la TV ça te dis de passer à la radio pour venir parler React Native 😁

weshipit.today/podcast

20.03.2025 14:32 β€” πŸ‘ 1    πŸ” 1    πŸ’¬ 2    πŸ“Œ 0
Preview
LLCoolChris_ - Twitch πŸ“± | [FR/EN] Local first sur React Native | Pomodoro App | 0.5x engineer

React Native x SQLite x Drizzle!
Come say hi on

20.03.2025 11:19 β€” πŸ‘ 2    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

What happened to the guy having a PR up to support markdown and code blocks here?

20.03.2025 10:32 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

Using it with Drizzlr!

19.03.2025 01:48 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

@llcoolchris.dev is following 19 prominent accounts