Posts

SSH and Internet connection sharing over crossover ethernet cable from OS X (Mac) to Raspberry PI (model B)

This blog was moved to Medium

marketing through marketing and non-marketing materials for small and medium organizations

The problem I faced, I'm going to tell it by 3 short paragraphs, background, problem and solution. One month ago I was doing web app for developers. While I was developing that tool, I was thinking how to market this app to get more traffic and ways to monetise this app. In my mind I developed a business model and strategy to market the service (the web app). But in my mind, I was thinking about the budget that I can allocate to the marketing, the potential users, revenue that I can get, the risk involved in what if goes for a failure, the ways that I can recover???, etc. Hmm, Simply, the thing is that I'm doing is finding ways to get more users, to my product/service. And the problem is to get the presence in front of developers in order to get to know my app and use for their development. In current scenario, all the people got used to search  the information on Google, Bing, Ask, etc. So, I have to get onto the listing on those as well. And I have to use some direct and ...

Install Flash player on Ubuntu 12.04

Do you have any problem with installing Flash player on Ubuntu 12.04 1st step: sudo apt-add-repository "deb http://archive.canonical.com/ $(lsb_release -sc) partner" 2nd step: sudo apt-get update && sudo apt-get install flashplugin-installer acroread sometimes you may need to install ubuntu restricted-extras (if above 2 steps don't show flash content properly on your browser on Ubuntu, then install restricted-extras & see: sudo apt-get install ubuntu-restricted-extras) original source: here I think, this has helped you :) 

Flash CS5 AS3 XML delete node

Flash CS5 AS3 remove node through XML object does not exist, therefore all you have to do is just skip & do it through this way: http://zandadev.com/atom/?p=56&cpage=1#comment-72 Elas, take the revenge from AS3

Sbt (Scala) with Spring, Hibernate & Vaadin

Though it is said that it is not recommended to use sbt & Spring,Hibernate to build Scala based projects, I have done a little testing application with all those technologies. And later I extended it to use Vaadin also. And I'm not interested in telling all the techneques by line by line. I assume that you'll have some basic knowledge on sbt, scala, & vaadin and average level in Spring & Hibernate, Java. And you must first be sure that you have installed apache maven, Scala compiler , Sbt & mysql(other intellij idea). I have used to build these 2 projects Intellij Idea. you can run these in command prompt(or terminal) & see. Run Hibernatejava using "mvn clean install" & HibernateScala using "sbt update", then "sbt" then "jetty". Before running for Hibernatejava example you need not create a database, but for HibernateScala you have to create a database named "hibernate_test" using mysql. (And I'm not...