[Cs-dev] csound as a bbs door
Date | 2010-02-09 14:52 |
From | edexter5 |
Subject | [Cs-dev] csound as a bbs door |
I was looking bbs software and old programming libraries and I think that a current version of csound could be up on the net instead of a specialized version like netcsound. This probably isn't the right library to use (unless there is a way to do a command line with this).. but the code looks very short. This is for a python core of course but I believe csound could be set up like this also. {I used the angel library for this but I am under the impression this wont work because of the way they define things} {I haven't compiled this yet any suggestions what library to use so I can use the command line??} uses SysUtils, ANGEL, DOS, CRT, SYSTEM32; var pythonpathname, pythonfilename, pythonoutputname : String; begin AI.Programname:='runandfilesend'; {program name} AI.Version:='1.0'; {set version} AI.Author:='Eric Dexter'; {set author} pythonpathname := ParamStr(1); pythonfilename := ParamStr(2); pythinoutputname := ParamStr(3); pythonoutputfile := ParamStr(4); {whatever file the python program outputs} aClr; {Clear Screen} aWriteLn'Execute A Program and send the text file result hit enter' SysUtils.ExecuteProcess('pythonpathname','python25.exe', pythonfilename, pythonoutputname); {SysUtils.ExecuteProcess('/full/path/to/binary',['arg1','arg2']); } aShowFileFast(Pythonoutputfile); Pause(1); aReadKey; -- View this message in context: http://old.nabble.com/csound-as-a-bbs-door-tp27516379p27516379.html Sent from the Csound - Dev mailing list archive at Nabble.com. ------------------------------------------------------------------------------ The Planet: dedicated and managed hosting, cloud storage, colocation Stay online with enterprise data centers and the best network in the business Choose flexible plans and management services without long-term contracts Personal 24x7 support from experience hosting pros just a phone call away. http://p.sf.net/sfu/theplanet-com _______________________________________________ Csound-devel mailing list Csound-devel@lists.sourceforge.net |
Date | 2010-02-10 17:27 |
From | jpff |
Subject | Re: [Cs-dev] csound as a bbs door |
> I was looking bbs software and old programming libraries and I think that a > current version of csound could be up on the net instead of a specialized > version like netcsound. What is special about netcsound? Apart from missing interactive stuff that it ==John ffitch ------------------------------------------------------------------------------ SOLARIS 10 is the OS for Data Centers - provides features such as DTrace, Predictive Self Healing and Award Winning ZFS. Get Solaris 10 NOW http://p.sf.net/sfu/solaris-dev2dev _______________________________________________ Csound-devel mailing list Csound-devel@lists.sourceforge.net |
Date | 2010-02-11 13:53 |
From | edexter5 |
Subject | Re: [Cs-dev] csound as a bbs door |
jpff-2 wrote: > >> I was looking bbs software and old programming libraries and I think that >> a >> current version of csound could be up on the net instead of a specialized >> version like netcsound. > > What is special about netcsound? Apart from missing interactive > stuff that it > ==John ffitch > > ------------------------------------------------------------------------------ > SOLARIS 10 is the OS for Data Centers - provides features such as DTrace, > Predictive Self Healing and Award Winning ZFS. Get Solaris 10 NOW > http://p.sf.net/sfu/solaris-dev2dev > _______________________________________________ > Csound-devel mailing list > Csound-devel@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/csound-devel > > I think the feature where it sends the song back to you is interesting. With this method you should be able to talk someone else, (or many people) into hosting it for you as a 'feature' of thier bbs. I was hopeing to get some other utilities up like this (it's googles idea that the monoopy comes from billions of cell phone formats rather than the one from ms and that remote hosting is the way to go). http://www.dextracker.blogspot.com/ -- View this message in context: http://old.nabble.com/csound-as-a-bbs-door-tp27516379p27544570.html Sent from the Csound - Dev mailing list archive at Nabble.com. ------------------------------------------------------------------------------ SOLARIS 10 is the OS for Data Centers - provides features such as DTrace, Predictive Self Healing and Award Winning ZFS. Get Solaris 10 NOW http://p.sf.net/sfu/solaris-dev2dev _______________________________________________ Csound-devel mailing list Csound-devel@lists.sourceforge.net |
Date | 2010-02-11 14:11 |
From | edexter5 |
Subject | Re: [Cs-dev] csound as a bbs door |
I could just look for the interactive commands (in python) and flag them as an error instead of doing a different build without all of that, I haven't figured out the door part yet though.. edexter5 wrote: > > > > jpff-2 wrote: >> >>> I was looking bbs software and old programming libraries and I think >>> that a >>> current version of csound could be up on the net instead of a >>> specialized >>> version like netcsound. >> >> What is special about netcsound? Apart from missing interactive >> stuff that it >> ==John ffitch >> >> ------------------------------------------------------------------------------ >> SOLARIS 10 is the OS for Data Centers - provides features such as DTrace, >> Predictive Self Healing and Award Winning ZFS. Get Solaris 10 NOW >> http://p.sf.net/sfu/solaris-dev2dev >> _______________________________________________ >> Csound-devel mailing list >> Csound-devel@lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/csound-devel >> >> > > I think the feature where it sends the song back to you is interesting. > With this method you should be able to talk someone else, (or many people) > into hosting it for you as a 'feature' of thier bbs. I was hopeing to get > some other utilities up like this (it's googles idea that the monoopy > comes from billions of cell phone formats rather than the one from ms and > that remote hosting is the way to go). > > http://www.dextracker.blogspot.com/ > > -- View this message in context: http://old.nabble.com/csound-as-a-bbs-door-tp27516379p27544572.html Sent from the Csound - Dev mailing list archive at Nabble.com. ------------------------------------------------------------------------------ SOLARIS 10 is the OS for Data Centers - provides features such as DTrace, Predictive Self Healing and Award Winning ZFS. Get Solaris 10 NOW http://p.sf.net/sfu/solaris-dev2dev _______________________________________________ Csound-devel mailing list Csound-devel@lists.sourceforge.net |