Return to Unfiction unforum
 a.r.g.b.b 
FAQ FAQ   Search Search 
 
Welcome!
New users, PLEASE read these forum guidelines. New posters, SEARCH before posting and read these rules before posting your killer new campaign. New players may also wish to peruse the ARG Player Tutorial.

All users must abide by the Terms of Service.
Website Restoration Project
This archiving project is a collaboration between Unfiction and Sean Stacey (SpaceBass), Brian Enigma (BrianEnigma), and Laura E. Hall (lehall) with
the Center for Immersive Arts.
Announcements
This is a static snapshot of the
Unfiction forums, as of
July 23, 2017.
This site is intended as an archive to chronicle the history of Alternate Reality Games.
 
The time now is Tue Nov 12, 2024 7:04 am
All times are UTC - 4 (DST in action)
View posts in this forum since last visit
View unanswered posts in this forum
Calendar
 Forum index » Updates » News & Rumors
Old trailhead? stumbledupon.com
Moderators: Administrators, Moderators, ndemeter, Varin
View previous topicView next topic
Page 4 of 10 [138 Posts]   Goto page: Previous 1, 2, 3, 4, 5, 6, 7, 8, 9, 10  Next
Author Message
AdamEmerson
Veteran


Joined: 06 Jul 2010
Posts: 82
Location: Fort Worth, TX

JustIgnoreMe wrote:
Short-time lurker, first-time poster, blah blah.

I hate anagrams, but has anyone considered the possible connection with bags? Lots of links to various kind of bags at the main stumbledupon page, and an anagram of "mangolab" (or "a mangolab" if you want to include the extra A) could easily include the word "bag"...


I tried multiple anagram solvers to no avail.
But I do think you are on to something. Can anyone tell if the site has been updated again? I don't know how to tell. And I don't get how this site can be under construction just now, when it's been around for years.
_________________
The worlds first official Coelacanth recipient!!
Now playing:
Super 8
Watching:


PostPosted: Tue Jul 20, 2010 4:25 am
 View user's profile
 Back to top 
godimanerd<3
Guest


so guys I was messing around with the source code some and clicked on a link within it and it actually gave me this:

<!--

//Hi Guys, yeah of course you can solve it this way... just as fun... but there'll be some that are a bit harder for you later ;)

//Copyright StumbledUpon 2008
//feel free to use this code in your own site but please
//give a link to www.mangolab.com as a credit
//script for rollover images

// getTime() - Number of milliseconds since 1/1/1970 @ 12:00 AM
// getSeconds() - Number of seconds (0-59)
// getMinutes() - Number of minutes (0-59)
// getHours() - Number of hours (0-23)
// getDay() - Day of the week(0-6). 0 = Sunday, ... , 6 = Saturday
// getDate() - Day of the month (0-31)
// getMonth() - Number of month (0-11)
// getFullYear() -

var ID=window.setTimeout( "update();", 1 );
var ArrTumblers = new Array(5);
var TumbleElementsPrefix = 'tumbler';

function update() {
UpdateCombination();
ShowHelpWithAnagramsExtraA();
ID = window.setTimeout( "update();", 1000 );
}

function UpdateCombination(){
//SetCellText( 'Combination',GetSUCombination() );
SetArrTumblers();
SetTumblers();
}

function SetArrTumblers(){
var CurrentDate = new Date();

//in order Y M D H M S
ArrTumblers[0] = GetRightDigit( CurrentDate.getUTCSeconds() );
ArrTumblers[1] = GetRightDigit( CurrentDate.getUTCMinutes() );
ArrTumblers[2] = GetRightDigit( CurrentDate.getUTCHours() );
ArrTumblers[3] = GetRightDigit( CurrentDate.getUTCDate() );
ArrTumblers[4] = GetRightDigit( CurrentDate.getUTCMonth() + 1 );
ArrTumblers[5] = GetRightDigit( CurrentDate.getUTCFullYear() );

//var CurrentTime = document.getElementById( "current-time" );
//var UTCTime = document.getElementById( "utc-time" );

//CurrentTime.innerHTML = CurrentDate.toLocaleString();
//UTCTime.innerHTML = CurrentDate.toUTCString();
}

