tech support15

  • Subscribe to our RSS feed.
  • Twitter
  • StumbleUpon
  • Reddit
  • Facebook
  • Digg

Saturday, 30 June 2012

Start-up Web Presence - LaunchRock.com

Posted on 13:04 by Unknown
Saw ten excellent tech start-ups last week. When I went to check out their websites, a couple of them were using LaunchRock.com. It enables you to get a start-up web presence fast.

If you are wondering how to get a website up quickly to build a mailing list and such, LaunchRock.com is the ticket. Their tagline is: "Set up a "Launching Soon" page in minutes. Collect interest, increase in sharing and build your audience." I think that it is a hell of a platform.

Disclaimer: As per usual, I am in no way affiliated with LaunchRock, and I have no connection to them. I didn't receive any kind of consideration for this posting, and they are unaware that I am doing it. This is just my opinion that they are a valuable product and a good idea.
Read More
Posted in how to get a company website quickly, launchrock.com, start-up web presence, startups | No comments

Thursday, 28 June 2012

The Most Disliked Things On A Website

Posted on 18:10 by Unknown
One of the startups that I ran into this week, is clearmeter.com. They have an interesting concept where they have tools to break down a website into all of its constituent components, and then get feedback from a cadre of User Experience Raters. That way, they can tell what works and what doesn't work. From this, they get an overall rating of the usability of the web site as well as its appeal.

There was an eye-opener for me that has ramifications for user experience. I was being given a demo of a website, and the most hated thing on the website were the social media buttons:



This was a major surprise. Somehow one has to convey the fact that they can be found on social media without the gaggle of social media icons. Perhaps there may be a separate page or menu item called connect that hides itself unless invoked, or it uses a jQuery layer that goes away.

One would have never guessed that there is "fatigue" from social media buttons. Check out clearmeter.com.
Read More
Posted in clearmeter.com, extreme UX, UIX, usability, User Experience, User Interface Experience | No comments

Wednesday, 27 June 2012

How To Get Venture Capital -- Ten Things

Posted on 05:24 by Unknown
Every coder's dream is to have an idea, turn it into a startup, and then pitch to a room full of venture capitalists. These VC's have truckloads of money to invest in ideas that have legs.

I had that opportunity yesterday. It was an amazing experience, and I have lost my voice from all of the talking that I did yesterday.

This venture capital fair was sponsored by government, private industry and regional executives bent on improving the local regional infrastructure. High tech startups create jobs and creates an eco-system of innovation and well-being for the community.

So the basics to get venture capital are the following:


TEN STEPS TO VENTURE CAPITAL

1) Your product has to solve a problem or add value
2) There should be a large demand for your product
3) There should be a clearly defined revenue stream
4) You should have an excellent business plan
5) You should do some real world validation of your product before you go along too far.
6) Your product should work.
7) You should be able to communicate the essence of your product in 30 seconds.
8) Your product should have a unique value proposition, and should be original
9) You should find some early adopters willing to use your product
10) You should have an excellent communications and marketing strategy.

Marketing is the key to any product. You not only have to develop your product, but you have to sell it.
Read More
Posted in how to get venture capital, startups, ten things to get venture capital | No comments

Monday, 25 June 2012

Some Mobile HTML Tags Not To Use

Posted on 05:21 by Unknown
When I developed my first mobile app, I googled some articles to make sure that I got it right. Several of the online articles told me to add the following mobile tags:

"meta name="HandheldFriendly" content="true" /"
"meta name="MobileOptimized" content="240" /"
"meta name = "viewport" content = "width = 240""
"meta name="apple-mobile-web-app-capable" content="yes""

