Saturday, October 21, 2017

VR enables visiting MARS

NASA dropped Curiosity Rover on Mars year 2012. Since then Curiosity has been hiking and capturing photos like a savvy traveler.

NASA partnering with Google enabled visiting Mars with new hyped technology Virtual Reality. Virtual Reality creates near real visual experience and more actual engagement.

Project is ready for general masses at https://accessmars.withgoogle.com/

With Access to Mars project Google and NASA creates virtual Mars with images taken by Curiosity Rover. However few images are gray and others are full RGB. Mostly due to Curiosity does not need to take high quality images all the time and skimming can be performed with enough accuracy with low accuracy. You can travel Mars with similar experience to Google Street View or access Curiosity's mission locations by clicking on specific icons.

Check it out again at https://accessmars.withgoogle.com/




Sunday, October 1, 2017

Miami Dolphin owner responded to Donald Trump

People with high position responds with cleverness, thoughtfulness, smartness and compassion, except few.

Owner of Miami Dolphin has responded to racial slur whirling United States of America. Here is his tweet.

What is Ethereum

Ethereum is a distributed application based on Blockchain Technology. That does not answer all questions.

I found many blocks that manages to compare and contract Ethereum and Bitcoin and praises possibilities with Ethereum but in nutshell it's an engine that can rotate an axle.

From rotating axle you can build factories, trains, cars or anything else, but you need an engine, that's Ethereum.

Explaining more with examples Ethereum will be used as Platform for digital currencies, distributed ledger simply anything that needs event log / ledger / daily diary / log book.

Security, distributed nature etc can very well be achieved with other Peer to Peer technologies.


A Note on Serverless Architecture or FaaS

 Serverless architecture allows app owner to run process anywhere. Serverless architectures works with run-replenish pattern of application development. A service that wakes up and sleeps after logic is executed is a Serverless App / Service.

The provisioning is on demand for application . Application may run on shared or physical hardware and application runs in isolation to other processes. FaaS - Function as a service is new coined term accordance with SaaS and PaaS and many other *aaS. FaaS will be a useful pattern in microservices and related world.

FaaS will provide portable implementations. Auto Scale with increased usage and painless expansion managed by provider

Business Advantages
 - Time to market reduced
 - Cost to market is reduced
 - Experimentation is key and happening
 - Help save some trees by saving unnecessary CPU cycles

Drawbacks on Serverless architecture
   - Non Transnational
   - Third Party application coding
   - Hype, may need to have a realization curve
   - Discovery of such applications is difficult.
   - Operational issues : Deployment procedure needs modification.
   - Operational Issues : Packaging. Each vendor may required specific binding to logs, dependencies, code, startup
   - Operational Issues : Versioning of application is difficult
 - Implementations
   - Azure Functions
   - Web Tasks
   - Google Functions
   - Firebase
   - AWS Lambda
  

Sunday, August 27, 2017

Amazon Lowering prices for Whole Foods

Amazon bough whole foods months back. Amazon has been figuring out many ways to capture grocery market for long time. Now they have a shot at it.

Amazon is known for their specific tactics to enhance market prices. Whether its Amazon Web Services or Amazon.com or pricing Kindle. Amazon is a good competitor to market and brings aggressive competition to market.

Recently it came to notice that Amazon is going to police lower prices for Whole Foods.

https://www.usatoday.com/story/money/2017/08/25/amazon-prime-members-perks-whole-foods-organic-natural-deals-prices/602204001/

These changes are interesting and would be of specific interest to Amazon Prime members. Amazon is planning to add special prices for their Prime members. Whether this prices are US only or North America or All Regions, that's something only time can tell.

See more information at below link :
https://twitter.com/USATODAY?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor


Monday, August 7, 2017

Tensorflow Adds Java, C, Go Lang Support

Tensorflow is well known library for Deep Learning created by Google. Recently Tensorflow moved from 1.0 to 1.2. In this journey there we many architectural changes in Tensorflow library. I have gone through many Github libraries that cannot be ran because of version differences. I hope all major changes are done and future releases are more functional additions than incompatible refactoring.

Recently Tensorflow also added support for Java, C and Go lang. I can guess some reasons but not sure if Google can confirm so.

Java is a good additional. A lot of Enterprise infrastructure supports Java. It would be very useful to train the model in Python and load the same in Java. Normally Data Scientist and Deep Learning Engineers more familiarity with Python hence training is very production part of Model Development. However running the same model in production is better with Java and could give nicer edge to Tensorflow to its adoption.

Adding Go is on the same line as Java however the support seems more fine tuned to people who would like to run Deep Learning model at a very large scale. It could be a lot of savings in terms of time and infrastructure cost.

For addition of C Language was little surprise to me. However it look a little time to understand why. I am not iOS developer however I did play around with some development for iPad. Hence I believe addition of C Language was to ensure model trained on Python could run on iOS which is second largest mobile market after Android.

I am surprised to see there is no support for R language so far, but I hope it will be added soon enough. Also Microsoft is supporting R language very well so it could be tug of war between these giants to understand and build next platform and which language to choose.

Concluding supporting a lot of languages is not very new. Every big data framework is trying to be language independent atleast access and productionalizing point of view.

Sunday, August 6, 2017

Kotlin Examples

Google announcement has created sparse interest in Kotlin. Kotlin being Java / JVM Wapper concept could get wide acceptance and has potential to be top 5 languages.

Here I am covering some Kotlin examples I came across :

Kotlin Sevlet Example with Simple Hello World with rest and Java Sevelet. Thebuild platform be Gradle The could be found here.

A more advanced application with Kotlin and web example is needed. Spring has been core component of Java Ecosystem. With Gradle build system and Spring boot the example could be found here. This example is also restful and could serve as basic skeleton for projects.

It's easy to get started with Kotlin using their documentation. However if you are interested a developer's take on the subject then this link could be useful. Covering major high level constructs to build your knowledge base.  I also found Kotlin Practical Exmaple blog to be useful at the little lower level constructs.