function GetRightDigit(ANum){
ANum = ANum + '';
ANum = ANum.substring( (ANum.length - 1) );

return ANum;
}

function SetTumblers(){
var CntTumblers = ArrTumblers.length;

for ( var i = 0; i < CntTumblers; i++ ) {
SetCellText( TumbleElementsPrefix + i, ArrTumblers[i] );
}
}

function SetCellText( AObjName, AObjText ){
if ( AObjName != "" ){
if ( AObjText != "" ){
var Cell = document.getElementById( AObjName );
Cell.innerHTML = AObjText; //eval(""+ObjText+"");
}
}

//alert(ACell.innerHTML);
return true;
}

function ShowHelpWithAnagramsExtraA(){
if ( IsTumblersAligned() ){
var Anagram = document.getElementById( "anagram" );

Anagram.innerHTML = "Right time, wrong place. Half marks... try harder, solve the anagram, and get that A...";
}
}

function IsTumblersAligned(){
var CntTumblers = ArrTumblers.length;
var TumblerCompareValue = ArrTumblers[0]; // Current value for tubmler seconds.

for ( var i = 1; i < CntTumblers; i++ ) {
if ( ArrTumblers[i] != TumblerCompareValue ) {
return false;
}
}

return true;
}

function WriteTumblers(){
var CntTumblers = 6;
var Str = '';

for ( var i = 0; i < CntTumblers; i++ ) {
Str = Str + '<div id="tumbler' + i + '" name="tumbler' + i + '" class="' + TumbleElementsPrefix + '">1</div>';
}

document.write( Str );
}

function SetTo2( ANum ){
if ( ANum < 10 ) {
ANum = '0' + ANum;
}
else if ( ANum > 99 ) {
ANum = ANum + '';
ANum = ANum.substring( ( ANum.length - 2 ) );
}

return ANum;
}
//-->


I really think that this is the answer but I am just too focused right now and need some insight. please post your reply on her with any ideas

PostPosted: Sat Jul 24, 2010 12:19 am
 Back to top 
AdamEmerson
Veteran


Joined: 06 Jul 2010
Posts: 82
Location: Fort Worth, TX

Good find. Too bad I don't know anything about coding. :/
_________________
The worlds first official Coelacanth recipient!!
Now playing:
Super 8
Watching:


PostPosted: Sat Jul 24, 2010 1:14 am
 View user's profile
 Back to top 
natas
PHP Ninja


Joined: 06 Oct 2007
Posts: 3177
Location: Northwest Indiana

godimanerd<3 wrote:
so guys I was messing around with the source code some and clicked on a link within it and it actually gave me this:

<!--

//Hi Guys, yeah of course you can solve it this way... just as fun... but there'll be some that are a bit harder for you later Wink

//Copyright StumbledUpon 2008
//feel free to use this code in your own site but please
//give a link to www.mangolab.com as a credit
//script for rollover images

// getTime() - Number of milliseconds since 1/1/1970 @ 12:00 AM
// getSeconds() - Number of seconds (0-59)
// getMinutes() - Number of minutes (0-59)
// getHours() - Number of hours (0-23)
// getDay() - Day of the week(0-6). 0 = Sunday, ... , 6 = Saturday
// getDate() - Day of the month (0-31)
// getMonth() - Number of month (0-11)
// getFullYear() -

var ID=window.setTimeout( "update();", 1 );
var ArrTumblers = new Array(5);
var TumbleElementsPrefix = 'tumbler';

function update() {
UpdateCombination();
ShowHelpWithAnagramsExtraA();
ID = window.setTimeout( "update();", 1000 );
}

function UpdateCombination(){
//SetCellText( 'Combination',GetSUCombination() );
SetArrTumblers();
SetTumblers();
}

