Interaction design + animation fun with with Anime, Mo.js, and Tilt.js.
A Pen by Matt Rothenberg on CodePen.
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 ([email protected]) | |
;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> |
apt install ufw | |
ufw default deny incoming | |
ufw default deny outgoing | |
ufw allow 22/tcp | |
ufw enable | |
ufw status verbose |
#!/bin/bash | |
if [ "$1" = "-v" ]; then | |
find . -name "*.php" -exec php -l {} \; | |
else | |
find . -name "*.php" -exec php -l {} \; | grep -v "No syntax errors detected in " | |
fi | |