Posts
 
Reputation
Joined
Last Seen
Ranked #461
Strength to Increase Rep
+7
Strength to Decrease Rep
-1
87% Quality Score
Upvotes Received
13
Posts with Upvotes
10
Upvoting Members
11
Downvotes Received
2
Posts with Downvotes
1
Downvoting Members
2
6 Commented Posts
~76.6K People Reached
About Me

Software Engineer

Interests
Nil
Favorite Tags
Member Avatar for chirag_11

Switched to Firefox at work, Simply because Chrome is yet to implement Wayland support. Firefox is great, To be honest I don't notice the difference really apart from the when I use the dev tools. Firefoxes push for privacy is really cool though, I think chrome is (or soon) blocking …

Member Avatar for mreza
0
660
Member Avatar for Paul.Esson

Does anyone know of a good SVG editor that allows you to easily edit the document in text as well as visually. I have been using Inkscape, but the XML viewer/editor component is less then ideal, plus it adds alot of crud to the resulting XML. I attempted SVG Editor …

Member Avatar for tinstaafl
0
909
Member Avatar for Oxiegen

I don't know if you made any mistakes, but my advice would be to log the exceptions to the event log so that it's known when it doesn't successfully run and why.

Member Avatar for Paul.Esson
0
1K
Member Avatar for Dani

Hello my name is Paul, I am 20 and a Computing Student at Ballarat University. Ballarat is a country town in Victoria Australia. Im into Java, Perl, C , C++ and C#. If you wish to torture me make me program in visual basic. Bash is my fav shell, emacs …

Member Avatar for jamesjoseph1
0
9K
Member Avatar for Reverend Jim

> Lol, I didn't know a dictionary could be "authoritarian". Why not, bloody thing is always telling me how and how not to spell. As an example, When I was in high school I used to use the word 'gradiate', but the dictionary, smacked me down and advised me that …

Member Avatar for Reverend Jim
7
5K
Member Avatar for Ancient Dragon

> is sound only sound if a person hears it? Taking the wikipedia definition, yet again > Sound is a mechanical wave that is an oscillation of pressure transmitted through some medium If a tree falls in the wood there will be an oscillation of pressure transmitted, regardless of if …

Member Avatar for 45ish
0
1K
Member Avatar for Mr.UNOwen