function SetArrTumblers(){
var CurrentDate = new Date();

//in order Y M D H M S
ArrTumblers[0] = GetRightDigit( CurrentDate.getUTCSeconds() );
ArrTumblers[1] = GetRightDigit( CurrentDate.getUTCMinutes() );
ArrTumblers[2] = GetRightDigit( CurrentDate.getUTCHours() );
ArrTumblers[3] = GetRightDigit( CurrentDate.getUTCDate() );
ArrTumblers[4] = GetRightDigit( CurrentDate.getUTCMonth() + 1 );
ArrTumblers[5] = GetRightDigit( CurrentDate.getUTCFullYear() );

//var CurrentTime = document.getElementById( "current-time" );
//var UTCTime = document.getElementById( "utc-time" );

//CurrentTime.innerHTML = CurrentDate.toLocaleString();
//UTCTime.innerHTML = CurrentDate.toUTCString();
}

function GetRightDigit(ANum){
ANum = ANum + '';
ANum = ANum.substring( (ANum.length - 1) );

return ANum;
}

function SetTumblers(){
var CntTumblers = ArrTumblers.length;

for ( var i = 0; i < CntTumblers; i++ ) {
SetCellText( TumbleElementsPrefix + i, ArrTumblers[i] );
}
}

function SetCellText( AObjName, AObjText ){
if ( AObjName != "" ){
if ( AObjText != "" ){
var Cell = document.getElementById( AObjName );
Cell.innerHTML = AObjText; //eval(""+ObjText+"");
}
}

//alert(ACell.innerHTML);
return true;
}

function ShowHelpWithAnagramsExtraA(){
if ( IsTumblersAligned() ){
var Anagram = document.getElementById( "anagram" );

Anagram.innerHTML = "Right time, wrong place. Half marks... try harder, solve the anagram, and get that A...";
}
}

function IsTumblersAligned(){
var CntTumblers = ArrTumblers.length;
var TumblerCompareValue = ArrTumblers[0]; // Current value for tubmler seconds.

for ( var i = 1; i < CntTumblers; i++ ) {
if ( ArrTumblers[i] != TumblerCompareValue ) {
return false;
}
}

return true;
}

function WriteTumblers(){
var CntTumblers = 6;
var Str = '';

for ( var i = 0; i < CntTumblers; i++ ) {
Str = Str + '<div>1</div>';
}

document.write( Str );
}

function SetTo2( ANum ){
if ( ANum <10> 99 ) {
ANum = ANum + '';
ANum = ANum.substring( ( ANum.length - 2 ) );
}

return ANum;
}
//-->


I really think that this is the answer but I am just too focused right now and need some insight. please post your reply on her with any ideas


This is the code that we've all been staring at for weeks now. Page 1 of this thread 7th or 8th post.

PostPosted: Sun Jul 25, 2010 2:52 pm
 View user's profile AIM Address Yahoo Messenger
 Back to top 
Slippery Simon
Guest


http://mangolab.com/a
maybe was once a part of their site?
plus it solves the extra "A"

PostPosted: Wed Sep 15, 2010 3:15 am
 Back to top 
frobthebuilder
Guest


hey, check the page source for the page with the tumbler, it has a strange comment in it...

PostPosted: Fri Sep 17, 2010 8:12 pm
 Back to top 
CricketBat.
Guest


Look at the page description:
"A secret journey across the funniest, weirdest, most interesting and most useful websites on the net."

So this site WANTS us to go look at other sites. The answer cannot be found just by staring at a code, or using rational thought!

PostPosted: Sat Sep 18, 2010 9:46 am
 Back to top 
tatherto
Guest


timestamps

So now we all realize that we can manipulate the tumblers by changing our computers clock.

the message in the code says right time wrong place, suggesting time zones play a factor.

There are loads of time stamps in the dialogue on goldstork but I feel like this one is the key because it is posted by our friend Pii, wh1t3h8t (whitehate?)


06.20.2008 02:06 UTC - User wh1t3h8t - [Sys-Log restored]

unity without verity... i cant keep this open for long it will get noticed. see SU - i left a message ... (Π) ...
[THREAD ENDS]

