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
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
Close any window with Ctrl+Alt+Click (XFCE / X11)

Tired of aiming at the tiny X button? Here's how to close any window by just Ctrl+Alt+Clicking
anywhere on it.

Prerequisites: XFCE on X11, xdotool installed.

1. Install xbindkeys

sudo apt install xbindkeys


2. Create the script

~/.local/bin/close-window-under-cursor.sh
#!/bin/bash
eval $(xdotool getmouselocation --shell)
[ "$WINDOW" -gt 0 ] 2>/dev/null && xdotool windowclose "$WINDOW"


Make it executable:
chmod +x ~/.local/bin/close-window-under-cursor.sh


3. Create xbindkeys config
~/.xbindkeysrc
"~/.local/bin/close-window-under-cursor.sh"
Control+Alt + b:1


4. Autostart on login

~/.config/autostart/xbindkeys.desktop
[Desktop Entry]
Type=Application
Name=xbindkeys
Exec=xbindkeys
StartupNotify=false


5. Start it now (without relogging):
xbindkeys


Done. Hold Ctrl+Alt and click on any window to close it.

To revert:
killall xbindkeys
rm ~/.xbindkeysrc
rm ~/.local/bin/close-window-under-cursor.sh
rm ~/.config/autostart/xbindkeys.desktop
sudo apt remove xbindkeys # optional


#xbindkeys #close #window
👍1
👍1👌1
Tag Pusher

Simple (per-project): (attached)

Common (system global):
WIP


#tag #git #automatization
👍1