(Note: I couldn't use "<" or ">" because Blogger kept thinking that I was embedding HTML )

I did. I ran into problems. With these tags, they worked well on some mobile browsers, but they were preventing the scaling of the web page on others. The latest Android browser was problematic.

I was initially stymied by this, and in a flash of inspiration, I removed these tags and everything seemed to work well, both on the desktop computers, and all mobile devices including Blackberry.

I am wondering as to how useful that they really are.
Read More
Posted in html tag, html tags, meta tag, mobile web tags | No comments

Friday, 22 June 2012

Java: How to schedule an event for a specific time

Posted on 05:29 by Unknown
In a previous blog entry, I showed a snippet of code on how to determine the amount of minutes from now to a specific time.

The code was quite simple:

Date now = new Date();
GregorianCalendar expiryDate = myevent.getExpiryDate();
Date end = expiryDate.getTime();
long difference = Math.abs(end.getTime() - now.getTime());
long minutesLeft = difference / (1000 * 60);



Starting from that point, it is quite simple to schedule a Java runnable thread at a specific time. Here is how I did it:

private ScheduledExecutorService scheduler;
.....
scheduler = Executors.newSingleThreadScheduledExecutor();

.....
Date now = new Date();
GregorianCalendar expiryDate = myevent.getExpiryDate();
Date end = expiryDate.getTime();
long difference = Math.abs(end.getTime() - now.getTime());
long minutesLeft = difference / (1000 * 60);
long secondsLeft = difference / 1000;
// task to run is embedded in a class implementing Runnable
RunnableNow runnableNow = new RunnableNow()
scheduler.schedule(uhuraNow, secondsLeft, TimeUnit.SECONDS);


Hope this snippet save someone some time
Read More
Posted in java, schedule, start process at specific time | No comments

Sunday, 17 June 2012

MyEvent.com ~ The Death Knell for Classmates.com

Posted on 07:22 by Unknown

This entry is about changing or evolving revenue stream paradigms on the web. I have previously written about classmates.com and how it will turn into a MySpace shortly. You can read the blog article HERE. In that article, I mentioned how it was easy to find my old classmates for free on Facebook and LinkedIn.

Well several things have happened since then that have reinforced my view that Classmates.com is dead man walking as well. Revenue stream paradigms evolve quickly on the internet.

For Classmates.com, you sign up for free, but that is just a teaser. You can send messages, but to read them, and see extended information about your classmates, you have to buy a membership. This was the same paradigm for dating sites like Lavalife.com. For dating, along came PlentyOfFish.com which was free and made money out of advertising. It took a big chunk out of Lavalife's revenue stream.

One of the events that happened recently was that my old high school is having a 50 year reunion. They didn't go for the reunion feature on Classmates.com. Rather they chose to go to MyEvent.com. Instead of people paying to join and see reunion details, MyEvent.com charges a very reasonable price for an instant website and it is free. It has all of the benefits of Classmates.com and one can communicate with former classmates for free.

I went to the customized MyEvent.com website for my high school, and I was totally impressed. It was made by a teacher (who was a student back in my day) with no IT or web experience at all. And the cost varies between $15 and $25 dollars a month, or you can have the website for 5 years for $599. Such a deal !!!!

Classmates.com revenue stream paradigm is outdated, and in my estimation, they are floundering. I still get spam from them regularly begging me to visit my old account where I signed up for free, and haven't upgraded or even visited for several years. At one point, they were the only place on the web where one could easily find ex-classmates looking to be found, but that was back in the dinosaur era of the internet (a few years ago).

So this is more of a cautionary note to all of my fellow geeks. When you come up with the killer app idea, you better make provisions for an evolving revenue stream. It's very Darwinian out there, and it is survival of the most adaptive capable of going viral. And the final word, is plan on a shelf life for your killer app of no more than 10 years if you make it past the first year. A ten year old idea is ancient on the internet.
Read More
Posted in changing revenue paradigms, classmates.com, dead man walking, myevent.com | No comments

Friday, 15 June 2012

Java ~ How to get the remaining minutes between two dates

Posted on 05:44 by Unknown

I had to look this up, so I am posting this snippet in the hope that it helps someone else.

I monitor events in real time. The program has to know when the event ends, and send SMS messages. The event, including the expiry date/time is a database entry. How do you determine the remaining time in minutes?

First I fetch the expiry date/time into a bean. It is stored as a GregorianCalendar entity in the database, because I have to extensively manipulate it before the event starts. Then I get a time for NOW. Then I have to subtract the two. This is how I do it:

Date now = new Date();
GregorianCalendar expiryDate = myevent.getExpiryDate();
Date end = expiryDate.getTime();
long difference = Math.abs(end.getTime() - now.getTime());
long minutesLeft = difference / (1000 * 60);

Hope this helps.
Read More
Posted in date time manipulation, get minutes, get remaining minutes between two dates, java, subtract dates | No comments

Wednesday, 13 June 2012

Browser Plug-ins that Would Sell Like Crazy

Posted on 05:48 by Unknown
I am not a browser plug-in developer, but I do know of two browser plug-ins that would make their coders millionaires. It would be a plug-in with a semi-transparent layer with two controls -- "MUTE" and "FAST FORWARD". And it would be an intelligent plug-in. It would hide itself on most web pages, but does a quick look-ahead to see if the web page has auto-play media, either audio or audio/video. If so, the layer would materialize.

The user would have the ability to mute the sound of auto-play and for sites that put in advertising videos before the video that you actually click on to watch, it would either fast forward or eliminate it.

The web has become worse than TV for advertising. On TV you get at least 5-10 minutes of content for a thirty-second advert. On the web, if you want to watch 5 one minute clips, you get a thirty second advert with each clip.

There are programmers smart enough to build these anti-ads plugins. I am waiting.
Read More
Posted in browser, browser plugins, fast forward button for browser, mute button for browser | No comments

Monday, 11 June 2012

More Reasons Why To Quit Facebook and LinkedIn

Posted on 07:43 by Unknown

Man, I am looking smarter and smarter every day for quitting Facebook and LinkedIn. Can you imagine that your credit rating will suffer for something that you have posted on LinkedIn or Facebook?

Here is the URL of an article of Privacy Violation on these social networking sites:

http://www.smeweb.com/index.php?option=com_content&view=article&id=3722:facebook-inc-data&catid=62:news&Itemid=101

And here is a reprint of the article in case it goes off line:

Credit agency plans to use Facebook Inc data to form credit ratings
Monday, 11 June 2012 11:25


Schufa is also looking into using information from other sources including Twitter and Linkedin.


Schufa, Germany's largest credit agency, is planning to use data from Facebook Inc (NASDAQ:FB) to form credit ratings, according to leaked documents says to consumer advisory body Which?

As well as pulling information from Facebook pages the agency is looking into using information from other sources including Twitter, Linkedin and Google Street View to assess individual credit ratings.

The documents, leaked to German broadcaster NDR, suggest the agency is planning to use 'crawling techniques' like those used by search engines to find relevant information with aim of 'identifying and assessing the prospects and threats'.

Mark Batistich, a member of the Which? Legal team, said: "Whilst it's not exactly clear what credit checking companies such as Schufa intend to do with data obtained from Facebook, it is certainly possible, at least in the UK, that using such information without consent could be in breach of the Data Protection Act, and also the Facebook Terms and Conditions, which set quite stringent guidelines on what can be done with information obtained from that site."

The plans have drawn criticism from the German consumer protection minister Ilse Aigner as well as justice minister, Sabine Leutheusser-Schnarrenberger, who both said the plans went too far.

Read More
Posted in data privacy, Facebook, Internet Privacy, Linkedin, quit facebook, quit linkedin, spying on the internet | No comments

JSP ~ Login before going to bookmark or URL

Posted on 06:44 by Unknown
So you have a web app or website in JSP where you want the user to login before proceeding to a bookmarked page or a URL. And you want to proceed to that page or URL automatically after login. How do you do it?

For me, every protected JSP page has an include page:

<%@ include file="isLoggedIn.jsp"%>

That file, isLoggedIn.jsp is called on every page. In that file, the first thing that I do, is I get the request URL. I do it like this:

String redirectUrl = request.getRequestURL().toString();

Then is there is a query string afterwards (www.mysite.com?showMe=cars -- the query string is showMe=cars), you need to get the query string in a separate step:

String queryString = request.getQueryString();

Since the queryString doesn't have the question mark, you need to re-assemble the called URL:

redirectUrl = redirectUrl +"?"+queryString;

Now I usually have a session attribute called "AccessGranted" or "isLoggedIn". I check for that:

String accessGranted = (String) session.getAttribute("AccessGranted");

if (accessGranted.equalsIgnoreCase("false"))
response.sendRedirect("login.jsp?NotLoggedIn=True&requrl="+redirectUrl);


What you see above, is that I send the request URL to the login page.

On the login page, if the login is successful, I redirect to a menu page. Otherwise, I redirect to the URL that was called in the first place. I do it this way:

String redirectURL = (String) request.getParameter("requrl");
if (redirectURL == null)
redirectURL = "menuPage.jsp";

If the login fails, then:

redirectURL="login.jsp";

Finally I send the user to where they have to go with the jsp redirect directive:

response.sendRedirect(redirectURL);


Easy as pie.


Read More
Posted in bookmark, how to redirect, jsp, login, login before proceeding to page, redirect | No comments

Thursday, 7 June 2012

Check to see if Your LinkedIn Password Was Hacked

Posted on 15:00 by Unknown
LastPass has created a secure tool to see if your LinkedIn password was compromised. I quit LinkedIn in late March, or early April, and still my password on my dead account was compromised.

Click HERE to go to the LastPass site to check to see if your LinkedIn password was compromised.
Read More
Posted in check LinkedIn Password, hacked, hacked LinkedIn Password, quit linkedin | No comments

Make Money from LinkedIn Passwords Hacked

Posted on 07:39 by Unknown
A few weeks ago, I mentioned on this blog that I have quit both Facebook and LinkedIn. That looks like a pretty prescient and smart move now, in spite of the fact that prophets are never accepted in their home country.

Based on the news today that 6 million LinkedIn passwords were published on a hacker blog in Russia, I feel that by quitting these two Internet time-wasters, I have greatly enhanced my security from identity theft.

You can read about the password breaches with LinkedIn here.

A few thoughts come up from this episode. In no obvious order:

  • A lot of people use the same password for their email, bank accounts, Facebook and LinkedIn accounts. A breach of one, may be a catastrophic breach for some people.
  • The other striking fact was that may users used linkedin as their password to LinkedIn. This sort of thing enabled the Russian hackers with small penises to break the SHA-1.
  • LinkedIn was negligent in not "salting" the passwords with random bits to enhance the security so that the same passwords do not hash out the same every time.
  • This is a prime opportunity for some young hotshot lawyer to sue the pants off LinkedIn in a class action suit for not protecting its users privacy.
  • We trust these websites a lot with our identities, and when they fail to protect them, they should be made to pay for that negligent lapse. After all, they make money from the users who sign up. You would think that they would protect that revenue stream.
  • A class action suit would work, because LinkedIn has some pretty heavy corporate hitters who value their identity privacy.
  • This sort of thing spells opportunity for any geek who can solve the intrinsic problems of traditional user name and password credentials for websites.
And I can't go a day without mentioning my own personal bête noire -- Facebook. I am not sure if Facebook tightened things up with a complete https session, but various industry insiders pointed out that there are vulnerabilities in Facebook. If Anonymous or the diminuitive tallywhacker hacker Russians ever break Facebook security, it would greatly accelerate its inevitable destiny of becoming a penny stock.
Read More
Posted in data privacy, hacked, hackers, Internet Privacy, Linkedin, quit linkedin, security | No comments

Wednesday, 6 June 2012

Spam ~ Fighting Fire With Fire

Posted on 07:34 by Unknown

When you sit for long periods of time in front of a computer, and you have a fertile imagination like mine (and we all know what makes things fertile), weird and wonderful ideas pop into my head.

I regularly get spam from countries like Nigeria, Burkina Faso, and other places that tell me that the sender has access to millions of dollars and needs my help to get at it. I just have to send my identity, bank account number, a payment or two to facilitate things, and I will be a millionaire. Yeah right. Not only are they spammers, but they are scammers.

One thing that I have learned while writing healthcare software to be misused by cheating Nigerians, is that they are very very superstitious. Knowing this, I have decided to fight fire with fire when I get a piece of spam from them.

I have a throw-away email account that is mostly anonymous, so I use that in my arsenal. I send them a return email to all email accounts in the spam (usually there is an originating email address and one in the body of the email). I send them an email worded something like this:

You are an evil man. You are dishonest piece of dog scum. You send emails trying to steal money from people. I am disgusted by pigs like you. So I have gone to the voodoo Obeah -- the witch doctor and I had her lay a horrible curse on you. You will have horrible luck, and a terrible life. You will become sick. The curse cannot be lifted. I have given over possession of your soul to the Devil to play with. You will probably die within a year of a horrible disease. Your evil will be punished. People will piss on your grave.

Ha ha aha ha ha ha ah ha ... you are doomed .. just for a stupid email .. ha ha


One thing about living in Caribbean, I learned about Obeah, the west African magic, and it adds cred to my email. They know all about Obeah.

I get a remarkable sense of satisfaction in jerking their chain, because I KNOW that culturally, they can't help worrying about an email like this.

Read More
Posted in Effective ways of fighting SPAM, how to deal with spammers, Nigerian Scam, spam | No comments

Monday, 4 June 2012

The Black Hole Net ~ Dark Web 2.0

Posted on 05:56 by Unknown
There will come a time when internet privacy will be the concern of everyone. Only the lower socio-economic classes of people with continue to use the internet in a promiscuous way. But I predict the evolution of a deep dark web called the BlackHoleNet. This will be like the black credit cards or Swiss trusts -- a place where those that can afford it, can surf the web in virtual assured privacy. What will the BlackHoleNet look like?

First of all, to get to it, you will enter an IP address with no domain name. A lack of a domain name means one less step of information gathering by the registrar. When you arrive at the site, it will be a blank page that has a happy face or an "Under Construction" banner. Nothing. Nada. No links. Nowhere to go.

Then you insert a USB key, or SD card or another removable memory device into a port on your computer. You refresh your browser, and another page opens up. No apparent links. However this page contains an Easter Egg. If you know where it is, it asks you to log in. You have made it passed the bastion server. You are connected to the bastion server with an encrypted tunnel. On top of that, the contents of the traffic are encrypted as well.

Once behind the bastion server, you have the dark net. No search engines. No DNS. You have to know the IP addresses. The browser is such that if you start scripting a series of IP addresses, the browser will never work again, nor will the credentials to the dark web.

Inside the BlackHoleNet, there is no SMTP email. Not everyone is aware that every single email sent is archived by the intelligence agencies of almost every First World government. Inside there is no general broadcast of email. One logs into a server, and the email goes from mailbox to mailbox, in the server. Each subscriber must tunnel into the server to get their mail.

If you have to send an external regular email, the email is passed to a tokenizer which creates a token of the identity of the sender. All geo-location stuff is stripped out, and the email is then sent over regular SMTP channels. When the email is answered, a server decodes the token and takes it to its appropriate inbox.

There is a Facebook-like social media app, but it is all private, and the app is prevented from selling data or advertising. All of this privacy is funded by subscription.

There are websites that one can surf without anyone collecting information on you. There are stores that sell products, and all transactions are handled by an anonymity broker. Both the seller and buyer pass their information to the broker, and neither one knows the particulars of the other. The anonymity broker is a trust, that is audited regularly.

In essence, there will be an exclusive private darknet that will not be accessible to governments, intelligence agencies, pornographers, spammers, pedophiles, British tabloid editors, Rupert Murdoch and other scumbags and all of the vermin that now infests the internet.

Coming to an IP address near you soon. Bring a couple of wallets to pay the subscription fee.
Read More
Posted in black hole net, dark web, data privacy, Internet Privacy, total privacy, Ultra data privacy | No comments
Newer Posts Older Posts Home
View mobile version
Subscribe to: Posts (Atom)

Popular Posts

  • C# .NET Textbox GotFocus Event
    When one Googles to find out sample code for a C# .Net textbox gotFocus() event, the first few search results are not that explicit.  So wit...
  • Mechanized Attack Detection Algorithms
    I was on a CNN sub site and they were talking about security and threat of attack. One of the types of attacks that they were profiling, wa...
  • More Reasons Why To Quit Facebook and LinkedIn
    Man, I am looking smarter and smarter every day for quitting Facebook and LinkedIn. Can you imagine that your credit rating will suffer for...
  • Exception in thread "Thread-0" org.eclipse.swt.SWTException: Invalid thread access
    So you are getting your feet wet with Java SWT and you are having trouble updating your UI while you are doing some heavy processing.  Perha...
  • Is Android Safer Than iOS for Mobile Banking?
    First of all, total disclosure:  I am a registered Apple, Android and Nokia developer.  I have no real preferences.  There are good and bad ...
  • Java Networking
    I have this issue where I need to know the IP address or some identifying part of a computer.  Using Java, I came across the class of java.n...
  • It's Time -- A New Plug-in Filter for Browsers Needed
    I am starting to get a little ticked off at how much data is being collected on me when I surf the internet. Websites often ask for authent...
  • Classmates.com -- Another MySpace in the Making?
    A few years ago, I signed up on Classmates.com. I did it out of pure curiosity to find out where my peers in high school ended up. I enrol...
  • IE Users are Stupid, and Microsoft Knows it.
    (Click on the pic to make it larger) I have several email accounts. One of them is Hotmail. When I sign out of Hotmail, I usually land in ...
  • Facebook -- Dead Man Walking
    A couple of years ago, it would have been heresy to say that MySpace was irrelevant. It is now a ghost of what it was, and it IS irrelevant....

Categories

  • .avi
  • .Net
  • .wmv
  • [ERROR] /usr/share/mysqld: Out of memory (Needed xxx bytes)
  • activity with webview
  • ad
  • ads
  • adsense
  • Advanced UX
  • advertising how-to
  • algorithms
  • amazon
  • amenities
  • analysis
  • analyzing emotions in speech
  • android simulator
  • Anonymous email
  • anti-terrorist in cyberspace
  • apache
  • app
  • Apple
  • Apple Developer Site Down
  • apps
  • apps listing
  • arraylist
  • arraylist of arraylists
  • Artificial Intelligence
  • Arvind Bhatia
  • assholes
  • Avira
  • Aviva Premiership
  • background color
  • Bahamas
  • baidu
  • bait and switch
  • bash
  • basics
  • Bayesian inference
  • best blogging software
  • best free mobile web template
  • best iso image burner
  • Best Practices
  • best remailer service
  • big brother
  • big data
  • binaries
  • black hole net
  • blackhat SEO
  • block ip addresses
  • blog comments
  • blog design
  • Blogger
  • blue screen
  • bogus
  • Bombing
  • book covers
  • bookmark
  • Boston Bombing
  • Boston Marathon
  • browser
  • browser plugins
  • browser wars
  • browsing history
  • buddhist of the binaries
  • bug
  • Build 7600
  • Business Intelligence Cubes
  • C Sharp
  • c#
  • C# .NET Textbox GotFocus Event
  • cable
  • call center software
  • Camden Hughes
  • Can not issue data manipulation statements with executeQuery()
  • can't see Android Device
  • cannot upload image
  • Carl Jung
  • Casey Anthony
  • Caylee Anthony
  • censorship
  • changing revenue paradigms
  • charging
  • check LinkedIn Password
  • China
  • chinese investments
  • Chinese Search Engine
  • Chrome
  • chrome extensions
  • classes folder empty
  • classmates.com
  • clear on focus
  • clearmeter.com
  • click and clear input
  • closure
  • CNN
  • combating terrorism
  • comm.jar
  • comm3.0_u1_linux
  • command line
  • compiled
  • computer trading algorithm
  • computer virus
  • conciousness
  • connection pool
  • connection pooling
  • conspiracy theories
  • consulting
  • content analysis
  • content management systems
  • convert avi to dvd
  • convert dvd to avi
  • convert Gregorian Calendar to DateTime using Timestamp
  • converting Twitter followers to web hits
  • cookie monster
  • coolutils.com
  • copyright dispute
  • corrupt data
  • crap software
  • crash
  • create iphone app
  • css
  • current datetime
  • cyberspace counter terrorism
  • dark knight
  • dark web
  • Data Cleansing
  • data mining
  • data privacy
  • Data Refinery
  • data storage
  • datamining
  • date
  • date time manipulation
  • day trader
  • day trading
  • daytrader
  • daytrading
  • dead batman
  • dead man walking
  • decline of desktop
  • declining membership
  • delete database duplicates
  • delete duplicate rows
  • derek medina wife photo
  • determining user behind browser history
  • develop iPhone apps
  • developer
  • Developer website
  • development
  • dialog
  • dialog won't open
  • dictionary of apps
  • difference
  • digital buddha
  • disconnect.me
  • discountApp browser hijack
  • divx codec
  • Divx codec pack
  • DNA and information storage
  • DNSChanger Malware
  • do not track plus
  • domain name
  • domain name works
  • double quote
  • Download jfaces jar
  • drop Image
  • dumb ass
  • Dummies Guide to UIX
  • dvd
  • Eclipse
  • eCommerce
  • editor
  • Effective ways of fighting SPAM
  • Elliott Wave
  • end application
  • ePublishing
  • ereader
  • error
  • escape ampersand
  • Escape Key
  • exam for software developer
  • example
  • excel
  • Excellent
  • Exception in thread "main" java.lang.NoClassDefFoundError:
  • EXP/CVE-2012-0507
  • exploit
  • extreme software techniques
  • extreme UX
  • Facebook
  • facebook fair valuation
  • Facebook fatigue
  • facebook ipo
  • Facebook stock
  • facebook true share price
  • facebook true stock price
  • fail
  • failing
  • failure
  • fake traffic hits
  • faking domains
  • fast forward button for browser
  • fault tolerance
  • file splitter
  • file too big for email
  • find apps
  • Firewall Rules
  • firmware embedded in DNA
  • fly-half
  • Form not visible in task bar
  • format telephone number
  • formula doesn't work
  • forums
  • free
  • free email
  • free file splitter
  • free iso burner
  • free template
  • freedom of speech
  • frozen
  • funny
  • fuzzy class
  • fuzzy logic
  • Galaxy
  • geek gossip
  • gerard depardieu
  • get date from timestamp
  • get minutes
  • get remaining minutes between two dates
  • get rid of characters in a number
  • get rid of unwanted characters
  • ghostery
  • gmail
  • good stuff
  • google
  • google ads
  • Google Chrome
  • Google Chrome Browser Blocker
  • Google Circles
  • Google Image Search
  • Google+
  • gramlets
  • great stuff
  • GSM modem
  • hacked
  • hacked LinkedIn Password
  • hackers
  • Handling large amounts of data
  • Hard disk corruption
  • hardware
  • hashtag
  • hot trends
  • how computer games will evolve in the future
  • how do copy a form
  • how google image search works
  • how to build an iphone app
  • how to deal with spammers
  • how to develop iphone app
  • how to duplicate a form
  • how to get a company website quickly
  • how to get rich by writing apps
  • how to get venture capital
  • how to give users an anonymous number
  • how to make an effective online ad
  • how to redirect
  • how to see directory
  • how to send mail with linux
  • how to validate
  • html
  • html input
  • html input tag
  • html tag
  • html tags
  • human garbage
  • hunting terrorists through technology
  • I/Choreographer (xxxxx): Skipped 60 frames! The application may be doing too much work on its main thread.
  • icefaces
  • IDE
  • IE users stupid
  • IE9
  • if browsers were guns
  • imperfect clues
  • In order to select an image from your online storage
  • increase maximum number of open files
  • increase mysql memory size
  • inexact computing
  • innovative uses
  • intelligence test
  • interest engine
  • interesting problem to solve
  • Internet
  • Internet explorer
  • Internet Explorer 10
  • Internet Explorer 8
  • Internet Privacy
  • invalid server's version String Tamirsharpssh
  • investing
  • Invoke or BeginInvoke cannot be called on a control until the window handle has been created
  • iOS
  • iOS 7.1 beta
  • iOX
  • IP addresses for Iran
  • iPad
  • iPhone
  • iphone app
  • iphone apps development
  • ipo
  • is facebook dying
  • is the google search engine concious
  • IT
  • it consulting
  • it jobs
  • java
  • java 8
  • java.lang.ClassNotFoundException:
  • java.lang.UnsupportedClassVersionError: Unsupported major.minor version 51.0
  • java.sql.SQLException: After end of result set
  • java.util.date
  • javascript
  • javax.servlet.ServletException: java.lang.UnsupportedClassVersionError Unsupported major.minor version 51.0
  • JdbcOdbcDriver.finalize() line: not available
  • JNDI
  • job test
  • join three tables
  • JSF
  • jsp
  • Julianne McCrery
  • Jungian view of the computer
  • keylistener
  • kill application
  • killer robot
  • kindle
  • Kyron Horman
  • lamda
  • laptop
  • launchrock.com
  • learn to program
  • Leicester Tigers
  • libmysqlclient.a
  • Linkedin
  • linking interests to content
  • linux
  • list directories
  • localhost
  • login
  • login before proceeding to page
  • looking for work
  • Mac
  • macbook Pro
  • mail
  • mailer
  • make iphone app
  • making money with photoshop
  • malware
  • malware protection
  • man on roof
  • Mandelbroatian math
  • mango
  • Mark Zuckerberg
  • massively parallel systems
  • Mathematical Modeling Regression
  • mechanized attack detection
  • Merry Christmas
  • meta tag
  • micro programs
  • microsoft
  • microsoft codec
  • microsoft codec doesn't work
  • microsoft is crap
  • microsoft spam tabloid national enquirer
  • Microsoft sucks
  • Minimum Viable Product
  • missing data
  • missing information
  • mistakes
  • mobifreaks.com
  • mobile
  • mobile web tags
  • moderator
  • monetization
  • monetize social media
  • monetizing social media
  • most popular Browser
  • most popular Operating System
  • mothers who kill
  • mouse
  • mouse is dead
  • movie files
  • Multi-Layer-Perceptrons
  • mute button for browser
  • myevent.com
  • myspace
  • mysql
  • mysql client
  • mysql error
  • navigate
  • needed. Structure Query Language
  • network interface
  • Neural Nets
  • new paradigm
  • new SQL functions
  • New Version of Xcode available
  • Nigerian Scam
  • no black screens
  • nokia
  • nokia developer
  • nokia website hacked
  • non-cloud cloud
  • non-compatible
  • nook
  • numbers game
  • OCR
  • offshore software development
  • old technology
  • online
  • open source
  • org.apache.catalina.loader.DevLoader
  • org.eclipse.swt
  • out of memory
  • pages unresponsive
  • parallel computing
  • parallel executables
  • parameter
  • partnership
  • pattern recognition
  • PDF to Word
  • pee on a plane
  • Perfect Web Page
  • performance analysis rugby
  • Perils of Python
  • phone
  • PhotoResize400.exe
  • photos
  • photoshop
  • PHP
  • picture
  • please sign in
  • plugin
  • predictions
  • predictive analysis
  • preventing hack attacks from the Middle East
  • privacy
  • privacy concerns
  • privacy policy
  • problems
  • problems with Microsoft
  • product review
  • programlets
  • programmers in paradise
  • protect yourself
  • punch clock
  • python programming language
  • quant
  • quit facebook
  • quit linkedin
  • Randi Zuckerberg
  • RapidShare
  • RapidShare.com
  • readability
  • real life
  • real UIX
  • reddit
  • redirect
  • refresh
  • remailer
  • rename
  • resize
  • rest in pieces
  • revenge
  • review
  • rise of mobile
  • risks
  • rocketmail
  • roller
  • rough order of magnitude
  • round number to nearest 100
  • row_count()
  • rugby
  • rugby analysis
  • rugby performance
  • RugbyMetrics
  • rules engine
  • running PHP on Tomcat
  • sabermetrics
  • sabremetrics
  • sample
  • Samsung
  • samsung galaxy usb device not recognized
  • satellite
  • scam
  • scan
  • schedule
  • scouting
  • scouting tools
  • script
  • scum of the earth
  • scumbag
  • Search Engine
  • security
  • Seed
  • select results into a file
  • select tag
  • semantic web
  • send email anonymously
  • send sms
  • sendmail
  • SEO
  • serial port
  • server hangup
  • set select
  • set the select of a combo box
  • sharp
  • sharpssh
  • shell
  • shift in consulting
  • show line numbers
  • silicon
  • SIM car
  • single quote
  • skype
  • skype crashes xp
  • skype is crap
  • skype virus
  • sms
  • sms spam
  • social media
  • soft censorship
  • software
  • software algorithm required
  • software bug
  • software emotionally aware
  • software in bugs
  • software job
  • software to capture emotion
  • Solve a tricky problem
  • sony
  • source code
  • spam
  • spammers
  • split a .war file
  • split war file
  • spreadsheet
  • spying on the internet
  • spywal
  • SQL
  • sql tip
  • ssh
  • SSL connection error
  • standard
  • start process at specific time
  • start-up web presence
  • startup
  • startups
  • statistic problem
  • statistics
  • stock manipulation
  • stock price
  • story
  • string
  • string error
  • strip out characters from a number
  • subtract dates
  • sucks
  • sunset
  • Surface
  • SWT
  • Tablet
  • tech support
  • technical test
  • technical trading
  • technology
  • template
  • ten things to get venture capital
  • Terri Horman
  • text spam
  • The best anti-virus
  • The Fastest And Slowest Emails among the big free providers
  • The feature you requested is currently unavailable. Please try again later.
  • the first noble truth
  • The Future of Online Games
  • the ish function
  • the menu supervisor
  • The most effective way to generate hits
  • the next big thing
  • the next big thing in computing
  • The Real Social Network
  • the zen of software development
  • thin slicing
  • This Copy of Windows is not genuine
  • thread
  • Thread: java.net.SocketException: Too many open files
  • thumb-driven menus
  • time comparison
  • Timestamp
  • tip
  • to front
  • toby flood
  • today comparison
  • today() function
  • tomcat
  • tomcat won't start
  • too old for IT job
  • top secrets of the admasters
  • toshiba
  • Toshiba Laptop Mouse Won't Work
  • total privacy
  • totally distributed software
  • tracking cookies
  • traffic faker
  • trends
  • true stock price
  • true value of facebook stock
  • Turing Test
  • twitpic
  • Twitter
  • twitter follow back
  • ubuntu
  • UIThread
  • UIX
  • UIX for Dummies
  • ulimit Hn Sn
  • Ultimate Web Page Design
  • Ultra data privacy
  • unavailable
  • Uncaught ReferenceError: $ is not defined?
  • Uncaught SyntaxError: Unexpected token ILLEGAL
  • unemployed
  • unmoderated
  • update
  • update UI
  • Upgrading SQL
  • url
  • usability
  • usb
  • usb modem
  • User Experience
  • User Interface Experience
  • validating data
  • valuation
  • variable
  • vi
  • video
  • viewing
  • vim
  • vimeo
  • virus
  • Virus domain
  • visual comparison
  • Visual studio
  • vpn connection
  • Walmart
  • war file
  • warning
  • Warren Buffett
  • web page development tip
  • web-based email
  • website doesn't work
  • website errors
  • website traffic
  • Webview
  • Western Digital SmartWare Review
  • what the chinese are searching for
  • where facebook stock will end up
  • who was at the computer
  • Windows 7
  • Windows 8
  • Windows Tablet
  • won't build
  • won't turn off
  • won't turn on
  • word filtering
  • www doesn't work
  • xcode tutorials
  • xhtml
  • Yahoo
  • yahoo copies gmail
  • yahoo mail
  • You have logged out from another location. Do you want to log in again
  • youtube
  • амперсанд

Blog Archive

  • ►  2013 (82)
    • ►  November (8)
    • ►  October (18)
    • ►  September (10)
    • ►  August (10)
    • ►  July (11)
    • ►  June (9)
    • ►  May (2)
    • ►  April (6)
    • ►  March (6)
    • ►  January (2)
  • ▼  2012 (115)
    • ►  December (9)
    • ►  November (4)
    • ►  October (15)
    • ►  September (8)
    • ►  August (14)
    • ►  July (12)
    • ▼  June (14)
      • Start-up Web Presence - LaunchRock.com
      • The Most Disliked Things On A Website
      • How To Get Venture Capital -- Ten Things
      • Some Mobile HTML Tags Not To Use
      • Java: How to schedule an event for a specific time
      • MyEvent.com ~ The Death Knell for Classmates.com
      • Java ~ How to get the remaining minutes between tw...
      • Browser Plug-ins that Would Sell Like Crazy
      • More Reasons Why To Quit Facebook and LinkedIn
      • JSP ~ Login before going to bookmark or URL
      • Check to see if Your LinkedIn Password Was Hacked
      • Make Money from LinkedIn Passwords Hacked
      • Spam ~ Fighting Fire With Fire
      • The Black Hole Net ~ Dark Web 2.0
    • ►  May (19)
    • ►  April (12)
    • ►  March (4)
    • ►  February (2)
    • ►  January (2)
  • ►  2011 (59)
    • ►  December (2)
    • ►  October (1)
    • ►  September (8)
    • ►  August (6)
    • ►  July (8)
    • ►  June (10)
    • ►  May (13)
    • ►  April (11)
Powered by Blogger.

About Me

Unknown
View my complete profile