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
I love javascript because I feel it reflects the universe in a way... That there is no absolute reality but rather a series of encapsulated experience templates (contexts) wherein consciousness (this) explores itself by consuming and emiting events within these contexts. In short, reality is event-driven with endlessly flexible scope. Its our job to reprogram the templates all the way up the prototype chain. |
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
I'm baffled by the pervasive "mystery" surrounding the beholding of the third eye. It's about as mysterious as the beholding of a ball -- all you need do is simply look at it. Literally. Close your eyes, look up, then look in. If not immediately, remain there for just a few minutes and there you are: colors, images, tunnels, feelings of peace, etc. all right there. And before you suggest I have easy access from my experience with meditation and psychedelics, I can confirm this is nothing a child couldn't do -- I was doing it many years before I even heard the word meditation, and the children in my life find it very easy to have this experience with minimal explanation. It looks to me like the only thing keeping people from accessing such plainly obvious experience is a masochistic lack of openness, laziness, fear, or perhaps never having thought to look there in the first place. To think, all the clamour around this "Great Mystery", in both directions. The idea of ridiculing someone for believing the third e |
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
class Hello { | |
constructor(){ | |
console.log("hello"); | |
} | |
} | |
class Hello2 extends Hello{ | |
constructor(){ | |
super(); | |
console.log("hello2"); |
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
var traverse = require('traverse') | |
class Hello { | |
constructor(){ | |
console.log("hello"); | |
} | |
} | |
class Hello2 extends Hello{ | |
constructor(){ |
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
var Promise = require('bluebird') | |
var fs = require('fs') | |
var adb = require('adbkit') | |
var client = adb.createClient() | |
const pathToFiles = '/sdcard/Download'; | |
const loop = () => { | |
client.listDevices() | |
.then(function(devices) { |
OlderNewer