Poetry Collection

Poems in true chronological order by post date

« First‹ Prev │ Page 125 of 1150 │ Next ›Last »

Menu

 -> file: fediverse/580
══════════════════════════════════════════─────────────────────────────────────────
 @user-425 
 
 c is king for a reason! do ittttt
                                                           ┌───────────┐
 similar different════════════════════════════════════════────────────────────────────┴───────────┘

 -> file: fediverse/581
══════════════════════════════════════════─────────────────────────────────────────
 @user-428 
 
 sometimes I think about how much more productive I'd be if I had a code editor
 that let me draw arrows and smiley faces and such alongside the code. Or if I
 could position things strangely, like two functions side-by-side with boxes
 drawn around them. Or diagrams or flowcharts or graphs or...
 
 something that would output to raw txt format, but would present itself as an
 image that could be edited.
                                                           ┌───────────┐
 similar different════════════════════════════════════════────────────────────────────┴───────────┘

 -> file: fediverse/582
══════════════════════════════════════════─────────────────────────────────────────
 @user-431 
 
 I made an alias that overwrites cd so I don't have to do this. The important
 line is line 27, you could probably accomplish something similar like this:
 
 alias cd="cd ${1} && ls -v --color=auto"
 
 I also set it up so I can change more than one directory up using ... or ....
 or .....
 
 also I have a few shortcut scripts, cdir and qcd. cdir creates a quick way to
 drop a bookmark wherever I'd like, while qcd can make permanent bookmarks. Also
 qcd makes it so whenever I open a new terminal it opens to the last directory I
 was in, which is nice if you need a new terminal to do something in the current
 folder and you don't want to have to walk alllllllll the way back.
A BASH script that overwrites the built in "change directory" command to auto magically list the contents of the directory you've moved into after moving.  here's the content of the script:  #!/bin/bash  alias cd="cd-improved"  function cd-improved(){      if [ "${1}" = "..." ] ; then         builtin cd .. && builtin cd ..     elif [ "${1}" = "...." ] ; then         builtin cd .. && builtin cd .. && builtin cd ..     elif [ "${1}" = "....." ] ; then         builtin cd .. && builtin cd .. && builtin cd .. && builtin cd ..          elif [ -d "./${1}" ] ; then         local target_dir="./${1}"      elif [ "${1}" = "cdir" ] ; then         local target_dir="$(tail -n 1 '/home/ritz/scripts/.cdir-target')"         echo ${target_dir}       else         local target_dir="${1}"     fi      if [ ! "${2}" = '--no-ls' ] ; then         builtin cd "${target_dir}" && ls -v --color=auto     else         builtin cd "${target_dir}"     fi          # if the qcd function is defined     if declare qcd > /dev/null; then         quick_cd -d DEFAULT         quick_cd -a DEFAULT     fi }

                                                           ┌───────────┐
 similar different════════════════════════════════════════────────────────────────────┴───────────┘

 -> file: fediverse/583
══════════════════════════════════════════─────────────────────────────────────────
 I love how the gnu C documentation lists this particular page as number 6.66
An excerpt from the GNU C documentation. The page describes how to use binary constants in C code using a prefix of '0b', essentially instead of using the integer 42 you might write '0b101010'  This particular page is from chapter 6, page 66. The joke, of course, is that using binary numbers in C code in this way is demonic in some way (traditionally the number 666 is regarded as the "devil's number")

                                                           ┌───────────┐
 similar different════════════════════════════════════════────────────────────────────┴───────────┘

 -> file: fediverse/584
══════════════════════════════════════════─────────────────────────────────────────
 ┌──────────────────────┐
 │ CW: scary-drone      │
 └──────────────────────┘
 
 
 https://v.redd.it/osf7ktli41bc1
                                                           ┌───────────┐
 similar different════════════════════════════════════════────────────────────────────┴───────────┘

 -> file: fediverse/585
══════════════════════════════════════════─────────────────────────────────────────
 yggdrasil grows out, not up.
                                                           ┌───────────┐
 similar different════════════════════════════════════════────────────────────────────┴───────────┘

 -> file: fediverse/586
══════════════════════════════════════════─────────────────────────────────────────
 @user-419 
 
 the smell of decay is the smell of creation, as life is recycled into that
 which gives birth to new forms
 
 so... that smell is probably me, I haven't showered in a while. sorry.
                                                           ┌───────────┐
 similar different════════════════════════════════════════────────────────────────────┴───────────┘


« First‹ Prev │ Page 125 of 1150 │ Next ›Last »