# grep search the current directory
function lg() {
ls -alt | grep $1
}
- 0 Posts
- 32 Comments
livingcoder@programming.devto Linux@lemmy.ml•Ubuntu 25.10 drops support for GNOME on Xorg6·28 days agoCan anyone explain what this means to me like I’m 5?
It’s not delayed. The other person who is seen in the broadcast must be asleep. I’m sorry that your superpower is so limited. Such a shame.
The other person has to be asleep and hears it as a whisper in their dream.
I can pause time in order to write as much code as I want without interruption.
livingcoder@programming.devto Lemmy Shitpost@lemmy.world•Let's put an end to the discussion; what is the best way?4·2 months agoI started doing this and have never looked back. We also keep the next loaf in the freezer, so we always have bread.
The price and quality are so hard to beat.
There are so many ways to be a hero for those around you. Why end your life when you could dedicate your life to help those in need? When you feel at your lowest, remember that there is someone, right now, who wants to know and believe in you and who hopes that you could do your very best to help them and others.
This is intended to be motivating. Instead of leaving a hole in the world, you could become a role model for others.
livingcoder@programming.devto Linux@lemmy.ml•Christoph Hellwig steps down from maintaining DMA202·4 months agoI hate that it came to this, after so many Rust devs left, but all I can say is “Good.”
livingcoder@programming.devto Technology@lemmy.world•Life isn't easy if your last name is 'Null' as it still breaks database entries the world overEnglish14·4 months agoIt happened to a friend who wasn’t passing in the proper types into their stored procedures, all strings, and “null” (not case sensitive) conflicted with actual null values. Everything in the web interface were strings, and so was null.
For some people it takes this mistake before they learn to always care about the data types you’re passing in.
I don’t know how some people find the time to do anything but help take care of mom and the baby. I was either sleeping or helping while trying to find time for food.
livingcoder@programming.devto Ask Lemmy@lemmy.world•What's your go-to long form Youtuber?1·4 months agoGreat list! I would just add The Majority Report if you’re looking to learn more about politics while also trying to understand what is happening today. They do a ~2.5-hour live show every weekday which includes a quick overview of the latest headlines for today, an interview of someone with knowledge about some politics-related topic, and then an hour of mostly right wing videos that they discuss, argue with, and vent about.
I love it for how informative it is and for keeping me sane.
livingcoder@programming.devto Ask Lemmy@lemmy.world•What's your go-to long form Youtuber?2·4 months agoI love melodysheep. The music is very good.
livingcoder@programming.devto Technology@lemmy.world•The one change that worked: I set my phone to ‘do not disturb’ three years ago – and have never looked backEnglish33·5 months agoI’ve had mine on vibrate for years. Texting doesn’t trigger it, only calls. It’s been great. I look at my phone only when I’m ready to look at it.
livingcoder@programming.devto Lemmy Shitpost@lemmy.world•If we are going to rename the Gulf wouldn't this be more appropriate10·5 months agoI’m just going to start pronouncing it “The Gulf of MEH-he-co”, really laying on a heavy Spanish accent for clarity.
livingcoder@programming.devto Ask Lemmy@lemmy.world•What is our guaranteed tear jerker movie or scene?41·7 months agoI remember Click (2006) being very sad, but I haven’t watched it in a long time.
livingcoder@programming.devto Ask Lemmy@lemmy.world•What is our guaranteed tear jerker movie or scene?5·7 months agoThe episode “The Sign” of Bluey, the end.
livingcoder@programming.devto Asklemmy@lemmy.ml•People often point to the terrible things in the world as evidence we're living in "the worst timeline". What examples are there of things that suggest our timeline is actually better than it seems?6·9 months agoThe aliens haven’t yet consumed our planet in this timeline. Consider yourself lucky.
livingcoder@programming.devto Asklemmy@lemmy.ml•What are your favorite leftist news sources?10·10 months agoThe Majority Report. It’s awesome. https://m.youtube.com/@TheMajorityReport
# Copy pwd into clipboard using pbcopy alias cpwd="pwd | tr -d '\n' | pbcopy && echo 'pwd copied into clipboard'"