Skip to main content

Posts

New space ...

 I've moved to kaushikghose.wordpress.com . See you there!
Recent posts

Broker or Fiduciary?

At some point in your life you may have the mis-fortune to require a financial planner. This is not as great a misfortune as having to require a lawyer, but still ...  One interesting tidbit of information is to inform yourself of the difference between a broker and a fiduciary. The short of it is that: A broker is free to sell you stuff regardless of whether it is financially healthy to you - they are usually paid off commission and that depends on how much stuff they can get you to buy A fiduciary is required to act in your best interests and receive compensation independent of what financial decisions you make. An interesting website is https://brokercheck.finra.org where you can get the employment and educational history of a financial advisor.

Synology NAS

As a young man, one of the things I wanted was a powerful home server - running Linux - on which I could create an AI. That desire for having raw computing power under the desk, or in the basement, decreased somewhat with the easy accessibility of servers in the lab or (now) in the office. But a man's heart wants what it wants. I finally found my excuse when the spouse wondered out loud that, wouldn't it be wonderful if we could have multiple speakers at different parts of the house and we could stream our music collection to which ever set of speakers we wanted, especially a wireless speaker placed outside on the patio, for parties? You don't need to ask me twice.  An email sent to a list where my gaming buddies hang out retrieved a few important keywords: Sonos, Chromecast Audio, Synology and S3 bucket. I had two main aims - find a good home for our photos and, as the spouse wanted, stream music to speakers.  I debated more than you would think before laying o

Chromecast audio: mirroring, streaming, authenticating

I was curious about what the Chromecast audio is and how it works - both in terms of hardware and software. After a lot of needless thrashing about, I realized that the wikipedia page has the specifications for the system on a chip, though the ifixit teardown is more detailed and also points out that the Chromecast and Chromecast audio basically have the same system-on-a-chip. Interestingly, the Synology NAS also has a Marvell Armada system. Exploitee.rs says that the system runs a modified Android system. I was most curious about was how the software works: specifically, when I play music through the chromecast audio what is the flow of data? My web-search-fu failed me, and could not get any descriptions of this that went beyond user-level, google marketing speak. What I gather is that there are two modes of data transfer: mirroring and streaming. Mirroring takes the audio data stream playing from a computer (laptop, smart phone, iPad) and redirects it to the Chromecast. Softwa

Ping spikes on Mac OS X

Problem: After (I think) an update my Mac began to show a strange pattern of network latency: A ping to my router would show a string of 1ms trip times punctuated periodically by a cluster of 400-1000ms latencies. I first realized something was wrong when I was playing counter strike and my ping would go crazy - on a server I frequent my typical ping used to be 20ms, but now it would register as 190ms, 400ms and so on. I could verify this was not a internet provider issue by pinging my router from a different computer and getting a steady string of 1ms latencies. The solution was remarkably hard to find even though it seemed to be a common problem faced mostly by Mac users. A common response was to turn off anti-virus software, and I knew this was not the correct answer. Solution: From the thread here (look for the answer by "eyepaq") it seems to be a bad setting or combination of settings in network preferences which can be reset by deleting the file "/Library/Pref

Recording terminal sessions

All coders have some use for screen casting a terminal session, usually to demo a command line tool. The old way I did this (when I migrated to a Mac) was to use Quicktime's screen recording feature, which really is superb. Then I learned of asciinema . Asciinema was very novel for me because it looked like a movie, when played through the slick player they have, but you can just go an select the text that is 'playing' and copy paste it into a terminal. Amazing! Reading a little deeper into asciinema's docs we find that Linux actually has built in infrastructure for recording terminal sessions - with timestamps! - and also for then playing those sessions back. You use script to record the keystrokes and responses and scriptreplay to play them back! Magic! But there is more. There is a Python package called TermRecord that packages these utilities and then dumps the output to a standalone html file! This is most convenient for sharing demos etc because everyone ha

gh-pages: .nojekyll

I had the devil of a time trying to get a custom website to show up on github pages. It was sphinx generated documentation and I had put it on the website under a directory called manual. It was all borked. Not only did the nice stylesheet not show up, none of the images showed up either. I tried a whole bunch of things, but finally, from a hint here , it turns out that you need to add an empty file named .nojeykll in the root directory, and that allows you to add your own custom projects.