In my local language (Bahasa Indonesia) there are no verb-2 or past tense form as time tracker. So, I often forget to use the past form of verb when speaking english. I saw him last night (correct) I see him last night ...
The Archive Base Latest Questions
I’m having trouble making a secure FTP connection using SharpSSH. Up to now I’ve been using the DOS command line app MOVEit Freely to make the connection, and it connects fine: C:\> ftps -user:ABC -password:123 xxx.xxx.xxx.mil However, when I try to do ...
When exposing some code to D-Bus using Qt D-Bus bindings, when should one use a Qt Adaptor over a Qt Interface? I’m having a difficult time understanding how exactly they differ since it seems like they provide the same ...
I have the following Grails domain class: class Product { String name Float basePrice Category category String image = "default.jpg" ...
I have a number of pages in my site, as one would expect. For example: index.php submit.php view.php?id=blah I want these rewritten like index/ submit/ view/blah Whats the best way of doing this?
I searched Google search APIs and didn’t find a way to get a website position rank based on a searched keyword and i thought its impossible. But i found by luck this website “http://www.tools4google.com/search-google-position/keyword_tracking.php” which is doing the ...
I have the following html/css that is causing problems in Firefox 1.5 and 2, but is working correctly in IE6/7/8, Safari, Chrome, Opera and Firefox 1 and 3. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title>Firefox Bug</title> <style type="text/css"> * { border: ...
What’s a good solution to parse an RSS/ATOM feed and present the content in a Rails view?
I’m trying to write a simple AppleScript to do some text manipulation on the contents of the clipboard. The following code works only if the text in the clipboard can be converted to a number: set CB to the clipboard set ...
I have a base class, defined as below (I’m also using DevExpress components): public abstract partial class BaseFormClass<R> : XtraForm where R : DataRow { ... } Contrary to what I’ve read from elsewhere, I’m still able to design this class. I didn’t ...
I have a class TContainer that is an aggregate of several stl collections pointers to TItems class. I need to create an Iterator to traverse the elements in all the collections in my TContainer class abstracting the client of the inner ...