Skip Navigation
Derisking a project 1 year out
  • I want to add: 2-3 sprints ahead is a GREAT begining goal for a team trying to get started with Agile.

    Long term though let's set that bar higher :D

  • Derisking a project 1 year out
  • I do greatly appreciate my management and general company tech culture, they're great.

    I agree with your stance here, because it's part of my point. I tend to see more people bitching about Agile itself and not management or their particular implementation.

    The jobs where I was only given enough info to plan 2 - 4 weeks out were so stressful because I frequently felt like I was guessing at which work was important or even actually relevant. Hated it.

    Turns out it's a skill issue ;p (on the management level to be clear). Folks, don't let your lazy managers ruin you on a system that can be perfectly fine if done right.

  • Homemade clubhouse sandwich with apple fries
  • Why do people do this? There is neither a clubhouse sandwich or any fries in this image.

    This looks like a great lunch but why is it so common to call things what they aren't? "Fries" isn't a shape. Apple sticks? Slices? Roughly julienned apples?

    Put pork flavoured soy on whatever you want, but why the need to call it vegan bacon ya know?

  • Derisking a project 1 year out
  • 2-3 sprints?! Y'all really flying by the seat of your pants out here huh?

    My teammates and I have no trouble planning multiple quarters in advance. If something crops up like some company wide security initiative, or an impactful bug needing fixed, etc then the related work is planned and then gets inserted ahead of some of the previously planned things and that's fine because we're "agile".

    I delivered a thing at the end of Q3 when we planned to deliver at the start of Q3? Nobody is surprised because when the interruptions came leadership had to choose which things get pushed back.

    I love it. I get clear expectations set in regards to both the "when" and the "what", and every delay/reprioritization that isn't just someone slacking was chosen by management.

  • What's the most stupid trend (or fad) you participated in yourself?
  • Hot metal + arm = Smiley Face

  • best resources and tips for a newbie to linux?
  • You're absolutely right. For what it's worth, it's just the first part that's important.

    When you pick up a new concept from a "resource" such as a tutorial, take a minute to explore the concept and understand the semantics of what you're doing. In the name of illustrating a concept tutorials can often be misleading in subtle ways.

    An explanation of my "useless use of cat" example:

    The command line has a concept called "piping". This lets one command send output to a second command. It's very handy. There is usually also a "cat" command, which will read a file and send the contents where you tell it. This is often your screen, or through a "pipe" to a second command. There is also a "grep" command that lets you search data for certain words.

    Many "linux newbie" tutorials combine these tools to show how "piping" lets you send data from one command to another. "cat" some text file, then "pipe" the output to "grep" to search for your words. It usually looks something like cat ./my_address_book.txt | grep Giles to find lines in "./my_address_book.txt" that contain the word "Giles". The thing is that "grep" can take a file name as an argument. You can just do grep Giles ./my_address_book.txt, and cat is for concatenating files into one. If you want to simply read a file there are more appropriate tools such as "less". This by the way is the "useless use of cat"

    When you're a newbie though, it may be the first time you're seeing either "grep" or "cat". The tutorial is just trying to show you "pipes". Along the way you're picking up these "bad habits". I've met professional sysadmins who didn't know grep took a filename as an argument. It was always "cat blah | grep my_search". I will see people type "cat /some/file | less" instead of "less /some/file". It shows a lack of understanding of what these tools actually do, and IMO it just comes down to regurgitating tutorial actions without bothering to understand the semantics of what you're being shown.

  • best resources and tips for a newbie to linux?
  • Don't follow tutorials, understand them. I'm so tired of seeing useless uses of cat because some asshole writing a tutorial 20 years ago decided to illustrate how pipes work with a good ol cat file | grep string as if grep didn't take a file name as an argument.

    The more time I spend being mad about this the more I notice people using horrible practices in tutorials because they're too lazy to setup a legit use case.

    A new user sees this and thinks this is how grep works.

    Loops are another common one. People going around not knowing you can pass a glob to a shell for loop. Because the tutorial they read was lazily written and they didn't bother to understand the bits of what they were being shown, only how to reproduce/mangle the command until they manage to get close enough to what they want out of it.

  • How do you check if a file ends in a certain file extension in bash?
  • That's my bad, I asked an incomplete question.

    What does the approach of spawning a grep process and having ls send ALL of it's output to grep have over just passing a glob to ls?

    Like:

    $ ls /usr/share/*.lm
    
    /usr/share/out-go.lm  /usr/share/ril.lm     /usr/share/rlhc-crack.lm   /usr/share/rlhc-d.lm   /usr/share/rlhc-java.lm  /usr/share/rlhc-julia.lm  /usr/share/rlhc-ocaml.lm  /usr/share/rlhc-rust.lm
    /usr/share/ragel.lm   /usr/share/rlhc-c.lm  /usr/share/rlhc-csharp.lm  /usr/share/rlhc-go.lm  /usr/share/rlhc-js.lm    /usr/share/rlhc-main.lm   /usr/share/rlhc-ruby.lm
    
  • How do you check if a file ends in a certain file extension in bash?
  • What's the purpose of a pipe and an execution of "grep" here?

  • How do you check if a file ends in a certain file extension in bash?
  • What's the benefit of spawning a subshell and executing "ls" here instead of just passing a glob to your loop?

    $ for lol in /usr/share/*.lm;do printf "I found a file named '%s'\n" "$lol";done
    
    I found a file named '/usr/share/out-go.lm'
    I found a file named '/usr/share/ragel.lm'
    I found a file named '/usr/share/ril.lm'
    I found a file named '/usr/share/rlhc-c.lm'
    I found a file named '/usr/share/rlhc-crack.lm'
    I found a file named '/usr/share/rlhc-csharp.lm'
    I found a file named '/usr/share/rlhc-d.lm'
    I found a file named '/usr/share/rlhc-go.lm'
    I found a file named '/usr/share/rlhc-java.lm'
    I found a file named '/usr/share/rlhc-js.lm'
    I found a file named '/usr/share/rlhc-julia.lm'
    I found a file named '/usr/share/rlhc-main.lm'
    I found a file named '/usr/share/rlhc-ocaml.lm'
    I found a file named '/usr/share/rlhc-ruby.lm'
    I found a file named '/usr/share/rlhc-rust.lm'
    
  • How do you check if a file ends in a certain file extension in bash?
  • File extensions are just a text based convention. Renaming a file to end in .PDF does not make the file a valid PDF.

    You're really saying there's no way for a posix shell to take the text to the right of the last "." character and then do simple string comparison on the result?

    Also why can't you just use normal globbing to feed arguments to your command? Why do you need to involve flow control?

  • Is ansible worth learning to automate setting up servers?
  • Configuration management and build automation are definitely worth the time and effort of learning. It doesn't have to be ansible, find which tool suits your needs.

  • If you want communism, you can start a commune
  • Ah yes, the core definition of communism: a small farm offering a delusion of independence, which is run within a capitalist system.

  • Livin' large
  • The AJFA book is full of nothing but lies. Buy another blunt or something instead ;p

  • Do you usually purchase digital or physical books? Why?
  • Same here. Reference, particularly sheet music and cooking recipes work fine for me digitally.

    I can sit at the computer and read social/news media for hours with no problem, but the way ebooks are displayed tires my eyes very quickly for some reason.

    While I don't have this issue with the e-ink/e-paper stuff, I've never owned one. I also appreciate that physical books are often much harder to damage and will work without electricity.

  • Self-Hosting Email - Software Recommendations?
  • I also have a small domain that is relatively low traffic. A lot of the "all in one" software on the list you linked looks pretty cool, I can't deny.

    What I found is that I make very few changes. I used to add mailbox aliases fairly often, but the fact is there are only two users and enabling the "+" syntax in addresses put a stop to me needing to make new aliases when I wanted a new address.

    I just don't feel like I need a management interface. Because of this I've just sort of frankensteined my own setup together and I love it. It operates how I expect it to, and enforces the standards I care about to the extent that I desire (e.g. which SPF result codes am I ok accepting?).

    • Postfix as SMTP/Submission server. I chose to go w/PAM based for outbound SMTP auth.
    • Courier for IMAPS
    • Dovecot for LDA (sieve is delightful)
    • Snappymail for webmail (served by apache httpd)
  • Filesystem Hierarchy Standard - Reference Poster / Cheatsheet [Added dark mode]
  • Bonus tip: Many distros make this info available on the cli by including a "hier" man page that you can read using the command "man hier".

  • Deleted
    *Permanently Deleted*
  • said the liar!

  • Weekly “What are you playing” Thread || Week of November 12th
  • Bouncing around between two for the most part.

    I'm mostly playing Guild Wars 2, enjoying saving the world from demonic invasion in what has so far been a pretty great expansion IMO and I am a bit of a hoor for some of the new cosmetics.

    When I need a break from the rough grind, I jump into a super duper rough grind by firing up ol Leaf Blower Revolution. Idle game my ass, I'm clicking more than 5 cookie clicker players combined! There are still leaves everywhere!

  • korthrun Korthrun @lemmy.sdf.org

    *NIX enthusiast, Metal Head, MUDder, ex-WoW head, and Anon radio fan.

    Posts 0
    Comments 48