User talk:Danf: Difference between revisions

From Noisebridge
Jump to navigation Jump to search
(4 intermediate revisions by 2 users not shown)
Line 35: Line 35:


https://en.wikipedia.org/wiki/Foobar
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.
== hey dan ==
Chris here. Good talking last night. Here's the deep learning site I mentioned. deeplearning4j.org. Curious to hear what you think.
== Bluetooth Dongle ==
I think we have a BS009 from BlueSoleil
http://www.bluesoleil.com/products/H0001201304230001.html
== HTML5 Canvas Element ==
Thought you might like to play around with this.. I just stumbeled on this shape hacking a grid together.
   
    <html>                                                                             
      <head>                                                                           
        <title>@title</title>                                                           
        <script type="text/javascript">                                                 
          function rect(ctx, grid, step, cur){                                         
              ctx.lineTo(cur, 0)                                                       
              ctx.lineTo(cur, grid)                                                     
              ctx.lineTo(0, cur)                                                       
              ctx.lineTo(grid, cur)                                                     
              ctx.stroke()                                                             
              if (cur < grid){                                                         
                  rect(ctx, grid, step, cur+step)                                       
              }                                                                         
          }                                                                             
          function draw(grid){                                                         
            var canvas = document.getElementById('bg');                                 
            if (canvas.getContext){                                                     
              var ctx = canvas.getContsext('2d');                                       
              ctx.strokeStyle = '#808080';                                             
              rect(ctx, grid, 20, 20)                                                   
            }                                                                           
          }                                                                             
        </script>                                                                       
        <style type="text/css">                                                         
          canvas { border: 1px solid black; }                                           
        </style>                                                                       
      </head>                                                                           
      <body onload="draw(800);">                                                     
        <canvas id="bg" width="800" height="800"></canvas>       
      </body>                                                                           
    </html>

Revision as of 20:58, 10 May 2014

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.

hey dan

Chris here. Good talking last night. Here's the deep learning site I mentioned. deeplearning4j.org. Curious to hear what you think.

Bluetooth Dongle

I think we have a BS009 from BlueSoleil

http://www.bluesoleil.com/products/H0001201304230001.html

HTML5 Canvas Element

Thought you might like to play around with this.. I just stumbeled on this shape hacking a grid together.

   <html>                                                                               
     <head>                                                                             
       <title>@title</title>                                                            
       <script type="text/javascript">                                                  
         function rect(ctx, grid, step, cur){                                           
             ctx.lineTo(cur, 0)                                                         
             ctx.lineTo(cur, grid)                                                      
             ctx.lineTo(0, cur)                                                         
             ctx.lineTo(grid, cur)                                                      
             ctx.stroke()                                                               
             if (cur < grid){                                                           
                 rect(ctx, grid, step, cur+step)                                        
             }                                                                          
         }                                                                              
         function draw(grid){                                                           
           var canvas = document.getElementById('bg');                                  
           if (canvas.getContext){                                                      
             var ctx = canvas.getContsext('2d');                                        
             ctx.strokeStyle = '#808080';                                               
             rect(ctx, grid, 20, 20)                                                    
           }                                                                            
         }                                                                              
       </script>                                                                        
       <style type="text/css">                                                          
         canvas { border: 1px solid black; }                                            
       </style>                                                                         
     </head>                                                                            
     <body onload="draw(800);">                                                       
       <canvas id="bg" width="800" height="800"></canvas>         
     </body>                                                                            
   </html>