2018-10-28

Friends like phantom limbs

Ah. I hear you Johnny. A missing presence that we can't cross through WhatsApp , the occasional beer or email.

To me, it feels like we're now men each on voyages, to our greatness or despair. I listen often to soundtracks of youth - the babyshambles and smashed pumpkins. It has no wisdom, just fuel to keep going.

And at the end we we'll be back home again and grey and our presence returned to each other. :)

2018-10-15

Robot Interactions





Madeline Gannon is passionate about inventing better ways to communicate with machines. In her research, she develops human-centered interfaces that transform industrial robots into sentient companions, that transform bodies into interactive canvases, and that illustrate an embodied vision for the future of digital making. Her work blends disciplinary knowledge from design, robotics and human-computer interaction to innovate at the edges of digital creativity. 


Gannon leads ATONATON, a research studio scouting the untapped potential of emerging technologies, and is a Research Fellow at the Frank-Ratchye Studio for Creative Inquiry at Carnegie Mellon University. Her work has been internationally exhibited at leading cultural institutions, published at ACM conferences, and widely covered by diverse media outlet across design, art, and technology communities. She is completing a PhD in Computational Design from Carnegie Mellon University.


https://atonaton.com/

2018-10-14

This is a subject

This is a body




2018-10-06

Python Regex: how to find things between characters


How do you find a regex for all items between certain characters? (e.g. between [ ] or between ( )). Below is an example that finds anything between @ and .

use case: email.... using it on "hahah@trefis.com" will find "trefis"


-----------------------------

REGEX
(?<=@)(.*?)(?=\.)


---------------------------

SAMPLE SET
This is my first sentence. This is my second sentence.

haha@gmail.com

hello how are you

123@haha.co

This is my first sentence

----------------------------

EXPLANATION
(?<=@)TEST ....positive lookbehind. Find anything where "@" is just behind TEST 
(.*?) ....find all characters (.), one ore more (*), make it nongreedy so it stops at the first not last result (?)
(?=\.) .....positive lookahead. It must have a lookahead character that is a ".". backslash needed so activate the character itself 

--------------------------
https://regex101.com/r/eZ1gT7/1637
screenshot of regex in action
 

python - regex , from automate the boring stuff

automatetheboringstuff.com

Automate the Boring Stuff with Python