958 Posted Topics

Member Avatar for codeguru_2009

[QUOTE=codeguru_2009;985073]Using dd command to write to floppy disk.[/QUOTE] Have you tried any other third party file utilities? And did you analyze the output with a hexeditor to check if everything went right?

Member Avatar for NotNull
0
175
Member Avatar for ameneh_p

It's dramatically difficult to diagnose non-existent code. You may want to provide us with some to solve the first-most issue.

Member Avatar for mrnutty
0
157
Member Avatar for NicAx64

[URL="http://www.kernel.org/"]http://www.kernel.org/[/URL] Dowload a source, and perhaps look around in: [list][*]linux-2.x.x\include\serial.h [*]linux-2.x.x\include\serial_core.h [*]linux-2.x.x\drivers\serial\serial_core.c[/list]

Member Avatar for replicajewelry
0
175
Member Avatar for Alexar93
Member Avatar for Salem
0
205
Member Avatar for Thinka

Well they made oil-can delays with mineral oil, capacitors, rubber, etc. decades ago, and I believe they still work fine.

Member Avatar for sneekula
0
115
Member Avatar for happygeek

Boo-hoo-hoo! WGAF Your 4chan accusation is a danger to this site. Any reference to that site could lead to a potential invasion.

Member Avatar for servicecat
0
681
Member Avatar for vbCNEW
Member Avatar for 9AnThRaX9
Member Avatar for Salem

Well somehow while not logged in the Current Users Browsing box said that I was logged in twice. I logged back in and now its just one.

Member Avatar for MosaicFuneral
1
984
Member Avatar for dahagaku

uhhmmm..... A hell of allot more then you're currently displaying. You're not going to make much of an impression at an interview(or even consideration for one, through your résumé), if don't have clear communication skills.

Member Avatar for edhardy
0
138
Member Avatar for happygeek

Actually my spam inbox is down from seeing hundreds to seeing maybe a dozen. Don't know what happened to change that number recently.

Member Avatar for deathlemon
0
435
Member Avatar for happygeek
Member Avatar for slfisher

What?! People still buy porn?!?!?!?!? I could download terabyte after terabyte of porn, and never pay a penny directly for it.

Member Avatar for MosaicFuneral
0
339
Member Avatar for Techwriter10
Member Avatar for MosaicFuneral
0
440
Member Avatar for happygeek

That's been there forever.... no-one complained before, actually there's a number of other articles that only pass on a few technicalities. Anyone who's ever read Encyclopedia Dramatica can point you in the direction of thousands of borderline Wikipedia articles.

Member Avatar for AussieWebmaster
0
509
Member Avatar for slfisher

What's wrong with a little porn. ;) This reminds me of some guy at the library watching porn, and everyone could see it..... but nobody seemed to real drastically care, other than lots of chuckling.

Member Avatar for slfisher
0
467
Member Avatar for athlon32

necrolin it's just: [code=cpp] srand(time(NULL));/*only once*/ int var = rand()%max_requested_value;[/code]

Member Avatar for MosaicFuneral
0
135
Member Avatar for tux4life
Member Avatar for MosaicFuneral
Member Avatar for MosaicFuneral
Member Avatar for MosaicFuneral
Member Avatar for tux4life

Why would someone sell your code? Anyway, don't mind if I post my version do you? I haven't written one yet, but I feel like writing one soon.

Member Avatar for tux4life
0
258
Member Avatar for meghs007

Take note that, main() must return zero by standard, and conio.h doesn't exist on most compilers.

Member Avatar for burnt-ice09
0
194
Member Avatar for MosaicFuneral

"Hello World!" done a little differently. Is this safe, unlikely; is there a point to all of this crap, nope; why are parts obfuscated, because I felt like it; was it fun, yes. You'll need the newest version of MinGW to compile, I used options -O2 -Os -s.

Member Avatar for MosaicFuneral
0
357
Member Avatar for MosaicFuneral

Got bored, remember a question asked in the forums, and decided to try something similar.

Member Avatar for MosaicFuneral
0
9K
Member Avatar for niladri.saha06

Poorly formatted, do not use conio.h, it's [icode]int main()[/icode] not [icode]void main()[/icode] it has to have a return value; try fgets() and specify the buffer size, and what do any of those variable names even mean?

Member Avatar for MosaicFuneral
0
240
Member Avatar for MosaicFuneral

A quick way of spying inside of a process. You could also turn this into something like a disassemble, pretty easy, if you wanted too. Quick Notes: The inline assembly is GCC dependent(quick fix for other compilers), and in MinGW you need to link th32 and gid32. The code flow …

0
462
Member Avatar for MosaicFuneral

After flipping through some organic chemistry books I had, I found a interesting little table of basic hydrocarbons. I decided it would be nice to play around with it, by putting together something that could to some accuracy generate them. I am by no means a chemist. You don't even …

0
142
Member Avatar for MosaicFuneral

I decided to find a use for the STL map, and this is what I decided would be cool to practice with. Just have three placed in the code. Could use a function to load the requested elements from a file.

Member Avatar for ddanbe
0
253
Member Avatar for vckicks
Member Avatar for MosaicFuneral

