- Working with files:
:edit
- will open file or refresh current file:w
- will write save the file:q
- will close the file
- Multiple windows:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1603f21aaf8b3581646475b3c3e8541860988e38 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
JVessel tracker is yet another api for Marine traffic, bu it has many pros that can make you using it in your everyday life |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int xMouse; | |
int yMouse; | |
private void formMousePressed(java.awt.event.MouseEvent evt) { | |
xMouse = evt.getX(); | |
yMouse = evt.getY(); | |
} | |
private void formMouseDragged(java.awt.event.MouseEvent evt) { | |
int x = evt.getXOnScreen(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Appereance | |
URxvt*saveLines: 1000 | |
URxvt*scrollBar: false | |
URxvt*background: #212121 | |
URxvt*foreground: #C0C0C0 | |
#Fonts | |
URxvt.font:xft:Monospace:pixelsize=15 | |
URxvt.boldfont:xft:Monospace-Bold:pixelsize=15 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/etc/X11/xorg.conf.d/00-keyboard.conf | |
Section "InputClass" | |
Identifier "system-keyboard" | |
MatchIsKeyboard "on" | |
Option "XkbLayout" "us,ru" | |
Option "XkbModel" "pc105" | |
Option "XkbVariant" "qwerty" | |
Option "XkbOptions" "grp:caps_toggle" | |
EndSection |