Android Studio appears and then immediately vanishes upon executing ./studio.sh in Ubuntu 22.04 #commandline #bash #2204 #androidstudio

Android Studio appears and then immediately vanishes upon executing ./studio.sh in Ubuntu 22.04 #commandline #bash #2204 #androidstudio
Just had a weird moment where, as I was typing my password into my password manager, I almost hit Tab expecting it to autocomplete...
Filepath expansion includes parent and current directory? #bash
"Startup Applications" skips "Press any key to continue" statements in .sh script #bash #2204 #startupapplications
Kill the bug that prevents starting of android studio upon the command ./studio.sh in ubuntu 22.04 #commandline #bash #android
22.04 "Startup Applications" skips "Press any key to continue" statements in .sh script #bash #startupapplications
GitHub - bcyran/fancy-motd: Fancy, colorful MOTD written in bash. Server status at a glance. https://github.com/bcyran/fancy-motd #OpenSource #GitHub #server #status #fancy #MOTD #bash
GitHub - opengrep/opengrep: Static code analysis engine to find security issues in code. https://github.com/opengrep/opengrep #vulnerability #JavaScript #OpenSource #dockerfile #typescript #analysis #security #clojure #GitHub #Python #golang #kotlin #scheme #static #julia #swift #Ruby #bash #code #dart #html #java #json #lisp #rust #yaml #C++ #PHP #jsx #lua #xml #C# #C #r
All Commands Are Displayed in Figlet and Do Not Execute #commandline #bash #permissions #nautilus
NEU! VIDOE02GIF
Es gibt ein geniales context-convert Plugin für Dateimanager in Plasma/KDE am Beispiel Dolphin
Videoclips und Bilder kann man per Mausklick direkt in Dolphin in andere Formate verwandeln. von mir geforkt und erweitert.
https://github.com/dewomser/dolphin-context-convert
Useful alias I use all the time...
```
export ymd='date +%Y%m%d'
```
I can then use it when I want to create directories/files that are date stamped...
```
mkdir something-$(ymd)
```
The making, of einen D.I.Y. FLOMB! Video-Clip. (Kaum Glanz, viel Schmuddel)
https://punktube.net/videos/watch/abd4019c-8631-4467-a938-36be1630a976
FLOMB! - Kaum Glanz, viel Schmuddel (und eben gerade drum) Video Clip
https://punktube.net/videos/watch/75db07c4-1150-48a0-a54a-ab58b5056656
Just fired off one of my weirder #bash commands:
`while ! !!;do sleep 1;done`
Repeat my previously typed commands until it doesn't fail anymore. But the `! !!` seems rather fun :D
@rathann pokazuje, jak dzięki Compliance As Code można automatycznie sprawdzać i wdrażać polityki bezpieczeństwa, np. CIS Benchmark, za pomocą skryptów w Bashu lub Ansible.
Link do nagrania: https://tube.pol.social/w/5bBvy8awY1SsMhCvBoBrZ9
#security #automation #compliance #bash #ansible #linux #opensource #jesieńlinuksowa
Make your #JSON pretty, colorful and scrollable
in terminal.
(command that output json) | jq -C | less
- jq -C -> indent and force color output
- less -> let you navigate through the result.
I may state the obvious, but it's always cool to know or remember .
I have a #Bash alias (actually a function) for `git clone` that sets my #git config username and email address based on a prompt (I can select between various accounts/SSH keys I have).
I now want to do a similar thing for `git init`. Is there an easy way to call the same bash code for the prompt and setting git config values without duplicating it all between my two functions?
AFAIK bash functions cannot return values (e.g. my chosen username/email)...