Poems in true chronological order by post date
-> file: fediverse/3581 ════════════════════════════════════════════════════─────────────────────────────── @user-883 or vaporize, which doesn't have a smell beyond ~5 feet, especially if you exhale into a carbon filter like "weed smell" is a solvable problem and some people don't get it ┌─────────┐ ┌───────────┐ │ similar │ │ different │ ╘═════════╧═════════════════════════════════════════──────────────────┴───────────┘ -> file: fediverse/3582 ════════════════════════════════════════════════════─────────────────────────────── @user-883 I like #2 best but #1 looks more realistic?? ┌─────────┐ ┌───────────┐ │ similar │ │ different │ ╘═════════╧═════════════════════════════════════════──────────────────┴───────────┘ -> file: fediverse/3583 ════════════════════════════════════════════════════─────────────────────────────── when was the last time you licked a plate? ┌─────────┐ ┌───────────┐ │ similar │ │ different │ ╘═════════╧═════════════════════════════════════════──────────────────┴───────────┘ -> file: fediverse/3584 ════════════════════════════════════════════════════─────────────────────────────── ┌──────────────────────┐ │ CW: drugs-mentioned │ └──────────────────────┘ "If I look like a fool, it'll keep eyes on me instead of looking at my friends who are stoned and paranoid" maybe the friends are paranoid because you're acting like a dork and drawing attention to the group ┌─────────┐ ┌───────────┐ │ similar │ │ different │ ╘═════════╧═════════════════════════════════════════──────────────────┴───────────┘ -> file: fediverse/3585 ════════════════════════════════════════════════════─────────────────────────────── ┌──────────────────────┐ │ CW: re: pol-paranoia │ └──────────────────────┘ hmmmm I should probably put this in "things I almost posted" ┌─────────┐ ┌───────────┐ │ similar │ │ different │ ╘═════════╧═════════════════════════════════════════──────────────────┴───────────┘ -> file: fediverse/3586 ════════════════════════════════════════════════════─────────────────────────────── ┌───────────────────────────┐ │ CW: programming-mentioned │ └───────────────────────────┘ I love programming!! Currently working on learning decentralized and GPU oriented computing. It's lots of fun! Plus Bash is a great language, it's not funky or hacky at all. Just a great language. Haha suuuuch a great thing to play with. But GPUs are legitimately cool, aside from Bash's purported funkiness / hackiness. You can do all kinds of cool things at scale that just don't make sense up close. EDIT: oops sorry forgot the content warning ┌─────────┐ ┌───────────┐ │ similar │ │ different │ ╘═════════╧═════════════════════════════════════════──────────────────┴───────────┘ -> file: fediverse/3587 ════════════════════════════════════════════════════─────────────────────────────── ┌─────────────────────────────┐ │ CW: re: computers-mentioned │ └─────────────────────────────┘ I realized that script was bugged, so... here's a better one. Plus a fun run script too!#!/bin/bash set -euo pipefail DIR="/home/ritz/programming/chapel/language-files" VER="2.1.0" FIL="chapel-${VER}.tar.gz" URL="https://github.com/chapel-lang/chapel/releases/download/${VER}/${FIL}" NUM_THREADS="16" touch ${DIR}/files rm -dr ${DIR}/files mkdir -p ${DIR}/files wget --output-document ${DIR}/${FIL} ${URL} tar xf ${FIL} --directory=${DIR}/files rm ${FIL} cd ${DIR}/files/chapel-${VER} export CHPL_LLVM=system source ${DIR}/files/chapel-${VER}/util/setchplenv.bash make -j${NUM_THREADS} echo "now testing, to validate LLVM configuration as suggested in the docs:" chpl "./examples/hello3-datapar.chpl" ./hello3-datapar echo "the chapel programming language is now fully installed! Have fun!" cd - ┌─────────┐ ┌───────────┐ │ similar │ │ different │ ╘═════════╧═════════════════════════════════════════──────────────────┴───────────┘ |