Gist embed hosting for normal repo
| owner | repo | file |
|---|---|---|
| rkooyenga | /mod4_solution | /script.js |
| javascript:(function(){const e=document.getElementById("file-reference-overlay");e&&e.remove();const t=[];document.querySelectorAll('link[rel="stylesheet"]').forEach(e=>{e.href&&t.push({type:"CSS",path:e.href,code:`<link rel="stylesheet" href="${e.href}">`})}),document.querySelectorAll("script").forEach(e=>{e.src&&t.push({type:"JavaScript",path:e.src,code:`<script src="${e.src}"></script>`})}),document.querySelectorAll('link[rel="preload"][as="font"]').forEach(e=>{e.href&&t.push({type:"Font",path:e.href,code:`<link rel="stylesheet" href="${e.href}">`})});const n=document.createElement("div");n.id="file-reference-overlay",n.style.cssText="position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(255,255,255,0.95);backdrop-filter:blur(10px);z-index:9999;overflow-y:scroll;padding:20px;box-sizing:border-box";const o=document.createElement("button");o.textContent="Close",o.style.cssText="position:fixed;top:20px;right:20px;padding:10px 20px;font-size:16px;cursor:pointer",o.onclick=()=>n.remove(),n.appendCh |
Gist embed hosting for normal repo
| owner | repo | file |
|---|---|---|
| rkooyenga | /mod4_solution | /script.js |
needed an svg for an app i'm working on. couple notables,
ah well, enjoy! the 3 html pages in this gist represent 3 different uri loaded icon demos.
To identify all unique ids used in the current document's DOM, here’s the ES6+ code for extracting unique id values:
// Function to find all unique IDs in the document
const uniqueIds = unique(
[...document.querySelectorAll('*')] // Get all elements
.map(elt => elt.id) // Map to their id
.filter(id => id) // Filter out empty strings
);todo:
CSS has evolved considerably in recent years offering improved flexibility, maintainability, and design possibilities. While it's exciting to be constantly presented with new solutions, the changes are coming fast. Maybe even too fast! It can be a lot just keeping up with everything. Some would even say overwhelming. Especially if you aren't a full time designer. I think the best way to handle that is 1st, remind yourself nobody is 100% on top of all of it at all times. So you're probably nowhere near as far behind as you think.
In any case step 2 is is going to help and that is, seek out some new CSS to experiment with! Do you know if you're employing obsolete functions in current day projects? I don't but want to know if I am. Are there far simpler ways to do things we've many of us long struggled with? Speaking for myself I'd be shocked if there wasn't! So here's 30 of the bigger changes to be knowledgeable of and experiment with to get your old libraries up to date and ke
Script to launch by URL that scrubs a page of most color and graphics including many ads. Useful for trying to read a page that;s throwing so many ads it's locking up your device or otherwise providing a difficult experience.
new in this version:
| help [command] | |
| Display general help, or details for a specific command. | |
| help_advanced | |
| Display the help for more advanced commands, mainly used for debugging. | |
| ping [-4] [-6] [-c count] [-i interval] [-n] [-s packetsize] [-W waittime] <destination> | |
| Send ICMP ECHO_REQUEST packets to a network host. If <destination> is "gw" | |
| then the next hop gateway for the default route is used. | |
| Default is to use IPv4 [-4] rather than IPv6 [-6] addresses. |
If you want to mount your Google Drive as a folder to your current machine the steps for Ubuntu are as follows.
updated includes the newer method of using rclone
but it's not a finished guide. rclone steps are infinitely more complicated than what's listed here if seeking to mount with r/rw drive access
Install rclone: