A Step-By-Step Guide from Unboxing to Creative Coding
This file contains hidden or 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
| <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/reset-css@5.0.1/reset.min.css"> | |
| <script type="module"> | |
| import * as THREE from "https://cdn.jsdelivr.net/npm/three@0.124.0/build/three.module.js" | |
| import { OrbitControls } from "https://cdn.jsdelivr.net/npm/three@0.124.0/examples/jsm/controls/OrbitControls.js" | |
| var scene = new THREE.Scene() | |
| var camera = new THREE.PerspectiveCamera(75) | |
| camera.position.z = 4 |
This file contains hidden or 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
| # https://www.datatobiz.com/2019/10/03/fixing-wifi-connectivity-nvidia-jetson-nano/ | |
| # https://github.com/pvaret/rtl8192cu-fixes | |
| sudo cp blacklist-native-rtl8192.conf /etc/modprobe.d/ | |
| sudo echo options rtl8xxxu ht40_2g=1 dma_aggregation=1 | sudo tee /etc/modprobe.d/rtl8xxxu.conf | |
| sudo iw dev wlan0 set power_save off | |
| # To enable ssh over wifi: | |
| # sudo nano /etc/gdm3/custom.conf | |
| # In this file, uncomment the following: |
This file contains hidden or 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
| javascript:(function() {window.location=window.location.toString().replace(/^https:\/\//,'https://github.com/').replace('.github.io','');})() |
This file contains hidden or 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
| import os | |
| classlist_filepath = "" | |
| classlist_filename = "" | |
| classlist_url = classlist_filepath + classlist_filename | |
| file = open(classlist_url, "r") | |
| lines = file.readlines() | |
| grading_files_filepath = "" |
This file contains hidden or 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
| javascript:(function() {window.location=window.location.toString().replace(/^https:\/\//,'https://glitch.com/edit/#!/');})() |
This file contains hidden or 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
| // https://www.shadertoy.com/view/4ty3Dy | |
| // Diffusion from jamriska. | |
| // Used techniques in Jeschke et al. 09. | |
| // ~ ~ ~ BUFFER A ~ ~ ~ | |
| /** | |
| * Laplacian Solver For Image Completion | |
| * Forked from [url=https://www.shadertoy.com/view/XdKGDW]jamriska[/url]. | |
| * Used techniques in [url=https://pdfs.semanticscholar.org/2407/5ab482f70ffd1137abb3a533dfe551210c6f.pdf]Jeschke et al. 09[/url]. | |
| * To be simplified, I removed the support for resizing the rendering buffer. |
This file contains hidden or 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
| #include "ofMain.h" | |
| #include "ofApp.h" | |
| //======================================================================== | |
| int main() { | |
| ofGLFWWindowSettings settings; | |
| settings.glesVersion = 2; | |
| settings.windowMode = OF_FULLSCREEN; | |
| settings.numSamples = 0; |