Skip to content

Instantly share code, notes, and snippets.

@UlisesGascon
UlisesGascon / THANKS.md
Created January 6, 2022 19:01
Thank you! 💖

Thanks to all of you for making *.ulisesgascon.com possible

Special Thanks

Nextjs based subdomains

@paolobarbolini
paolobarbolini / repos.txt
Created March 31, 2024 17:16
Archived repositories from https://gist.github.com/paolobarbolini/39d71835218eff19637f8c1ab47b705b - scraped from the GitHub API in the course of 3 hours
https://github.com/abonander/buf_redux
https://github.com/abonander/multipart
https://github.com/abonander/safemem
https://github.com/arkworks-rs/curves
https://github.com/bbqsrc/mio-named-pipes
https://github.com/BurntSushi/regex-automata
https://github.com/bytecodealliance/regalloc.rs
https://github.com/ctz/ct-logs
https://github.com/cybergeek94/const-cstr
https://github.com/docopt/docopt.rs
@indygreg
indygreg / README.rst
Last active April 26, 2024 20:17
Firefox source repository metrics
[jwalden@find-waldo-now src]$ hg qser
dont-null-terminate-source-chunks.diff: Bug 1499192 - Don't null-terminate ScriptSource source-code chunks. r=tcampbell
sbh-init.diff: Bug 1503086 - Initialize all SourceBufferHolders with a fallible function that in all cases assumes ownership of given-ownership data. NOT REVIEWED YET by tcampbell, r=bz
remove-obsolete-options-utf8-comments.diff: Bug 1498320 - Remove obsolete "|options.utf8| must be set" comments from UTF-8 compilation function docs. NOT REVIEWED YET
create-module-later.diff: Bug 1498320 - When compiling a module script, create the ModuleObject after creating the script for it. NOT REVIEWED YET
startpos-later.diff: Bug 1498320 - Compute script start position after creating the script proper, in BC::compileScript. NOT REVIEWED YET
preparemoduleparse.diff: Bug 1498320 - Move module-compilation's createSourceAndParser call into a separate prepareModuleParse function, anticipating when only that function will have to deal with multiple kinds of SourceBu
# setting up a rust dev environment to try
# https://github.com/fitzgen/source-map-mappings/blob/master/CONTRIBUTING.md
brew install rustup
rustup-init
# open new terminal
cd source-map-mappings
cargo build
.css-selector {
    background: linear-gradient(72deg, #0a1f38, #84c614, #bd14c6, #7614c6, #c69b14, #00d0ff, #a8d51c);
    background-size: 1400% 1400%;
    -webkit-animation: YetiAgenciaCreativa 26s ease infinite;
    -moz-animation: YetiAgenciaCreativa 26s ease infinite;
    -o-animation: YetiAgenciaCreativa 26s ease infinite;
    animation: YetiAgenciaCreativa 26s ease infinite;
}
@-webkit-keyframes YetiAgenciaCreativa {
    0%{background-position:0% 78%}

github.js

Client-side Javascript API wrapper for GitHub

Tries to map one-to-one with the GitHub API V2, but in a Javascripty manner.

(function (globals) {

Before we implement the API methods, we will define all of our private variables and helper functions with one var statement.

@connatser
connatser / github.js
Created March 1, 2012 17:43
gistJS sample
README: http://fitzgen.github.com/github-api/
Repo: https://github.com/fitzgen/github-api/blob/master/github.js