# grep search the current directory
function lg() {
ls -alt | grep $1
}
- 0 Posts
- 19 Comments
livingcoder@programming.devto Linux@lemmy.ml•Ubuntu 25.10 drops support for GNOME on Xorg6·30 days agoCan anyone explain what this means to me like I’m 5?
livingcoder@programming.devto linuxmemes@lemmy.world•Almost as annoying as the windows evangelists2·3 months agoI’ve found that one of the best things to do when making a library for something that is going to have a web interface is to first have it work in the terminal. You can much more quickly play around with the design and fix issues there instead of having to work with a more complex web interface.
You just create a simple menu system, like
input("1: Feature A\n2: Feature B\n>")
and just start trying out all of the different scenarios and workflows.
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 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
livingcoder@programming.devto Asklemmy@lemmy.ml•What is your favorite movie of all time?191·10 months agoEternal Sunshine of the Spotless Mind
livingcoder@programming.devto Asklemmy@lemmy.ml•What’s your “I can’t believe other people don’t do this” hack?1·10 months agoThey say it just tastes better. idk. I’m going to try it soon.
livingcoder@programming.devto Asklemmy@lemmy.ml•What’s your “I can’t believe other people don’t do this” hack?10·10 months agoSomeone just suggested to me that I should be putting my chocolate bars in the freezer first. I’ve never heard of this, but apparently it’s a thing that I’ve been missing out on for a while.
So I guess I’m the one who can’t believe that I don’t do it.
livingcoder@programming.devto Asklemmy@lemmy.ml•What's the worst video game you've ever played?2·11 months agoI loved both of these games as a kid.
livingcoder@programming.devto Linux@lemmy.ml•What is something you want to use, yet are NOT using?3·1 year agoOh, yeah, vim motions are wonderful. I started using them when I installed Linux on my Chromebook due to the lack of a good keyboard setup (I still don’t know where the Delete key is on that thing).
livingcoder@programming.devto Linux@lemmy.ml•What is something you want to use, yet are NOT using?1·1 year agovim (or better yet vim bindings) is great. I’ll never go back.
livingcoder@programming.devto Linux@lemmy.ml•What is something you want to use, yet are NOT using?221·1 year agoNeovim. I tried to use it a year ago, but I felt like I was fighting it every time I just wanted to make progress on my project. VSCode doesn’t get in my way. I’m going to give it another shot in a few years.
livingcoder@programming.devto Asklemmy@lemmy.ml•What life hack is so simple yet so effective, you're shocked more people don't know about it?1·1 year agoIt basically allows you to start peeling immediately.
livingcoder@programming.devto Asklemmy@lemmy.ml•What life hack is so simple yet so effective, you're shocked more people don't know about it?5·1 year agoJust reposting without the tracker: https://youtu.be/L1QVp55ehvs
livingcoder@programming.devto Asklemmy@lemmy.ml•What life hack is so simple yet so effective, you're shocked more people don't know about it?5·1 year agoI was today-years-old when I learned the ideal way to eat a banana.
livingcoder@programming.devto Asklemmy@lemmy.ml•What life hack is so simple yet so effective, you're shocked more people don't know about it?824·1 year agoYou can just pinch the end of a banana to start peeling it. The effort required is far less than trying to overcome the ripping force of the stem.
livingcoder@programming.devto Asklemmy@lemmy.ml•What else can be done to defeat Trump in November other than just telling people "vote"?1·1 year agoI’m very curious how giving money to Trump supporters would hurt Trump? Some people are giving their last dollar to Trump and depend in charity at this point. Wouldn’t throwing money at local charities just further enable them?
# Copy pwd into clipboard using pbcopy alias cpwd="pwd | tr -d '\n' | pbcopy && echo 'pwd copied into clipboard'"