ScreenShot of you programming :)
- Jordan
-
Jordan
- Member since: Apr. 23, 2006
- Offline.
-
- Forum Stats
- Member
- Level 14
- Blank Slate
- thoughtpolice
-
thoughtpolice
- Member since: Mar. 24, 2003
- Offline.
-
- Forum Stats
- Member
- Level 10
- Blank Slate
weeeee, openbox+pypanel: http://img50.imageshack.us/img50/2267/screenz 8io.png
I should also note that emacs can be the biggest of bitches sometimes.
omg.
Playstation Network tag: muffin-noodle
the empty set
- RageOfOrder
-
RageOfOrder
- Member since: Aug. 30, 2002
- Offline.
-
- Forum Stats
- Member
- Level 09
- Blank Slate
At 1/21/07 05:15 PM, thoughtpolice wrote: weeeee, openbox+pypanel: http://img50.imageshack.us/img50/2267/screenz 8io.png
I should also note that emacs can be the biggest of bitches sometimes.
Yes it can. Which is why I primarily use a graphical IDE (KDevelop) and a seperate terminal
- thoughtpolice
-
thoughtpolice
- Member since: Mar. 24, 2003
- Offline.
-
- Forum Stats
- Member
- Level 10
- Blank Slate
At 1/21/07 05:16 PM, RageOfOrder wrote: Yes it can. Which is why I primarily use a graphical IDE (KDevelop) and a seperate terminal
I generally dislike environments like KDevelop and Anjuta (neither really ever successfully worked on my linux box anyway,) and emacs was the first real 'environment' I learned, so I stick with it (not a huge vim fan myself, but I can work with it.)
omg.
Playstation Network tag: muffin-noodle
the empty set
- RageOfOrder
-
RageOfOrder
- Member since: Aug. 30, 2002
- Offline.
-
- Forum Stats
- Member
- Level 09
- Blank Slate
At 1/21/07 05:24 PM, thoughtpolice wrote:At 1/21/07 05:16 PM, RageOfOrder wrote: Yes it can. Which is why I primarily use a graphical IDE (KDevelop) and a seperate terminalI generally dislike environments like KDevelop and Anjuta
KDevelop is nice because it's not bloated. If you look at my screenshot, there's not much to it. Pretty much one big editor window and some menus. Simple :)
- Mister-Mind
-
Mister-Mind
- Member since: Jul. 1, 2006
- Offline.
-
- Forum Stats
- Member
- Level 07
- Blank Slate
- Craige
-
Craige
- Member since: Jul. 17, 2004
- Offline.
-
- Forum Stats
- Member
- Level 08
- Blank Slate
At 12/6/06 10:32 PM, Craige wrote: I'll get a good screenshot of my programming a bit later, when I'm not so busy. I have so much school work that I'm doing right now, so I havn't been doing much programming.
haha, I completely forgot about this, I'll take one when I re-download a php editor.
// MustyWindows - Jump Through The Windows
// AmpFusion - Where Underground Becomes Mainstream
Neo Enterprise Technologies Coming soon.
- Mister-Mind
-
Mister-Mind
- Member since: Jul. 1, 2006
- Offline.
-
- Forum Stats
- Member
- Level 07
- Blank Slate
At 1/23/07 01:57 PM, Craige wrote:At 12/6/06 10:32 PM, Craige wrote: I'll get a good screenshot of my programming a bit later, when I'm not so busy. I have so much school work that I'm doing right now, so I havn't been doing much programming.haha, I completely forgot about this, I'll take one when I re-download a php editor.
You got your computer formatted?
- RageOfOrder
-
RageOfOrder
- Member since: Aug. 30, 2002
- Offline.
-
- Forum Stats
- Member
- Level 09
- Blank Slate
I'm working on Jordan's idea of a non-compression archive in C++
It will use a string vector and store
[filename] [raw file data]
Vector lets it be expandable, and seperate various components easily
I was going to have it store a date-stamp and auto-update only newer files, but I don't know how to extract that without using a linux-specific command, which makes it non-portable...
I know this ind of util exists already, but I want to try my own hand at it.
Screenshot:
http://img167.imageshack.us/img167/3139/snaps hot1247jc.jpg
- elbekko
-
elbekko
- Member since: Jul. 23, 2004
- Offline.
-
- Forum Stats
- Member
- Level 16
- Blank Slate
Wouldn't you be better off using a list instead of a vector? Vectors aren't all that good for removing stuff in the middle of a vector I think.
"My software never has bugs. It just develops random features. " - Unknown
[ FluxBB developer | Quickmarks 0.5.1 | Strings & Ints - my blog ]
- RageOfOrder
-
RageOfOrder
- Member since: Aug. 30, 2002
- Offline.
-
- Forum Stats
- Member
- Level 09
- Blank Slate
At 1/23/07 03:14 PM, elbekko wrote: Wouldn't you be better off using a list instead of a vector? Vectors aren't all that good for removing stuff in the middle of a vector I think.
Personally, I'm more comfortable with vectors. And I can remove from the middle pretty easily. I wrote a nice method to do it a while ago.
In any case, right now it doesn't support extracting specific files.
I've almost got the storing done properly :)
- thoughtpolice
-
thoughtpolice
- Member since: Mar. 24, 2003
- Offline.
-
- Forum Stats
- Member
- Level 10
- Blank Slate
Personally I'd just map the file data to memory and use a structure pointer and a loop to iterate through the binary easily; but then again I'm not a huge C++ fan so I figure I'm alone here. :>
omg.
Playstation Network tag: muffin-noodle
the empty set
- Jordan
-
Jordan
- Member since: Apr. 23, 2006
- Offline.
-
- Forum Stats
- Member
- Level 14
- Blank Slate
At 1/23/07 03:07 PM, RageOfOrder wrote: I'm working on Jordan's idea of a non-compression archive in C++
Awesome, i started one, but never got round to finishing it.
- elbekko
-
elbekko
- Member since: Jul. 23, 2004
- Offline.
-
- Forum Stats
- Member
- Level 16
- Blank Slate
At 1/23/07 04:57 PM, thoughtpolice wrote: Personally I'd just map the file data to memory and use a structure pointer and a loop to iterate through the binary easily; but then again I'm not a huge C++ fan so I figure I'm alone here. :>
Or just use the vector's iterators? :P
"My software never has bugs. It just develops random features. " - Unknown
[ FluxBB developer | Quickmarks 0.5.1 | Strings & Ints - my blog ]
- Craige
-
Craige
- Member since: Jul. 17, 2004
- Offline.
-
- Forum Stats
- Member
- Level 08
- Blank Slate
At 1/23/07 01:58 PM, PHPgeek wrote:haha, I completely forgot about this, I'll take one when I re-download a php editor.You got your computer formatted?
No, my php editor just stopped working the other day. No reason as to why.
// MustyWindows - Jump Through The Windows
// AmpFusion - Where Underground Becomes Mainstream
Neo Enterprise Technologies Coming soon.
- RageOfOrder
-
RageOfOrder
- Member since: Aug. 30, 2002
- Offline.
-
- Forum Stats
- Member
- Level 09
- Blank Slate
At 1/23/07 05:37 PM, Jordan wrote:At 1/23/07 03:07 PM, RageOfOrder wrote: I'm working on Jordan's idea of a non-compression archive in C++Awesome, i started one, but never got round to finishing it.
Here's the code so far...
http://pastebin.ca/326240
Add has basic functionality.
It will create an archive of files, but it doesn't support appending or updating yet.
format is:
3 bytes for the length of the file's name
the filename
10 bytes for the length of the file
file data
I'm working on list and extract right now, to make sure it all works
- RageOfOrder
-
RageOfOrder
- Member since: Aug. 30, 2002
- Offline.
-
- Forum Stats
- Member
- Level 09
- Blank Slate
Heh.. I love my computer :P
On the one face there's KDevelop and my C++ stuff, on the far face is my LC-3 Assembler stuff, and the last face is my browser and MSN
- Craige
-
Craige
- Member since: Jul. 17, 2004
- Offline.
-
- Forum Stats
- Member
- Level 08
- Blank Slate
At 1/23/07 09:00 PM, RageOfOrder wrote: Heh.. I love my computer :P
On the one face there's KDevelop and my C++ stuff, on the far face is my LC-3 Assembler stuff, and the last face is my browser and MSN
http://img443.imageshack.us/img443/5272/snaps hot1250rt.jpg
What the hell? I've never seen that before. Is it not extremely resource intensive?
I couldn't even imagine staring at that.
// MustyWindows - Jump Through The Windows
// AmpFusion - Where Underground Becomes Mainstream
Neo Enterprise Technologies Coming soon.
- RageOfOrder
-
RageOfOrder
- Member since: Aug. 30, 2002
- Offline.
-
- Forum Stats
- Member
- Level 09
- Blank Slate
At 1/23/07 10:39 PM, Craige wrote: What the hell? I've never seen that before. Is it not extremely resource intensive?
I couldn't even imagine staring at that.
My comp looks like any regular desktop, but has every feature that a mac has, plus a whole bunch more. The desktop cube is one of them.
I have a side button on my mouse... if I hold it, my screen zooms out of my desktop and shows this 3d cube, each face is a seperate desktop. I can rotate around at will :)
Runs on pretty much any moderate hardare. 128MB video card and a 1GHz processor, and like 512MB of ram and it runs perfect, but it runs on much older hardware than that.
I recently threw in a 512 MB GeForce 7600GS and it runs like a dream.
Anyway, the program is called Beryl and runs for free on any Linux distro.
- RageOfOrder
-
RageOfOrder
- Member since: Aug. 30, 2002
- Offline.
-
- Forum Stats
- Member
- Level 09
- Blank Slate
I gotta stop double posting, but I made some progress with the archive tool :D
I can now add files and list existing files. Next is extract.
http://img204.imageshack.us/img204/3010/snaps hot1276re.jpg
It's a neat project, even if it is rather useless :P
- thoughtpolice
-
thoughtpolice
- Member since: Mar. 24, 2003
- Offline.
-
- Forum Stats
- Member
- Level 10
- Blank Slate
I can remember when I was into writing an archive program; but mine was planned to be written in assembly (MASM32.) I got some code working, but not nearly to the point of 'working moderately well.' Unfortunately I got rid of it because I figured I wouldn't ever need it again. Now I want to start it back up. :(
omg.
Playstation Network tag: muffin-noodle
the empty set
- Claxor
-
Claxor
- Member since: Oct. 21, 2005
- Offline.
-
- Forum Stats
- Member
- Level 12
- Blank Slate
- RageOfOrder
-
RageOfOrder
- Member since: Aug. 30, 2002
- Offline.
-
- Forum Stats
- Member
- Level 09
- Blank Slate
At 1/24/07 04:19 PM, thoughtpolice wrote: I can remember when I was into writing an archive program; but mine was planned to be written in assembly (MASM32.) I got some code working, but not nearly to the point of 'working moderately well.' Unfortunately I got rid of it because I figured I wouldn't ever need it again. Now I want to start it back up. :(
I can understand why you'd try assembler.. It's certainly a low-level task, but I love having the higher level features available to me.
I should actually be writing mine in plain C, I have a vector library I wrote for C anyways...
In any case, I'll post my code when I'm done (extract works with text files, nothing else yet) and you're welcome to use it any way you want.
- Sir-Davey
-
Sir-Davey
- Member since: Jul. 9, 2001
- Offline.
-
- Forum Stats
- Supporter
- Level 19
- Blank Slate
At 1/23/07 03:07 PM, RageOfOrder wrote: I'm working on Jordan's idea of a non-compression archive in C++
Hey! I made a "pooball" (my own name creation) (de)archiver in PHP once. It was a simple format to group a lot of files into it. I originally made it to allow people on my site to backup all their data with one click, and restore it with one click as well. Although I never got around to implementing the backup/restore part of it.
Source code is available for anyone interested. I could probably turn it into a command-line tool if anyone wishes so.
- thoughtpolice
-
thoughtpolice
- Member since: Mar. 24, 2003
- Offline.
-
- Forum Stats
- Member
- Level 10
- Blank Slate
At 1/24/07 05:01 PM, RageOfOrder wrote: I can understand why you'd try assembler.. It's certainly a low-level task, but I love having the higher level features available to me.
I should actually be writing mine in plain C, I have a vector library I wrote for C anyways...
It was more of an opportunity to just get my hand back at programming in Assembly, and MASM32 has amazing Macro and high-level features for an assembler. I just couldn't work on it due to other projects at the time.
omg.
Playstation Network tag: muffin-noodle
the empty set
- elbekko
-
elbekko
- Member since: Jul. 23, 2004
- Offline.
-
- Forum Stats
- Member
- Level 16
- Blank Slate
Working on the rapidshare downloader, which doesn't want to work because of Rapidshare being noobs X(
Not really using the right screen atm
"My software never has bugs. It just develops random features. " - Unknown
[ FluxBB developer | Quickmarks 0.5.1 | Strings & Ints - my blog ]
- cpr91
-
cpr91
- Member since: Jul. 5, 2005
- Offline.
-
- Forum Stats
- Member
- Level 07
- Blank Slate
Me working in C On a program designed to bruteforce 40-bit ssl encryption.
Seems to work on the test data, check it out here:
http://img253.imageshack.us/img253/6269/pictu re13ax.png
Shame no-one even dreams of using 40-bit encryption anymore...Ah, the good old days.
What the f*ck am i talking about, im only 15!
Later
- dburford11
-
dburford11
- Member since: Apr. 1, 2005
- Offline.
-
- Forum Stats
- Member
- Level 03
- Programmer
This is me working on my site :P
http://img408.imageshack.us/img408/7713/mecod ing7uo.png
- RageOfOrder
-
RageOfOrder
- Member since: Aug. 30, 2002
- Offline.
-
- Forum Stats
- Member
- Level 09
- Blank Slate
So I decided my archive tool was doing more than it needed to, and wasn't working right
So I scrapped it and started over in C, instead of C++ :)
http://img261.imageshack.us/img261/4578/snaps hot003xx9.jpg
- Mister-Mind
-
Mister-Mind
- Member since: Jul. 1, 2006
- Offline.
-
- Forum Stats
- Member
- Level 07
- Blank Slate
Today I modified some phpbb forums. I am too lazy to take a picture but look at my sit XP


