newcleardawn.com update...
Moderators: Aesthetics, Drones, Hexagon Sun
Re: newcleardawn.com update...
Its a cat walking across keys. Or random text. I want to say that I believe that, before I say this.
You *could* split it up as '27' + 27charactersofencodedtext + 1character(checksum?)
You *could* split it up as '27' + 27charactersofencodedtext + 1character(checksum?)
-
ShaneAnthony
- Eagle Minded
- Posts: 362
- Joined: Tue Feb 04, 2014 1:24 am
Re: newcleardawn.com update...
Ha! What has BOC done to folks? Too funny!
-
ShaneAnthony
- Eagle Minded
- Posts: 362
- Joined: Tue Feb 04, 2014 1:24 am
Re: newcleardawn.com update...
I bet all of you anything, they are laughing their asses off behind the scenes;-)
-
Najlepsiejszy
- Sherbet Head
- Posts: 549
- Joined: Sun Sep 15, 2013 1:06 pm
Re: newcleardawn.com update...
We're just killing time here, but OK
-
ShaneAnthony
- Eagle Minded
- Posts: 362
- Joined: Tue Feb 04, 2014 1:24 am
Re: newcleardawn.com update...
I know man. I am just thinking about what Mexi said earlier, and I am curious just like everyone else if something was missed. Quick question? Did this ever lead to anything https://twitter.com/marcuseoin ???
Re: newcleardawn.com update...
I would be very amused if they came out and said "yea we made that site to fuck with you guys" 
even though, as stated above, mdg has told us it means nothing (but mdg can be shifty sometimes
)
even though, as stated above, mdg has told us it means nothing (but mdg can be shifty sometimes
"We're just a band. Not an IDM band, not an electronic band, and not a dance band."
"An imaginary road trip in a rusty pick-up heading west through the brain"
"An imaginary road trip in a rusty pick-up heading west through the brain"
Re: newcleardawn.com update...
That was an encrypted message saying "super-8 and pizza at my place tomorrow. Bring dip."shaneanthonysounds wrote: Did this ever lead to anything https://twitter.com/marcuseoin ???
Its the same kind of string btw, except with the email adres obviously converted to lower-case, which would make it even more impossible to solve.
Throw away your smartphone.
-
ShaneAnthony
- Eagle Minded
- Posts: 362
- Joined: Tue Feb 04, 2014 1:24 am
Re: newcleardawn.com update...
I find this interesting 27kcgxxynwhxi3yxd0hydy6yetpe5v@hexagonsun.com because there is only 6 numbers within the actual e-mail address.
I also find it interesting that the pic Cupz posted here has a 6 digit code of 100606.
http://www.twoism.org/forum/viewtopic.p ... w=previous
Strange...
I also find it interesting that the pic Cupz posted here has a 6 digit code of 100606.
http://www.twoism.org/forum/viewtopic.p ... w=previous
Strange...
-
ShaneAnthony
- Eagle Minded
- Posts: 362
- Joined: Tue Feb 04, 2014 1:24 am
Re: newcleardawn.com update...
Also, this website http://marcussandison.com/ is linked with the e-mail 27kcgxxynwhxi3yxd0hydy6yetpe5v@hexagonsun.com, however it doesn't redirect like most of the others. Marcus Sandison?
-
ShaneAnthony
- Eagle Minded
- Posts: 362
- Joined: Tue Feb 04, 2014 1:24 am
Re: newcleardawn.com update...
Does this mean anything anyone?
var MWEmbeds={scindex:0,sc_regex:/\[soundcloud ([0-9a-z&;=_%":.\/\s]+)\]/gi,sc_regex_legacy:/(\[s\])(https?:\/)((?:\/[\w\.\-\s]+)+)(\[\/s\])/gi,bc_regex:/\[bandcamp ([0-9a-z\=\s\%]+)\]/g,bc_regex_legacy_albums:/\[bcalbum\]([0-9]+)\[\/bcalbum\]/g,bc_regex_legacy_tracks:/\[bctrack\]([0-9]+)\[\/bctrack\]/g,init:function(){var self=this;self.buttons();$('span.postbody').each(function(){var posthtml=$(this).html();posthtml=self.soundcloud(posthtml);posthtml=self.bandcamp(posthtml);$(this)[0].innerHTML=posthtml;});},soundcloud:function(posthtml){var self=this;var embeds=[];var matches=posthtml.match(self.sc_regex)||[];var matches_legacy=posthtml.match(self.sc_regex_legacy)||[];matches=matches.concat(matches_legacy);$.each(matches,function(i,match){var url=false;if(match.indexOf('=')>-1){var params=self.shortcode(match);url=params.url;}
else{url=self.shortcode(match);}
if(url){embeds.push({url:url,replace:match});}});$.each(embeds,function(i,embed){var id='scholder-'+ self.scindex;var html='<div id="'+ id+'" class="soundcloud pending">Loading Soundcloud...</div>';posthtml=posthtml.replace(embed.replace,html);self.scindex++;$.ajax({url:'//soundcloud.com/oembed?maxheight=166',dataType:'jsonp',data:{format:'js',url:embed.url},success:function(response){response.html=response.html.replace('visual=true','visual=false');$('#'+ id).removeClass('pending').html(response.html);}});});return posthtml;},bandcamp:function(posthtml){var self=this;var embeds=[];var matches=posthtml.match(self.bc_regex)||[];var matches_legacy_albums=posthtml.match(self.bc_regex_legacy_albums)||[];var matches_legacy_tracks=posthtml.match(self.bc_regex_legacy_tracks)||[];matches=matches.concat(matches_legacy_albums,matches_legacy_tracks);$.each(matches,function(i,match){var album=track=false;if(match.indexOf('=')>-1){var params=self.shortcode(match);var album=params.album,track=params.track;}
else{var id=self.shortcode(match);var album=track=null;if(match.indexOf('album')>-1){album=id;}
else{track=id;}}
embeds.push({album:album,track:track,replace:match});});$.each(embeds,function(i,embed){if(embed.album){var url='//bandcamp.com/EmbeddedPlayer/album='+ embed.album+'/size=medium';}
else{var url='//bandcamp.com/EmbeddedPlayer/track='+ embed.track+'/size=medium';}
var html='<div class="bandcamp"><iframe style="border:0;width:100%;height:120px;" src="'+ url+'" seamless></iframe></div>';posthtml=posthtml.replace(embed.replace,html);});return posthtml;},shortcode:function(string){if(string.indexOf('=')>-1){var parts={};var split=string.replace(']','').split(' ');for(var s=1;s<split.length;s++){var key=split.substr(0,split.indexOf('='));var val=split.substr(split.indexOf('=')+ 1).replace(/\"/g,'');parts[key]=val;}
return parts;}
else{var s=string.indexOf(']')+ 1;return string.substr(s,string.indexOf('[',s)- s);}},buttons:function(){$('input[type="button"]').each(function(i,button){if($(this).val()=='Soundcloud'){$(this)[0].onclick=null;$(this).on('click',function(){alert('1) Click the Share link on your Soundcloud track'+'\n'
+'2) Copy the Wordpress code and paste it into your post.'+'\n\n'
+'Alternatively, you may use the old BBcode - ');});$('<input type="button" value="Bandcamp" />').on('click',function(){alert('1) Click the Share/Embed link on your Bandcamp album or track'+'\n'
+'2) Select any layout, and then wordpress.com (below the embed code textbox)'+'\n'
+'3) Copy the embed code and paste it into your post.');}).appendTo($(this).parent());}});}};$(document).ready(function(){MWEmbeds.init();});
var MWEmbeds={scindex:0,sc_regex:/\[soundcloud ([0-9a-z&;=_%":.\/\s]+)\]/gi,sc_regex_legacy:/(\[s\])(https?:\/)((?:\/[\w\.\-\s]+)+)(\[\/s\])/gi,bc_regex:/\[bandcamp ([0-9a-z\=\s\%]+)\]/g,bc_regex_legacy_albums:/\[bcalbum\]([0-9]+)\[\/bcalbum\]/g,bc_regex_legacy_tracks:/\[bctrack\]([0-9]+)\[\/bctrack\]/g,init:function(){var self=this;self.buttons();$('span.postbody').each(function(){var posthtml=$(this).html();posthtml=self.soundcloud(posthtml);posthtml=self.bandcamp(posthtml);$(this)[0].innerHTML=posthtml;});},soundcloud:function(posthtml){var self=this;var embeds=[];var matches=posthtml.match(self.sc_regex)||[];var matches_legacy=posthtml.match(self.sc_regex_legacy)||[];matches=matches.concat(matches_legacy);$.each(matches,function(i,match){var url=false;if(match.indexOf('=')>-1){var params=self.shortcode(match);url=params.url;}
else{url=self.shortcode(match);}
if(url){embeds.push({url:url,replace:match});}});$.each(embeds,function(i,embed){var id='scholder-'+ self.scindex;var html='<div id="'+ id+'" class="soundcloud pending">Loading Soundcloud...</div>';posthtml=posthtml.replace(embed.replace,html);self.scindex++;$.ajax({url:'//soundcloud.com/oembed?maxheight=166',dataType:'jsonp',data:{format:'js',url:embed.url},success:function(response){response.html=response.html.replace('visual=true','visual=false');$('#'+ id).removeClass('pending').html(response.html);}});});return posthtml;},bandcamp:function(posthtml){var self=this;var embeds=[];var matches=posthtml.match(self.bc_regex)||[];var matches_legacy_albums=posthtml.match(self.bc_regex_legacy_albums)||[];var matches_legacy_tracks=posthtml.match(self.bc_regex_legacy_tracks)||[];matches=matches.concat(matches_legacy_albums,matches_legacy_tracks);$.each(matches,function(i,match){var album=track=false;if(match.indexOf('=')>-1){var params=self.shortcode(match);var album=params.album,track=params.track;}
else{var id=self.shortcode(match);var album=track=null;if(match.indexOf('album')>-1){album=id;}
else{track=id;}}
embeds.push({album:album,track:track,replace:match});});$.each(embeds,function(i,embed){if(embed.album){var url='//bandcamp.com/EmbeddedPlayer/album='+ embed.album+'/size=medium';}
else{var url='//bandcamp.com/EmbeddedPlayer/track='+ embed.track+'/size=medium';}
var html='<div class="bandcamp"><iframe style="border:0;width:100%;height:120px;" src="'+ url+'" seamless></iframe></div>';posthtml=posthtml.replace(embed.replace,html);});return posthtml;},shortcode:function(string){if(string.indexOf('=')>-1){var parts={};var split=string.replace(']','').split(' ');for(var s=1;s<split.length;s++){var key=split.substr(0,split.indexOf('='));var val=split.substr(split.indexOf('=')+ 1).replace(/\"/g,'');parts[key]=val;}
return parts;}
else{var s=string.indexOf(']')+ 1;return string.substr(s,string.indexOf('[',s)- s);}},buttons:function(){$('input[type="button"]').each(function(i,button){if($(this).val()=='Soundcloud'){$(this)[0].onclick=null;$(this).on('click',function(){alert('1) Click the Share link on your Soundcloud track'+'\n'
+'2) Copy the Wordpress code and paste it into your post.'+'\n\n'
+'Alternatively, you may use the old BBcode - ');});$('<input type="button" value="Bandcamp" />').on('click',function(){alert('1) Click the Share/Embed link on your Bandcamp album or track'+'\n'
+'2) Select any layout, and then wordpress.com (below the embed code textbox)'+'\n'
+'3) Copy the embed code and paste it into your post.');}).appendTo($(this).parent());}});}};$(document).ready(function(){MWEmbeds.init();});
-
ShaneAnthony
- Eagle Minded
- Posts: 362
- Joined: Tue Feb 04, 2014 1:24 am
-
ShaneAnthony
- Eagle Minded
- Posts: 362
- Joined: Tue Feb 04, 2014 1:24 am
Re: newcleardawn.com update...
MDG/BOC what's with New Clear Dawn? Come on guys, I am obviously losing my mind, ha! EP? Live? Boxset? Anything?shaneanthonysounds wrote:https://www.muffwiggler.com/forum/mw_embeds.jquery.js
-
ShaneAnthony
- Eagle Minded
- Posts: 362
- Joined: Tue Feb 04, 2014 1:24 am
Re: newcleardawn.com update...
Mr. Mexi, half the people I talk to say NCD isn't related to BOC, and I've also read through here that MDG debunked it previously. This shit is confusing as fuck dude. Where are you leaning on this one? Is this all just a bunch of BS you think we should stop reading into? When did MDG say it wasn't BOC related?Mexicola wrote:Not calling this either way, but if this turns out to be in any way BOCset, or old tunes related then this has to go down as one of the longest embedded sleeper-promos ever, surely? Watching with interest...
Re: newcleardawn.com update...
shaneanthonysounds wrote:Does this mean anything anyone?
var MWEmbeds={scindex:0,sc_regex:/\[soundcloud ([0-9a-z&;=_%":.\/\s]+)\]/gi,sc_regex_legacy:/(\[s\])(https?:\/)((?:\/[\w\.\-\s]+)+)(\[\/s\])/gi,bc_regex:/\[bandcamp ([0-9a-z\=\s\%]+)\]/g,bc_regex_legacy_albums:/\[bcalbum\]([0-9]+)\[\/bcalbum\]/g,bc_regex_legacy_tracks:/\[bctrack\]([0-9]+)\[\/bctrack\]/g,init:function(){var self=this;self.buttons();$('span.postbody').each(function(){var posthtml=$(this).html();posthtml=self.soundcloud(posthtml);posthtml=self.bandcamp(posthtml);$(this)[0].innerHTML=posthtml;});},soundcloud:function(posthtml){var self=this;var embeds=[];var matches=posthtml.match(self.sc_regex)||[];var matches_legacy=posthtml.match(self.sc_regex_legacy)||[];matches=matches.concat(matches_legacy);$.each(matches,function(i,match){var url=false;if(match.indexOf('=')>-1){var params=self.shortcode(match);url=params.url;}
else{url=self.shortcode(match);}
if(url){embeds.push({url:url,replace:match});}});$.each(embeds,function(i,embed){var id='scholder-'+ self.scindex;var html='<div id="'+ id+'" class="soundcloud pending">Loading Soundcloud...</div>';posthtml=posthtml.replace(embed.replace,html);self.scindex++;$.ajax({url:'//soundcloud.com/oembed?maxheight=166',dataType:'jsonp',data:{format:'js',url:embed.url},success:function(response){response.html=response.html.replace('visual=true','visual=false');$('#'+ id).removeClass('pending').html(response.html);}});});return posthtml;},bandcamp:function(posthtml){var self=this;var embeds=[];var matches=posthtml.match(self.bc_regex)||[];var matches_legacy_albums=posthtml.match(self.bc_regex_legacy_albums)||[];var matches_legacy_tracks=posthtml.match(self.bc_regex_legacy_tracks)||[];matches=matches.concat(matches_legacy_albums,matches_legacy_tracks);$.each(matches,function(i,match){var album=track=false;if(match.indexOf('=')>-1){var params=self.shortcode(match);var album=params.album,track=params.track;}
else{var id=self.shortcode(match);var album=track=null;if(match.indexOf('album')>-1){album=id;}
else{track=id;}}
embeds.push({album:album,track:track,replace:match});});$.each(embeds,function(i,embed){if(embed.album){var url='//bandcamp.com/EmbeddedPlayer/album='+ embed.album+'/size=medium';}
else{var url='//bandcamp.com/EmbeddedPlayer/track='+ embed.track+'/size=medium';}
var html='<div class="bandcamp"><iframe style="border:0;width:100%;height:120px;" src="'+ url+'" seamless></iframe></div>';posthtml=posthtml.replace(embed.replace,html);});return posthtml;},shortcode:function(string){if(string.indexOf('=')>-1){var parts={};var split=string.replace(']','').split(' ');for(var s=1;s<split.length;s++){var key=split.substr(0,split.indexOf('='));var val=split.substr(split.indexOf('=')+ 1).replace(/\"/g,'');parts[key]=val;}
return parts;}
else{var s=string.indexOf(']')+ 1;return string.substr(s,string.indexOf('[',s)- s);}},buttons:function(){$('input[type="button"]').each(function(i,button){if($(this).val()=='Soundcloud'){$(this)[0].onclick=null;$(this).on('click',function(){alert('1) Click the Share link on your Soundcloud track'+'\n'
+'2) Copy the Wordpress code and paste it into your post.'+'\n\n'
+'Alternatively, you may use the old BBcode - ');});$('<input type="button" value="Bandcamp" />').on('click',function(){alert('1) Click the Share/Embed link on your Bandcamp album or track'+'\n'
+'2) Select any layout, and then wordpress.com (below the embed code textbox)'+'\n'
+'3) Copy the embed code and paste it into your post.');}).appendTo($(this).parent());}});}};$(document).ready(function(){MWEmbeds.init();});
LOL, this is just a bunch of javascript.
-
ShaneAnthony
- Eagle Minded
- Posts: 362
- Joined: Tue Feb 04, 2014 1:24 am
Re: newcleardawn.com update...
aoc wrote:shaneanthonysounds wrote:Does this mean anything anyone?
var MWEmbeds={scindex:0,sc_regex:/\[soundcloud ([0-9a-z&;=_%":.\/\s]+)\]/gi,sc_regex_legacy:/(\[s\])(https?:\/)((?:\/[\w\.\-\s]+)+)(\[\/s\])/gi,bc_regex:/\[bandcamp ([0-9a-z\=\s\%]+)\]/g,bc_regex_legacy_albums:/\[bcalbum\]([0-9]+)\[\/bcalbum\]/g,bc_regex_legacy_tracks:/\[bctrack\]([0-9]+)\[\/bctrack\]/g,init:function(){var self=this;self.buttons();$('span.postbody').each(function(){var posthtml=$(this).html();posthtml=self.soundcloud(posthtml);posthtml=self.bandcamp(posthtml);$(this)[0].innerHTML=posthtml;});},soundcloud:function(posthtml){var self=this;var embeds=[];var matches=posthtml.match(self.sc_regex)||[];var matches_legacy=posthtml.match(self.sc_regex_legacy)||[];matches=matches.concat(matches_legacy);$.each(matches,function(i,match){var url=false;if(match.indexOf('=')>-1){var params=self.shortcode(match);url=params.url;}
else{url=self.shortcode(match);}
if(url){embeds.push({url:url,replace:match});}});$.each(embeds,function(i,embed){var id='scholder-'+ self.scindex;var html='<div id="'+ id+'" class="soundcloud pending">Loading Soundcloud...</div>';posthtml=posthtml.replace(embed.replace,html);self.scindex++;$.ajax({url:'//soundcloud.com/oembed?maxheight=166',dataType:'jsonp',data:{format:'js',url:embed.url},success:function(response){response.html=response.html.replace('visual=true','visual=false');$('#'+ id).removeClass('pending').html(response.html);}});});return posthtml;},bandcamp:function(posthtml){var self=this;var embeds=[];var matches=posthtml.match(self.bc_regex)||[];var matches_legacy_albums=posthtml.match(self.bc_regex_legacy_albums)||[];var matches_legacy_tracks=posthtml.match(self.bc_regex_legacy_tracks)||[];matches=matches.concat(matches_legacy_albums,matches_legacy_tracks);$.each(matches,function(i,match){var album=track=false;if(match.indexOf('=')>-1){var params=self.shortcode(match);var album=params.album,track=params.track;}
else{var id=self.shortcode(match);var album=track=null;if(match.indexOf('album')>-1){album=id;}
else{track=id;}}
embeds.push({album:album,track:track,replace:match});});$.each(embeds,function(i,embed){if(embed.album){var url='//bandcamp.com/EmbeddedPlayer/album='+ embed.album+'/size=medium';}
else{var url='//bandcamp.com/EmbeddedPlayer/track='+ embed.track+'/size=medium';}
var html='<div class="bandcamp"><iframe style="border:0;width:100%;height:120px;" src="'+ url+'" seamless></iframe></div>';posthtml=posthtml.replace(embed.replace,html);});return posthtml;},shortcode:function(string){if(string.indexOf('=')>-1){var parts={};var split=string.replace(']','').split(' ');for(var s=1;s<split.length;s++){var key=split.substr(0,split.indexOf('='));var val=split.substr(split.indexOf('=')+ 1).replace(/\"/g,'');parts[key]=val;}
return parts;}
else{var s=string.indexOf(']')+ 1;return string.substr(s,string.indexOf('[',s)- s);}},buttons:function(){$('input[type="button"]').each(function(i,button){if($(this).val()=='Soundcloud'){$(this)[0].onclick=null;$(this).on('click',function(){alert('1) Click the Share link on your Soundcloud track'+'\n'
+'2) Copy the Wordpress code and paste it into your post.'+'\n\n'
+'Alternatively, you may use the old BBcode - ');});$('<input type="button" value="Bandcamp" />').on('click',function(){alert('1) Click the Share/Embed link on your Bandcamp album or track'+'\n'
+'2) Select any layout, and then wordpress.com (below the embed code textbox)'+'\n'
+'3) Copy the embed code and paste it into your post.');}).appendTo($(this).parent());}});}};$(document).ready(function(){MWEmbeds.init();});
LOL, this is just a bunch of javascript.
And also why I should just stick to making music;-) I realized this after I posted it haha, I just read BC not thinking BandCamp. That fucking owl has BC too dude lol!
-
ShaneAnthony
- Eagle Minded
- Posts: 362
- Joined: Tue Feb 04, 2014 1:24 am
Re: newcleardawn.com update...
shaneanthonysounds wrote:aoc wrote:shaneanthonysounds wrote:Does this mean anything anyone?
var MWEmbeds={scindex:0,sc_regex:/\[soundcloud ([0-9a-z&;=_%":.\/\s]+)\]/gi,sc_regex_legacy:/(\[s\])(https?:\/)((?:\/[\w\.\-\s]+)+)(\[\/s\])/gi,bc_regex:/\[bandcamp ([0-9a-z\=\s\%]+)\]/g,bc_regex_legacy_albums:/\[bcalbum\]([0-9]+)\[\/bcalbum\]/g,bc_regex_legacy_tracks:/\[bctrack\]([0-9]+)\[\/bctrack\]/g,init:function(){var self=this;self.buttons();$('span.postbody').each(function(){var posthtml=$(this).html();posthtml=self.soundcloud(posthtml);posthtml=self.bandcamp(posthtml);$(this)[0].innerHTML=posthtml;});},soundcloud:function(posthtml){var self=this;var embeds=[];var matches=posthtml.match(self.sc_regex)||[];var matches_legacy=posthtml.match(self.sc_regex_legacy)||[];matches=matches.concat(matches_legacy);$.each(matches,function(i,match){var url=false;if(match.indexOf('=')>-1){var params=self.shortcode(match);url=params.url;}
else{url=self.shortcode(match);}
if(url){embeds.push({url:url,replace:match});}});$.each(embeds,function(i,embed){var id='scholder-'+ self.scindex;var html='<div id="'+ id+'" class="soundcloud pending">Loading Soundcloud...</div>';posthtml=posthtml.replace(embed.replace,html);self.scindex++;$.ajax({url:'//soundcloud.com/oembed?maxheight=166',dataType:'jsonp',data:{format:'js',url:embed.url},success:function(response){response.html=response.html.replace('visual=true','visual=false');$('#'+ id).removeClass('pending').html(response.html);}});});return posthtml;},bandcamp:function(posthtml){var self=this;var embeds=[];var matches=posthtml.match(self.bc_regex)||[];var matches_legacy_albums=posthtml.match(self.bc_regex_legacy_albums)||[];var matches_legacy_tracks=posthtml.match(self.bc_regex_legacy_tracks)||[];matches=matches.concat(matches_legacy_albums,matches_legacy_tracks);$.each(matches,function(i,match){var album=track=false;if(match.indexOf('=')>-1){var params=self.shortcode(match);var album=params.album,track=params.track;}
else{var id=self.shortcode(match);var album=track=null;if(match.indexOf('album')>-1){album=id;}
else{track=id;}}
embeds.push({album:album,track:track,replace:match});});$.each(embeds,function(i,embed){if(embed.album){var url='//bandcamp.com/EmbeddedPlayer/album='+ embed.album+'/size=medium';}
else{var url='//bandcamp.com/EmbeddedPlayer/track='+ embed.track+'/size=medium';}
var html='<div class="bandcamp"><iframe style="border:0;width:100%;height:120px;" src="'+ url+'" seamless></iframe></div>';posthtml=posthtml.replace(embed.replace,html);});return posthtml;},shortcode:function(string){if(string.indexOf('=')>-1){var parts={};var split=string.replace(']','').split(' ');for(var s=1;s<split.length;s++){var key=split.substr(0,split.indexOf('='));var val=split.substr(split.indexOf('=')+ 1).replace(/\"/g,'');parts[key]=val;}
return parts;}
else{var s=string.indexOf(']')+ 1;return string.substr(s,string.indexOf('[',s)- s);}},buttons:function(){$('input[type="button"]').each(function(i,button){if($(this).val()=='Soundcloud'){$(this)[0].onclick=null;$(this).on('click',function(){alert('1) Click the Share link on your Soundcloud track'+'\n'
+'2) Copy the Wordpress code and paste it into your post.'+'\n\n'
+'Alternatively, you may use the old BBcode - ');});$('<input type="button" value="Bandcamp" />').on('click',function(){alert('1) Click the Share/Embed link on your Bandcamp album or track'+'\n'
+'2) Select any layout, and then wordpress.com (below the embed code textbox)'+'\n'
+'3) Copy the embed code and paste it into your post.');}).appendTo($(this).parent());}});}};$(document).ready(function(){MWEmbeds.init();});
LOL, this is just a bunch of javascript.
And also why I should just stick to making music;-) I realized this after I posted it haha, I just read BC not thinking BandCamp. That fucking owl has BC too dude lol!
Also, just for the record, a lot of my recent posts on this thread were more of an expirement. I was trying to put myself in an obsessive state of mind to point out that we all just need to chill out. Let it happen folks, when the time is right, the music will come;-) Cheers twoism!
Re: newcleardawn.com update...
This whole code thing, man. Since TH people have been pretty obsessive over nothing.
Do you think boards enjoy watching this?
Do you think that the message lies within the fact that they are trying to display the nature of the internet basically facilitating delusions. Its like everyone has dysfunctional dopamine responses when they are presented with technology. I try not to make every post about how evil the internet is but it always kind of drifts in that direction. I am an obsessive, too.
Do you think boards enjoy watching this?
Do you think that the message lies within the fact that they are trying to display the nature of the internet basically facilitating delusions. Its like everyone has dysfunctional dopamine responses when they are presented with technology. I try not to make every post about how evil the internet is but it always kind of drifts in that direction. I am an obsessive, too.
-
ShaneAnthony
- Eagle Minded
- Posts: 362
- Joined: Tue Feb 04, 2014 1:24 am
Re: newcleardawn.com update...
No, I think they hate it! I think the fans are pushing them away with all this shit!Valotonin wrote:This whole code thing, man. Since TH people have been pretty obsessive over nothing.
Do you think boards enjoy watching this?
Do you think that the message lies within the fact that they are trying to display the nature of the internet basically facilitating delusions. Its like everyone has dysfunctional dopamine responses when they are presented with technology. I try not to make every post about how evil the internet is but it always kind of drifts in that direction. I am an obsessive, too.
-
ShaneAnthony
- Eagle Minded
- Posts: 362
- Joined: Tue Feb 04, 2014 1:24 am
Re: newcleardawn.com update...
^^^That was just in response to your question about if boc enjoy watching this. We live in a very fast paced society right now, and information from other outside sources is constantly being fed into our minds from multiple directions. I personally can't even turn on the tv anymore. I think the purpose of TH was to wake folks up a bit. It was a very serious album for a reason, and I imagine they want us to sit on it for a while. Releasing new music right now would take away the msg of TH too soon in my opinion.shaneanthonysounds wrote:No, I think they hate it! I think the fans are pushing them away with all this shit!Valotonin wrote:This whole code thing, man. Since TH people have been pretty obsessive over nothing.
Do you think boards enjoy watching this?
Do you think that the message lies within the fact that they are trying to display the nature of the internet basically facilitating delusions. Its like everyone has dysfunctional dopamine responses when they are presented with technology. I try not to make every post about how evil the internet is but it always kind of drifts in that direction. I am an obsessive, too.
