User talk:Danf

From Noisebridge
Revision as of 09:47, 25 February 2014 by Bfb (talk | contribs)
Jump to navigation Jump to search

https://www.noisebridge.net/index.php?namespace=2&invert=1&title=Special%3ARecentChanges

Hi, Danf

Danf, it was a pleasure to meet you and Kevin last night. I just added a user page to this wiki. —Ben Kovitz (talk) 03:47, 27 May 2013 (UTC)

New device for now

Hi Dan, my roommate lilly has borrowed me her MindWave Mobie. It has the same ThinGear chip, but talks over bluetooth, not RF. I have a bluetooth receiver on my laptop, but I reckon the dream machine does not. Either way we can use it to debug the plexer code you're writing. Also see https://github.com/robintibor/python-mindwave-mobile for an object oriented approach to reading data off sent by the ThinkGear. robintibor is more maticulous about data rows than akloister. See you at the pwn meeting tomorrow. User:bfb

whatsup hacka?

howzit?

Nothing going tonight. Up late, needing sleep. See you tomorrow. PS found a light read on mind/brain sleep research in the 20th century, linked under current readings. -kevin

ditto

Thanks Immonad (talk) 18:40, 31 July 2013 (UTC)

this is an example of a note to say hello via wiki because email is a broken protocol, considered harmful, and depracatable

say what ??? --Danf (talk) 01:18, 22 August 2013 (UTC)

Good stuff

By golly have a listen

http://www.fourier-series.com/f-transform/index.html

Connectivity Restored...

to switch 31, aka the collaboration station.

https://en.wikipedia.org/wiki/Foobar

???

   def egcd(a, b):
       if a == 0:
           return (b, 0, 1)
       else:
           g, y, x = egcd(b % a, a)
           return (g, x - (b // a) * y, y)


https://en.wikibooks.org/wiki/Algorithm_Implementation/Mathematics/Extended_Euclidean_algorithm

I've never seen anything like it.