Skip to content

Instantly share code, notes, and snippets.

View raulfunkie's full-sized avatar
🤙

Raul Rincon raulfunkie

🤙
View GitHub Profile
@MohammedEsafi
MohammedEsafi / resetup.sh
Last active February 18, 2024 00:22
Just a script I use to reset my computer configuration at 1337 school, as it always gets lost 😋
#!/bin/bash
# ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――
# Restore settings files | script used: https://github.com/MohammedEsafi/FOLDSettings
# ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――
python3 ~/.init/baCkup/drive.py -f restore &> /dev/null
# ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――
# General UI/UX
@jsn789
jsn789 / add-gtm-wp.php
Last active March 28, 2023 15:38
Add Google Tag Manager through functions.php in WordPress
/* Add Google Tag Manager javascript code as close to
the opening <head> tag as possible
=====================================================*/
function add_gtm_head(){
?>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
@Pulimet
Pulimet / AdbCommands
Last active May 6, 2024 23:57
Adb useful commands list
adb help // List all comands
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader
@bendc
bendc / easing.css
Created September 23, 2016 04:12
Easing CSS variables
:root {
--ease-in-quad: cubic-bezier(.55, .085, .68, .53);
--ease-in-cubic: cubic-bezier(.550, .055, .675, .19);
--ease-in-quart: cubic-bezier(.895, .03, .685, .22);
--ease-in-quint: cubic-bezier(.755, .05, .855, .06);
--ease-in-expo: cubic-bezier(.95, .05, .795, .035);
--ease-in-circ: cubic-bezier(.6, .04, .98, .335);
--ease-out-quad: cubic-bezier(.25, .46, .45, .94);
--ease-out-cubic: cubic-bezier(.215, .61, .355, 1);