Random posts

A forum where anything goes. Introduce yourselves to other members of the forums, discuss how your name evolves when written out in the Game of Life, or just tell us how you found it. This is the forum for "non-academic" content.
User avatar
JP21
Posts: 1870
Joined: October 26th, 2019, 5:39 am
Location: PH

Users browsing this forum: JP21, Majestic-12 [Bot] and 0 guests

Post by JP21 » February 16th, 2020, 1:22 am

I wonder if there is a way to delete quoted posts...
Or maybe even deleting read (past tense) posts (I don't know honestly)
A 17 year old guy that have useless discoveries in life and other rules.

Code: Select all

x = 13, y = 20, rule = B3/S23
11b2o$11b2o4$8b2o$8b2o2$2o$2o3$3b2o$3b2o2$11b2o$10b2o$12bo$3b2o$3b2o!
My actions weren't smart back then.

User avatar
Moosey
Posts: 4306
Joined: January 27th, 2019, 5:54 pm
Location: here
Contact:

Re: Random posts

Post by Moosey » February 16th, 2020, 1:25 pm

It's funny how befunge can be so simple at times and at other times so complex
for instance, five characters are all you need to make a calculator for squares

Code: Select all

&:*.@
Or a simple demonstration of p is also easy:

Code: Select all

~50p" ",@
Infinite loop:

Code: Select all

>#@10g00pv
vp26+1g26<
>#@10g00p^
it replaces the top row with #s
note that the top and bottom row are identical (except for the fact that the last chars are mirrored)
not active here but active on discord

User avatar
Moosey
Posts: 4306
Joined: January 27th, 2019, 5:54 pm
Location: here
Contact:

Re: Random posts

Post by Moosey » February 16th, 2020, 5:20 pm

I'm getting better at befunge:

Code: Select all

~02p9>:#<:#<+#<+#<0#<2#<g#<>#p>#2>#0>#->#1:#$"0"-#<_+.@

0
not active here but active on discord

User avatar
JP21
Posts: 1870
Joined: October 26th, 2019, 5:39 am
Location: PH

Re: Random posts

Post by JP21 » February 16th, 2020, 7:20 pm

I literally don't know what Moosey's codes are.

Random thing from jslife:

Code: Select all

x = 96, y = 6, rule = B3/S23:T96,0
3b2ob2o8b2ob2o5b2o6b4o6b2o5b2ob2o8b2ob2o5b2o6b4o6b2o$2b3o14b3o3b5o3bo
4bo3b5o3b3o14b3o3b5o3bo4bo3b5o$b2o4bo2b4o2bo4b2obo3b3ob2o4b2ob3o3bob2o
4bo2b4o2bo4b2obo3b3ob2o4b2ob3o3bo$o3b3ob2o4b2ob3o3bob2o4bo2b4o2bo4b2ob
o3b3ob2o4b2ob3o3bob2o4bo2b4o2bo4b2o$b5o3bo4bo3b5o3b3o14b3o3b5o3bo4bo3b
5o3b3o14b3o$2b2o6b4o6b2o5b2ob2o8b2ob2o5b2o6b4o6b2o5b2ob2o8b2ob2o!
#C [ LOOP 38 ]
It's not fake.
A 17 year old guy that have useless discoveries in life and other rules.

Code: Select all

x = 13, y = 20, rule = B3/S23
11b2o$11b2o4$8b2o$8b2o2$2o$2o3$3b2o$3b2o2$11b2o$10b2o$12bo$3b2o$3b2o!
My actions weren't smart back then.

Hunting
Posts: 4395
Joined: September 11th, 2017, 2:54 am

Re: Random posts

Post by Hunting » February 16th, 2020, 10:28 pm

JP21 wrote:
February 16th, 2020, 7:20 pm
I literally don't know what Moosey's codes are.
http://esolangs.org/wiki/Befunge

User avatar
PkmnQ
Posts: 1137
Joined: September 24th, 2018, 6:35 am
Location: Server antipode

Re: Random posts

Post by PkmnQ » February 17th, 2020, 5:04 am

JP21 wrote:
February 16th, 2020, 7:20 pm
I literally don't know what Moosey's codes are.

Random thing from jslife:

Code: Select all

x = 96, y = 6, rule = B3/S23:T96,0
3b2ob2o8b2ob2o5b2o6b4o6b2o5b2ob2o8b2ob2o5b2o6b4o6b2o$2b3o14b3o3b5o3bo
4bo3b5o3b3o14b3o3b5o3bo4bo3b5o$b2o4bo2b4o2bo4b2obo3b3ob2o4b2ob3o3bob2o
4bo2b4o2bo4b2obo3b3ob2o4b2ob3o3bo$o3b3ob2o4b2ob3o3bob2o4bo2b4o2bo4b2ob
o3b3ob2o4b2ob3o3bob2o4bo2b4o2bo4b2o$b5o3bo4bo3b5o3b3o14b3o3b5o3bo4bo3b
5o3b3o14b3o$2b2o6b4o6b2o5b2ob2o8b2ob2o5b2o6b4o6b2o5b2ob2o8b2ob2o!
#C [ LOOP 38 ]
It's not fake.
Befunge.
Square calculator
P (first character???)
Infinite loop needs to be fixed
I have no idea what this is

User avatar
PHPBB12345
Posts: 1096
Joined: August 5th, 2015, 11:55 pm
Contact:

Re: Random posts

Post by PHPBB12345 » February 18th, 2020, 8:52 am

Code: Select all

(A AND B) OR (C AND D):
   |
 +-*-+
(A) (C)
 |   |
(B) (D)
 +-*-+
   |

(A OR B) AND (C OR D):
   |
 +-*-+
(A) (B)
 +-*-+
   |
 +-*-+
(C) (D)
 +-*-+
   |

User avatar
JP21
Posts: 1870
Joined: October 26th, 2019, 5:39 am
Location: PH

Re: Random posts

Post by JP21 » February 18th, 2020, 9:06 am

PHPBB12345 wrote:
February 18th, 2020, 8:52 am

Code: Select all

(A AND B) OR (C AND D):
   |
 +-*-+
(A) (C)
 |   |
(B) (D)
 +-*-+
   |

(A OR B) AND (C OR D):
   |
 +-*-+
(A) (B)
 +-*-+
   |
 +-*-+
(C) (D)
 +-*-+
   |
Help me out! :(
He/It never saw any of my text, so it makes me feel very disappointed.
Bot? yeeeee!

Edit: Some type of logic?
That's a code? Whatever that is.
That's why I made a new Random posts so phpbb12345 isn't there.

He/it got some unrandomistic thing to post in randoms posts.
A 17 year old guy that have useless discoveries in life and other rules.

Code: Select all

x = 13, y = 20, rule = B3/S23
11b2o$11b2o4$8b2o$8b2o2$2o$2o3$3b2o$3b2o2$11b2o$10b2o$12bo$3b2o$3b2o!
My actions weren't smart back then.

User avatar
Moosey
Posts: 4306
Joined: January 27th, 2019, 5:54 pm
Location: here
Contact:

Re: Random posts

Post by Moosey » February 18th, 2020, 12:19 pm

Ugh
PHPBB12345 is not a bot JP21
We know this
Last edited by Moosey on February 18th, 2020, 12:24 pm, edited 1 time in total.
not active here but active on discord

User avatar
Moosey
Posts: 4306
Joined: January 27th, 2019, 5:54 pm
Location: here
Contact:

Re: Random posts

Post by Moosey » February 18th, 2020, 12:24 pm

I've developed a notation for compounds
It goes like this
(Element charge)(Element charge)...n(x0,x1)n(x0,x1)...
The first part declares the charges, elements, and order of the atoms, numbered 0, 1, 2,...
The second establishes bonds-- an n-bond between atoms x0 and x1
Ex
(O)(C)(O)2(0,1)2(1,2) = O=C=O = carbon dioxide

(N-)(N+)(N)(N)(N)(N)(N)(N)2(0,1)2(1,2)(2,3)(3,4)(3,5)2(4,6)2(5,7)(6,7) = azidopentazole
not active here but active on discord

User avatar
PkmnQ
Posts: 1137
Joined: September 24th, 2018, 6:35 am
Location: Server antipode

Re: Random posts

Post by PkmnQ » February 19th, 2020, 3:39 am

Beans and eggs with a touch of pineapple

User avatar
PkmnQ
Posts: 1137
Joined: September 24th, 2018, 6:35 am
Location: Server antipode

Re: Random posts

Post by PkmnQ » February 19th, 2020, 9:12 am

step on no pets

User avatar
JP21
Posts: 1870
Joined: October 26th, 2019, 5:39 am
Location: PH

Re: Posts

Post by JP21 » February 19th, 2020, 9:16 am

Let's step away from palindromes and focus on anagrams.
A truly old anagram example: kill pets with rag
A 17 year old guy that have useless discoveries in life and other rules.

Code: Select all

x = 13, y = 20, rule = B3/S23
11b2o$11b2o4$8b2o$8b2o2$2o$2o3$3b2o$3b2o2$11b2o$10b2o$12bo$3b2o$3b2o!
My actions weren't smart back then.

User avatar
PkmnQ
Posts: 1137
Joined: September 24th, 2018, 6:35 am
Location: Server antipode

Re: Posts

Post by PkmnQ » February 19th, 2020, 10:20 am

JP21 wrote:
February 19th, 2020, 9:16 am
Let's step away from palindromes and focus on anagrams.
A truly old anagram example: kill pets with rag
An anagram I love.
Waste of time - Feats we omit

It’s true. Feats we never say about are a waste of time.

User avatar
pcallahan
Posts: 845
Joined: April 26th, 2013, 1:04 pm

Re: Posts

Post by pcallahan » February 19th, 2020, 1:24 pm

PkmnQ wrote:
February 19th, 2020, 10:20 am
It’s true. Feats we never say about are a waste of time.
How is it less of a waste of time to be acknowledged for feats? I suspect that somewhere in the universe, and probably this galaxy, there are beings who vastly outshine my pitiful attempts to understand the world around me. (And, yeah, yeah, right here on earth too.) They don't care about my "feats" such as they are. Ultimately, everything is done out of a drive to do it and has nothing to do with whether it is observed or recorded.

User avatar
Moosey
Posts: 4306
Joined: January 27th, 2019, 5:54 pm
Location: here
Contact:

Re: Posts

Post by Moosey » February 19th, 2020, 8:24 pm

JP21 wrote:
February 19th, 2020, 9:16 am
Let's step away from palindromes and focus on anagrams.
A truly old anagram example: kill pets with rag
You may be interested in this thread
not active here but active on discord

GUYTU6J
Posts: 2200
Joined: August 5th, 2016, 10:27 am
Location: 拆哪!I repeat, CHINA! (a.k.a. 种花家)
Contact:

Re: Random posts

Post by GUYTU6J » February 20th, 2020, 2:34 am

JP21 wrote:
February 9th, 2020, 12:40 pm
U+w+U=Coronavirus
What does that mean?

User avatar
JP21
Posts: 1870
Joined: October 26th, 2019, 5:39 am
Location: PH

Re: Random posts

Post by JP21 » February 20th, 2020, 4:10 am

GUYTU6J wrote:
February 20th, 2020, 2:34 am
JP21 wrote:
February 9th, 2020, 12:40 pm
Coronavirus
What does that mean?
It means that the 3 letter combination is a bad thing and Coronavirus is a type of virus.
A 17 year old guy that have useless discoveries in life and other rules.

Code: Select all

x = 13, y = 20, rule = B3/S23
11b2o$11b2o4$8b2o$8b2o2$2o$2o3$3b2o$3b2o2$11b2o$10b2o$12bo$3b2o$3b2o!
My actions weren't smart back then.

User avatar
PkmnQ
Posts: 1137
Joined: September 24th, 2018, 6:35 am
Location: Server antipode

Re: Random posts

Post by PkmnQ » February 20th, 2020, 5:58 am

I wonder what it would be like to make beehivic seeds

User avatar
PHPBB12345
Posts: 1096
Joined: August 5th, 2015, 11:55 pm
Contact:

Re: Random posts

Post by PHPBB12345 » February 20th, 2020, 6:12 am

Code: Select all

sync:
| create
+------->|
|        | create
+--------+------->|
|  wait  |        |
+------->|        |
         |        |
         |        |
  return |        |
|<-------+        |
|      wait       |
+---------------->|
                  |
                  |
      return      |
|<----------------+
|

async:
| create
+------->|
|        | create
+--------+------->|
|        |        |
|        |        |
| notify |        |
|<-------+        |
|     notify      |
|<----------------+
|

User avatar
JP21
Posts: 1870
Joined: October 26th, 2019, 5:39 am
Location: PH

Re: >:(

Post by JP21 » February 20th, 2020, 6:58 am

PHPBB12345 wrote:
February 20th, 2020, 6:12 am

Code: Select all

sync:
| create
+------->|
|        | create
+--------+------->|
|  wait  |        |
+------->|        |
         |        |
         |        |
  return |        |
|<-------+        |
|      wait       |
+---------------->|
                  |
                  |
      return      |
|<----------------+
|

async:
| create
+------->|
|        | create
+--------+------->|
|        |        |
|        |        |
| notify |        |
|<-------+        |
|     notify      |
|<----------------+
|
Stop the ignorance and stop removing words from your posts because I don't want you to become a real bot.
A 17 year old guy that have useless discoveries in life and other rules.

Code: Select all

x = 13, y = 20, rule = B3/S23
11b2o$11b2o4$8b2o$8b2o2$2o$2o3$3b2o$3b2o2$11b2o$10b2o$12bo$3b2o$3b2o!
My actions weren't smart back then.

User avatar
JP21
Posts: 1870
Joined: October 26th, 2019, 5:39 am
Location: PH

Re: Random posts

Post by JP21 » February 20th, 2020, 7:02 am

PkmnQ wrote:
February 20th, 2020, 5:58 am
I wonder what it would be like to make beehivic seeds
I already tried.
The answer is, it would be a lot harder done blockic ones. (to the point that only machines can get a good reaction.

Code: Select all

x = 11, y = 13, rule = 4-in-1v2x1
9.A$8.A$8.3A3$.A$A.A$A.A$.A2$6.2A$5.A2.A$6.2A!
A 17 year old guy that have useless discoveries in life and other rules.

Code: Select all

x = 13, y = 20, rule = B3/S23
11b2o$11b2o4$8b2o$8b2o2$2o$2o3$3b2o$3b2o2$11b2o$10b2o$12bo$3b2o$3b2o!
My actions weren't smart back then.

User avatar
Moosey
Posts: 4306
Joined: January 27th, 2019, 5:54 pm
Location: here
Contact:

Re: :(

Post by Moosey » February 20th, 2020, 1:27 pm

JP21 wrote:
February 20th, 2020, 6:58 am
PHPBB12345 wrote:
February 20th, 2020, 6:12 am

Code: Select all

sync:
| create
+------->|
|        | create
+--------+------->|
|  wait  |        |
+------->|        |
         |        |
         |        |
  return |        |
|<-------+        |
|      wait       |
+---------------->|
                  |
                  |
      return      |
|<----------------+
|

async:
| create
+------->|
|        | create
+--------+------->|
|        |        |
|        |        |
| notify |        |
|<-------+        |
|     notify      |
|<----------------+
|
Stop the ignorance and stop removing words from your posts because I don't want you to become a real bot.
Stop being so rude to PHPBB123345 because I don't want you to get in trouble
not active here but active on discord

User avatar
JP21
Posts: 1870
Joined: October 26th, 2019, 5:39 am
Location: PH

Re: :(

Post by JP21 » February 20th, 2020, 7:20 pm

Moosey wrote:
February 20th, 2020, 1:27 pm
JP21 wrote:
February 20th, 2020, 6:58 am
PHPBB12345 wrote:
February 20th, 2020, 6:12 am

Code: Select all

sync:
| create
+------->|
|        | create
+--------+------->|
|  wait  |        |
+------->|        |
         |        |
         |        |
  return |        |
|<-------+        |
|      wait       |
+---------------->|
                  |
                  |
      return      |
|<----------------+
|

async:
| create
+------->|
|        | create
+--------+------->|
|        |        |
|        |        |
| notify |        |
|<-------+        |
|     notify      |
|<----------------+
|
Stop the ignorance and stop removing words from your posts because I don't want you to become a real bot.
Stop being so rude to PHPBB123345 because I don't want you to get in trouble
It isn't as rude as you think.
I'm pointing out everytime and nothing happens.
I'm telling him to not be a bot but he/it can't see it.
Maybe he/it added me as a foe?
I don't even know what it does.
Actually being rude means just saying bad things that doesn't relate with issues and only saying it because you want but the issue is that he/it doesn't see replies (Sometimes he/it could but it's many weeks ago) and maybe just a human that uses a machine while the human posts the code result here. If that's rude to you, then you never saw anything ruder than that.
My neighborhood is MUCH ruder than that (like 2-5 times ruder) so much so that I don't get out of my house unless if there's school.
A 17 year old guy that have useless discoveries in life and other rules.

Code: Select all

x = 13, y = 20, rule = B3/S23
11b2o$11b2o4$8b2o$8b2o2$2o$2o3$3b2o$3b2o2$11b2o$10b2o$12bo$3b2o$3b2o!
My actions weren't smart back then.

User avatar
Moosey
Posts: 4306
Joined: January 27th, 2019, 5:54 pm
Location: here
Contact:

Re: good lord

Post by Moosey » February 20th, 2020, 7:23 pm

JP21 wrote:
February 20th, 2020, 7:20 pm
It isn't as rude as you think.
I'm pointing out everytime and nothing happens.
I'm telling him to not be a bot but he can't see it.
Maybe he added me as a foe?
PHPBB12345 IS NOT A BOT FOR GOD'S SAKE
and you are actually being rather rude to him
I would not be surprised if he added you as a foe for that
not active here but active on discord

Locked