Interaction design + animation fun with with Anime, Mo.js, and Tilt.js.
A Pen by Matt Rothenberg on CodePen.
| #!/usr/bin/bash | |
| function GO_UPD() { | |
| # Récupération de la version en ligne | |
| # L'option -k a été retirée de curl pour forcer la validation du certificat TLS (sécurité) | |
| local GO_VER_RAW=$(curl -s "https://go.dev/VERSION?m=text") | |
| local GO_VER=$(echo "$GO_VER_RAW" | awk 'NR==1') | |
| if [[ -z "$GO_VER" ]]; then | |
| echo "Erreur : Impossible de récupérer la dernière version de Go en ligne." |
| (async () => { | |
| let css = ''; | |
| for (const sheet of document.styleSheets) { | |
| try { | |
| for (const rule of sheet.cssRules) { | |
| css += rule.cssText + '\n'; | |
| } | |
| } catch (e) { | |
| console.warn('Blocked:', sheet.href); |
| sudo dscacheutil -flushcache; sudo killall -HUP mDNSResponder |
| javascript:e=document.querySelector("textarea");if(e){e.value = "please continue where you stopped";let t = e.nextElementSibling; if(t && t.tagName === "BUTTON") t.click()} |
| <div | |
| style="padding: 2rem; max-width: 800px; margin: auto; line-height: 1.5" | |
| > | |
| <main> | |
| <h1 id="dark-theme">Dark theme</h1> | |
| <p>This Uppload example uses a dark theme instead of a light theme.</p> | |
| <p> | |
| You can | |
| <strong | |
| ><a |
| ;SMBDIS.ASM - A COMPREHENSIVE SUPER MARIO BROS. DISASSEMBLY | |
| ;by doppelganger (doppelheathen@gmail.com) | |
| ;This file is provided for your own use as-is. It will require the character rom data | |
| ;and an iNES file header to get it to work. | |
| ;There are so many people I have to thank for this, that taking all the credit for | |
| ;myself would be an unforgivable act of arrogance. Without their help this would | |
| ;probably not be possible. So I thank all the peeps in the nesdev scene whose insight into | |
| ;the 6502 and the NES helped me learn how it works (you guys know who you are, there's no |
| package main | |
| import ( | |
| "gorm.io/driver/sqlite" | |
| "gorm.io/gorm" | |
| ) | |
| type job1 struct { | |
| ID int `gorm:"primaryKey"` | |
| UniqueField1 string |
Interaction design + animation fun with with Anime, Mo.js, and Tilt.js.
A Pen by Matt Rothenberg on CodePen.
| <!DOCTYPE html> | |
| <head> | |
| <title>Stay Standalone</title> | |
| <meta name="apple-mobile-web-app-capable" content="yes"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"> | |
| <script src="stay_standalone.js" type="text/javascript"></script> | |
| </head> | |
| <body> | |
| <ul> | |
| <li><a href="http://google.com/">Remote Link (Google)</a></li> |