tech support15

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

Tuesday, 28 August 2012

I Won a Copyright Right Dispute with Google's Youtube

Posted on 05:22 by Unknown
(click for larger image)

Google owns Youtube. When I wanted to make some of my pictures of Provence into a Youtube video, I deliberately did not want to run afoul of copyright laws. So I googled royalty free music and came to a site with free, unencumbered music. I downloaded a track and used it as background information.

When it came time to upload, I identified the track and artist and the fact that it was royalty free music. Youtube said that I couldn't monetize the video, because I didn't own the copyright. Interestingly enough, they didn't make me take it down.

I left it that way for months. Then I get a notice saying that some entity called CD Baby was disputing my right to use the music. I did an online appeal by filling in the forms, and using drop down menus to say that it was free, and royalty free music.

A couple of days later, I get the following email:


CD Baby has reviewed your dispute and released its copyright claim on your video, "A Peek At Provence". For more information, please visit your Copyright Notice page

Sincerely,
- The YouTube Team

Cool. So I figured that I would go ahead and monetize the video. Not so fast. I opened up video manager, and it said that there was copyright information that said I couldn't monetize it. I cut and pasted the email into the explanation box.

So I won a copyright dispute with the Google-owned YouTube, now lets see if they will let me monetize it. Here is the video in question:





Read More
Posted in copyright dispute, google, youtube | No comments

Monday, 27 August 2012

Twitter Follow-Backs

Posted on 05:21 by Unknown
(click for larger image)

I have officially stopped. I have stopped playing the stupid tit-for-tat followers games. I got the above this morning in my email saying that I was being followed, and that we would have a pact, and if I followed they would keep the follow and if I unfollowed them on Twitter, they would unfollow as well.

Bully for them. I am tired of playing this game. I will return to my true self. I will not follow ghetto rap artists. I will not follow girls more intent on showing their breasts rather than reading my content. I will not follow fundamentalist, racist Republicans.

I will just follow people and accounts that I am interested in, and will not follow you just because you follow me. Inflated follower numbers mean nothing. I have conducted experiments on how to convert followers to web hits, and the only way to do it, is to emulate the religion model. Anyone who is a true follower, will check out your website. Anyone paying lip service and just playing the tit-for-tat following game cannot be converted to web hits and is uninterested in what you have to say.

So most of my followers are real now. If you want to follow me for real, I can be followed @ArtOfWarm. If you are interesting, have decent content, and are not trying to sell me something, I will follow you back,
Read More
Posted in converting Twitter followers to web hits, numbers game, Twitter, twitter follow back | No comments

Thursday, 23 August 2012

Javascript - How To Format a Telephone Number

Posted on 09:09 by Unknown
This is quite a common problem. You have an user input table on your html or jsp page and you want to make sure that it is numbers only, has the area code, and is in a consistent format when you put it into the database. I downloaded some javascript to do just that and it worked fine for numbers that you typed in using the numbers on the keyboard. But when you used the numeric keypad on the keyboard, or a USB external keypad, it failed. The keypad, instead of putting numbers, put junk into it.

So this is how I solved it. I created a javascript file called phone.js. This is the contents:

function formatPnum(phonenum, textbox) {
var regexObj = /^(?:\+?1[-. ]?)?(?:\(?([0-9]{3})\)?[-. ]?)?([0-9]{3})[-. ]?([0-9]{4})$/;
if (regexObj.test(phonenum)) {
var parts = phonenum.match(regexObj);
var phone = "";
if (parts[1]) {
phone += "(" + parts[1] + ") "; }
phone += parts[2] + "-" + parts[3];
textbox.value = phone;
}
else {
//invalid phone number
alert('Please enter a proper phone number');
textbox.value = '';
}
return false;
}

Then at the top of the html page, I added the following script tag:

(script type="text/javascript" src="phone.js" /)

Note: I used "(" and ")" instead of "<" and ">" because this blog actually parses it as real HTML. Then, everywhere I needed a phone number, I added this to the tag (in this case for a fax number):


