-
Take daily notes
-
Anything you learn during the day, note it
-
Log what was done
-
Start with goals for day
-
End the day with revising
gsadfsaTake daily notes
Anything you learn during the day, note it
Log what was done
Start with goals for day
End the day with revising
gsadfsa| """ | |
| stable diffusion dreaming | |
| creates hypnotic moving videos by smoothly walking randomly through the sample space | |
| example way to run this script: | |
| $ python stablediffusionwalk.py --prompt "blueberry spaghetti" --name blueberry | |
| to stitch together the images, e.g.: | |
| $ ffmpeg -r 10 -f image2 -s 512x512 -i blueberry/frame%06d.jpg -vcodec libx264 -crf 10 -pix_fmt yuv420p blueberry.mp4 |
Preferences | Appearance | Tabs | Theme > Darkdstr > ttf, install all font files by double clicking)Preferences | Profiles | Text
Font to 14pt Fira code regular and Check Use Ligatures checkboxNon ASCII Font to 14pt Fira mono and Check Use Ligatures checkboxPreferences | Profiles | Color Presets > Snazzy| # This will look at any file in that directory that isn't named "README", "Makefile", or that doesn't already end with ".dat". It will then run strfile on them, resulting in correspondingly named datfiles. | |
| POSSIBLE += $(shell ls -1 | egrep -v '\.dat|README|Makefile' | sed -e 's/$$/.dat/g') | |
| all: ${POSSIBLE} | |
| %.dat : % | |
| @strfile $< $@ |
| /* | |
| * ___________________________________________________________ | |
| * | Made by Tesla Motors | | |
| * | Pulled by Arch from the Android app, version: 3.10.13-469 | | |
| * |___________________________________________________________| | |
| */ | |
| syntax = "proto3"; | |
| package VCSEC; |
| function dpurgeall(){ | |
| docker rm -v $(docker ps -a -q -f status=exited); | |
| docker volume rm $(docker volume ls -qf dangling=true); | |
| docker image rm $(docker images -qf dangling=true); | |
| } |
| sudo xcode-select --install | |
| Install rbenv with brew install rbenv | |
| Add eval "$(rbenv init -)" to the end of ~/.zshrc or ~/.bash_profile | |
| Install a ruby version rbenv install 2.3.0 | |
| Select a ruby version by rbenv rbenv global 2.3.0 | |
| Open a new terminal window | |
| Verify that the right gem folder is being used with gem env home (should report something in your user folder not system wide) |
| class Dynamic<T> { | |
| typealias Listener = T -> Void | |
| var listener: Listener? | |
| func bindAndFire(listener: Listener?) { | |
| self.listener = listener | |
| listener?(value) | |
| } | |
| var value: T { |
| find . -type f -name "*.xib" |
| if([String rangeOfString:@"substring"].location != NSNotFound) | |
| { | |
| // Has substring.. do whatever.. | |
| } |