I hereby claim:
- I am lkpttn on github.
- I am lkpttn (https://keybase.io/lkpttn) on keybase.
- I have a public key whose fingerprint is AD80 2A23 18F4 C2B1 ADE3 6F23 492B 5AFA E53A 1C0B
To claim this, I am signing this object:
| const canvasSketch = require('canvas-sketch'); | |
| const random = require('canvas-sketch-util/random'); | |
| const palettes = require('nice-color-palettes'); | |
| // Ensure ThreeJS is in global scope for the 'examples/' | |
| global.THREE = require('three'); | |
| // Include any additional ThreeJS examples below | |
| require('three/examples/js/controls/OrbitControls'); |
| const canvasSketch = require('canvas-sketch'); | |
| const { lerp } = require('canvas-sketch-util/math'); | |
| const random = require('canvas-sketch-util/random'); | |
| const palettes = require('nice-color-palettes'); | |
| const settings = { | |
| // Defines settings for canvas size, exports, etc | |
| dimensions: [2048, 2048], | |
| }; |
| #!/bin/bash | |
| FILES=/Path/To/Images/*.png | |
| for filename in $FILES; do | |
| magick $filename -flop image2.png | |
| magick convert -delay 50 -dispose Background $filename image2.png "${filename%.*}"dance.gif | |
| rm image2.png | |
| done |
I hereby claim:
To claim this, I am signing this object:
| /* - - - - - - - - - - - - - - - - - - - - - | |
| Title : | |
| Author : | |
| URL : http:// | |
| Last Updated : | |
| - - - - - - - - - - - - - - - - - - - - - */ |
| 013-06-16 12:36:10.185 WeatherBud[70257:c07] Started updating location. | |
| 2013-06-16 12:36:10.670 WeatherBud[70257:c07] Stopped updating location. | |
| 2013-06-16 12:36:10.671 WeatherBud[70257:c07] Forecastr: Checking forecast for https://api.forecast.io/forecast/2dbe68f586a9cb81552a468ee6490337/37.785835,-122.406418 | |
| 2013-06-16 12:36:10.945 WeatherBud[70257:c07] Found location name to be: San Francisco | |
| 2013-06-16 12:36:11.361 WeatherBud[70257:c07] Forecastr: Caching item for https://api.forecast.io/forecast/2dbe68f586a9cb81552a468ee6490337/37.79,-122.41 | |
| 2013-06-16 12:36:11.369 WeatherBud[70257:c07] JSON response was: { | |
| currently = { | |
| cloudCover = "0.26"; | |
| dewPoint = 50; | |
| humidity = "0.72"; |
| $brightGreen: #03fca5; | |
| $brightblue: #4bc1ff; | |
| lighten(#03fca5, 24) | |
| desaturate(darken(#4bc1ff, 29), 48) |
| This is a test for the gist logger for Day One. I may need to alter it, cause I don't really make many gists. |
| $red:#f36d54; | |
| $number: 100; | |
| @for $i from 1 through $number { | |
| .label-#{$i} { | |
| color:adjust_hue($red, ($i - 1) * (360 / $number)); | |
| } | |
| } |