- Welcome and Introductions
- Intro to Mixr
- HTML recap
- CSS styling
- Positioning
- Getting it online
- Web zine jam session
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Update all package system | |
sudo xbps-install -Suv | |
2. add non-free repo | |
sudo xbps-install -Rs void-repo-nonfree | |
3. Software & utilities | |
sudo xbps-install -Rs xdg-desktop-portal xdg-desktop-portal-gtk xdg-user-dirs xdg-user-dirs-gtk xdg-utils vlc pipewire libspa-bluetooth noto-fonts-cjk noto-fonts-emoji noto-fonts-ttf noto-fonts-ttf-extra libreoffice-writer libreoffice-calc libreoffice-impress rhythmbox neofetch ntfs-3g gimp inkscape lm_sensors wget udisks2 gvfs mtpfs gvfs-mtp gvfs-gphoto2 xtools WoeUSB xz unrar qt5-wayland nano ffmpeg Kooha handbrake inxi streamlink | |
4. Install chrome gnome, gnome menu For Gnome & extension |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
html, body { | |
margin: 0; | |
padding: 0; | |
} | |
body { | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
height: 100vh; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Play this game by pasting the script in http://www.puzzlescript.net/editor.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fetch("cal.tsv") | |
.then((response) => response.text()) | |
.then((data) => { | |
//split text file by newline and tab | |
//thanks to stackoverflow https://stackoverflow.com/questions/47876718/splitting-text-file-by-newlines-and-tab-in-javascript | |
timetable_data = data.split("\n").map(function (ln) { | |
return ln.split("\t"); | |
}); | |
//returns array of timetable data by line, separated on each line by tab separated value |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>Fengari test</title> | |
<script src="fengari-web.js"></script> | |
</head> | |
<body> | |
<script src="main.lua" type="application/lua" async></script> | |
</body> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
.grid-container { | |
display: grid; | |
gap: 10px; | |
background-color: #2196F3; | |
padding: 10px; | |
grid: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"defaultStations": [ | |
{ | |
"title": "New Sounds", | |
"website": "https://www.npr.org/podcasts/381443878/new-sounds", | |
"streamUrl": "http://q2stream.wqxr.org/q2-tunein.aac", | |
"logoUrl": "https://media.npr.org/images/podcasts/primary/icon_381443878-355b34df4de745149c75bc21dec389c3a823966d-s400-c85.webp" | |
}, | |
{ | |
"title": "WTRIP Radio", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
REM --- PIG Dice game test | |
REM --- Created: 2022-03-30 | |
REM --- Created for TinyBASIC implemented by cyningstan/Damian Gareth Walker | |
REM --- Variable List | |
REM | |
REM R - A random number returned by the Random Number Generator | |
REM D - Current die roll | |
REM T - TOTAL SAVED | |
LET T=0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Play this game by pasting the script in http://www.puzzlescript.net/editor.html |