Fax (Area Code + #)
(input type="text" name="fax" onfocus="this.value='';" onmouseout="javascript:return formatPNum(this.value, this);")


Note: I used "(" and ")" instead of "<" and ">" because this blog actually parses it as real HTML.
You will note, that I have an onfocus event. When the user clicks on it, the previous number or whatever is in the input box goes away. Then the user enters the number. If any part of it fails (like he adds a letter), it fails and the alert shows that there is an error. There is no input displayed. However, if the user enters a three digit area code and a seven digit number, the phone number is automagically formatted into (123) 456-7890.

Piece of cake. Hope this helps.
Read More
Posted in format telephone number, html, html input, html input tag, javascript | No comments

Saturday, 18 August 2012

Where is Facebook Stock Price Going

Posted on 06:10 by Unknown
Where is Faceboook Stock Price going? Everyone wants to know. Here are a couple of charts that I want to show you with some rudimentary technical analysis. This is the 5 day chart of Facebook stock with the blue line being the stock price and the red line being a Exponential moving average. Generally when the exponential moving average line crosses over and is above the price line, the stock price will drop. The obverse is true. When the stock price is above the exponential moving average, the stock will rise. The buy and sell signals are when the two lines actually cross. (this is rather basic technical analysis).

Friday, the stock closed for the weekend at $19.05. This is the 5 day chart (click for larger image):

This is the same chart, except it is the 30 day view (again click for larger image):

As one can see, the technical indicators show that the stock is on the down escalator, it is on the handcart to hell, and it is dropping like a song on yesterday's hit parade. Where will it end?

In a previous blog post, I stated that my technical analysis shows that the stock will gain some support in the $16-$19 dollar range, but even at that level, the free fall is not over. So what is the true value of Facebook stock? Where is it going?

If you use commonly accepted metrics, then Facebook stock is really worth about $7.25 per share. The freefall will stop against a mountain of reason at that value.

However, my opinion is that Facebook is dead man walking. They sent out announcements of new products, attempts, sales algorithms etc almost daily. These product announcements are like flares from a sinking ship. Facebook is old PHP technology that doesn't adapt well to mobile, and it value proposition to its users, is that it allows one to stay in touch with another in a very lazy fashion. This is not a marketing proposition for users, and that is why Facebook ads generally fail. The folks at Facebook are trying to put lipstick on a pig and sell it.

I am particularly enjoying this because analysts from all over Wall Street (hello Arvind Bhatia) wanted to be media stars and appeared on TV saying what a great buy this stock was at $38. I hope that these analysts don't get bonuses this year.

So there you have it -- a social media platform in the golden years of its quick internet existence is trying to pawn itself off as investment grade. The competitor to Facebook is already on its platform, and Facebook will become the MySpace of the investment world.
Read More
Posted in facebook fair valuation, facebook true share price, facebook true stock price, true value of facebook stock | No comments

Wednesday, 15 August 2012

Blocking Extensions for Chrome

Posted on 06:02 by Unknown
(click for larger image)

Regular readers of this blog will know that I am a privacy freak. I also use Google Chrome which is the safest, fastest, best browser in the marketplace.

I just got a new laptop, and I had forgotten to add my privacy extensions. However I was reminded when an old highschool friend sent me an invitation to join her on Facebook, and since she had my email address, the Facebook code read my contacts and suggested other friends that were not connected to her, but were to me.

Since I get my email through my browser, I decided that it was time to add the privacy extensions. I added Disconnect.me, Ghostery and Do Not Track Plus. I also added Ad Block, but I had to disable it, because I couldn't read how much money that I was making on the ads for Google Adsense.

However, I am quite pleased with the performance of the blocker privacy extensions for Chrome. So far, the worst offender for tracking in my experience, is the CNN.com website.

As an added feature for today, you get a fearless prognostication. Facebook stock is going to tank today. The closing price was $20.38 and I'm willing to bet that it will close lower today.

Read More
Posted in Chrome, chrome extensions, data privacy, disconnect.me, do not track plus, Facebook, ghostery, Internet Privacy | No comments

Monday, 13 August 2012

Scumbag Trailer Trash Human Garbage Webmasters ~ Wall of Shame

Posted on 08:34 by Unknown
I'm getting tired of human garbage, scumbag webmasters who spam and traffic fake. These people are the lowest classes of internet users, who think that SEO involves being a rectal sphincter on other peoples' sites. They have absolutely no skills at real SEO, and no content worthy of real traffic so they resort to shady, dubious and questionable tactics to try to pathetically generate traffic to their websites. These are cretins of the lowest kind.

This week's wall of shame in include the following websites:

  • FILMHILL
  • STUMBLEDUPON (obviously parking on the the legitimate website StumbleUpon)
  • BROADWAYPINK
These ghetto webmasters don't belong on the internet.


We now take you back to regularly scheduled programming of how to be a zen coder. Ommmmmmmmmmmmmmm mmmmmmmmmmmmmmmmmmmmm mmmmmmmm

Read More
Posted in fake traffic hits, human garbage, scumbag, traffic faker | No comments

Friday, 10 August 2012

JSP - How to Programatically Set the Select of a Combo Box

Posted on 11:10 by Unknown
I had to look this one up, so I am posting this JSP tip in case anyone else needs help. Here is the scenario. I have a form with a select tag and a bunch of options. The data is stored in a data base. When I read the data back and display the page, I want to set the select of the combo box to display the data value of the variable or the database value. It is very easy with a scriptlet. Just add the following attribute code to your option tag:

option value = "Chocolate Brownies" <% if (icecream.equalsIgnoreCase("Chocolate Brownies") out.print("selected"); %>

There you have it. Easy peasy!

Read More
Posted in jsp, select tag, set select, set the select of a combo box, variable | No comments

Wednesday, 8 August 2012

Buddha of the Binaries ~ Zen of Software Development~ Noble Truth #2

Posted on 06:02 by Unknown
• What is the Second Noble Truth, oh Buddhist of the Binaries?

The second truth is that bad software is caused by wrong motives. Our binaries will be worth less than feces if we take shortcuts or try to copy other's art without understanding it, if we want others to like our work without putting our best effort, if we do not get the money that we want out of our efforts,etc. In other words, coding purely for money does not guarantee happiness. Rather than constantly struggling to use software as a means for other things, try to modify yourself to code for the love of it. Wanting money deprives us of contentment and happiness. The true riches in digital life come from creating something you love ......... ....... ........ ......... ......... ........... ........ ........ (and then going to IPO).

(Lesson one is found HERE)
Read More
Posted in buddhist of the binaries, digital buddha, the first noble truth, the zen of software development | No comments

Tuesday, 7 August 2012

Sorry Twitter - You Lose in Generating Web Hits

Posted on 07:51 by Unknown


I like to treat the internet as one big test subject, and when you have a couple of blogs, you can do some fascinating experiments in internet metrics and crowd behaviour. The aim of almost every posted video, picture, blog entry and image is to go viral. The holy grail of this technology-driven world is page views and web hits. There are entire books, websites and courses dedicated to generating website traffic.

Once you put something up on the internet, you can either wait for the search engines to find you, hope that the What's New section profiles you or you can link advertise on other social media. But very few people know the most effective means to get hits.

I decided to have a mano a mano, a head to head to find out ...... (are you ready) ....

THE MOST EFFECTIVE WAY TO GENERATE HITS WITH LINK POSTING


In one of my blogs, I posted this picture that I took on the shores of Loch Awe in Scotland. It is the Robert the Bruce Chapel in St. Conan's Kirk. When I looked at it, I said "Holy Rigor Mortis, Batman, this looks like you dead!". Sure enough, it looks like the grave of a dead Batman. I thought that this was a suitable subject to go viral.

(click for larger image)

So, posted competing links on Twitter and Reddit. I used the same title "Photo of Dead Batman" and the same tags including #DarkKnight, #Photo, #DeadBatman.

Twitter generated six hits that hour. Reddit generated 170 hits in the first hour.

Clearly we have a winner when it comes to generating hits by link posting on social media. And to think that I have been ignoring reddit.com.

(Disclaimer: I am in no way associated with Twitter or Reddit).
Read More
Posted in dark knight, dead batman, reddit, The most effective way to generate hits, Twitter, website traffic | No comments

Monday, 6 August 2012

The Journal of Inexact Computing Volume 1

Posted on 12:32 by Unknown
Welcome to Volume I of the Inexact Journal of Computing. This journal introduces the next big thing in computing. It is software that behave and operates with missing, incomplete or corrupt data.

Humans operate with partial information all the time. It is called thin-slicing. We make decisions without having all of the facts. If we are going to have a machine pass a Touring Test, or make machines behave more like humans, they have to operate with missing or incomplete data.

So lets take tiny steps in getting to inexact computing. In this first blog entry, let's examine how software can small steps forward not to choke on missing data.

The most common cause of programs failing upon missing data, is when a null exception is thrown for a variable that doesn't have a value, but is called upon to produce its value for an operation, calculation or input/output to another step. A null exception throws an ugly error.

One way around this, and the very first step to inexact computing, is to have a variable initialization either in a specific method or at its time of declaration that is near, close or somewhat close to what it should be. That way when the assignment fails to happen (either from a fetched database value, input parameter or whatever), the program doesn't come crashing down and throw an exception. The value may not be right, but don't forget the title. This is the journal of INEXACT computing. Just like us inexact humans. This might not be good for calculating tax returns, but it would work in areas like image recognition in real time where the software is driving a car and a highway marking is partially obliterated. A good guess is really helpful here.

One could even put some intelligence into the variable assignment. A try and catch block would catch the null value, and depending on where it was in the program, it could determine to send it to a variety of inexact assignment functions, depending on the stage of the program. It could even determine the severity level of having inexact data.

The way that I see it, is that each application will have a customized framework attached to a caching layer and a database to directly deal with missing data to supply values to progress with the planar execution of the program. More on the inexact value framework in another article.

So that is the baby-step start to inexact computing. The next article will deal with the guess() function and the what-did-I-use-lasttime() function as well as the most-Probable-Value() function using Bayesian inference. Stay tuned.
Read More
Posted in corrupt data, fault tolerance, inexact computing, missing data, missing information, the next big thing in computing, thin slicing | No comments

Sunday, 5 August 2012

Quick Tip: Clear an HTML Input When You Click On It

Posted on 08:41 by Unknown
How does one clear an html input, when you click on it or it gets focus? I had to look this up, and anything that I have to look up, I reprint to help others find it quickly.

In any mobile app, it is a real pain to remove input text if you have to replace it. It is much easier to have it automagically clear when anyone clicks on it to give it focus in order to change it.

Here is a simple way of doing it. Just add this attribute to the input tag:

onfocus="this.value='';"

The value for this.value is a single quote (') repeated for the null. Easy Peasy!
Read More
Posted in clear on focus, click and clear input, html input, html input tag, html tag, mobile web tags | No comments

Friday, 3 August 2012

Buddha of the Binaries ~ Zen of Software Development

Posted on 07:16 by Unknown
This is LESSON ONE in the zen of software development.

A student of the software sublime writes: "Oh Buddhist of the Binaries, what is The First Noble Truth of Coding Enlightenment?".

Well my little grasshopper, the first truth of digital life is that software is imperfect. This binary life becomes alive in the semi-conductor matrix and it includes bugs, imperfect logic of a higher plane, traps of infinite loops, an imperfect environment that sometimes includes the blue screen of death, and old age where digital instruction sets no longer run on the new microprocessors in the cloud.

This is an irrefutable fact that cannot be denied. It is realistic rather than pessimistic because pessimism is expecting things to be bad. lnstead, Binary Buddhism explains how imperfections can be avoided and how we can be truly happy in our craft of creating ones and zeros that run the world.

Remember my little grasshopper, there will come the day when the rest of the humans will become so dependent on the machines, and software that you write, that they will not be physically able to live without your arcane and esoteric knowledge. You are the engineers of enlightenment, the wizards of wonder, and masters of the matrix. Use the knowledge that you will gain wisely.


Practical Lesson for today: Read how a software bug almost bankrupted Knight Capital:

http://www.foxbusiness.com/news/2012/08/02/knight-future-in-balance-after-trading-disaster/


Next time: Lesson Two.


Read More
Posted in buddhist of the binaries, digital buddha, the first noble truth, the zen of software development | No comments

Thursday, 2 August 2012

Wherefores and Whys of Facebook Stock - Where it will end

Posted on 08:34 by Unknown
(click for larger image -- Facebook stock chart this morning)

I'm taking off my geek hat and putting on my technical trader software guy hat and my entrepreneur hat, and will look at my favorite bête noire, Facebook. As I have so fearlessly predicted in these pages (HERE and HERE and others), Facebook stock is going to tank, and tank badly. Where will it end up? I am not afraid to make fearless predictions, and they usually end up near the mark. So I predict that Facebook stock will sink initially to the $14-16 dollar range. It will momentarily find some support there and then find its true valuation in $7-9 range. Remember you read it here first on August 2, 2012 when the stock price is pennies over $20.

So why will it tank may you ask, when Wall Street jokers like Arvind Bhatia say that it is worth the $38 dollar opening price? Either these buffoons were paid by the underwriters to say this, or they are hugely mistaken about what constitutes real value in business, and were enamored with the business play.

Facebook stated that because they have 900 million followers, that this is a huge unmonetized potential. I maintain that they cannot monetize this user base, because people do not go to Facebook to buy things. They go there to be social. It is like a hooker trying to sell her services in church. The French have a wonderful word: inaccrochable. It means "You can't hang it!". It's like trying to put up a Playboy centerfold in a kindergarten class. You can't hang it. Here's another example. If every time you met your neighbor on the street, he tries to sell you Amway, would you still be glad to see him on the street? Nope, in these instances, we just want to be social and not commercial. Facebook and Wall Street do not understand this.

But let's look at the pure business side of this. Zynga, the social networks games folks have tanked and lost 75 percent of its value. Groupon is limping like a ship pierced by torpedo in the hull losing 70 percent of its skin. Pandora Media's ship has plummeted to the depths of Davy Jones' Locker. What gives? It's the business side, stupid. What is the value proposition of these companies. Zynga sells you a $4 virtual cow. How big is that market and how long until you saturate the IQ-challenged market? The Pandora value proposition has disappeared because people don't want streaming -- they want to own the music for their iPods -- thanks to Steve Jobs. Groupon can't provide deep discounts in an economic downturn, because merchants need to milk every dollar from every person that comes through the door.

And Facebook? Let's face it. They are a Php driven website for desktop computers. They have missed the mobile market. They are brogrammers. They are not smart like the Google programmers who can spooge code down to the bare metal. They have missed their core value proposition -- that people want to connect in a lazy fashion with each other, and really don't want to shop while doing so.

So, I predict that unless Zuckerberg has the testicular fortitude to say that he was wrong and turn the Facebook ship 180 degrees, then they will continue their slide into oblivion.

What will the Facebook replacement look like, and how will it make money? Stay tuned.

Read More
Posted in analysis, Arvind Bhatia, Facebook, facebook ipo, stock price, true stock price, valuation, where facebook stock will end up | No comments

Wednesday, 1 August 2012

Free Isoburner ~ Software Product Review

Posted on 06:33 by Unknown
(click to enlarge)

I downloaded an iso image. It was an emergency universal boot disk for my failing laptop. I needed a quick little iso image burner. I came across Free ISO Burner at http://www.freeisoburner.com/ . Man, this is a tiny little binary that could! Best little iso image burner with a small footprint. No muss. No fuss. No bells or whistles. Gets the job done. The best basic iso image burner that I have found. 5 Stars.
Read More
Posted in best iso image burner, Excellent, free iso burner, product review | 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)
      • I Won a Copyright Right Dispute with Google's Youtube
      • Twitter Follow-Backs
      • Javascript - How To Format a Telephone Number
      • Where is Facebook Stock Price Going
      • Blocking Extensions for Chrome
      • Scumbag Trailer Trash Human Garbage Webmasters ~ W...
      • JSP - How to Programatically Set the Select of a C...
      • Buddha of the Binaries ~ Zen of Software Developme...
      • Sorry Twitter - You Lose in Generating Web Hits
      • The Journal of Inexact Computing Volume 1
      • Quick Tip: Clear an HTML Input When You Click On It
      • Buddha of the Binaries ~ Zen of Software Development
      • Wherefores and Whys of Facebook Stock - Where it w...
      • Free Isoburner ~ Software Product Review
    • ►  July (12)
    • ►  June (14)
    • ►  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