https://gist.github.com/search?q=user%3A%40me&ref=searchresults
Uses @me to refer to itself in the gist search query.
Type this into Github Gist Search (https://gist.github.com/)
user:BoQsc your search query
https://gist.github.com/search?q=user%3A%40me&ref=searchresults
Uses @me to refer to itself in the gist search query.
Type this into Github Gist Search (https://gist.github.com/)
user:BoQsc your search query
| ; common characters, html entity names like ;entity; | |
| :*:;(r);::® | |
| :*:;reg;::® | |
| :*:;(c);::© | |
| :*:;copy;::© | |
| :*:;(p);::℗ | |
| :*:;tm;::™ | |
| :*:;sm;::℠ | |
| :*:;trade;::™ | |
| :*:;deg;::° |
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>Marquee demo</title> | |
| <style> | |
| html, body { | |
| margin: 0; | |
| padding: 2rem; |
| <?php | |
| /** | |
| * Loading spinner SVG, pass in a 3, 6, or 8 digit hex color code as a query parameter "c" to set the color | |
| * example usage in a background image: | |
| * style="background:url('/wp-content/themes/tenet2025/loading.php?c=58d') no-repeat center center/15% #000;" | |
| */ | |
| $color = 'currentColor'; | |
| $qc = $_GET['c'] ?? null; | |
| if ($qc && preg_match('/^[a-fA-F0-9]{3,8}$/', $qc)) { | |
| $color = '#' . $qc; |
| <!doctype html> | |
| <html lang="en-US"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>Section + Aside with 'T' and decorative lines</title> | |
| <style> | |
| :root { | |
| /* decorative T-shape dimensions and colors */ | |
| --t-height: 40px; |
| body { | |
| padding:40px; | |
| --size: 5vw; | |
| --margin: 1vw; | |
| --stroke: 2px; | |
| } | |
| .expander{ | |
| border: 1px solid #000; | |
| width: var(--size); | |
| height: var(--size); |
| curl -X PUT \ | |
| -H "Accept: application/vnd.github.v3+json" \ | |
| -H "Authorization: token $TOKEN" \ | |
| https://api.github.com/notifications \ | |
| -d '{"last_read_at":"2025-08-31T00:00:00Z"}' |
| sudo apt install certbot | |
| mkdir -p {.secrets,.config/letsencrypt} | |
| sudo chmod -R 0700 {.secrets,.config/letsencrypt} | |
| sudo chown pi:pi ~/.config/letsencrypt | |
| #https://home.omg.lol/address/travis/dns/#dns-form | |
| #https://toolbox.googleapps.com/apps/dig/#TXT/ |
| @media print { | |
| * { | |
| background-color: #fff; | |
| color: #fff; | |
| visibility: hidden; | |
| break-after: always; | |
| break-before: always; | |
| } | |
| *::before, *::after { | |
| content: "Don't waste paper!"; |
| // C:\Users\travis\AppData\Local\Arduino15\packages\Seeeduino\hardware\nrf52\1.1.10\libraries\Wire\Wire_nRF52.cpp | |
| // ----------------------------------------^ | |
| // Edit line # 32 | |
| #if defined(ARDUINO_Seeed_XIAO_nRF52840) || defined(ARDUINO_Seeed_XIAO_nRF52840_Sense) || defined(ARDUINO_Seeed_XIAO_nRF52840_Sense_SDA6SCL7) || defined(ARDUINO_Seeed_XIAO_nRF52840_Plus) || defined(ARDUINO_Seeed_XIAO_nRF52840_Sense_Plus) || defined(ARDUINO_TRACKER_T1000_E_LORAWAN) |