[SEAL LOG ENDS]

I tried putting this time into my computers clock with no luck.

We have to be on the right path though.

PostPosted: Mon Sep 27, 2010 1:07 am
 Back to top 
M13A77
Veteran


Joined: 09 Oct 2008
Posts: 74
Location: Germany... but who knows in a few months.

Ok here is a few things I have noticed. Not sure if its anything or everything but here goes.
1. "The PI symbol" on the Mangolab website there is a tips and tricks link. When you click it, it takes you to a listing of different websites. One of the websites is called "The Packaging Institute" or "PI" Hmmm
2. On the same tips and tricks page there is a direct link to the "polybag" website. Odd since Mangolab is a software company. There seems to be a few links to plastics and bag websites here as well.
3. On the mangolab website homepage, halfway down on the right is a Mangolab logo. While it is loading it says "if you need help goto mangolab" also when you lay your cursor on the icon the text box reads "if… then… goto…- the only bit of code you need to know"
I don't know if this is anything at all but it is very curious. Why all the links to plastics and plastic bag websites??
_________________
** Insert Cool Signature Here**

PostPosted: Mon Sep 27, 2010 4:34 am
 View user's profile
 Back to top 
alj
Guest


this is driving me crazy! has anybody figured it out yet?

PostPosted: Tue Oct 05, 2010 11:43 pm
 Back to top 
chunny
Guest


Some things that I have worked out.

I completely with the guy two posts above me on that we need to stop staring at the code. I've checked out every single website it links to, and every single one of them manage to go back to mango labs. Also, all of them are dated about the end of 2008. On the websites, I have found the following:
1) podcast: http://www.mangolab.com/mangolounge/p_lstn.htm actually is a podcast, however, they have stopped, cannot contact
2) Goldstork main page: Cannot submit websites, have not tried for most of the major ones.
3)Poleyester bags: No orders will actually go through if you click the "Add to cart" button.
4) Mangolabs: This is the biggie. Apparently, they make software, but when you check out the testimonials, almost all of them are from directors of the packing website. The picture for the demo for "Mangomart", one of mangolabs projects links back to polybags, and it even links to the podcast! One more thing: if you try to get a free download, it will ask for your e-mail address and then tell you that thee current version of ____ is under revision and that they will send you a new copy soon.
However, some websites do connect with the outside world, such as "Muchloved.com" and the childcare website.
So fustrated!!!

PostPosted: Wed Dec 22, 2010 1:14 am
 Back to top 
ConspiracyHunter
Guest


This is freaking insane.
It actually feels like conspiracy, haha.

Somehow I remember seeing this site ages ago. I don't know why. I was busy and forgot about it.

Every site on this network looks tremendously suspicious.
Yet they are so huge it's hard to believe it's an ARG or puzzle.

I can't find anything on the net about it.
If they were real companies, it'd be easy to find.
But even if they weren't.. It'd be easy to find people discussing about it, as well.
How come it went through years without being noticed?

It sucks not to know if 'the game' is still active, though.
We're either still missing something on the very first puzzle-- the anagram, or it cannot be solved, afterall (inactive, whatever).

I have even downloaded mangolab's products, but they won't work.
It's funny how they call extracting "un-BAG" on the installation, though (literally).

"Right time, wrong place. Half marks... try harder, solve the anagram, and get that A..."
If this unused anagram tip is even valid (IS IT? this lack of information on the state of the game sucks), we gotta either find an anagram that actually uses the A, or we must go to mangolab.com and use the A somehow.


I'm getting paranoic, this whole thing is too odd.
I've never found anything this big yet so obscure from the internet. (and I've been through some really dark chinese websites, haha).

Still, the worst part is how old this thing is. Even the HTML is dated.
I'm thinking about trying to contact mangolab. But I'm not sure I should.
If it's still running, contacting them would be probably negative, as whoever is behind this is seriously meticulous.
If it's not.. Well.

