Elektrine lite

← Feed

eht16

eht16@casual.pending.io

<p>Software Developer.<br>Loves to write, deploy and run software.</p><p>Posts are mainly about tech stuff, sometimes about food on trains and random other things.</p><p>All of my posts and software are 100% AI free.</p><p>Software: :debian: :xfce: :geany: :python: :django:</p><p>General: :flag_eu: :fckafd: :nonazis:</p>

Posts

  • Post #2559779

    There are rumors there will be a new Geany :geany: release in about three weeks. Stay tuned, I&#39;m sure @GeanyIDE will tell us soon that Geany 2.1 is on its way :smile:. #Geany #geanyIDE

  • Post #2559776

    Dear Geany users, there is a little hidden gem in Geany you might or might not know about already: it&#39;s called Send Selection To and let&#39;s you pass the currently selected text from Geany to any command that will read and process the text from its standard input stream and Geany will read the standard output of the command and replaces the selected text with this output. The commands to use can be configured freely in Geany. And the first three configured commands can be easily execute...

  • Post #821484

    TIL: test -s exists - an easy way to check for non-empty files in bash scripts. Nothing new, nothing sensational but comes in quite handy sometimes when just need to know is there any content in file X. E.g.: if [ -s /path/to/some/file ]; then echo &amp;#34;the file is not empty&amp;#34; fi #bash #shell