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
import os | |
import time | |
document = open("My Clippings.txt","r") | |
data = "".join(document.readlines()) | |
notes = [] | |
try: | |
clippings = data.split('==========') |
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
# Imports | |
from ZeoRawData.BaseLink import BaseLink | |
from ZeoRawData.Parser import Parser | |
from websocket import create_connection | |
def eventCallback(self, timestamp, version, event): | |
print event |
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
# Imports | |
from ZeoRawData.BaseLink import BaseLink | |
from ZeoRawData.Parser import Parser | |
from ZeoRawData.Utility import filter60hz | |
d = open('data.txt', 'w') | |
d.write('timestamp,delta,theta,alpha,beta,gamma\n') | |
def eventCallback(self, timestamp, version, event): | |
print event |
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
import serial | |
import pusher | |
# Serial Port | |
print 'Setting up serialport' | |
s = serial.Serial('/dev/tty.Bluetooth_Bee_V2-DevB') | |
# Websocket | |
#print 'Creating Websocket' | |
#from websocket import create_connection |
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
Furious Gulf (Gregory Benford) | |
- Highlight on Page 160 | Loc. 2445 | Added on Tuesday, August 16, 2011, 07:54 PM | |
They plunged toward the boundary sheet of the ergosphere. | |
========== | |
Furious Gulf (Gregory Benford) | |
- Highlight on Page 173 | Loc. 2640 | Added on Tuesday, August 16, 2011, 09:26 PM | |
“peribarythron.” | |
========== |
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
test |
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
# Imports | |
from wordpress_xmlrpc import Client, WordPressPost | |
from wordpress_xmlrpc.methods.posts import GetPosts, NewPost | |
from wordpress_xmlrpc.methods.users import GetUserInfo | |
import markdown | |
import sys | |
import webbrowser | |
# Converts a markdown file to a post and asks for titles, tags and categories | |
def post(f): |
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
# Imports | |
from wordpress_xmlrpc import Client, WordPressPost | |
from wordpress_xmlrpc.methods.posts import GetPosts, NewPost | |
from wordpress_xmlrpc.methods.users import GetUserInfo | |
import markdown | |
import sys | |
import webbrowser | |
# Converts a markdown file to a post and asks for titles, tags and categories | |
def post(f): |
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
package { import as3isolib.graphics.SolidColorFill; import flash.net.URLRequest; import flash.display.Loader; import flash.events.*; import as3isolib.enum.IsoOrientation; import flash.display.Bitmap; import as3isolib.graphics.BitmapFill; import as3isolib.display.IsoSprite; public class BoxFactory { private var stage:Object; private var view:ViewMediatheek; private var mySprite = new IsoSprite(); private function imgLoadComplete(e:Event):void { var myImg:Bitmap = new Bitmap(e.target.content.bitmapData); mySprite.sprites = [myImg]; } private var position:Object = { x: 0, y: 0, z: 0 } private var size:Object = { x: MediatheekConstante.gridSize, y: MediatheekConstante.gridSize, z: MediatheekConstante.gridSize - 10 } private var color:int = 0x000000; public function BoxFactory( stage:Object, view:ViewMediatheek ) { this.stage = stage; this.view = view; } public function createBox( position:Object, color, size:Object ):void { |
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
https://www.filepicker.io/api/file/ZgvsMoJcSXSUewgmJNCY |