From part of a cryptanalysis tool I was writing, the other day. A way of obtaining possible XOR'ed string values. If you ever get to the point in the analysis that you can simply XOR the string to get closer towards your goal, of finding a weakness, this might be …

Member Avatar for MosaicFuneral
0
379
Member Avatar for ddanbe

The char string method is cool, I just used the current position of the string as the XOR value, after some other ciphering, then inflating the string with gibberish to avoid them from knowing the size to reverse it, et al.; but I might try this technique out, since it's …

Member Avatar for Ramy Mahrous
0
596
Member Avatar for MosaicFuneral

Occasionally there's times when you want to shift a bit over, but you would like to preserve the end of it, for one reason or another. Such as with say you have: [icode]10000001[/icode] but you would like: [icode]00000011[/icode] then latter on back to: [icode]10000001[/icode] Or in Dec 129-into-3, and 3-into-129. …

0
1K
Member Avatar for ddanbe
Member Avatar for ddanbe
0
2K
Member Avatar for Alex Edwards

There's also the FPU-machine instruction: [icode]fistp[/icode] Probably not portable to every platform, but simple. Agner Fog has an example of it in his Asmlib, and a bunch of other cool asm-to-C++ functions.

Member Avatar for MosaicFuneral
0
898
Member Avatar for daveyb91

[QUOTE=Tom Gunn;958827]You can probably go to the post you want to move and click the Flag Bad Post link to report it. That will get the moderators' attention, and because it was an accident and you reported it yourself, they should not give you a warning.[/QUOTE] You still get the …

Member Avatar for The Dude
0
179
Member Avatar for invisal

Actually I have a simple library I wrote for executing machine code off an executable page. The basis of it all for single page without a pointer(to arguments pushed on the stack) is simply: [list][*][icode]typedef int (*fp)();[/icode] [*][icode]fp *code = new fp [original.size()];[/icode] [*][icode]memmove((void*)code, original.data(), original.size());[/icode] [*]In a wrapper function, …

Member Avatar for MosaicFuneral
0
269
Member Avatar for GrimJack

[QUOTE=GrimJack;961572]more than 30 round fired (one clips worth??)[/QUOTE] Thirty hand loaded shots, six clips(5rnd.), three clips(10rnd.), two clips(15rnd.), one clip(30rnd.), 3/4 of a clip(40rnd.). Combination of the above.

Member Avatar for GrimJack
0
123
Member Avatar for justin105

Create a unique signal, emit it, watch for it, based on signal strength/ delay/whatever display whether there's a lack of space available. Couple experiments to try: [url]http://home.earthlink.net/~lenyr/modlitbm.htm[/url] [url]http://home.earthlink.net/~lenyr/modlaser.htm[/url]

Member Avatar for JameB
0
677
Member Avatar for Ancient Dragon

WTF?! Will you disappear from every programming forum online? When you disappear will the internet too?

Member Avatar for crunchie
0
189
Member Avatar for The Dude

My collection is small compared to all of my friends. But I like to savor my games, not finish them the next day. [QUOTE=Jen0608;783039]wow...he must be a game guru or something....[/QUOTE] Unlikely.

Member Avatar for Hiroshe
0
145
Member Avatar for serkan sendur
Member Avatar for MosaicFuneral
0
81
Member Avatar for happygeek

*applauds* Well why wasn't there a party or something? Lets get blitzed and announce ~s.o.s~'s new power on the news, while so!

Member Avatar for ddanbe
0
186
Member Avatar for Hiroshe

Where's the particle bonanza, eyecandy overload, and cute to till you puke stuff? Disregard everything you wrote, and focus on what I wrote. For it is the secret to suckering in a cult following, which means a guaranteed audience for all following releases. At least eight dozen!

Member Avatar for Hiroshe
0
136
Member Avatar for Nick Evan
Member Avatar for MosaicFuneral
0
303
Member Avatar for licktress

Because they require a const char* not a std::string. Try [URL="http://www.cplusplus.com/reference/string/string/c_str/"]string.c_str()[/URL] And remove that system() call at the end.

Member Avatar for Ancient Dragon
0
219
Member Avatar for jephthah

[QUOTE=jbennet;922319]Re: Reputation comments, they are dance/industrial metal[/QUOTE] Listening, listening, listening. Evaluation: Where's the metal, all I hear is generic pop rock? And you can call it dance if you want.... industrial too, as in: mass produced. Call it what you want.

Member Avatar for annbytes
0
221
Member Avatar for Nathan Campos

Assuming you're on Windows: [URL="http://msdn.microsoft.com/en-us/library/bb762153(VS.85).aspx"]ShellExecute()[/URL]

Member Avatar for chiwawa10
0
105
Member Avatar for Ancient Dragon

[URL="http://news.yahoo.com/s/ap/20090625/ap_on_re_as/as_koreas_nuclear"][B]100,000 North Koreans vowing to kill us[/B][/URL] and Micheal Jackson is the only news story I see anywhere.... wtf

Member Avatar for GrimJack
0
298
Member Avatar for JackDurden

The End.