Skip to content

Instantly share code, notes, and snippets.

@vuggy17
vuggy17 / version.json
Created February 20, 2023 06:53
screen-translator-version
{
"lastPublished": 1676875637895,
"versionNumber": "1.1.5"
}
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css" />
<link href="./styles.css" rel="stylesheet">
<title>Hello World!</title>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css" />
<link href="./styles.css" rel="stylesheet">
<title>Hello World!</title>
@vuggy17
vuggy17 / index.html
Created January 4, 2023 03:48
electron-content-protection
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css" />
<link href="./styles.css" rel="stylesheet">
<title>Hello World!</title>
@vuggy17
vuggy17 / remove-all-from-docker.sh
Created May 12, 2021 13:11 — forked from beeman/remove-all-from-docker.sh
Remove all from Docker
# Stop all containers
docker stop `docker ps -qa`
# Remove all containers
docker rm `docker ps -qa`
# Remove all images
docker rmi -f `docker images -qa `
# Remove all volumes