bahmanm@lemmy.ml to Java@programming.devEnglish · 3 months agoAssertJ's custom assertionsplus-squarelemmy.mlexternal-linkmessage-square0fedilinkarrow-up11arrow-down10
arrow-up11arrow-down1external-linkAssertJ's custom assertionsplus-squarelemmy.mlbahmanm@lemmy.ml to Java@programming.devEnglish · 3 months agomessage-square0fedilink
bahmanm@lemmy.ml to Linux@lemmy.mlEnglish · 8 months agoMy fellow software engineer, It's the year 2024...plus-squaremastodon.socialexternal-linkmessage-square167fedilinkarrow-up1302arrow-down117
arrow-up1285arrow-down1external-linkMy fellow software engineer, It's the year 2024...plus-squaremastodon.socialbahmanm@lemmy.ml to Linux@lemmy.mlEnglish · 8 months agomessage-square167fedilink
bahmanm@lemmy.ml to Prolog@lemmy.sdf.orgEnglish · 1 year ago[HELP] A noob's request for code reviewplus-squaregithub.comexternal-linkmessage-square0fedilinkarrow-up11arrow-down10
arrow-up11arrow-down1external-link[HELP] A noob's request for code reviewplus-squaregithub.combahmanm@lemmy.ml to Prolog@lemmy.sdf.orgEnglish · 1 year agomessage-square0fedilink
bahmanm@lemmy.ml to Community Meta Discussion@ttrpg.networkEnglish · 1 year agoWould you be interested in opting-in to lemmy-meter.info?plus-squaremessage-squaremessage-square0fedilinkarrow-up11arrow-down10
arrow-up11arrow-down1message-squareWould you be interested in opting-in to lemmy-meter.info?plus-squarebahmanm@lemmy.ml to Community Meta Discussion@ttrpg.networkEnglish · 1 year agomessage-square0fedilink
minus-squarebahmanm@lemmy.mltoLinux@lemmy.ml•[Help] go and perl5 folders in ~/linkfedilinkEnglisharrow-up1·1 year agoRE Go: Others have already mentioned the right way, thought I’d personally prefer ~/opt/go over what was suggested. RE Perl: To instruct Perl to install to another directory, for example to ~/opt/perl5, put the following lines somewhere in your bash init files. export PERL5LIB="$HOME/opt/perl5/lib/perl5${PERL5LIB:+:${PERL5LIB}}" export PERL_LOCAL_LIB_ROOT="$HOME/opt/perl5${PERL_LOCAL_LIB_ROOT:+:${PERL_LOCAL_LIB_ROOT}}" export PERL_MB_OPT="--install_base \"$HOME/opt/perl5\"" export PERL_MM_OPT="INSTALL_BASE=$HOME/opt/perl5" export PATH="$HOME/opt/perl5/bin${PATH:+:${PATH}}" Though you need to re-install the Perl packages you had previously installed. linkfedilink
minus-squarebahmanm@lemmy.mltoLinux@lemmy.ml•Bazzite: An immutable Fedora-based OS optimized for gaming on any device, from desktops to laptops to the Steam DecklinkfedilinkEnglisharrow-up1·2 years agoInterestingly “Bazzi” means “game” in Farsi 🤷♂️ linkfedilink
RE Go: Others have already mentioned the right way, thought I’d personally prefer
~/opt/go
over what was suggested.RE Perl: To instruct Perl to install to another directory, for example to
~/opt/perl5
, put the following lines somewhere in your bash init files.export PERL5LIB="$HOME/opt/perl5/lib/perl5${PERL5LIB:+:${PERL5LIB}}" export PERL_LOCAL_LIB_ROOT="$HOME/opt/perl5${PERL_LOCAL_LIB_ROOT:+:${PERL_LOCAL_LIB_ROOT}}" export PERL_MB_OPT="--install_base \"$HOME/opt/perl5\"" export PERL_MM_OPT="INSTALL_BASE=$HOME/opt/perl5" export PATH="$HOME/opt/perl5/bin${PATH:+:${PATH}}"
Though you need to re-install the Perl packages you had previously installed.