A Pen by Aysar Khalid on CodePen.
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
"use strict"; | |
{ | |
// http://mrl.nyu.edu/~perlin/noise/ | |
class Noise { | |
constructor(octaves = 1) { | |
this.p = new Uint8Array(512); | |
this.octaves = octaves; | |
this.init(); | |
} | |
init() { |
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
; Lines starting ; (semicolons) are commented out. | |
; That is, they do not affect the code and are here for demonstration purposes only. | |
; ---------------------------------- | |
[Rainmeter] | |
; This section contains general settings that can be used to change how Rainmeter behaves. | |
Update=1000 | |
Background=#@#Background.png | |
; #@# is equal to Rainmeter\Skins\illustro\@Resources | |
BackgroundMode=3 |
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
; Lines starting ; (semicolons) are commented out. | |
; That is, they do not affect the code and are here for demonstration purposes only. | |
; ---------------------------------- | |
[Rainmeter] | |
; This section contains general settings that can be used to change how Rainmeter behaves. | |
Update=1000 | |
Background=#@#Background.png | |
; #@# is equal to Rainmeter\Skins\illustro\@Resources | |
BackgroundMode=3 |
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
#!/bin/bash | |
############################################################################## | |
# SHORTCUTS | |
############################################################################## | |
CTRL+A # move to beginning of line | |
CTRL+B # moves backward one character | |
CTRL+C # halts the current command | |
CTRL+D # deletes one character backward or logs out of current session, similar to exit |
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> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no"> | |
<title>DevLabs - Display a Web Map</title> | |
<style> | |
html, body, #viewDiv { | |
padding: 0; | |
margin: 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no"> | |
<title>DevLabs - Display a Web Map</title> | |
<style> | |
html, body, #viewDiv { | |
padding: 0; | |
margin: 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no"> | |
<title>DevLabs - Display a Web Map</title> | |
<style> | |
html, body, #viewDiv { | |
padding: 0; | |
margin: 0; |