Hi!
I am looking for an elegant way to get the OS version like: "Windows XP Professional Service Pack 1" or "Windows Server 2008 Standard Edition" etc. Is there an elegant way of doing that? I am also interested in the processor architecture (like x86 or x64).
cheers
As an FNH user, do you find you sometimes need to supplement FNH with an hbm file? Any relatively common edge cases where you do, if so?
Cheers,
Berryl
Hello, is it any way to read path to current page? For example, I am at www.example.com/foo/bar/ - and I want to read '/foo/bar/'. But, all have to be done in template file without modyficating views. I have to many view files to edit each one.
Sorry for my english, hope everyone understand. Cheers.
Hi folks,
how can I convert this a DateTimeOffset.Now into a twitter format date/time?
Twitter example: <created_at>Tue Apr 07 22:52:51 +0000 2009</created_at>
Cheers :)
Hi guys,
I'm getting angry - I cant run the emulator (under vista x64).
I still get the following error:
Starting emulator in execution mode
* Error *
Failed to connect to device 2!
Reason:
Emulator 2 terminated while waiting for it to register!
BUILD FAILED (total time: 26 seconds)
I was trying to change the port to 1999, localhost to ip address and such stuff. Do you have any ideas what to do?
Thank you in advance!
Cheers
Hey, I was wondering whether there is a way to use FlexScroll (JavaScript custom image based scrollbars) with IFRAMES instead of the DIVS.
Yes, I know scrollable DIVS are better than IFRAMES. This is my clients requirement though.
Cheers.
Hello Guys
i just want to create a simple application that will allow a user to input a url to a rss feed and display the contents to a user.
what would be a good java library to enable me to read rss feeds?
cheers
Hello.
I'm more of a SU and SF but now I'm after some help from the SO community.
I'm dabbling in a bit of php coding with databases and am getting a bit stuck with relationships and the like. Can anybody reccomend some books, online or real, that would be a good start for someone new(ish) to php and mysql databases?
Cheers!
I swear this should be so easy... Why is it not? :(
In fact, I want to combine 2 parts of the same array to make a complex array:
Data[:,:,:,0] , Data[:,:,:,1]
These don't work:
x = np.complex(Data[:,:,:,0], Data[:,:,:,1])
x = complex(Data[:,:,:,0], Data[:,:,:,1])
Am I missing something? Does numpy not like performing array functions on complex numbers? Here's the error:
TypeError: only length-1 arrays can be converted to Python scalars
Cheers
Hi,
I'm looking to import one of the Shapefiles supplied with the Ordnance Survey Boundary-Line opensource set into Oracle XE.
http://data.gov.uk/dataset/os-boundary-line
Unfortunately I'm completely unsure how to go about this, despite much Googling.
Anyone got any pointers or tips or a link to a guide?
Cheers
James
Take this simple query:
SELECT DATE_FORMAT(someDate, '%y-%m-%d') as formattedDay
FROM someTable
GROUP BY formatterDay
This will select rows from a table with only 1 row per date.
How do I ensure that the row selected per date is the earliest for that date, without doing an ordered subquery in the FROM?
Cheers
Hi
How can I emded a pdf inside my app? Should i just pass the pdfs file url to a web view and let that take care of it or is there a better way/
Cheers
w://
How do i set a tag for a button programmatically?
I later want to compare to tags for a conclusion
ive tried this
-(IBAction)buttonPressed:(id)sender{
NSLog(@"%d", [sender tag]);
}
but that just crashes the app.... :(
any other ideas?
Cheers Guys
Sam
hi folks,
I've installed dotnetnuke today for the first time, I've created a new portal via host/portals. It says its created it but just doesn't find it. I just don't know how/why?
The portal ID is 4. and there is a directory in dotnetnuke/Portals/4
But the url localhost/bmd (name of the portal) doesn't resolve to anything/
Anyone know a solution to this? maybe it happened to you too?
Cheers
Hi!
I've been reading about XSS and I made a simple form with a text and submit input, but when I execute <script>alert();</script> on it, nothing happens, the server gets that string and that's all.
What do I have to do for make it vulnerable?? (then I'll learn what I shouldn't do hehe)
Cheers.
Are you an iPhone/iPad/Android programmer with a designer soul? If so we would like to hear from you.
Drop us your best work/portfolio and than we talk.
[email protected]Cheers
T
Hi all,
A Grails app I'm working on is becoming pretty big, and it would be good to refactor it into several modules, so that we don't have to redeploy the whole thing every time.
In your opinion, what is the best practice to split a Grails app in several modules?
In particular I'd like to create a package of domain classes + relevant services and use it in the app as a module. Is this possible? Is it possible to do it with plugins?
Cheers,
Mulone
Hi all,
I installed the latest version of Cygwin with a number of packages.
I soon realised that I need more packages (such as wget, etc) and I coudln't find a way to install the new packages without running the set up again and reinstall everything from scratch.
What I'm looking for is the equivalent of apt-get on Cygwin (if such a thing exists).
Cheers,
Mulone
Hi there,
is it possible to access a shadowed field of an enclosing class from the enclosed one in Java?
public class Inherit {
public int a = 3;
private int b = 5;
public class Inheriting {
public int a = 23;
private int d = 8;
public void f() {
System.out.println("Here I want to get a = 3");
...
}
}
}
Cheers!
How can I search for Wireless Network (and connect it after and change settings ) within an iPhone Application? Is it possible?
Any ideas would be appreciated!
Cheers guys and gals
Sam
or do I have to use 2 separate DbDataAdapters with single-table Selects and then use DataRelations?
like:
SELECT Persons.LastName, Persons.FirstName, Orders.OrderNo
FROM Persons
INNER JOIN Orders
ON Persons.P_Id=Orders.P_Id
ORDER BY Persons.LastName
I can't yet try this. I'm designing a xml config file schema for a general program so it would help a lot!
-cheers & BR: Matti
is it possible to show/hid a div on a webpage if say three keys are pressed in the correct order on a normal keyboard....
Im trying to hide my login div in drupal and only want it to show if I press say three keys on the keyboard. Dosnt matter if it shows up in source.
any thoughts/links?
cheers
Hello all, I've created a page that uses jquery to slide from left to right displaying content in the middle of the page, everything around the centre is hidden via "overflow: hidden" which works a charm, until I embedded via the tags a quicktime video, it isn't hidden / it is always visible. I have no idea why this is happening and would love to get help on this!
Cheers in advance!!
http://twitter.com/_naz
http://nazimjamil.com
Hello. I have this :
std::map<int,int> mapy;
++mapy[5];
Is it safe to assume that mapy[5] will always be 1? I mean, will mapy[5] always get the default value of 0 before '++', even if not explicitly declared, as in my code?
Cheers