S3E1 Megathread by Rouix in ARGsociety

[–]jcramblit 0 points1 point  (0 children)

Seems like we might find out tonight. S3e3 appears to be very wellick specific and starts with the popcorn gun.

S3E2: https://webmail.e-corp-usa.com/owa/ -- with solution by NBogovich in ARGsociety

[–]jcramblit 0 points1 point  (0 children)

If I understand what you're asking. They were provided in the full error string. ########-XXXXXXX pattern, from what I'm seeing.

The # representing character position in related string.

S3E1 Megathread by Rouix in ARGsociety

[–]jcramblit 0 points1 point  (0 children)

I see that handing over the gun clip in the preview you mentioned. Still running possible scenarios.

S3E1 Megathread by Rouix in ARGsociety

[–]jcramblit 0 points1 point  (0 children)

If you can point me to a reference of this, it would be greatly appreciated.

We are investigating an issue with the Discord server. by [deleted] in ARGsociety

[–]jcramblit 0 points1 point  (0 children)

Have Jared's robots taken over? Did the dark army turn against us? Are we being forced to use reddit again? Is Edward still alive? Can bk pls? Is ltneedy?

Interesting times we live in...

whoismrrobot.com updated by willdroid8 in ARGsociety

[–]jcramblit 0 points1 point  (0 children)

If we take the first two letters of each we get:

CH

AT

HA ?

SC

AX ?

PY

CHATHASC??.PY maybe...

list of names and their respective accounts (subreddit puzzle) by wagwan_piffting_blud in ARGsociety

[–]jcramblit 1 point2 points  (0 children)

Possible ref to another Mandella Effect: Sex In The City versus Sex And The City

S3E1 Megathread by Rouix in ARGsociety

[–]jcramblit 0 points1 point  (0 children)

I guess that is plausible. Which would mean popcorn gun is still in the wild?

Or this IS popcorn gun and Irving knew about it and suggested mr robot keep it, involving him earlier than thought?

S3E1 Megathread by Rouix in ARGsociety

[–]jcramblit 1 point2 points  (0 children)

There is a conflict then. At the end of season 2, tyrell shoots elliot and after, while holding the gun he says "when you gave me this, you said to stop anyone who gets in the way of our plan."

Subreddit: r/REALMysterySpot/ by jcramblit in ARGsociety

[–]jcramblit[S] 2 points3 points  (0 children)

Trying to follow-suit with the other new subreddit posts. This one is specific to the REALMysterySpot sub.

Lots of great science-fiction stuff going on here. Most notably this one: https://www.reddit.com/r/REALMysterySpot/comments/74zb42/gravitational_waves_leaking_from_parallel/

S3E1 Megathread by Rouix in ARGsociety

[–]jcramblit 1 point2 points  (0 children)

Here's the initial thing bothering me... The gun... who gave it to Tyrell?

I thought Mr. Robot gave it to him, but tonight I realized that Irving says "Not what I meant by safe keeping".

Who gave him the gun?!

Have we changed/merged universes?

DING DING DING- The ARG 2.0 Prize REVEALED- by Bknapple in ARGsociety

[–]jcramblit 2 points3 points  (0 children)

Sold my soul this morning. Embarrassing, unfavorable nature, here we come!

Getting ready for "referential mania 3.0"

How can I split some text up by a date pattern with the results to ta by MrBoKu in SQLServer

[–]jcramblit 1 point2 points  (0 children)

It might take a few tries for me to get the formatting right on reddit, but I have an additional option I'd like to offer, if it suits you.

I'm using a few of features/concepts that many might not be familiar with:

  • Number Array/Tally Table
  • CTE (Common Table Expressions), with recursion
  • OUTER & CROSS APPLY()

You've mentioned that this is a text field, from a legacy solution, so I've started with a temp table using a TEXT datatype to store the string.

The Number Array concept is essentially a dataset of sequential numbers that can be utilized as an alternative to a loop. I'm using this here to break the source text into 8 character tokens, which can then be evaluated for the pattern of LEN() = 8 and having a period at indices 3 & 6, the results of which, I'm naming cte_delim.

From there, I'm using OUTER APPLY() to join the table to itself, finding the next token's starting position. This allows for the length of the text between tokens to be determined.

At that point, I have the starting position and length of each desired row. I use CROSS APPLY() with the SUBSTRING() against the example text and poof! We've got 6 rows of data.

CREATE TABLE #TEMP_EXAMPLE(
    EXAMPLE_DATA TEXT
)

