Super or Alt + F1 or Super + S | Activities Overview |
Alt + F2 | Command window |
Super + A | Application View |
Super + M | Toggle Message Tray |
Super + N | Focus Notification |
Ctrl + Alt + Tab | Toggle System Focus (Windows, Top Bar, Messages) |
This file contains 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
<select id="{{ form.mediaFiles.vars.id }}" name="{{ form.mediaFiles.vars.full_name }}" multiple class="form-select"> | |
{% if form.mediaFiles.vars.placeholder is defined and form.mediaFiles.vars.placeholder %} | |
<option value="">{{ form.mediaFiles.vars.placeholder }}</option> | |
{% endif %} | |
{% for choice in form.mediaFiles.vars.choices %} | |
<option value="{{ choice.value }}" {% if choice.value in form.mediaFiles.vars.data %}selected{% endif %}> | |
{{ choice.label }} | |
</option> | |
{% endfor %} |
This file contains 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
{{ dump(form.order.vars.value) }} |
This file contains 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
#!/usr/bin/env python3 | |
import os | |
import pathlib | |
from operator import itemgetter | |
resume = {} | |
for filename in os.listdir(): | |
if os.path.isfile(filename): | |
file_extension = pathlib.Path(filename).suffix or 'not extension' |
This file contains 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
function move(o) | |
local lx=o.x | |
local ly=o.y | |
if btn(⬅️) then | |
o.x-=o.speed | |
end | |
if btn(➡️) then | |
o.x+=o.speed | |
end |
This file contains 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
[ | |
{ | |
"keys": ["ctrl+alt+shift+d"], | |
"command": "debugger", | |
"args": { | |
"action": "open" | |
} | |
}, | |
{ | |
"keys": ["ctrl+alt+shift+b"], |
This file contains 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
// craete a custom volume an store mariadb data in volume custom location | |
$ docker volume create --driver local --opt type=none --opt device=/media/username/Files/MariaDB-10.1.48 --opt o=bind MariaDB-10.1.48 | |
MariaDB-10.1.48 | |
$ docker run -d --name crm -v MariaDB-10.1.48:/var/lib/mysql -e MYSQL_ROOT_PASSWORD=secret -p 3306:3306 mariadb:10.1.48 |
This file contains 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
<?php | |
$books = [ | |
[ | |
'name' => 'Earth 1', | |
'author' => 'Andrew', | |
'pubDate' => '2024-03-08' | |
], | |
[ | |
'name' => 'Earth 3', |
This file contains 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
1. (optional) install some php version: sudo apt -y install php7.4 | |
2. switch php version: sudo update-alternatives --config php | |
2.1. disable current version: sudo a2dismod php7.1 | |
2.2. enable version: sudo a2enmod php7.4 | |
3. restart apache sudo systemctl restart apache2 |
This file contains 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
CREATE CUSTOM NETWROK | |
docker network create wordpress | |
# START MYSQL | |
docker run \ | |
--network wordpress \ | |
-e MYSQL_ROOT_PASSWORD=hotch \ | |
-e MYSQL_DATABASE=sample \ | |
-e MYSQL_USER=mario \ |
NewerOlder