You may have to write a driver for the USB device or uterlize it as a communications port as say you do with usb serial adapters or things like that. The windows device foundation SDK has methods for dealing with USB devices ( and also quite possable some sample code. …

Member Avatar for omarcharolin
0
10K
Member Avatar for samatha.kilaru

have a look at [url]www.perlmonks.org[/url] its a really good perl site [code] @args = ("command", "arg1", "arg2"); system(@args) == 0 or die "system @args failed: $?" [/code]

Member Avatar for Sindhu_1
0
1K
Member Avatar for RikTelner

So on a system that requries encrypted signed binary, and will only run encrypted signed binarys is there anyway of either unencrypting the binarys or executing unsigned encrypted code. With enough time and processing power you could brute force the encryption, although unless you get quite lucky or have the …

Member Avatar for Coloradojaguar
0
353
Member Avatar for naji.awad1

I'm guessing that you wan to look at OpenGL then http://www.opengl-tutorial.org/ , I suspect may be helpful.

Member Avatar for stevecolin101
0
158
Member Avatar for gerta_1

Matrix algebra is the possibly the best way of doing this. You can either write code to do the matrix inversion and multiplication or alterativly use a library that already supports matrices ( such as OpenCV ). http://www.mathsisfun.com/algebra/systems-linear-equations-matrices.html http://en.wikipedia.org/wiki/Cramer%27s_rule Curious, what's the error when using determinats

Member Avatar for duskoKoscica
0
533
Member Avatar for Ashneel Chand

PSUDO code would look something like this: create 6 random numbers for 0 to 6 ask the user for a number \if ( number => 1 && number <= 30 ) store input (this is where you may want to increment your varible for iteration ) \else tell them they …

Member Avatar for duskoKoscica
0
520
Member Avatar for waleed.makarem

If it's for non commercial then MBROLA has Aribic support, I think its a command line application, so while it does not support .NET as such it should be easy enough to incorporate it into a .NET application by just launching the MBROLA binary from within your .NET application. http://tcts.fpms.ac.be/synthesis/

Member Avatar for oussama_1
0
261
Member Avatar for getmeusername

Personally I would send the type followed by 2 bytes for the size ( unless the type dictated size ) For instance If : INT = 1; STRING = 2; Then sending the int 5 followed by the string HELLO would result in the following message 01 00 00 00 …

Member Avatar for Ancient Dragon
0
160
Member Avatar for Decode098

Perhaps use a char, and not an int, initalize them all your chars to the numbers you have been using, if it's x's turn and he picks 1, change the 1 to an x. Then after each turn print the result. Also I have a feeling you might want to …

Member Avatar for Paul.Esson
0
163
Member Avatar for cwarn23

Might be easier to use the `getRGB(int x, int y)` so that you don't have to attempt to support all 14 image types that the that ImageIO supports.

Member Avatar for JamesCherrill
0
247
Member Avatar for jyotidighe
Member Avatar for MadJako

If you press the code button you should be able to insert your code into a code block in your message.

Member Avatar for Paul.Esson
0
1K
Member Avatar for raliot

You could create an int to store the age and an int to store the index. Set the age int to something unrealistically high ( 100 perhaps ) then as you loop compare the persons age with the stored current min age, if it's smaller store the age and the …

Member Avatar for Paul.Esson
0
138
Member Avatar for jamojo

At a guess I would say the database is changing the UTC formatted time into localtime. The Z specifies that the time is in UTC format. http://en.wikipedia.org/wiki/ISO_8601

Member Avatar for Paul.Esson
0
97
Member Avatar for Vivitha

Hey, I just run the code and can confirm it works fine. On my mac the "Video" window was hiding behind my IDE and the "ball" window was visible.

Member Avatar for Paul.Esson
0
203
Member Avatar for nkwaga

Also, there are a few problems with this idea in general, you are not able, from just the number of miles the car has travelled during 2013 ascertain the amount of fuel it has used, the average fuel consumption, and the amount spent on petrol. If you know the amount …

Member Avatar for Paul.Esson
0
123
Member Avatar for learncoding

Your issue may be that std::cin >> name; does not remove the newline char from the resulting string. Replacing std::cin with the following may work for you : std::getline( std::cin, name);

Member Avatar for Paul.Esson
0
441
Member Avatar for soujanya.bhat.184

System.out.println does not throw a RandomExc. What you need to do is change SomeExc(); so it takes an int i, then calls the System.out.println method if i!=0 as well as throwing the Exception if i==0. After that replace where the println in the main method with SomeExc(i), I suspect it …

Member Avatar for soujanya.bhat.184
0
127
Member Avatar for Lp_baez

You can seperate the function declarations and implementations into different files without stdafx. Just create a file YourClass.h as well as YourClass.cpp then include your .h file in your .cpp file using the #include preprocessor directive.

Member Avatar for mike_2000_17
0
430
Member Avatar for AlPhA

[Quote] 1. Faster than php because it runs on the .NET framework is based on compiled languages and the Web applications is compiled and not interpreted. [/Quote] Im pritty certain you can compile PHP too. But also J#.net, would be the best to use interopratability (spelling) wise, since you could …

Member Avatar for vouxiong
0
583
Member Avatar for sinrtb

Talking about faster compilers and benchmarks, I bleave there is some good gcc benchmarks for selecting the right flags for you system... I Think.. But when compilers commenly have optermizations that can be turned on and off for instance -O3 or -O2 in gcc -O3 makes the code larger in …

Member Avatar for Jimmeny
0
425
Member Avatar for Dani
Member Avatar for sasidharnet

[URL="http://gcc.gnu.org/java/"]GCJ[/URL] can be located at [url]http://gcc.gnu.org/java/[/url], Is able to compile java into bytecode or a native executable ( don't know if this works on win32 tho ). Launch4J is another GPL option [url]http://launch4j.sourceforge.net/[/url], a small JVM that ships with your software.

Member Avatar for masijade
0
470
Member Avatar for Boshkash

Um, I don't know if there is anything out there for this personally, But I may be able to point you in the right direction if you want to make something like this. You will have to use System.IO.Ports.SerialPort to communicate with your modem, if you google System.IO.Ports.SerialPort you will …

Member Avatar for leecorp
0
935