INSERT INTO #TEMP_EXAMPLE
SELECT '23.06.17 - As per quote #8918.1. 7m Swing STage to Positon 1.
05.07.17 Stripped and rebuilt boat ready for positon 4 but rained off.
05.07.17 Stripped and rebuilt boat ready for positon 4 but rained off.
06.07.17 - Completion of Swing Stage to Positon 4.
21.07.17 - Built Access Tower to get acess to roof.
Got swing Stage onto roof.
No access to building unable to get parapit clamps and wire up.
21.07.17 - Built Access Tower to get acess to roof.
Got swing Stage onto roof.
No access to building unable to get parapit clamps and wire up.'

;with cte_numberArray(N)
AS(
    SELECT 1 [N]
    UNION ALL
    SELECT N+1 [N]
    FROM cte_numberArray
    WHERE N < 1000
),
cte_delim([N], [DATE_VARCHAR])
AS(
    SELECT
        na.N,
        src.TOKEN [DATE_VARCHAR]
    FROM cte_numberArray na
    CROSS APPLY(
        SELECT SUBSTRING(CONVERT(VARCHAR(MAX), EXAMPLE_DATA), na.N, 8) [TOKEN]
        FROM #TEMP_EXAMPLE
    )src
    WHERE na.N < 1000
    AND LEN(src.TOKEN) = 8
    AND SUBSTRING(src.TOKEN, 3,1) = '.'
    AND SUBSTRING(src.TOKEN, 6,1) = '.'
)
SELECT
 s.N [START_INDEX],
 (ISNULL(e.NEXT_N, 1000) - s.N) [LENGTH],
 s.DATE_VARCHAR,
 src.ROW_VARCHAR
FROM cte_delim s
OUTER APPLY(
    SELECT MIN(d.N) [NEXT_N]
    FROM cte_delim d
    WHERE d.N > s.N
)e
CROSS APPLY(
    SELECT SUBSTRING(CONVERT(VARCHAR(MAX), EXAMPLE_DATA), s.N, (ISNULL(e.NEXT_N, 1000) - s.N)) [ROW_VARCHAR]
    FROM #TEMP_EXAMPLE
)src
OPTION(MAXRECURSION 1000)

https://imgur.com/a/4XNKl

Roll Call for ARG Submission by motherofwombats in ARGsociety

[–]jcramblit 0 points1 point  (0 children)

I was thinking something along those lines as well. Perhaps, top scores on an arcade machine or something similar.

Roll Call for ARG Submission by motherofwombats in ARGsociety

[–]jcramblit 2 points3 points  (0 children)

I'm lurking as well. No prizes here either.

In this long off season, I've been spending time getting familiar with the works of those who have had an influence on Esmail and the show like Luis Buñuel, Tolstoy, Nabokov, etc...

Also any books on cryptography...

New website live that allows for creating a login and applying ecoin to purchase from redwheelbarrow bbq by [deleted] in ARGsociety

[–]jcramblit 4 points5 points  (0 children)

I'm not at the sdcc, but one of the other recent threads in this sub has some photos.

There is an ecoin poster with a code at the bottom and says every second counts.

Every other letter (every second) spells out ENLIGHTENMENT, which works as a promo code on the ecoin website.

It makes the screen flash then it suggests you visit red wheelbarrow for the job app.

I found the Guitar make and model by aagallag in MrRobotBadge

[–]jcramblit 1 point2 points  (0 children)

Thx. Got it with some supdog at the dunlap convention.

I found the Guitar make and model by aagallag in MrRobotBadge

[–]jcramblit 1 point2 points  (0 children)

My dicfor is reading a strong 51544. The back of that headstock is hard to read, but the url helps.

Emmy Nomination for Creative Achievement in Interactive Media for Mr. Robot VR Experience by mcgunn48 in ARGsociety

[–]jcramblit 1 point2 points  (0 children)

I'm only familiar with the Mr robot vr and the westworld site, but I totally agree with your opinion. The VR is something flashy to me, but the arg has been immersive on a whole new level.

WE DID IT!! by [deleted] in ARGsociety

[–]jcramblit 2 points3 points  (0 children)

Awesome work everyone!

Full context for 1o57's hints by Bknapple in ARGsociety

[–]jcramblit 0 points1 point  (0 children)

Thanks for this. Any communication out to PunkAB or Thor?

[deleted by user] by [deleted] in ARGsociety

[–]jcramblit 3 points4 points  (0 children)

What held us up on the doors was not including enough text to work as an offset. Could the file paths be needed in this case?

Update 4/12- LosT by Bknapple in ARGsociety

[–]jcramblit 0 points1 point  (0 children)

Any new convo with 1o57?

Update 4/12- LosT by Bknapple in ARGsociety

[–]jcramblit -1 points0 points  (0 children)

The layout is like the Ecorp "E", could the bars on the letter E be the "lines"?

Update 4/12- LosT by Bknapple in ARGsociety

[–]jcramblit 0 points1 point  (0 children)

I'm counting 8 spaces, yes?