We are revamping the discord server so feel free to join if you want to have semi-interesting conversations about trivial programming topics. discord.gg/jpJdqDdQcv I hope you enjoy this video, I definitely had a lot of fun working on it. Some people have asked me about my config files, you can check them out here github.com/IonelPopJara/dotfiles (Also follow me on twitter if you want. twitter.com/ionelalexandr12 ) To try everything Brilliant has to offer-free-for a full 30 days, visit brilliant.org/Mults You’ll also get 20% off an annual premium subscription.
Considering that you already are in the GNU/Linux FOSS bubble, it would be cool for you to setup a Matrix server so that your fans don't need to use proprietary Discord
derek taylor has compiled a list of these fun cli scripts at his repo called... dwt shell-color-scripts. just thought you would like. Hope you have a great day & Safe Travels!
Couple years ago, I developed some scripts to automate deployment of applications for an aeronautic company. It took so long that I started showing process logs, then status summary, then emulating a progress bar... at the end I had an airplane flying on the console. If the deployment worked without errors it landed, otherwise it would crash. The amount of scripting knowledge I gained from the customization was probably more than the deployment itself. Totally worth the effort. Note for my company, both the scripts and my customization were developed outside working hours, so shh.
@@Plorpoise yeah, i kinda gave up on it because i ran out of motivation to make a chart editor that people that aren't me can use (though, you can look it up, it's called "shellrhythm")
There are more easy leetcode questions than grains of sand on earth. And some or them are NOT easy questions, but are designed to gaslight you that they are.
@@RaulChis You'll have a ~/.bashrc or ~/.zshrc file depending on whether you're using a bash or zsh shell. Open this file in a text editor and add the command (example: fortune | cowsay) (I prefer adding it at the end of the file) and then save the file. You can run "source ~/.bashrc" or "source ~/.zshrc" (again depending on what you're using) to see the changes without closing and opening the terminal. Make sure fortune and cowsay are installed though.
1. install "fortune" and "cowsay" 2. add the following to your .profile, .bashrc, .zshrc or whatever your shell parses: "fortune | cowsay -f stegosaurus" for extra rainbow action, install "lolcat" and change the command to: "fortune | cowsay -f stegosaurus | lolcat"
@@nathanaelmoh5848 customized look, essentially. customizing the look/feel of your computer (especially when it's linux) is called "ricing", so one such setup would be "a rice". think it comes from car customization initially? but not sure about that.
Thought this might be relevant: There used to be a program that you could run on IBM mainframes in the late 60's that would print ASCII (or whatever text-encoding they used, I don't think it was ASCII) art image of a lady in her "birthday suite". I forget what it was called, but I saw a RUclips video of it being demoed at a computer museum, as part of a multi-video series.
The more i delve into linux the more i find the ricing community very funny. Im one of those people that say they've changed the look of their terminal and all that means is switching the font color to orange and making the window more transparent. I've tried to change the overall look of my desktop by following tutorials and installing programs but after a while i go back to the default setting because it already looks good enough for me (yes, that includes xfce)
The way you introduced piping has got to be used in universities. I really like the way you introduce new topics, and I think professors would learn a lot from your segues
After switching to Linux for a month and using a Windows machine this morning I can confidently declare I've lost all ability to use file manager and now is only capable of using cd and zoxide
"It has colors and pipes and looks like i know what I'm doing but in reality I can't even solve a Leetcode medium problem." Oof this is the realest shit
AGHHH THE STEGOSAURUS IS THE BEST THING EVER!!!! My git messages are about to be littered with these bad boys. Surely there's gotta be a way of wrapping my vim messages with the steggy boy...
so I had to sudo apt install sl and then I had to use sl 🤣 its really funny spending too much time customizing terminal with weird stuff lmao the pipe is not for I guess 🤣I would watch the birds flying rather than pipes great vid!!! love the editing 🔥
un chileno al que se le entiende. amo el tipo de humor de este canal, es raro y dificil de explicar pero me gusta y me quedo hipnótico con estos videos
in my programming 1 course (python) we did the cowsay CLI project as a lab in our class. it was fun, the cow images were given (excluding the sheep), and also a dragon and tiger. from what i remember the cows name was heifer, but nevertheless the project was rly fun and was my first intro to CLI.
"Or your next not project at all because you're never going to acomplish anything [...]" Too personal and real. I want to learn to code and make this auto clicker for a game but I'm too lazy. Damn.
- Have dual, maybe more, monitors side by side. - Crank that resolution as much as possible. - Long, short terminal window spanning all monitors. - $ sl - Train is now a useless and frustratingly long loading bar. - Linux life.
Holy shit I didn't know that's what piping did, I thought it was just way to input multiple commands at the same time 💀💀💀 This is what you get when you set up a linux server by just copy pasting things you find online...
1:30 - I spent a bit of time reimplementing fortune in Rust, which meant looking at the C source to parse those quotes libraries. ... It doesn't look like any C source you'd see today. I'm honestly not 100% this wasn't written on a teletype. 1979 was a little while ago. Also - this is from an era with 100's of people were connected to a single mini computer. So - lots of utils were built around having a quirky fun office environment. Like imagine Slack except all clients and servers were running on the local system. I like htop or ytop for process viewers WAY over original top
0:53 Just made me realize that stock image sites might be irrelevant now. At least crappy ones. Why bother paying for slop when you can generate slop at the pace of your own patience?
idk where I saw a dude loosing his head after weeks of doing complex programming just to make a 3D moving donut with ascii in the CLI, this video reminded me of that lmao
Not only in Linux but also in Windows. BTW, I found that after the 2022 update of Windows 10, cmd.exe works really well, it renders colors correctly (no mumbo-magic) and it works acceptable. When CLI shines? maintenance/developer/admin tools
ASCII ART is not very pixel precise. But there is a bios function (ax=1100 of int 10) for user character, so we can replace the bits of the character with our own user bits inside the character.
does anyone know how ppl get text to display at certain places on the screen? the only way i know is print() (along with other languages equivalents), which doesn't let you specify where the text is displayed.
We are revamping the discord server so feel free to join if you want to have semi-interesting conversations about trivial programming topics. discord.gg/jpJdqDdQcv
I hope you enjoy this video, I definitely had a lot of fun working on it. Some people have asked me about my config files, you can check them out here github.com/IonelPopJara/dotfiles
(Also follow me on twitter if you want. twitter.com/ionelalexandr12 )
To try everything Brilliant has to offer-free-for a full 30 days, visit brilliant.org/Mults
You’ll also get 20% off an annual premium subscription.
Considering that you already are in the GNU/Linux FOSS bubble, it would be cool for you to setup a Matrix server so that your fans don't need to use proprietary Discord
derek taylor has compiled a list of these fun cli scripts at his repo called... dwt shell-color-scripts.
just thought you would like.
Hope you have a great day & Safe Travels!
THAT LAST LINE WAS UNCALLED FOR MAN :( he -o us in real time
"Silly programs, with no purpose."
Me at work: wait a minute
I have had a real technical use for cowsay at work before 😔
@@MrSquishles check if `apt` works right? ;D
Or 'pacman'... Or 'xbps-install'
Piping fortune into cowsay was a lightning moment. Life-changing. Especially with the stegosaurus. This is why we love computers.
now pipe that to lolcat
Yeah when I learnt how to pipe the first thing I did was pipe random shit to cowsay and espeak.
milk is best lowkey
now pipe pipe into cowsay
this is peak linux brain rot
HAHAHA
SKIBIDI OHIO ARCH WITH HYPRGYATT?
im sorry
Yeah, but at least it's open source brain rot
@@waralo191 imagine what closed source brain rot is like
@@zaicol850 "This is how you make an automated script to remove pimples in photoshop"
Couple years ago, I developed some scripts to automate deployment of applications for an aeronautic company. It took so long that I started showing process logs, then status summary, then emulating a progress bar... at the end I had an airplane flying on the console. If the deployment worked without errors it landed, otherwise it would crash. The amount of scripting knowledge I gained from the customization was probably more than the deployment itself. Totally worth the effort. Note for my company, both the scripts and my customization were developed outside working hours, so shh.
this reminded me i have a project of a command line rhythm game just laying around
That sounds awesome actually
@@Plorpoise yeah, i kinda gave up on it because i ran out of motivation to make a chart editor that people that aren't me can use (though, you can look it up, it's called "shellrhythm")
please share if it gets to a working state!
@@dreamdeckup it's available! it's called shellrhythm and the client and editor are... functional
i want to see that too
leetcode medium? i cant even solve some easy questions 😔
LeetCode? I can't even cd from D:// to C://
There are more easy leetcode questions than grains of sand on earth. And some or them are NOT easy questions, but are designed to gaslight you that they are.
@@ashimarulovesyouu literally just did it poser clown
@@groff8657Example?
@@ashimarulovesyou Windows? I can't even mouse and keyboard.
I need to add that stegosaurus with a hat saying random stuff to my cli
how does one achieve such, I'm to stupid to find an answer online
@@RaulChis You'll have a ~/.bashrc or ~/.zshrc file depending on whether you're using a bash or zsh shell. Open this file in a text editor and add the command (example: fortune | cowsay) (I prefer adding it at the end of the file) and then save the file. You can run "source ~/.bashrc" or "source ~/.zshrc" (again depending on what you're using) to see the changes without closing and opening the terminal. Make sure fortune and cowsay are installed though.
@@RaulChis I haven't actually done it but I'll try to update you when I do!
@@oliearominPlease let me know as well.
1. install "fortune" and "cowsay"
2. add the following to your .profile, .bashrc, .zshrc or whatever your shell parses: "fortune | cowsay -f stegosaurus"
for extra rainbow action, install "lolcat" and change the command to:
"fortune | cowsay -f stegosaurus | lolcat"
4:44 This is the official discontinuation the project stopped receiving updates around 4-5 years ago.
sometimes software is just "done", yeah, I know, heresy
@@monad_tcp It was too simple a program to need to be fixed anymore, I guess.
fastfetch is the replacement
@@connivingkhajiit nowofetch is. Aka. hyfetch.
@@Brahvim yeah fuck the performance lol
I’m glad you used my rice for
this video! I love to see the unix ricing community is growing. Great video! ❤
Thank you! I loved your rice, it was pretty good :))
What's a rice? This video popped up randomly. Thank you.
@@nathanaelmoh5848 customized look, essentially. customizing the look/feel of your computer (especially when it's linux) is called "ricing", so one such setup would be "a rice". think it comes from car customization initially? but not sure about that.
@@nathanaelmoh58483:55
So you're telling me that I can create a useless cli to get some github stars and then a job
is the Bhudda Bhuddist?
you are not dylan lmao
@@fs2f Not yet
Never thought about it that way 😂😂
2:00 BOCCHI THE ROCK MENTIONED
4:01 AGAIN OMG
bocchi sweep is real
@@ArseneKichi REALLL🙏🙏🙏🙏
Thought this might be relevant:
There used to be a program that you could run on IBM mainframes in the late 60's that would print ASCII (or whatever text-encoding they used, I don't think it was ASCII) art image of a lady in her "birthday suite". I forget what it was called, but I saw a RUclips video of it being demoed at a computer museum, as part of a multi-video series.
You are probably thinking of Edith!
Yes, that's the one!
ruclips.net/video/LtlrITxB5qg/видео.html
Found a video of the program in question
Now i need to add hitoribocchi in any possible thing i can modify in my linux distro
3:17 is pure gold
3:30 Calling it a train is offensive. It's a steam locomotive(sl).
Linux CLI is God's chosen PC interface.
I don't have an anime girl as my wallpaper.
I have *eight* anime girls as my wallpaper.
I dont have an anime girl as my wallpaper.
I have an anime girl as my mousepad.
i have the moon…
@@connivingkhajiit You sure it‘s *as* your mousepad and not a mousepad with it printed on…?
@@Krepppa253ButFake yes
i could have seven anime girls and one man as my wallpaper... i don't... but i could...
awk is a universal stereoids for every single cli program out there.
the pipe sfx is what got me xD (also it's the only thing my smol brain understood of this video)
The Monogatari music at 2:32! Nice!
wait, you can have the pipes screensaver in a CLI? Definitely a must-have!
Its really cool how the term "Ricing" is in both the car community and the CS community. i love being in both
My love for the CLI grows! Let's GO!!!
To this day, we still don't know what file was the freaky sheeps
Man your video is a pure blessing
The more i delve into linux the more i find the ricing community very funny. Im one of those people that say they've changed the look of their terminal and all that means is switching the font color to orange and making the window more transparent. I've tried to change the overall look of my desktop by following tutorials and installing programs but after a while i go back to the default setting because it already looks good enough for me (yes, that includes xfce)
made it to the end, congrats on 50k!
8:03...I feel called out XD
I love your Digimon wallpaper!
The way you introduced piping has got to be used in universities. I really like the way you introduce new topics, and I think professors would learn a lot from your segues
After switching to Linux for a month and using a Windows machine this morning I can confidently declare I've lost all ability to use file manager and now is only capable of using cd and zoxide
cant believe donut.c was never mentioned 😔
"It has colors and pipes and looks like i know what I'm doing but in reality I can't even solve a Leetcode medium problem." Oof this is the realest shit
I learned to appreciate CLI tools so much
Idk as a frontend developer I shouldn't like the terminal as much as I do lmao
new vid idea: "starting out your linux journey"
Can confirm that 50% of the reason I clicked was Anya-chan doing her waku waku face in the thumbnail
>Linux
>Kamen Rider
>Korone
>Ai wa Boomerang
You gained a new sub
Let's be friends 🤝
@@elfofrit when niche interests collide
2:08 love the X vs Zero theme
@2:51 It means: Nature remind us to get out of our "Social Reality" and realize Nature is larger than that, and to enjoy life, while we can
0:16 I just took the 15m 49s break to solve this problem. Well, now on to the video xd
_💀_
Subscribed for the piece of advice at the end
AGHHH THE STEGOSAURUS IS THE BEST THING EVER!!!! My git messages are about to be littered with these bad boys. Surely there's gotta be a way of wrapping my vim messages with the steggy boy...
@@sophie____ honestly, great idea, I'll use it for my next commit messages
Based for using a Urusei Yatsura song as your outro
fastfetch is good if you want it to run every time you open your terminal. It's written in C so it's fast, hence the name.
idk fastfetch looks kinda weird on default config and im really stupid (so i made my own fetch program that on a good system runs in about 200μs)
Fortune cookies are already shitty, and yet people read them. "Fortune" was not useless. It was an improvement on the actual fotune cookie.
You aren''t eating your terminals, are you?
@@attustheant I am ingesting them.
fortune into cowsay into lolcat is the best thing to have each time you open your terminal
so I had to sudo apt install sl
and then I had to use sl 🤣
its really funny spending too much time customizing terminal with weird stuff
lmao the pipe is not for I guess 🤣I would watch the birds flying rather than pipes
great vid!!! love the editing 🔥
un chileno al que se le entiende. amo el tipo de humor de este canal, es raro y dificil de explicar pero me gusta y me quedo hipnótico con estos videos
Instead of neofetch, cmatrix and cava Use fastfetch, unimatrix and glava
me using the Default KDE 6 Manjaro wallpaper:
4:39 "a few weeks ago" apparently equates to three months
testing this on termux, definitely fun thing to do
_hello fellow termux user 🐢_
since the past hour every video want me to go from Zorin Os to Arch but i heard about that installation difficulty (but the result is so beautiful 😭😭)
in my programming 1 course (python) we did the cowsay CLI project as a lab in our class. it was fun, the cow images were given (excluding the sheep), and also a dragon and tiger. from what i remember the cows name was heifer, but nevertheless the project was rly fun and was my first intro to CLI.
ULTRAKILL OST SPOTTED
Thanks for that screen shot bind
Hyprland spotted. High five ✋
Caught me offgaurd at 6:44
"Or your next not project at all because you're never going to acomplish anything [...]"
Too personal and real. I want to learn to code and make this auto clicker for a game but I'm too lazy. Damn.
Your videos are funny asf man. Never stop it!
You left out the best ASCII animation tool, Durdraw. :)
2:36 Frank Zappa, referenced and I feel alive as a programmer and a shredder!!
2:11 a noteworthy mention about cowsay alike program is: ponysay -- a rewritten implementation for Bronies
had to double check, yes my wallpaper is anime, but its just a minimalist faceless Yu Gi, so yeah
omg my wallpaper is marik
My wall paper is anime, but its of Tanaka-kun saying "I dont need new developments in my life" as a reminder
Flame Mammoth loves pipes
- Have dual, maybe more, monitors side by side.
- Crank that resolution as much as possible.
- Long, short terminal window spanning all monitors.
- $ sl
- Train is now a useless and frustratingly long loading bar.
- Linux life.
Holy shit I didn't know that's what piping did, I thought it was just way to input multiple commands at the same time 💀💀💀 This is what you get when you set up a linux server by just copy pasting things you find online...
1:30 - I spent a bit of time reimplementing fortune in Rust, which meant looking at the C source to parse those quotes libraries. ...
It doesn't look like any C source you'd see today. I'm honestly not 100% this wasn't written on a teletype. 1979 was a little while ago.
Also - this is from an era with 100's of people were connected to a single mini computer. So - lots of utils were built around having a quirky fun office environment. Like imagine Slack except all clients and servers were running on the local system.
I like htop or ytop for process viewers WAY over original top
holy shit , brilliant sponsorship
Mults: "Silly programs, with no purpose."
Me: ... were still talking about linux right???????? right?????
is it just me or the thumbnail of this video changes every time I get it in my recommendations??
0:53
Just made me realize that stock image sites might be irrelevant now. At least crappy ones. Why bother paying for slop when you can generate slop at the pace of your own patience?
i just had the strangest glitch where this entire video was replaved with a soundless cat video
Hey I saw a screenshot from my blog at 1:48 🥳
i re-installed bblean because of this video thank u
idk where I saw a dude loosing his head after weeks of doing complex programming just to make a 3D moving donut with ascii in the CLI, this video reminded me of that lmao
I just loved this!!! Can you suggest more cli tools!
My favorite: fortune | figlet | cowsay -n -d | lolcat -t
subbed
this is my first time watching your channel
Accessible but informative
Thank you, good work
I use arch btw
Not only in Linux but also in Windows.
BTW, I found that after the 2022 update of Windows 10, cmd.exe works really well, it renders colors correctly (no mumbo-magic) and it works acceptable.
When CLI shines? maintenance/developer/admin tools
i just finished watching the whole star wars iv movie in full ascii
We need an ls-swap command for the car bros 🏎️💨
There are a lot of CLIs in the security space.
This PEAK!
Well yeah... That's cool! :D
6:44 jokes on you I have Dreamcatcher Gahyeon as my wallpaper
hey what are you using for the as a in terminal file browser/file editor in 7:30 it looks very much like something i want to use but dont have...
ranger, there's nnn too, harder to setup but at the same time a lot more customizable, ranger is nice and just works out of the box
Ultrakill, megaman x and a bunch of other based osts, take my sub man
ayy, I am using tide aswell, great terminal theme
ASCII ART is not very pixel precise. But there is a bios function (ax=1100 of int 10) for user character, so we can replace the bits of the character with our own user bits inside the character.
This made my day xD
aah - searching at the "wrong unixporn" was a bad experience..
Very cool video!
im not gonna lie, my wall paper is a animadet grathink of a 80´s style sunset calld "Neon Sunset"
Beautiful
4:13 Do my ears deceive me?!
I HEAR [Nichijou] music!
does anyone know how ppl get text to display at certain places on the screen? the only way i know is print() (along with other languages equivalents), which doesn't let you specify where the text is displayed.