tech support15

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

Friday, 30 August 2013

Download jfaces jar

Posted on 06:58 by Unknown

So, I write some code in Java SWT and I need a dialog.  The quickest one is a jfaces implementation.  I pop the code in, and Eclipse can't find the import.  It doesn't have the class, and it can't auto import.  What to do? Obviously I am missing a jar.  I google "download jfaces jar".  Nada.  No separate download.

I find it in the plugins directory of my Eclipse plug-ins folder in my Programs folder.  Quel surprise!  There is no independent download of the jfaces jar.  It is bundled with the latest Eclipse download.  My version of the "found" jfaces jar was org.eclipse.jface_3.8.101-v20120817-083647.jar.

Hope this helps someone.
Read More
Posted in Download jfaces jar | No comments

Tuesday, 27 August 2013

Exception in thread "Thread-0" org.eclipse.swt.SWTException: Invalid thread access

Posted on 17:55 by Unknown


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.  Perhaps you have an intensive task like monitoring a stock quote and then updating the UI.  Either it plain doesn't work, or you keep getting the error:  Exception in thread "Thread-0" org.eclipse.swt.SWTException: Invalid thread access

Googling sometimes is not very helpful with this.

Obviously the way to work it, is to not put the intensive task in the main thread of the program.  That way you will never get an interrupt vector to update the UI.  So how do you do it?  I put the heavy duty processing task in a button, and kick a separate, non-UI thread to do the work.  Then at the point that you need to update the UI, kick a UI thread to do the update.  Here is a code snippet:

Button button1 = new Button(shell, SWT.PUSH);
button1.setBounds(220, third, 200, 50);
button1.setText("Do Work");
button1.addSelectionListener(new SelectionAdapter() {
 @Override
public void widgetSelected(SelectionEvent e) {
// Kick a thread that has nothing to do with the display
     Runnable runnable = new Runnable() {
         public void run() {
           for (int i = 0; i < 10; i++) {
             try {
               Thread.sleep(500);
             } catch (InterruptedException e) {
              
               e.printStackTrace();
             }

                      // this will print to the console, because the UI display thread is not involved
             System.out.println(i);

                      //Now get the UI thread to update the label 
                      display.asyncExec (new Runnable () {
                    public void run () {
                lblResultslabel.setText(i.toString());
               }
            });
           }
         }
       };
       new Thread(runnable).start();
  
 
}
});

Hope this helps someone.
Read More
Posted in SWT, thread, UIThread, update UI | No comments

Saturday, 17 August 2013

Apple Developer Site Down

Posted on 04:35 by Unknown
I got this from Apple this morning.

Scheduled Downtime on August 17



Dear Developer,

We want to let you know that the site will be undergoing a brief scheduled maintenance on Saturday, August 17th at 6pm PDT. During this time the developer website and developer program services will be offline.

Best regards,

Apple Developer Program Support
Read More
Posted in Apple Developer Site Down | No comments

Friday, 16 August 2013

Old Technology

Posted on 09:38 by Unknown

I am the CTO of a technology company.  Recently we got a piece of 90 year old technology that now sits at the entrance of our offices.  (Our offices are located in an old Victorian Post Office with neo-classical pillars and a stone facade).

This is a punch clock made by the IBM Corporation in the 1920'  There are 150 holes in the circle.  Each hole is an employee number.  As an employee, you come in, spin the bar to your employee number and press the lever.  A bell dings.  Inside, a drum wheel with a 4 day capacity piece of paper on it, gets punched with your in and out time.

It is an amazing complex piece of machinery with castings, an oak cabinet, and quite a complex series of gears and such inside.  I googled antique forums, and the thing goes for about $2,000 on the open market.

We actually use an online timesheet to record employee hours.  This is just a conversation piece in our office.
Read More
Posted in old technology, punch clock | No comments

Saturday, 10 August 2013

Invoke or BeginInvoke cannot be called on a control until the window handle has been created

Posted on 16:21 by Unknown




I had a C# program where I kicked a new thread to check for messages in the database.  I used a delegate in the new thread to call a method in the class that went to the database message table and checked for new messages higher than the message primary key id that it knew about.

It kept throwing this error:

