These articles have been picked by the creator of Kat's Bookshelf to help provide some guidance to those who are new to self-guided learning.
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
| echo 'KEYMAPOPTS=none | |
| HOSTNAMEOPTS=alpine | |
| INTERFACESOPTS="auto lo | |
| iface lo inet loopback | |
| auto eth0 | |
| iface eth0 inet dhcp | |
| hostname alpine | |
| " | |
| TIMEZONEOPTS="UTC" |
as i work on completing the main Controlled Insanity document, i will maintain a list of relevant concepts that will be brought up in the document.
this document is not "complete"; it should be viewed as an early preview for topics that will likely be covered in the actual Controlled Insantity document (which will be released when it's ready).
- schizotypy
- related: spiritual experiences
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
| // How to use this: | |
| // 1. Go to https://www.youtube.com/feed/channels | |
| // 2. Scroll down to the bottom to load in complete channel list | |
| // 3. Open the browser console and paste this snippet: | |
| let channels = $$("#main-link.channel-link"); | |
| let channel_text = ""; | |
| for (let i = 0; i < channels.length; i += 1) { | |
| if (channels[i].href != undefined) { | |
| channel_text += channels[i].parentElement.parentElement.parentElement.getElementsByTagName("yt-formatted-string")[1].innerText + " - " + channels[i].href + "\n"; | |
| } |
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
| #!/bin/bash | |
| # https://developer.twitter.com/en/docs/twitter-api/v1/media/upload-media/uploading-media/media-best-practices | |
| # - h.264 high profile | |
| # - 60fps or less | |
| # - aac-lc, he-aac not supported | |
| # - 16:9 recommended | |
| # - 512mb maximum | |
| # - shorter than 140s | |
| # - 1:1 pixel aspect ratio | |
| # - yuv 4:2:0 |
NewerOlder