Skip to content

Instantly share code, notes, and snippets.

View jdrsunshine's full-sized avatar

Joel D. Rodrigues jdrsunshine

View GitHub Profile
@mattymatty76
mattymatty76 / bootstrap-select(v1.14.0-gamma1).js
Last active May 23, 2025 10:16
bootstrap-select for bootstrap 5.3
/*!
* Bootstrap-select v1.14.0-gamma1 (https://developer.snapappointments.com/bootstrap-select)
*
* Copyright 2012-2023 SnapAppointments, LLC
* Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE)
*/
(function ($) {
'use strict';
@ryanayadHC
ryanayadHC / bisac.csv
Created March 14, 2023 19:36 — forked from jveldboom/bisac.csv
BISAC codes and values
ANT000000 Antiques & Collectibles / General
ANT001000 Antiques & Collectibles / Americana
ANT002000 Antiques & Collectibles / Art
ANT003000 Antiques & Collectibles / Autographs
ANT005000 Antiques & Collectibles / Books
ANT006000 Antiques & Collectibles / Bottles
ANT007000 Antiques & Collectibles / Buttons & Pins
ANT008000 Antiques & Collectibles / Care & Restoration
ANT009000 Antiques & Collectibles / Transportation
ANT010000 Antiques & Collectibles / Clocks & Watches
@abobija
abobija / wsl2-ubuntu-lamp.md
Last active May 1, 2025 21:51
LAMP stack on WSL2 (Ubuntu 20.04) - Apache, MySQL, PHP, PhpMyAdmin

LAMP stack on WSL2 (Ubuntu 20.04) - Apache, MySQL, PHP, PhpMyAdmin

Apache

sudo apt-get update && sudo apt-get upgrade 
sudo apt-get install -y apache2

PHP

@auyongcheemeng
auyongcheemeng / ffmp-flac-alac.bat
Last active March 24, 2025 16:59
ffmpeg flac to alac conversion batch script (windows)
:::: ffmpeg script for converting FLAC to ALAC
:: ffmpeg windows binary is required (https://ffmpeg.org)
:: Script creates the folders ['flac' and 'alac'] on first run.
:: Copy the associated files to the appropriate folder [ie. '.flac' files to 'flac' folder]
:: and run the
IF NOT EXIST alac\NUL mkdir alac
@developit
developit / *valoo.md
Last active November 13, 2023 08:39
🐻 Valoo: just the bare necessities of state management. 150b / 120b. https://npm.im/valoo

🐻 valoo

just the bare necessities of state management.

Usage

Hotlink it from https://unpkg.com/valoo.

See Interactive Codepen Demo.

@kintero
kintero / paises.csv
Last active March 13, 2025 19:03 — forked from brenes/README.md
CSV de paises, con nombre en castellano, ingles, codigo ISO y prefijo telefónico del país, más continentes.
nombre name nom iso2 iso3 phone_code continente
Afganistán Afghanistan Afghanistan AF AFG 93 Asia
Albania Albania Albanie AL ALB 355 Europa
Alemania Germany Allemagne DE DEU 49 Europa
Algeria Algeria Algérie DZ DZA 213 África
Andorra Andorra Andorra AD AND 376 Europa
Angola Angola Angola AO AGO 244 África
Anguila Anguilla Anguilla AI AIA 1 264 América
Antártida Antarctica L'Antarctique AQ ATA 672 Antártida
Antigua y Barbuda Antigua and Barbuda Antigua et Barbuda AG ATG 1 268 América
anonymous
anonymous / config.json
Created September 27, 2014 14:03
Bootstrap Customizer Config
{
"vars": {
"@gray-darker": "lighten(#000, 13.5%)",
"@gray-dark": "lighten(#000, 20%)",
"@gray": "lighten(#000, 33.5%)",
"@gray-light": "lighten(#000, 46.7%)",
"@gray-lighter": "lighten(#000, 93.5%)",
"@brand-primary": "#428bca",
"@brand-success": "#5cb85c",
"@brand-info": "#5bc0de",
@nrrrdcore
nrrrdcore / index.html
Created June 26, 2013 03:30
Text-Align: Justify; Hack
<p class="month"><span class="name">July</span> 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31<span class="break">hi</span></p>
@nrrrdcore
nrrrdcore / divider.css
Created August 29, 2012 05:35
FireFox Friendly Faded Gradient Border CSS
.divider {
float: right; /* float this next to ur linkz */
display: block;
height: 47px; /* this */
width: 1px; /* where the magic happens */
margin: -7px 6px 0 10px; /* pulls the border to the top of the header */
background-image: -webkit-linear-gradient(top, rgba(0,93,131,.5) 50%, rgba(0,93,131,.22) 100%); /* good in safari & chrome */
background-image: -moz-linear-gradient(top, rgba(0,93,131,.5) 50%, rgba(0,93,131,.22) 100%); /* firefox friendly shit */
box-shadow: 1px 0 0 0 rgba(255,255,255,.1); /* white highlight on the inside of the border, ff now accepts this w/o a prefix */
@nrrrdcore
nrrrdcore / inset_input.css
Created August 9, 2012 23:35
The Perfect Inset Input CSS
input {
height: 34px;
width: 100%;
border-radius: 3px;
border: 1px solid transparent;
border-top: none;
border-bottom: 1px solid #DDD;
box-shadow: inset 0 1px 2px rgba(0,0,0,.39), 0 -1px 1px #FFF, 0 1px 0 #FFF;
}