Shoutbox

Do you have any projects? - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Skype & Technology (/forumdisplay.php?fid=9)
+---- Forum: Tech Talk (/forumdisplay.php?fid=17)
+----- Thread: Do you have any projects? (/showthread.php?tid=25364)

Do you have any projects? by bach_m on 05-16-2004 at 03:29 PM

Since i'm sorta bored, and feeling productive (but not enuff to write my essay), i want to know what some projects you guys (and gals) are working on right now.

It might be a program you're writing (perhaps in C, VB, etc), a website, or a web aplication (in PHP, ASP etc) that you are making (such as KeyStrom's avatar thingy).

or maybe you could make a request of something you'd like to see, such as a PHP script that might come in handy for you, or anything.

or maybe just a program/script that you've seen on a website that you find interesting/useful and you think might help benifit the community.

let your creative juices flow.




heres mine, to start it off. its in PHP, and lists the files in a directory.

code:
<?php
if ($handle = opendir('.')) {
  while (false !== ($file = readdir($handle))) {
      if ($file != "." && $file != "..") {
          echo "$file\n";
      }
  }
  closedir($handle);
}
?>


to exclude files, such as index.php as in the example. just add them to this line:
code:
if ($file != "." && $file != ".." && $file != "index.php") {




lets see what you guys have!
RE: Do you have any projects? by TedoDude on 05-16-2004 at 03:35 PM

Projects??? You really want to know??? Well OK:

McTedo's Messenger Personal V5
McTedo's Homework Planner V2
CRGS Dugard House Website (Click Here to look)
CRGS Library Website (Click Here to look)
School ;)
A social life

& Having Fun :D


RE: Do you have any projects? by Stigmata on 05-16-2004 at 03:52 PM

php
- leet text changer (can u see any bugs?)
- php thumb nails
(wont work :s anyone got a source??)

visual basic
-disply messenger plugin
(you can change your computers disply properties from messenger :P)


RE: Do you have any projects? by fluffy_lobster on 05-16-2004 at 03:54 PM

Well my past projects:

Danasoft IP Sig Thing (come on DX :'( fix the ttf support)
Random Image Scripts
Gradier
A couple web interfaces for things like md5()

Current projects:

A flash chess game for MSN6
A script to make those stickers everyone's asking for (cmon dx :p)
vWatch, a project with Keystorm, martin and leito.gt motivated and explained by this thread
A language/format sensitive syntax hilighter :S  Doubt that one will ever happen. :lipsrsealed:
A project I can't tell anyone about.  All will be revealed soon ;)


RE: Do you have any projects? by Mnjul on 05-16-2004 at 03:55 PM

I just finished composing my song the day before yesterday... if you want a piece of example of the piano score, here it is:
[Image: C4004_Bar3_4.png]

And I also finished coding new version of Hopper (it will be released one day or two after Plus! 3). This is the part of code related to /xhopondl.

code:
//Delayed hop on
void CALLBACK TimerProc_HopOnDl(HWND hwnd, UINT uMsg, UINT_PTR idEvent, DWORD dwTime){
    IDispatch *pDispatch=NULL;
    IMessengerContact *Ct=NULL;
    long CtCount=0;
    ToUnblockContacts[idEvent%TE_SIZE].Contacts->get_Count(&CtCount);        //get count
    long Times;

    KillTimer(0,idEvent);

    //unblock every contact
    for(Times=0;Times<CtCount;Times++){
        ToUnblockContacts[idEvent%TE_SIZE].Contacts->Item(Times,&pDispatch);
        pDispatch->QueryInterface(IID_IMessengerContact,(void**)&Ct);
        pDispatch->Release();
        Ct->put_Blocked(VARIANT_FALSE);
        Ct->Release();
    }
    ToUnblockContacts[idEvent%TE_SIZE].Contacts->Release();
}


I'm also currently renovating my website too. It looks like the image below, and some part of the php codes are:
code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<!--Mnjul's Intimate Home VS 1110 Version 2-->
<html>
<head>
  <title>
   Mnjul's Intimate Home
  </title>
  <?php echohead(); ?>
  <?php echoframeenforce(); ?>
  <?php echomenuhead(); ?>
</head>
<body>
    <?php echomenu(); ?>
    <?php echocontent(); ?>
(blah blah etc, and close tags)

(I don't think this is helpful at all...they are all sub functions :P)

[Image: MIH_VS1110V2_PCB.png]



School affairs...
1. To film a 40-second commercial
2. Final term exam in late June
RE: Do you have any projects? by fluffy_lobster on 05-16-2004 at 03:56 PM

quote:
Originally posted by jackass_wanabe
can u see any bugs?
I click that and get:
code:
Parse error: parse error, expecting `T_STRING' or `T_VARIABLE' or `T_NUM_STRING' in /home/carrot/public_html/jwb/scripts/leettext.php on line 5

Is that a bug? (a)

RE: Do you have any projects? by TedoDude on 05-16-2004 at 04:13 PM

Same bug here....


RE: Do you have any projects? by KeyStorm on 05-16-2004 at 04:15 PM

Same bug anywhere :dodgy:
* KeyStorm slaps Tedo around a bit with a large trout.
:P ;)


RE: Do you have any projects? by lylesback2 on 05-16-2004 at 04:16 PM

im currently setting up my own business :P


RE: Do you have any projects? by KeyStorm on 05-16-2004 at 04:23 PM

quote:
Originally posted by lylesback2
im currently setting up my own business :P
;) Yeah, you can say that.

