NewSchoolScience Posted July 31, 2010 Report Share Posted July 31, 2010 lol Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Link to comment https://forum.watmm.com/topic/57785-what-exactly-is-repeated-three-times-in-tri-repetae/page/3/#findComment-1384014 Share on other sites More sharing options...
Root5 Posted July 31, 2010 Report Share Posted July 31, 2010 lol Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Hide Root5's signature Hide all signatures WATMM Christmas Albums: 2011 2012 2013 2014MOST IDM Tribute Albums: Incomplete Skyscrapers Rogue Planet Mycorhizae Olympus Mons HeadphonesOther Compilation Albums: Heading for Outer Space Link to comment https://forum.watmm.com/topic/57785-what-exactly-is-repeated-three-times-in-tri-repetae/page/3/#findComment-1384021 Share on other sites More sharing options...
AJW Posted July 31, 2010 Report Share Posted July 31, 2010 On 7/31/2010 at 6:37 AM, Mesh Gear Fox said: AT EVERYTHING ITT except the stuff i posted ..bullshit bullshit bullshit...my line...bullshit bullshit.... Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Hide AJW's signature Hide all signatures foods in the tone of 'go to the fuckin store' patayda chips apple cracker thangies carrots in brown paper bag Link to comment https://forum.watmm.com/topic/57785-what-exactly-is-repeated-three-times-in-tri-repetae/page/3/#findComment-1384039 Share on other sites More sharing options...
Capsaicin Posted July 31, 2010 Report Share Posted July 31, 2010 FUCK Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Link to comment https://forum.watmm.com/topic/57785-what-exactly-is-repeated-three-times-in-tri-repetae/page/3/#findComment-1384104 Share on other sites More sharing options...
splesh Posted August 1, 2010 Author Report Share Posted August 1, 2010 FUCK Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Link to comment https://forum.watmm.com/topic/57785-what-exactly-is-repeated-three-times-in-tri-repetae/page/3/#findComment-1384544 Share on other sites More sharing options...
Guest disoriental express Posted August 6, 2010 Report Share Posted August 6, 2010 FUCK Quote Link to comment https://forum.watmm.com/topic/57785-what-exactly-is-repeated-three-times-in-tri-repetae/page/3/#findComment-1388644 Share on other sites More sharing options...
Bob Dylan Posted August 7, 2010 Report Share Posted August 7, 2010 void tri(int T[], in N) { int i,j,temp; for(i=N-1; i>0 ; i--) for(j=1;j<=i;j++) { if(T[j-1]>T[j]) { temp=T[j-1]; T[j-1]=T[j]; T[j]=temp; } } } Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Hide Bob Dylan's signature Hide all signatures *** This announcement is brought to you by the Shimago-Dominguez Corporation *** helping America into the New World... Link to comment https://forum.watmm.com/topic/57785-what-exactly-is-repeated-three-times-in-tri-repetae/page/3/#findComment-1388800 Share on other sites More sharing options...
Capsaicin Posted August 7, 2010 Report Share Posted August 7, 2010 void tri(int T[], in N) { int i,j,temp; for(i=N-1; i>0 ; i--) for(j=1;j<=i;j++) { if(T[j-1]>T[j]) { temp=T[j-1]; T[j-1]=T[j]; T[j]=temp; } } } Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Link to comment https://forum.watmm.com/topic/57785-what-exactly-is-repeated-three-times-in-tri-repetae/page/3/#findComment-1388833 Share on other sites More sharing options...
xyrofen Posted August 7, 2010 Report Share Posted August 7, 2010 void tri(int T[], in N) { int i,j,temp; for(i=N-1; i>0 ; i--) for(j=1;j<=i;j++) { if(T[j-1]>T[j]) { temp=T[j-1]; T[j-1]=T[j]; T[j]=temp; } } } Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Link to comment https://forum.watmm.com/topic/57785-what-exactly-is-repeated-three-times-in-tri-repetae/page/3/#findComment-1388846 Share on other sites More sharing options...
Guest Calx Sherbet Posted August 7, 2010 Report Share Posted August 7, 2010 Quote Link to comment https://forum.watmm.com/topic/57785-what-exactly-is-repeated-three-times-in-tri-repetae/page/3/#findComment-1388860 Share on other sites More sharing options...
Candiru Posted August 7, 2010 Report Share Posted August 7, 2010 What's repeated three times in Tri Repetae? An oragasm for each track... DUH! Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Link to comment https://forum.watmm.com/topic/57785-what-exactly-is-repeated-three-times-in-tri-repetae/page/3/#findComment-1388890 Share on other sites More sharing options...
Bob Dylan Posted August 8, 2010 Report Share Posted August 8, 2010 It's not Tri as in 3 times, it's Tri as in, to sort, from the verb trier. In C programming, in french, a tri répété is one example of the sort (Bubble Sort iirc) The ++ is a pun on the C++ programming. void tri(int T[], in N) { int i,j,temp; for(i=N-1; i>0 ; i--) for(j=1;j<=i;j++) { if(T[j-1]>T[j]) { temp=T[j-1]; T[j-1]=T[j]; T[j]=temp; } } } That's a tri répété iirc (haven't done C programming in decades) Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Hide Bob Dylan's signature Hide all signatures *** This announcement is brought to you by the Shimago-Dominguez Corporation *** helping America into the New World... Link to comment https://forum.watmm.com/topic/57785-what-exactly-is-repeated-three-times-in-tri-repetae/page/3/#findComment-1389655 Share on other sites More sharing options...
kaini Posted August 8, 2010 Report Share Posted August 8, 2010 On 8/8/2010 at 8:28 PM, Philip Glass said: It's not Tri as in 3 times, it's Tri as in, to sort, from the verb trier. In C programming, in french, a tri répété is one example of the sort (Bubble Sort iirc) The ++ is a pun on the C++ programming. void tri(int T[], in N) { int i,j,temp; for(i=N-1; i>0 ; i--) for(j=1;j<=i;j++) { if(T[j-1]>T[j]) { temp=T[j-1]; T[j-1]=T[j]; T[j]=temp; } } } That's a tri répété iirc (haven't done C programming in decades) that's a bubble sort, dunno what they call it in your crazy moon language Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Hide kaini's signature Hide all signatures On 5/7/2013 at 11:06 PM, ambermonk said: I know IDM can be extreme On 6/3/2017 at 11:50 PM, ladalaika said: this sounds like an airplane landing on a minefield Link to comment https://forum.watmm.com/topic/57785-what-exactly-is-repeated-three-times-in-tri-repetae/page/3/#findComment-1389661 Share on other sites More sharing options...
Soloman Tump Posted November 2, 2011 Report Share Posted November 2, 2011 So a bump on this crazy thread. Been listening to this album a lot lately as the CD found its way into my car. It really is amazingly deep considering how few basic components there are in most of the tracks. And to be honest, I dont know what is repeated 3 times. Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Hide Soloman Tump's signature Hide all signatures https://intrusivesignals.blogspot.com/ Link to comment https://forum.watmm.com/topic/57785-what-exactly-is-repeated-three-times-in-tri-repetae/page/3/#findComment-1684934 Share on other sites More sharing options...
acid1 Posted November 2, 2011 Report Share Posted November 2, 2011 Was it my imagination, or didn't someone find a correlation between every Autechre album and the number of album it was.. examples: LP5 - fifth album Moves of 10 - 10th album Tri Repetae - 3rd album Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Link to comment https://forum.watmm.com/topic/57785-what-exactly-is-repeated-three-times-in-tri-repetae/page/3/#findComment-1684991 Share on other sites More sharing options...
Ivy Zemura yvI oo ii oo Posted November 2, 2011 Report Share Posted November 2, 2011 I tried repetaeing 3 times then I turned on Draft Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Link to comment https://forum.watmm.com/topic/57785-what-exactly-is-repeated-three-times-in-tri-repetae/page/3/#findComment-1685013 Share on other sites More sharing options...
Soloman Tump Posted November 3, 2011 Report Share Posted November 3, 2011 acid1, i started writing the exact same thing, but couldnt make them all work. Move of ten is not an album for a start. Amber doesnt really fit either. Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Hide Soloman Tump's signature Hide all signatures https://intrusivesignals.blogspot.com/ Link to comment https://forum.watmm.com/topic/57785-what-exactly-is-repeated-three-times-in-tri-repetae/page/3/#findComment-1685355 Share on other sites More sharing options...
TwiddleBot Posted December 1, 2011 Report Share Posted December 1, 2011 Posting on the third page of this thread. Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Hide TwiddleBot's signature Hide all signatures Link to comment https://forum.watmm.com/topic/57785-what-exactly-is-repeated-three-times-in-tri-repetae/page/3/#findComment-1703585 Share on other sites More sharing options...
Mellow U Posted December 2, 2011 Report Share Posted December 2, 2011 On 12/1/2011 at 8:12 PM, TwiddleBot said: Posting on the third page of this thread. Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Hide Mellow U's signature Hide all signatures On 12/3/2011 at 11:42 PM, 'Enter a new display name' said: inb4 Mellow U complaining Milieu Music Listening-techno, bedroom ambient and organic electronic music for the discerning consumer. Recycled Plastics : Bedroom music for electric adults! Psøma Psi Phi : 000BPM sleep fictions for intimate applications. >>> THE STONE IN FOCUS SUBFORUM IS HERE <<< Link to comment https://forum.watmm.com/topic/57785-what-exactly-is-repeated-three-times-in-tri-repetae/page/3/#findComment-1704003 Share on other sites More sharing options...
six Posted December 2, 2011 Report Share Posted December 2, 2011 On 12/1/2011 at 8:12 PM, TwiddleBot said: Posting on the third page of this thread. Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Hide six's signature Hide all signatures Smash TV Youtube Sparkle Motion mixes on Mixcloud Link to comment https://forum.watmm.com/topic/57785-what-exactly-is-repeated-three-times-in-tri-repetae/page/3/#findComment-1704105 Share on other sites More sharing options...
goDel Posted December 2, 2011 Report Share Posted December 2, 2011 On 12/1/2011 at 8:12 PM, TwiddleBot said: Posting on the third page of this thread. Third quote Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Link to comment https://forum.watmm.com/topic/57785-what-exactly-is-repeated-three-times-in-tri-repetae/page/3/#findComment-1704117 Share on other sites More sharing options...
xyrofen Posted December 3, 2011 Report Share Posted December 3, 2011 I missed this thread. Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Link to comment https://forum.watmm.com/topic/57785-what-exactly-is-repeated-three-times-in-tri-repetae/page/3/#findComment-1704536 Share on other sites More sharing options...
Guest never the machine forever Posted December 4, 2011 Report Share Posted December 4, 2011 http://en.wikipedia.org/wiki/Autechre#Titles_and_artwork is satisfactory for me. Quote Link to comment https://forum.watmm.com/topic/57785-what-exactly-is-repeated-three-times-in-tri-repetae/page/3/#findComment-1705276 Share on other sites More sharing options...
YO303 Posted December 5, 2011 Report Share Posted December 5, 2011 (edited) When they first started Autechre there were 3 band members (Sean,Rob and a guy named Josh) .. Josh left Autechre right before Lego Feet was released. When Autecre (now as Rob and Sean) started recording Tri Repetae they found a box in Rob's attic full of DATs labeled "Josh"...it was Josh's recordings from when they first started Autechre. They used those DATs in Tri Repetae. So Tri Repetae means TRIo Repeats (again) Edited December 5, 2011 by YO303 Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Link to comment https://forum.watmm.com/topic/57785-what-exactly-is-repeated-three-times-in-tri-repetae/page/3/#findComment-1705299 Share on other sites More sharing options...
BUNKUM Posted December 5, 2011 Report Share Posted December 5, 2011 I just love the vivid imaginations of you guys. Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Hide BUNKUM's signature Hide all signatures Grid Pattern Last.fm Discogs Link to comment https://forum.watmm.com/topic/57785-what-exactly-is-repeated-three-times-in-tri-repetae/page/3/#findComment-1705524 Share on other sites More sharing options...
Recommended Posts