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 July 29, 2024 03:37
Adb useful commands list
Hi All!
I've recently launched a tool that wraps many of the commands here with a user interface. This desktop application is currently available for macOS. There's a roadmap outlining planned features for the near future.
Feel free to request any features you'd like to see, and I'll prioritize them accordingly.
One of the most important aspects of this application is that every command executed behind the scenes is displayed in a special log section. This allows you to see exactly what’s happening and learn from it.
Here's the link to the repository: https://github.com/Pulimet/ADBugger
App Description:
ADBugger is a desktop tool designed for debugging and QA of Android devices and emulators. It simplifies testing, debugging, and performance analysis by offering device management, automated testing, log analysis, and remote control capabilities. This ensures smooth app performance across various setups.
@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);