Well, bach_m, feel welcome at any time to the vWatch (version monitoring) project. We need more PHP-coders if we want to start it (yeah, it has taken a little time... my fault :$).

You could also help in the KSMAS, if you wish. There's always place for new developers @ SF. And there have been some interesting suggestions. :rolleyes:

RE: Do you have any projects? by Tochjo on 05-16-2004 at 05:22 PM

Besides the... seven (?!!) school projects I have to hand in in a few weeks from now, I'm trying to

  • Translate the Folding@Home website into Dutch
  • Reading Shakespeare
  • Improving my Esperanto vocabulary
  • Hanging out on IRC and here
Something tells me I forgot something... That list seems too short.. :^):P

Edit: ah yes, forgot that I wanna learn programming in Delphi :p
RE: Do you have any projects? by Vazza on 05-16-2004 at 05:55 PM

I'm currently

  • Working on 3 websites, 2 of my own, 1 for my mum selling figurines
  • Making animated gifs, winamp skins and wallpapers
  • Making Display Pictures for myself and friends
  • Learning Photoshop :p
these and studying for my exams :p!
RE: Do you have any projects? by dotNorma on 05-16-2004 at 05:57 PM

Visual Basics 6 Projects (Past and Present) :

  • Message Maker
  • NickName Creator 3 ( A Plug-in )
  • That Shortcuts Plug
  • Preferences Plug
  • ANC2 (Crappy)
  • Flooder
  • That Moody thing (Would be tons easier if I had made it a plug-in)

    Other Projects :

  • Creating my Website
  • Bunches of Shcool Stuff

RE: Do you have any projects? by GiantSpider on 05-16-2004 at 06:28 PM

Well i've got:

  • Some Music to arrange
  • Some music to write
  • my 5 bands
  • Some Plugins I should finish
  • Some Plugins I should start
  • and my website

RE: Do you have any projects? by CodeChaos on 05-16-2004 at 06:39 PM

Right Now:


Left Alone:
  • Messenger Plus! Nickname Wizard (non-HTML)
  • Simple DVD Player

Planning:
  • Video Game Converter
  • Minimees

RE: Do you have any projects? by Guido on 05-16-2004 at 07:35 PM

I've got too much to name them :'(


RE: Do you have any projects? by matty on 05-16-2004 at 07:48 PM

quote:
Originally posted by Guido
I've got too much to name them :'(

Mainly the website for Messenger Plus!3
---------------
My Website: http://24.103.212.59/web
An Application for Work
A Contact List Enlarger for Messenger (working on dlls right now off and on)
Surfing these Forums
RE: Do you have any projects? by Banks on 05-17-2004 at 12:09 AM

I'm writing my own blog for me and a friends website.


RE: Do you have any projects? by Dempsey on 05-17-2004 at 10:50 AM

Im working on Screenshot Sender , Hotmail Deframer and a bit of Profile Manager.

And just other stuff on my Website

Oh, and College work :p


RE: Do you have any projects? by saralk on 05-17-2004 at 08:38 PM

I have made

www.fw6.net - lets people get theirname.fw6.net for free
and a counter service, again go to www.fw6.net and click the counter link at the bottom

also i tried to make my own forums, but got bored of it, u can see the grave yard of coding at www.fw6.net/zeus


RE: Do you have any projects? by fluffy_lobster on 05-18-2004 at 07:44 AM

woah freaky forum, i posted something and it became my username, now i've screwed the table layout :P I guess it's cos i had no username


RE: Do you have any projects? by Choli on 05-18-2004 at 09:53 AM

my projects? mmm.. well, the translator program, the tweak for plus 3 (finished yesterday), and a plugin for plus I want to do this summer.

Also, I have to finish 3 projects at the uni, do the final project, find a goob job and a gf :P