Smart 🧠 Fullstack
45 subscribers
168 photos
11 videos
13 files
153 links
About channel: everyday developer hints.

for (💲Coders as 💲Student):
echo("Hello 💲Student->name");
endfor;

Author: @BakirovRoman
Download Telegram
Err
Error response from daemon: client version 1.41 is too old. Minimum supported API version is 1.44, please upgrade your client to a newer version


Solution
mkdir -p ~/.docker/cli-plugins/                                                                                                                                                                                                  
curl -SL https://github.com/docker/compose/releases/latest/download/docker-compose-linux-x86_64 -o ~/.docker/cli-plugins/docker-compose
chmod +x ~/.docker/cli-plugins/docker-compose
sudo apt install ripgrep
apt update
Install Bun

curl -fsSL https://bun.com/install | bash


#bun
Show git assume-unchanged files

git ls-files -v | grep '^[a-z]'


#git
Zoxide

sudo apt install zoxide


echo -e '\n# zoxide - smart cd\neval "$(zoxide init bash)"' | sudo tee -a /etc/bash.bashrc


alias z=zoxide


#cd #zoxide
1👌1
Hello Palo Alto =)

bot-todo-nginx       | 172.20.0.1 - - [28/Jan/2026:15:52:59 +0000] "GET /.well-known/security.txt HTTP/1.1" 200 5 "-" "Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity" "1.1.1.1"


#spam #log #parser
3👌1
Penguin looks at the monitor in which 2 elephants, a python, a crab, a dolphin, a whale, and there is a railroad next to each other.
🦄3
How it works?)

北京是中国首都

Yeah, now it's true)
Mouse Window Killer =)

For All Window Types
Romaxa@Coder:~$ xkill
Select the window whose client you wish to kill with button 1....
xkill: killing creator of resource 0x6a00060


For One Window
xdotool selectwindow windowclose


#window #click #kill
Open Terminal Strict Under Cursor via Ctrl + Alt + T

~/.local/bin/terminal-at-cursor.sh
#!/bin/bash
# Open xfce4-terminal at the current mouse cursor position

# Get current mouse position
eval "$(xdotool getmouselocation --shell)"

# Launch terminal at cursor position using geometry hints
# --disable-server prevents D-Bus reuse so it's a fresh process
# --geometry=COLSxROWS+X+Y sets position in pixels
xfce4-terminal --disable-server --geometry="80x24+${X}+${Y}"


~/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml
...
<property name="&lt;Primary&gt;&lt;Alt&gt;t" type="string" value="/home/romaxa/.local/bin/terminal-at-cursor.sh"/>
...


#xfce #terminal #ux