Posts
 
Reputation
Joined
Last Seen
Ranked #464
Strength to Increase Rep
+8
Strength to Decrease Rep
-2
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
~78.0K People Reached
About Me

Software Engineer

Interests
Nil
Favorite Tags

125 Posted Topics

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
674
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
914
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
357
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
159
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
540
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
536
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
265
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
165
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
177
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
260
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
140
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
98
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
204
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
126
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
566
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
130
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
443
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
603
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
435
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
489
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
954
Member Avatar for ushineon

There are large differences between how you write in an Object Oriented Programming Language and a procedural language though. I think there will be a need for C programmers for a long time though, Its a good bet, But personly i think you should learn both a procedual and a …

Member Avatar for jwenting
0
215
Member Avatar for 2fac323

You could either sort the students into corresponding times before you start ( a little faster ) or iterate through the array of students 24 times, checking the time each time. You want to sort the students into there corresponding times [code] so create arrays of students[24][MAX_STUDENTS] Then iterate all …

Member Avatar for Chilton
0
135
Member Avatar for zemly
Member Avatar for Brent_Ritterbec

No one wants to pay for books, Go over to The Linux Documentation Project [url]http://tldp.org/[/url] and pick yourself up a copy of [URL=http://tldp.org/LDP/lki/lki.pdf]Linux Kernel 2.4 Internals[/URL] while 2.4 alot of it will cross over to 2.6 also get a copy of [URL=http://tldp.org/LDP/lkmpg/2.6/lkmpg.pdf]The Linux Kernel Module Programming Guide(kernel 2.6)[/URL], [URL=http://www.ibiblio.org/pub/Linux/docs/linux-doc-project/linux-kernel/]The Linux …

Member Avatar for 50701735
0
179
Member Avatar for II DaN II

Try chucking a boot cd in and running a fsck on your hard disks fsck.ext3 /dev/hda3 (or whatever depending on file system and where your linux disks are)

Member Avatar for tracedinesh
0
194
Member Avatar for khess

"Windows 7 will be the last Windows product." Do you have a reference for this statement, Did Steve Balmer tell us in a recent keynote I missed. Or are you just speculating and attempting to pass it off as fact ?

Member Avatar for uliwehner
0
355
Member Avatar for Paul.Esson

I know what your thinking, You and everyone else has always wanted a clock that sits at the top of your command prompt and tells you the time. Why ? I made this in first year when i spent countless hours programming and little in bed. I decided i needed …

Member Avatar for Mpiangu
0
161
Member Avatar for Paul.Esson

My second C++ lab, bit of fun if i do say so my self. Its a stack that uses a linked list in C++ alot of debugging stuff still in here, but I like the debugging output anyway. Sorry about the lack of comments and

0
150
Member Avatar for rinque

there is no real way to stop a user from closing a window using a shell script. but if your worring about your shell script being half way through something when they close the window. use [CODE]nohup[/CODE] this makes the process not honour hang up signals NOTE: you will no …

Member Avatar for rashshell
0
147
Member Avatar for Paul.Esson

The following method should swap the high nibble in a byte with the low nibble in a byte. The following code dosn't work if the lower nibble is above 0111 if it is it returns a negative number... Does anyone know what im doing wrong ? [CODE] public static void …

Member Avatar for javaAddict
0
285
Member Avatar for danielc

Advantage of that later is you cannot simply change the name of the executable and then run two instances of the application.

Member Avatar for hassan-golab
0
3K
Member Avatar for sting23

[QUOTE=sting23;743131]i have a few days to design a system(payroll) using C++. does anyone have the source code thank you[/QUOTE] You have to write the source code before anyone will have it.

Member Avatar for ithelp
-1
138
Member Avatar for carlcarman

Its going to ask for the employee name 78 times. so only after that will it print out your array. I would try changing COL's to 3 or something so you don't have to enter in so many numbers before getting them printed out. [quote] 1. Create an instance array …

Member Avatar for carlcarman
0
156
Member Avatar for fedderico10

You want to use [code] xmlStrEqual(resource_id, event_id) [/code] it will return 1 if equal and 0 if different. so [code] if(xmlStrEqual(resource_id, event_id)) std::cout << "parada 1" << std::endl; [/code] should do the trick. [url]http://xmlsoft.org/html/libxml-xmlstring.html#xmlStrEqual[/url] also resource_id == event_id does not work since you are just comparing two addresses, not what …

Member Avatar for Paul.Esson
0
2K
Member Avatar for mohit12

I guess if your not doing this for a class and therefor do not want to reinvent the wheel you should take a look at opencv its a neat open source computer vision library.

Member Avatar for Paul.Esson
0
156
Member Avatar for mr_scooby

Everytime you enter the Deposit() method you are setting the deposit amount to 94.37 :. its not really ever going to change. I mean you will return a different balance from that method but as soon as you attempt to deposit again you will be starting at 94.37$ again. You …

Member Avatar for mr_scooby
0
172
Member Avatar for leowdeo

I don't know if this is the problem, but on the post request you have the terminating empty line after you have the post data. [code] Strcat(szSendBuffer,"/r/n);//the terminating empty line [/code]

Member Avatar for Paul.Esson
0
164
Member Avatar for AutoC

I had [code=c++] char boolsToChar(bool* bools){ char c = 0; for( int i = 0; i < 8; i++ ) if( bools[i] ) c += pow(2,i); return c; } [/code] but clearly this is not as nice a solution as above, For multiple reasons. One being that I get a …

Member Avatar for AutoC
0
4K
Member Avatar for flying

If i understand what your trying to do try atrm I just attempted this as a small test [CODE]atrm now `echo hello >> hello2`[/CODE] so i guess you should use [CODE]atrm now +3 days `/path/scriptname -foo -bar`[/CODE] note: the ` prolly isn't nessasery in your case and if that fails …

Member Avatar for omrsafetyo
0
245
Member Avatar for George2

[QUOTE=George2]Hello everyone, I want to use javax.comm to do serial cable communication on Linux platform. Currently, I can not find enough learning materials (tutorials and samples) from searching the net. Could anyone help to recommend some good ones? thanks in advance, George[/QUOTE] Your quite lucky the newest version of the …

Member Avatar for jwenting
0
226

The End.