Invoke or BeginInvoke cannot be called on a control until the window handle has been created


As it turns out, I had a couple of variables that were declared but not initialized or set and instead of throwing a null exception, because they were called using a delegate by a different thread, it threw the above error instead.

The fix was to initialize and set the variables.

Hope this helps someone.
Read More
Posted in .Net, c#, Invoke or BeginInvoke cannot be called on a control until the window handle has been created | No comments

Friday, 9 August 2013

Google's Soft Censorship of Images

Posted on 07:42 by Unknown
(click on picture for larger image)

This morning, I saw something completely new from Google -- soft censorship on their image search.  I read on CNN, the story of Derek Medina, or how he killed his wife, and posted the picture of her body on Facebook, before turning himself in to police.  The article said that the picture went viral.

To see how viral, I did an image search.  I was amazed that Google initiated soft censorship on the images.  The censored images just had a gray icon.  When you clicked on them, you could see the preview of the image, but I was amazed that they would do this.

In retrospect, it makes a lot of sense for the sake of propriety, because you still can see the image if you take the trouble to click on it and open a preview layer, but it was still surprising.  It reminded me of the magazine racks in the convenience stores that have cardboard over the covers of the girlie magazines.

The jury is out as to whether I like this or not.
Read More
Posted in derek medina wife photo, google, Google Image Search, how google image search works, soft censorship | No comments

Thursday, 8 August 2013

The Best Anagram Solver on the Web

Posted on 15:14 by Unknown

I wanted to find the anagrams of a friend's name.  (Just in case you didn't know, an anagram is re-arranging a name or a phrase to form another one, using all of the letters without repeats or deletions.)

So I googled "Anagram Solver" and up came the top four results:


  • www.ssynth.co.uk/~gay/anagram.html‎
  • www.solverscrabble.com/‎
  • www.wordsmith.org/anagram/‎
  • anagram-solver.net/‎
So I tried all of them.  The first one gave me a whole bunch words that nobody recognizes or uses on a daily basis.

I then went to the second one.  It only takes a limited amount of letters.

I then skipped one and tried the last one, anagram-solver.net.  The name looked promising. It wasn't.

The clear winner was:

  • www.wordsmith.org/anagram/‎
I hope that this helps someone.  I realize that creating and solving anagrams is about as useful as having your high school class Greek textbook handy on the coffee table for those everyday emergency translations, but what the hey.
Read More
Posted in | No comments

Wednesday, 7 August 2013

Copying Forms Error in Visual Studio .Net and C#

Posted on 10:06 by Unknown

A colleague phones me up and asks me about a Visual Studio C# project that I had written a couple of years ago.

He tried simply copying a form and he kept getting the error:

The item "obj\Release\<filename>.resources" was specified more
than once in the "Resources" parameter.  
Duplicate items are not supported by the "Resources" parameter.

Hmm.  I went to stacktrace (the website) and they said that the easiest way was to go into Explorer, duplicate the files and add them to the project.  It didn't work because the .resx file was not under the .cs file structure.

It turns out that the re-factoring isn't complete.  If you just plain old copy the form in the Solutions Explorer, rename it, and then immediately go and fix all of the references to the old name in the .cs file (rename the class, the constructor and all references to the old name) and then do the same thing in the .resx file, everything eventually works.

It eliminates the above problem.

Hope this helps someone.
Read More
Posted in C Sharp, c#, error, how do copy a form, how to duplicate a form, Visual studio | No comments

Tuesday, 6 August 2013

Amazon Monetizing Mobile Apps with API

Posted on 05:12 by Unknown
The folks at Amazon sent me this:




Amazon

Amazon Mobile Ads

Dear Mobile App Developer,

Today we announced the general availability of the Amazon Mobile Ads API which gives you the ability to earn great eCPM by monetizing your app with mobile ads from the Amazon Mobile Ad Network.

Our eCPM has increased 30% since the beta launch in March, and early adopters such as Games2Win are discovering that the Amazon Mobile Ads API is a great monetization solution. "The $2.00 eCPM we saw from Amazon far exceeded our expectation. We tested Amazon in our Kindle app first. Now we're racing to get the Amazon ads integrated in all of our apps across all Android stores," said Mahesh Khambadkone from Games2Win.

