|
View:
New views
11 Messages
—
Rating Filter:
Alert me
|
| < Prev | 1 - 2 | Next > |
|
|
Re: sctwittJoining the fun:
http://twitter.com/earslap B.B. On Mar 31, 2009, at 8:41 PM, Julian Rohrhuber wrote: > ok, following. http://twitter.com/telephon > >> I decided to get a twitter account and join the fun -- >> http://twitter.com/headcube . I like the restriction, it's made me >> come up with some interesting new ideas. >> >> Nathaniel >> >> >> 2009/3/27 Djého Youn <ydjeho@...>: >>> cool, now I'm following mclduk, >>> 'hope more sc people join... >>> >>> On Fri, Mar 27, 2009 at 5:32 PM, '2+ >>> <electriclightheads@...> wrote: >>>> >>>> hey http://twitter.com/mclduk ! >>>> you wanted to report about this by yourself? but i couldn't help >>>> myself posting here... >>>> >>>> i found you doing sctwitt >>>> this is great .. both twitter and supercollider are changing the >>>> style >>>> of thangs but yes >>>> maybe a new web service related to this can come out? >>>> i wanna see that reported on rocketboom.com .. okay am gonna tell >>>> em! >>>> >>>> lazy me tend to twitt than study codes ... but this will force me >>>> sc >>>> >>>> and i think i have to get used to that 1 line style >>>> am still doing like this >>>> >>>> >>>> --- 8< --- >>>> >>>> ~oilfield = Server.local.boot; >>>> >>>> ~oilfield.quit; >>>> >>>> ( >>>> ~oilfield.sendMsg("/g_new", ~song2sa = 2100, 1, 0); >>>> ~root2 = 27.5 * (2 ** (5 / 12)); >>>> ) >>>> >>>> ~oilfield.sendMsg("/n_set", 0, "freq", ~root2); >>>> ~oilfield.sendMsg("/n_set", 0, "cov", 10); >>>> ~oilfield.sendMsg("/n_set", 0, "den", 50); >>>> ~oilfield.sendMsg("/n_set", 0, "cov", 10, "den", 50); >>>> >>>> , >>>> , >>>> , >>>> >>>> --- 8< --- >>>> >>>> -- >>>> SaRiGaMa's Oil Vending Orchestra >>>> is podcasting: >>>> http://sarigama.namaste.jp/podcast/rss.xml >>>> and supplying oil.py for free: >>>> http://oilpy.blogspot.com/ >>>> >>>> _______________________________________________ >>>> sc-users mailing list >>>> >>>> info (subscription, etc.): >>>> http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml >>>> archive: http://www.listarc.bham.ac.uk/marchives/sc-users/ >>>> search: http://www.listarc.bham.ac.uk/lists/sc-users/search/ >>> >>> >> >> _______________________________________________ >> sc-users mailing list >> >> info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml >> archive: http://www.listarc.bham.ac.uk/marchives/sc-users/ >> search: http://www.listarc.bham.ac.uk/lists/sc-users/search/ > > > -- > > > > > > . > > _______________________________________________ > sc-users mailing list > > info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml > archive: http://www.listarc.bham.ac.uk/marchives/sc-users/ > search: http://www.listarc.bham.ac.uk/lists/sc-users/search/ _______________________________________________ sc-users mailing list info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml archive: http://www.listarc.bham.ac.uk/marchives/sc-users/ search: http://www.listarc.bham.ac.uk/lists/sc-users/search/ |
|
|
Re: sctwittHiho,
should we add this script to the examples folder? sincerely, Marije On Tuesday 31 March 2009 23:11:21 Eric Skogen wrote: > twitterpated with #supercollider overload? > jonesin' for a 140-char-max fix in your ear? > > fret not! > > and execute: > > > > ( > var p, a, l, d, doc; > p = Pipe.new( > "curl http://search.twitter.com/search.atom?q=%23supercollider+play", > "r" > ); > a = ""; > l = p.getLine; > while({l.notNil}, {a = a + l; l = p.getLine; }); > p.close; > > d = DOMDocument.new; > d.parseXML(a); > t = d.getElementsByTagName("entry").collect { |e| > > "// by " + e.getElementsByTagName("author").first > .getElementsByTagName("name").first.getText() + ":\n" + > > e.getElementsByTagName("title").first.getText() > > }; > > Document(string:"// #supercollider tweets\n\n\n" + > t.join("\n\n\n\n")).syntaxColorize; > ) > > > > THE CAVEAT SLIDE > a slight delay is to be expected, to await the gathering of twitters' > reply. (do not be alarmed. all part of the show, my friends) > oh and yeah you'll need the XML Quark > (http://quarks.svn.sourceforge.net/viewvc/quarks/XML/) > and it only works if you can run Pipe (sorry, PC ... ceci n'est pas une > pipe) > > enjoy > e > > _______________________________________________ > sc-users mailing list > > info (subscription, etc.): > http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml archive: > http://www.listarc.bham.ac.uk/marchives/sc-users/ > search: http://www.listarc.bham.ac.uk/lists/sc-users/search/ _______________________________________________ sc-users mailing list info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml archive: http://www.listarc.bham.ac.uk/marchives/sc-users/ search: http://www.listarc.bham.ac.uk/lists/sc-users/search/ |
|
|
Re: sctwittYes! That is, if Eirik is happy with it. t On 5 Apr 2009, at 18:39, nescivi wrote: > Hiho, > > should we add this script to the examples folder? > > sincerely, > Marije > > On Tuesday 31 March 2009 23:11:21 Eric Skogen wrote: >> twitterpated with #supercollider overload? >> jonesin' for a 140-char-max fix in your ear? >> >> fret not! >> >> and execute: >> >> >> >> ( >> var p, a, l, d, doc; >> p = Pipe.new( >> "curl http://search.twitter.com/search.atom?q=%23supercollider >> +play", >> "r" >> ); >> a = ""; >> l = p.getLine; >> while({l.notNil}, {a = a + l; l = p.getLine; }); >> p.close; >> >> d = DOMDocument.new; >> d.parseXML(a); >> t = d.getElementsByTagName("entry").collect { |e| >> >> "// by " + e.getElementsByTagName("author").first >> .getElementsByTagName("name").first.getText() + ":\n" + >> >> e.getElementsByTagName("title").first.getText() >> >> }; >> >> Document(string:"// #supercollider tweets\n\n\n" + >> t.join("\n\n\n\n")).syntaxColorize; >> ) >> >> >> >> THE CAVEAT SLIDE >> a slight delay is to be expected, to await the gathering of twitters' >> reply. (do not be alarmed. all part of the show, my friends) >> oh and yeah you'll need the XML Quark >> (http://quarks.svn.sourceforge.net/viewvc/quarks/XML/) >> and it only works if you can run Pipe (sorry, PC ... ceci n'est >> pas une >> pipe) >> >> enjoy >> e >> >> _______________________________________________ >> sc-users mailing list >> >> info (subscription, etc.): >> http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml archive: >> http://www.listarc.bham.ac.uk/marchives/sc-users/ >> search: http://www.listarc.bham.ac.uk/lists/sc-users/search/ > > > > _______________________________________________ > sc-users mailing list > > info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml > archive: http://www.listarc.bham.ac.uk/marchives/sc-users/ > search: http://www.listarc.bham.ac.uk/lists/sc-users/search/ _______________________________________________ sc-users mailing list info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml archive: http://www.listarc.bham.ac.uk/marchives/sc-users/ search: http://www.listarc.bham.ac.uk/lists/sc-users/search/ |
|
|
Re: sctwittdoes this mean that that
http://quarks.svn.sourceforge.net/viewvc/quarks/XML/ will be the default lib(class?) of sc in the near future? i still don't know about Quark and behaving like "do i have to compile ... ? hmm that's too hard" and was searching for a way to do a similar thing with python (at this moment it seems you have to follow the guy anyway to get what he had posted not search engine oriented) i asked on the py-ml "is there a way to collect twitts with python?" and lots of pervertive reply popped up then went to wikipedia sctwit nor sctwitt are not good names to promote this kind of sc+twitter usage? On Mon, Apr 6, 2009 at 2:54 AM, thor <th.list@...> wrote: > > Yes! > > That is, if Eirik is happy with it. > > t > On 5 Apr 2009, at 18:39, nescivi wrote: > >> Hiho, >> >> should we add this script to the examples folder? >> >> sincerely, >> Marije >> >> On Tuesday 31 March 2009 23:11:21 Eric Skogen wrote: >>> >>> twitterpated with #supercollider overload? >>> jonesin' for a 140-char-max fix in your ear? >>> >>> fret not! >>> >>> and execute: >>> >>> >>> >>> ( >>> var p, a, l, d, doc; >>> p = Pipe.new( >>> "curl http://search.twitter.com/search.atom?q=%23supercollider+play", >>> "r" >>> ); >>> a = ""; >>> l = p.getLine; >>> while({l.notNil}, {a = a + l; l = p.getLine; }); >>> p.close; >>> >>> d = DOMDocument.new; >>> d.parseXML(a); >>> t = d.getElementsByTagName("entry").collect { |e| >>> >>> "// by " + e.getElementsByTagName("author").first >>> .getElementsByTagName("name").first.getText() + ":\n" + >>> >>> e.getElementsByTagName("title").first.getText() >>> >>> }; >>> >>> Document(string:"// #supercollider tweets\n\n\n" + >>> t.join("\n\n\n\n")).syntaxColorize; >>> ) >>> >>> >>> >>> THE CAVEAT SLIDE >>> a slight delay is to be expected, to await the gathering of twitters' >>> reply. (do not be alarmed. all part of the show, my friends) >>> oh and yeah you'll need the XML Quark >>> (http://quarks.svn.sourceforge.net/viewvc/quarks/XML/) >>> and it only works if you can run Pipe (sorry, PC ... ceci n'est pas une >>> pipe) >>> >>> enjoy >>> e -- SaRiGaMa's Oil Vending Orchestra is podcasting: http://sarigama.namaste.jp/podcast/rss.xml and supplying oil.py for free: http://oilpy.blogspot.com/ _______________________________________________ sc-users mailing list info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml archive: http://www.listarc.bham.ac.uk/marchives/sc-users/ search: http://www.listarc.bham.ac.uk/lists/sc-users/search/ |
|
|
Re: sctwittthor wrote:
> That is, if Eirik is happy with it. sure :) feel free to use that script however you like. you do need the XML classes to run it though, so it maybe won't work "out-of-the-box" as an example. e _______________________________________________ sc-users mailing list info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml archive: http://www.listarc.bham.ac.uk/marchives/sc-users/ search: http://www.listarc.bham.ac.uk/lists/sc-users/search/ |
|
|
Re: sctwittOn Sunday 05 April 2009 22:57:02 Eric Skogen wrote:
> thor wrote: > > That is, if Eirik is happy with it. > > sure :) feel free to use that script however you like. > you do need the XML classes to run it though, so it maybe won't work > "out-of-the-box" as an example. I'll add the Quarks.install line :) (and probably give the document that is created a tiltle too). sincerely, Marije _______________________________________________ sc-users mailing list info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml archive: http://www.listarc.bham.ac.uk/marchives/sc-users/ search: http://www.listarc.bham.ac.uk/lists/sc-users/search/ |
|
|
Re: sctwittThis is great.
I just posted one on http://twitter.com/themonkeyfist one thought though: if this is going to be added to the main distro then how about searching for just 'play{' OR '}.play' instead of '#supercollider'. Them's an awful lot of characters that could be used for sctwitting. I'm pretty sure that there won't be too many non-sc posts containing 'play{' OR '}.play' -mgc
|
|
|
Re: sctwittYeah that would be better but it seems that the twitter search engine
does not recognize curly brackets and dots in search queries, so searching for either of them returns random results with the word "play" in them. I haven't yet had the luxury of using #supercollider in my codes, all of them so far are barely 140 characters. This concept is quite addictive, having seemingly stupid limitations makes you addictive and feel creative. :) Btw twitter is experiencing difficulties for quite a few days and tweets are disappearing at random. I've also been a victim of this, but they say they will re-appear back eventually. Missing some code already. Anyway... B.B. On Apr 8, 2009, at 4:22 AM, Michael G. Cox wrote: > > This is great. > I just posted one on > http://twitter.com/themonkeyfist > > one thought though: > if this is going to be added to the main distro then > how about searching for just 'play{' OR '}.play' > instead of '#supercollider'. Them's an awful lot of characters > that could be used for sctwitting. I'm pretty sure that there > won't be too many non-sc posts containing 'play{' OR '}.play' > > -mgc > > > twitterpated with #supercollider overload? > jonesin' for a 140-char-max fix in your ear? > > > -- > View this message in context: http://www.nabble.com/sctwitt-tp22745438p22941914.html > Sent from the Supercollider - User mailing list archive at Nabble.com. > > > _______________________________________________ > sc-users mailing list > > info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml > archive: http://www.listarc.bham.ac.uk/marchives/sc-users/ > search: http://www.listarc.bham.ac.uk/lists/sc-users/search/ _______________________________________________ sc-users mailing list info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml archive: http://www.listarc.bham.ac.uk/marchives/sc-users/ search: http://www.listarc.bham.ac.uk/lists/sc-users/search/ |
|
|
Re: sctwittI thought that might be the case. I'll have to start gutting my code.
It is a great exercise being forced to choose between what to leave in and what is disposable. I think those sort of artistic decisions are often lost on the computer music composer whose options are limitless. It forces you to isolate the root of your expression in the most succinct manner possible. As for the missing characters in random tweets, I noticed that if you copy and paste from the page onto an sc document, all the character's seem to be intact; no idea how that would happen. -mgc On Apr 7, 2009, at 8:39 PM, Batuhan Bozkurt wrote: > Yeah that would be better but it seems that the twitter search > engine does not recognize curly brackets and dots in search queries, > so searching for either of them returns random results with the word > "play" in them. I haven't yet had the luxury of using #supercollider > in my codes, all of them so far are barely 140 characters. This > concept is quite addictive, having seemingly stupid limitations > makes you addictive and feel creative. :) > > Btw twitter is experiencing difficulties for quite a few days and > tweets are disappearing at random. I've also been a victim of this, > but they say they will re-appear back eventually. Missing some code > already. Anyway... > > B.B. > > > > On Apr 8, 2009, at 4:22 AM, Michael G. Cox wrote: > >> >> This is great. >> I just posted one on >> http://twitter.com/themonkeyfist >> >> one thought though: >> if this is going to be added to the main distro then >> how about searching for just 'play{' OR '}.play' >> instead of '#supercollider'. Them's an awful lot of characters >> that could be used for sctwitting. I'm pretty sure that there >> won't be too many non-sc posts containing 'play{' OR '}.play' >> >> -mgc >> >> >> twitterpated with #supercollider overload? >> jonesin' for a 140-char-max fix in your ear? >> >> >> -- >> View this message in context: http://www.nabble.com/sctwitt-tp22745438p22941914.html >> Sent from the Supercollider - User mailing list archive at >> Nabble.com. >> >> >> _______________________________________________ >> sc-users mailing list >> >> info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml >> archive: http://www.listarc.bham.ac.uk/marchives/sc-users/ >> search: http://www.listarc.bham.ac.uk/lists/sc-users/search/ > > > _______________________________________________ > sc-users mailing list > > info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml > archive: http://www.listarc.bham.ac.uk/marchives/sc-users/ > search: http://www.listarc.bham.ac.uk/lists/sc-users/search/ _______________________________________________ sc-users mailing list info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml archive: http://www.listarc.bham.ac.uk/marchives/sc-users/ search: http://www.listarc.bham.ac.uk/lists/sc-users/search/ |
|
|
Re: sctwittOn Apr 8, 2009, at 5:00 AM, Michael Cox wrote: > I thought that might be the case. I'll have to start gutting my code. > It is a great exercise being forced to choose between what to leave > in and what is disposable. > I think those sort of artistic decisions are often lost on the > computer music composer whose options > are limitless. It forces you to isolate the root of your expression > in the most succinct manner possible. Yeah exactly. It's a well known but little practised fact. :) > > > As for the missing characters in random tweets, I noticed that if > you copy and paste from the page > onto an sc document, all the character's seem to be intact; no idea > how that would happen. > And yes, but I was talking about missing tweets, I mean the posts you make disappear completely as if you hadn't written them at all. Seems they've experienced some problems, and are waiting for the database to catch up, so some stuff is a little off. Best, B.B. > -mgc > > On Apr 7, 2009, at 8:39 PM, Batuhan Bozkurt wrote: > >> Yeah that would be better but it seems that the twitter search >> engine does not recognize curly brackets and dots in search >> queries, so searching for either of them returns random results >> with the word "play" in them. I haven't yet had the luxury of using >> #supercollider in my codes, all of them so far are barely 140 >> characters. This concept is quite addictive, having seemingly >> stupid limitations makes you addictive and feel creative. :) >> >> Btw twitter is experiencing difficulties for quite a few days and >> tweets are disappearing at random. I've also been a victim of this, >> but they say they will re-appear back eventually. Missing some code >> already. Anyway... >> >> B.B. >> >> >> >> On Apr 8, 2009, at 4:22 AM, Michael G. Cox wrote: >> >>> >>> This is great. >>> I just posted one on >>> http://twitter.com/themonkeyfist >>> >>> one thought though: >>> if this is going to be added to the main distro then >>> how about searching for just 'play{' OR '}.play' >>> instead of '#supercollider'. Them's an awful lot of characters >>> that could be used for sctwitting. I'm pretty sure that there >>> won't be too many non-sc posts containing 'play{' OR '}.play' >>> >>> -mgc >>> >>> >>> twitterpated with #supercollider overload? >>> jonesin' for a 140-char-max fix in your ear? >>> >>> >>> -- >>> View this message in context: http://www.nabble.com/sctwitt-tp22745438p22941914.html >>> Sent from the Supercollider - User mailing list archive at >>> Nabble.com. >>> >>> >>> _______________________________________________ >>> sc-users mailing list >>> >>> info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml >>> archive: http://www.listarc.bham.ac.uk/marchives/sc-users/ >>> search: http://www.listarc.bham.ac.uk/lists/sc-users/search/ >> >> >> _______________________________________________ >> sc-users mailing list >> >> info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml >> archive: http://www.listarc.bham.ac.uk/marchives/sc-users/ >> search: http://www.listarc.bham.ac.uk/lists/sc-users/search/ > > > _______________________________________________ > sc-users mailing list > > info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml > archive: http://www.listarc.bham.ac.uk/marchives/sc-users/ > search: http://www.listarc.bham.ac.uk/lists/sc-users/search/ _______________________________________________ sc-users mailing list info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml archive: http://www.listarc.bham.ac.uk/marchives/sc-users/ search: http://www.listarc.bham.ac.uk/lists/sc-users/search/ |
|
|
Re: sctwittI used yahoo pipes to create a feed of SC tweets. It's at http://pipes.yahoo.com/pipes/pipe.info?_id=7aaebaf85a767b15c1143e602c4c2a5b
Or, if you just want the latest such tweet: http://pipes.yahoo.com/pipes/pipe.info?_id=sqg4I0kl3hGkoIu9dPQQIA There's a bit of logic there to try to keep out evil code and it also tracks a few scwitterers, so will return some results not tagged with supercollider. Relatedly, I'm having trouble with DOMDocument. I curl the second yahoo pipe's RSS feed into /tmp/rss.xml and then run: d = DOMDocument.new("/tmp/rss.xml"); d.read(File.new("/tmp/rss.xml", "r")); e = d.getElementsByTagName("title"); e.last.getText The RSS file contains the line: <title>Ndef(&#92;x, { ring1(SinOsc.ar(234*XLine.kr(0.1,1,5)+LFNoise2.kr(2!2, 5)),DelayC.ar(Ndef(&#92;x).ar.reverse,0.03,0.02+(Ndef(&#92;x).ar*0.001)))}).play;</title> But what I get from e.last.getText is: Ndef(\x, { ring1(SinOsc.ar(234*XLine.kr(0.1,1,5)+LFNoise2.kr(2!2, 5)),DelayC.ar(Ndef(nilx, { ring1(SinOsc.ar(234*XLine.kr(0.1,1,5)+LFNoise2.kr(2!2, 5)),DelayC.ar(Ndef(\x).ar.reverse,0.03,0.02+(Ndef(nilx).ar.reverse,0.03,0.02+(Ndef(\x).ar*0.001)))}).play; If you look carefully, you'll note that at the second Ndef it repeats from the start and stutters again at the third one. Is this a bug or a user error? cheers, Les -- Mr. Céleste Hutchins http://www.berkeleynoise.com/celesteh/podcast/ 2430 5th St Ste N Berkeley, CA 94710 USA 9 Matilda House St Katharine's Way London E1W 1LQ United Kingdom Commission music (cheap!): http://celesteh.etsy.com |
| < Prev | 1 - 2 | Next > |
| Free embeddable forum powered by Nabble | Forum Help |