They mention they will 'really listen' on the homepage, though. Does anybody know what the 'columbo' keyword could relate to? (they ask us to use the keyword on email subjects as a way to filter spam).



Oh god, I'm too curious now. I would just assume they are old webpages, just like old webpages used to be.
The one piece of text that keeps me going is "Hi Guys, yeah of course you can solve it this way... just as fun... but there'll be some that are a bit harder for you later Wink". I wonder what 'a bit' might be. We couldn't even solve the easier one.

PostPosted: Wed Dec 22, 2010 5:50 pm
 Back to top 
ModalRealism
Veteran


Joined: 23 Dec 2010
Posts: 138

Seal Log

Just jumping in. Have we examined the text of the "Seal log"?

Quote:
06.06.1999 05:14 UTC - User Admin19 wrote:

Vault sealed. Sealing Ref: 3499455/su
06.06.1999 07:14 UTC - User JTrapp wrote:

Hi Admin, why has this vault been sealed?
06.06.1999 07:17 UTC - User Admin19 wrote:

Dunno. directive from GS exec. got called in by fco to do it, so v hot asset iwi
06.06.1999 09:19 UTC - User JTrapp wrote:

Admin, what assets were listed before the seal order?
06.06.1999 09:23 UTC - User Admin19 wrote:

omg!... thats v weird. got nothing listed looks like whole asset records purged. wtf?! no record anywhere. hold on... will do a bit of diggin Wink
06.06.1999 19:31 UTC - User JTrapp wrote:

Hi Admin - u found anything yet?
06.07.1999 10:15 UTC - User JTrapp wrote:

Admin - u there? wondered if u found anything yet?
06.08.1999 10:09 UTC - User JTrapp wrote:

Hi Admin - just wondered if there was any news?
06.08.1999 10:20 UTC - User Admin01 wrote:

****Sys-Log deletion requested.****
[THREAD TERMINATED]

[THREAD (2/4) STARTS]

06.08.1999 10:21 UTC - User Admin03 - [Vault Timelock Instantiated (5y)]

[THREAD ENDS]

[THREAD (3/4) STARTS]

06.08.2004 10:23 UTC - User Admin01 - [Vault Timelock Instantiated (500y)]

[THREAD ENDS]

[THREAD (2/4) STARTS]

06.20.2008 02:06 UTC - User wh1t3h8t - [Sys-Log restored]

unity without verity... i cant keep this open for long it will get noticed. see SU - i left a message ... (Π) ...


When her writes "see SU" there's the text at the top tht says "Sealing Ref: 3499455/su" coincidence? and what does this mean: "got called in by fco to do it, so v hot asset iwi" And then the admin clearly implies that he/she is in on the whole deal by adding Wink after saying they would "do a bit of diggin".

Wish I could come up with some answers.

PostPosted: Sun Dec 26, 2010 3:29 pm
 View user's profile
 Back to top 
CarnageBlack
Unfettered

Joined: 30 Nov 2008
Posts: 548
Location: Chicago

I just figured I'd take a look at this. Could "diggin" refer to Digg, just an idea. I'll look it up when I get to my desktop.

PostPosted: Sun Dec 26, 2010 4:38 pm
 View user's profile AIM Address
 Back to top 
Scoticus
Kilroy

Joined: 22 Dec 2010
Posts: 1

Stumbledupon.com
Restarting the confusion

Alright guys Ive been doing some work on stumbledupon.com and i saw that nobody had posted on the first thread about it for a while. so im just wondering if anybody found anything new or has everyone just given up?

[moved post to the original thread since it's not a new trailhead - kona]

PostPosted: Sat Mar 12, 2011 11:06 am
 View user's profile
 Back to top 
Display posts from previous:   Sort by:   
Page 4 of 10 [138 Posts]   Goto page: Previous 1, 2, 3, 4, 5, 6, 7, 8, 9, 10  Next
View previous topicView next topic
 Forum index » Updates » News & Rumors
Jump to:  

You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum
You cannot post calendar events in this forum



Powered by phpBB © 2001, 2005 phpBB Group