Starting today, the Amazon Mobile Ads API will be included as part of our Amazon Mobile App SDK. Apps that use the Amazon Mobile Ads API may be distributed on any Android platform as long as they are available for download through the Amazon App Distribution Program.

Earn a Kindle Fire HD by integrating the Amazon Mobile API in your app in the next few weeks. Here's how:

1. Integrate the Amazon Mobile Ads API into your app. Get started here.
2. Submit your app to the Amazon Mobile App Distribution Portal between July 25th and September 1st. Get started here.
3. Send at least 500 ad requests to the Amazon Mobile Ad Network every week between September 15th and October 19th (see terms and conditions below).


Best regards,
Amazon Mobile App Distribution Team


Terms and Conditions of Kindle Fire HD Offer:

  • To qualify for a free Kindle Fire HD, 7" display, 16 GB, with special offers, app developers must meet all of the terms and conditions of this offer.
  • This offer begins at 12:01 a.m. (PT) September 15th, 2013 and ends at 11:59 p.m. (PT) October 19th, 2013 (the "Offer Period").
  • A "Qualifying App" is any mobile app that is submitted to the Amazon Mobile App Distribution Portal between and including July 25th and September 1st, 2013. Apps that have sent ad requests to Amazon using the Amazon Mobile Ads API prior to July 25, 2013 are not Qualifying Apps.
  • A developer's Qualifying Apps must send at least 500 ad requests every week during the Offer Period. (Each week begins at 12:01 a.m. Sunday and ends at 11:59 p.m. Saturday.) This offer is only open to developers who send the required number of ad requests for the entire Offer Period.
  • A developer may use a single Qualifying App or multiple Qualifying Apps to generate the 500 weekly ad requests as long as the Qualifying Apps are registered to a single developer account.
  • Limit one free Kindle Fire HD device per developer.
  • Offer good while supplies last.
  • Qualifying Apps must meet the Mobile Ad Network Program Participation Requirements.
  • Developers must agree and adhere to the Program Materials License Agreementand the Mobile Ad Network Publisher Agreement to qualify for this offer.
  • Qualifying developers must be reachable through the email addresses registered on the Distribution Portal.
  • Amazon will attempt to ship the Kindle Fire HD device to qualifying developers in the U.S. and other countries. However, Amazon is not responsible for customs or taxes required for international deliveries.
  • A "Qualifying App" is any mobile app that has integrated the Amazon Mobile Ads API and is submitted to the Amazon Mobile App Distribution Portal between and including July 25th and September 1st, 2013. Apps that have sent ad requests to Amazon using the Amazon Mobile Ads API prior to July 25, 2013 are not Qualifying Apps.
  • Amazon reserves the right to modify or cancel this offer at any time in its discretion.
  • This offer is void where prohibited.
  • Read More
    Posted in amazon, apps, monetization | No comments

    Friday, 2 August 2013

    Excel Spreadsheet ~ SUM formula doesn't work

    Posted on 14:19 by Unknown

    OK so I had an Excel Spreadsheet.  I had a column that needed to be added up and the total displayed with the Formula SUM function.  I created the formula, and although I had a number there, when I changed the numbers that the sum was composed of, the result never changed.

    I tried a whole pile of things.  I tried deleting the formula and recreating it.  I tried copying the column.  I tried copying the sum formula from other cells.  It was a real head-scratcher and hail-puller-outer.

    So how did I solve it?  I selected the column, and then the cell properties and I assigned a Number Format to the cells.  Worked like a charm. The SUM formula now worked. It only took me a few weeks to figure this one out.  Damn Microsoft.
    Read More
    Posted in excel, formula doesn't work, spreadsheet | 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)
        • Download jfaces jar
        • Exception in thread "Thread-0" org.eclipse.swt.SWT...
        • Apple Developer Site Down
        • Old Technology
        • Invoke or BeginInvoke cannot be called on a contro...
        • Google's Soft Censorship of Images
        • The Best Anagram Solver on the Web
        • Copying Forms Error in Visual Studio .Net and C#
        • Amazon Monetizing Mobile Apps with API
        • Excel Spreadsheet ~ SUM formula doesn't work
      • ►  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)
      • ►  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