Skip to content

Instantly share code, notes, and snippets.

View ilmoralito's full-sized avatar

Mario Martinez ilmoralito

View GitHub Profile
@ilmoralito
ilmoralito / form.html.twig
Created November 4, 2024 21:42
Render select manualty instead of form_row o form_widget
<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 %}
@ilmoralito
ilmoralito / sample.html.twig
Created November 4, 2024 12:42
Twig debug form example
{{ dump(form.order.vars.value) }}
@ilmoralito
ilmoralito / extension_counter.py
Last active January 26, 2025 21:32
This script counts and summarizes the file extensions of all files in the current working directory.
#!/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'
@ilmoralito
ilmoralito / file.lua
Last active September 22, 2024 04:20
This function handles player movement, animation, and collision detection in a grid-based game. The move function updates the player's position based on directional input, while anim cycles through sprite frames to create an animation effect. The collide function checks if the player's new position intersects with any solid objects, reverting th…
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
@ilmoralito
ilmoralito / GNOMEShell.textile
Created August 8, 2024 04:59 — forked from rothgar/GNOMEShell.textile
GNOME 3 keyboard shortcuts

Keyboard Shortcuts – GNOME Shell 3.8+

General Navigation

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)
@ilmoralito
ilmoralito / keybindings.json
Created July 13, 2024 16:34
Sublimetext - Sublime debugger - debugger actions
[
{
"keys": ["ctrl+alt+shift+d"],
"command": "debugger",
"args": {
"action": "open"
}
},
{
"keys": ["ctrl+alt+shift+b"],
@ilmoralito
ilmoralito / sample.txt
Created June 21, 2024 06:47
How to make docker volume on a specific path
// 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
@ilmoralito
ilmoralito / app.php
Last active March 29, 2024 15:00
Simple PHP lambda example
<?php
$books = [
[
'name' => 'Earth 1',
'author' => 'Andrew',
'pubDate' => '2024-03-08'
],
[
'name' => 'Earth 3',
@ilmoralito
ilmoralito / list.txt
Created December 1, 2022 15:57
switch php versions - ubuntu
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
@ilmoralito
ilmoralito / commands.txt
Created July 4, 2022 05:00
docker custom network mysql, phpmyadmin, wordpress
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 \