News:

The moderation team plans to make revisions to the community guidelines. Detailed information about the changes can be found here. Your feedback is appreciated.

Main Menu

If this gets a post ID of 32768, we advance!

Started by solitaire, Dec 29, 2021, 11:00:10 PM

Previous topic - Next topic

are you a cat or a dog person

cats
1 (16.7%)
dogs
2 (33.3%)
hamsters
0 (0%)
birds
2 (33.3%)
lizards
1 (16.7%)

Total Members Voted: 6

PkmnQ

Quote from: Byron_Inc_TBGIs there a way to use scientific notation with variable power in JS
What do you mean by that?
This was a thing I tried to do, but insert mess of a sentence here. Also, I'm a vowelless neither transparent nor translucent mammal of the genus Neogale, I guess. :/ B)
The future experience must be anticipated beforehand to ensure proper expectations.
Tip: Use c͢ombining cha͊racters, because ye᷂s.
Quine list

Threads that I think should be played more (found in the Infinite Flood): link chain

Byron_Inc_TBG

Quote from: PkmnQ
Quote from: Byron_Inc_TBGIs there a way to use scientific notation with variable power in JS
What do you mean by that?
like 10e12 but the 12 is a variable
eh

PkmnQ

Quote from: Byron_Inc_TBG
Quote from: PkmnQ
Quote from: Byron_Inc_TBGIs there a way to use scientific notation with variable power in JS
What do you mean by that?
like 10e12 but the 12 is a variable
1e3 = 1 * 10 ** 3

1ea = 1 * 10 ** a
This was a thing I tried to do, but insert mess of a sentence here. Also, I'm a vowelless neither transparent nor translucent mammal of the genus Neogale, I guess. :/ B)
The future experience must be anticipated beforehand to ensure proper expectations.
Tip: Use c͢ombining cha͊racters, because ye᷂s.
Quine list

Threads that I think should be played more (found in the Infinite Flood): link chain

solitaire

hi!


solitaire

hi!


solitaire

hi!


solitaire

hi!


Byron_Inc_TBG

eh

Byron_Inc_TBG

.sort() isn't working
i fed it 10 numbers to sort and it returned the original list
eh

TwilightSeleneMisty

My new account is ChaoticControversies.

Byron_Inc_TBG

Quote from: Byron_Inc_TBG.sort() isn't working
i fed it 10 numbers to sort and it returned the original list
nevermind, i ended up feeding them classes and i didn't notice
eh

TwilightSeleneMisty

My new account is ChaoticControversies.

TwilightSeleneMisty

I can do autofill on a laptop

I'm 10 parallel universes ahead of everyone B)
My new account is ChaoticControversies.

Byron_Inc_TBG

Quote from: TwilightSeleneMistyI can do autofill on a laptop

I'm 10 parallel universes ahead of everyone B)
grammarly
eh

Incendiary

I heard there was another TBG-style forum called intforums, is that still around/active?
Just another internet user and anime transbian catgirl dealing with the boring dystopia that is our society. If you were looking for something interesting here, you've come to the wrong place.

My discord is Incendiary__ and you can join my server at https://discord.gg/k2ywUzBAED
My Twitch channl is available at https://twitch.tv/incendiaryoce

gilbert_given_TBG

%import common.SIGNED_NUMBER -> _NUMBER
COLOR  : /\[#([0-9A-F]{3}|[0-9A-F]{6})\]/i
?SELECT: STRING | /[\[(](.*?)(?<!\\)(?: v)[\])]/
?STRING: GENERAL | /\[(.*?)(?<!\\)\]/
GENERAL: "()"                                        -> NULL_GENERAL
       | /\((\d*?)(?<!\\)\)/                         -> NUMBER
       | /\((.*?)(?<!\\)(?: :: variable)?\)/         -> DATA
       | /\((.*?)(?<!\\)(?: :: (variable|list))?\)/  -> DATA
       | "(x position)"                              -> POS_X
       | "(y position)"                              -> POS_Y
       | "(direction)"                               -> DIRECTION
       | "(size)"                                    -> SIZE
       | "(answer)"                                  -> ANSWER
       | "(volume)"                                  -> VOLUME
       | "(distance to " SELECT ")"                  -> DISTANCE
       | "(mouse x)"                                 -> MOUSE_X
       | "(mouse y)"                                 -> MOUSE_Y
       | "(loudness)"                                -> LOUDNESS
       | "(timer)"                                   -> TIMER
       | "(" SELECT " of " SELECT ")"                -> SPRITE_ATTRIBUTE
       | "(current " SELECT ")"                      -> CURRENT_TIME
       | "(days since 2000)"                         -> DAYS_SINCE
       | "(username)"                                -> USERNAME
       | "(" GENERAL " + " GENERAL ")"               -> ADD
       | "(" GENERAL " - " GENERAL ")"               -> SUBTRACT
       | "(" GENERAL " * " GENERAL ")"               -> MULTIPLY
       | "(" GENERAL " / " GENERAL ")"               -> DIVIDE
       | "(pick random " GENERAL " to " GENERAL ")"  -> RANDOM
       | "(join " STRING " " STRING ")"              -> CONCATENATE
       | "(letter " GENERAL " of " STRING ")"        -> STRING_ITEM
       | "(length of " STRING ")"                    -> STRING_LENGTH
       | "(" GENERAL " mod " GENERAL ")"             -> MODULUS
       | "(round " GENERAL ")"                       -> ROUND
       | "(item " GENERAL " of " SELECT ")"          -> LIST_ITEM
       | "(length of " SELECT ")"                    -> LIST_LENGTH
       | "(item # " GENERAL " of " SELECT ")"        -> LIST_INDEX
BOOLEAN: "<>"                                        -> NULL_BOOLEAN
       | "<not " BOOLEAN ">"                         -> NOT
       | "<" BOOLEAN " and " BOOLEAN ">"             -> AND
       | "<" BOOLEAN " or " BOOLEAN ">"              -> OR
       | "<" BOOLEAN " < " BOOLEAN ">"               -> LESS_THAN
       | "<" BOOLEAN " = " BOOLEAN ">"               -> EQUALS
       | "<" BOOLEAN " > " BOOLEAN ">"               -> GREATER_THAN
       | "<" SELECT " contains " STRING " ? >"       -> LIST_CONTAINS
       | "<" STRING " contains " STRING " ? >"       -> STRING_CONTAINS
       | "<key " SELECT " pressed?>"                 -> KEY_PRESSED
       | "<touching " SELECT " ?>"                   -> TOUCHING_SPRITE
       | "<touching color " COLOR " ?>"              -> TOUCHING_COLOR
       | "<color " COLOR " is touching " COLOR " ?>" -> COLOR_TOUCHING_COLOR
       | "<mouse down?>"                             -> MOUSE_DOWN
STACK  : "move " GENERAL " steps"                               -> MOVE
       | "turn cw " GENERAL " degrees"                          -> ROTATE_CW
       | "turn ccw " GENERAL " degrees"                         -> ROTATE_CCW
       | "point in direction " GENERAL                          -> ROTATE_SET
       | "point towards " SELECT                                -> ROTATE_TOWARDS
       | "go to x: " GENERAL " y: " GENERAL                     -> GOTO_COORD
       | "go to " SELECT                                        -> GOTO_OBJECT
       | "glide " GENERAL " secs to x: " GENERAL " y: " GENERAL -> GLIDE_TO_COORD
       | "glide " GENERAL " secs to " SELECT                    -> GLIDE_TO_OBJECT
       | "change x by " GENERAL                                 -> CHANGE_X
       | "change y by " GENERAL                                 -> CHANGE_Y
       | "set x by " GENERAL                                    -> SET_X
       | "set y by " GENERAL                                    -> SET_X
       | "if on edge, bounce"                                   -> BOUNCE
       | "set rotation style" SELECT                            -> SET_ROTATION_STYLE
       | "say " GENERAL " for " GENERAL " seconds"              -> SAY_TIMED
       | "say " GENERAL                                         -> SAY_UNTIMED
       | "think " GENERAL " for " GENERAL " seconds"            -> THINK_TIMED
       | "think " GENERAL                                       -> THINK_UNTIMED
       | "show"                                                 -> SHOW
       | "hide"                                                 -> HIDE
       | "switch costume to " SELECT                            -> SWITCH_COSTUME
       | "switch backdrop to " SELECT                           -> SWITCH_BACKDROP
       | "switch backdrop to " SELECT " and wait"               -> SWITCH_BACKDROP_AND_WAIT
       | "next costume"                                         -> NEXT_COSTUME
       | "next backdrop"                                        -> NEXT_BACKDROP
       | "change " SELECT " effect by " GENERAL                 -> CHANGE_EFFECT
       | "set " SELECT " effect to " GENERAL                    -> SET_EFFECT
       | "clear graphic effects"                                -> CLEAR_EFFECTS
       | "change size by " GENERAL                              -> CHANGE_SIZE
       | "set size by " GENERAL " %"                            -> SET_SIZE
       | "go to " SELECT " layer"                               -> GOTO_LAYER
       | "go " SELECT GENERAL " layers"                         -> CHANGE_LAYER
       | "start sound " SELECT                                  -> START_SOUND
       | "play sound " SELECT " and wait"                       -> PLAY_SOUND
       | "stop all sounds"                                      -> STOP_SOUNDS
       | "change volume by " GENERAL                            -> CHANGE_VOLUME
       | "set volume by " GENERAL " %"                          -> SET_VOLUME
       | "change " SELECT " effect by " GENERAL " :: sound"     -> CHANGE_SOUND_EFFECT
       | "set " SELECT " effect to " GENERAL " :: sound"        -> SET_SOUND_EFFECT
       | "clear sound effects"                                  -> CLEAR_SOUND_EFFECTS
       | "broadcast " SELECT                                    -> BROADCAST
       | "broadcast " SELECT " and wait"                        -> BROADCAST_AND_WAIT
       | "wait " GENERAL " seconds"                             -> WAIT
       | "wait until " BOOLEAN                                  -> WAIT_UNTIL
       | "create clone of " SELECT                              -> CREATE_CLONE
       | "repeat " GENERAL NL SUITE "end"                       -> REPEAT
       | "forever" NL SUITE "end"                               -> FOREVER
       | "if " BOOLEAN " then" NL SUITE "end"                   -> IF
       | "if " BOOLEAN " then" NL SUITE "else" NL SUITE "end"   -> IF_ELSE
       | "repeat until " BOOLEAN NL SUITE "end"                 -> REPEAT_UNTIL
       | "ask " GENERAL " and wait"                             -> ASK
       | "reset timer"                                          -> RESET_TIMER
       | "set drag mode " SELECT                                -> SET_DRAG
       | "change " SELECT " by " GENERAL                        -> CHANGE_VARIABLE
       | "set " SELECT " to " GENERAL                           -> SET_VARIABLE
       | "show variable " SELECT                                -> SHOW_VARIABLE
       | "hide variable " SELECT                                -> HIDE_VARIABLE
       | "add " GENERAL " to " SELECT                           -> APPEND_LIST
       | "delete " GENERAL " of " SELECT                        -> DELETE_ITEM
       | "delete all of " SELECT                                -> DELETE_ALL
       | "insert " GENERAL " at " GENERAL " of " SELECT         -> INSERT_ITEM
       | "replace item " GENERAL " of " SELECT " to " GENERAL   -> REPLACE_ITEM
       | "show list " SELECT                                    -> SHOW_LIST
       | "hide list " SELECT                                    -> HIDE_LIST
       | ((/(.*?)/ | BOOLEAN | GENERAL) " "?)+                  -> CUSTOM_BLOCK
HAT    : "when green flag clicked"                   -> WHEN_GREEN_FLAG_CLICKED
       | "when " SELECT " key pressed"               -> WHEN_KEY_PRESSED
       | "when this sprite clicked"                  -> WHEN_SPRITE_CLICKED
       | "when backdrop switches to " SELECT         -> WHEN_BACKDROP_CHANGED
       | "when " SELECT " > " GENERAL                -> WHEN_CONDITION_MET
       | "when I receive " SELECT                    -> WHEN_BROADCAST_RECEIVED
       | "when I start as a clone"                   -> WHEN_CLONE_IS_MADE
       | "define" /(.*?)/                            -> DEFINE_BLOCK
CAP    : "stop " SELECT                              -> STOP_SCRIPTS
       | "delete this clone"                         -> DELETE_CLONE


SUITE  : (STACK NL)* | (STACK NL)* CAP NL
BLOCKS : HAT (SUITE)

NL     : /\r?\n[\t ]*/
%import common.CPP_COMMENT -> COMMENT
%ignore /\\[\t \f]*\r?\n/   // LINE_CONT
%ignore COMMENT

Byron_Inc_TBG

eh

solitaire

#1443
sometimes you can find dragons in places where they definitely should not be
hi!


Orb Fish

Quote from: TwilightSeleneMistyI can do autofill on a laptop

I'm 10 parallel universes ahead of everyone B)
Me, who has a MacBook Pro with a Touch Bar: :|
I'm the person who accidentally knocked some people - along with myself - down a big rabbit hole that we call the Mineral Fish fandom.

PkmnQ

i accidentally created a math problem

how many 10-digit numbers contain both 20 and 25 in them
This was a thing I tried to do, but insert mess of a sentence here. Also, I'm a vowelless neither transparent nor translucent mammal of the genus Neogale, I guess. :/ B)
The future experience must be anticipated beforehand to ensure proper expectations.
Tip: Use c͢ombining cha͊racters, because ye᷂s.
Quine list

Threads that I think should be played more (found in the Infinite Flood): link chain

Maew Nryang

#1446
5192296858534827628530496329220096 = 2^112
*See XKCD 1688.
Hi. My name is Maew Nryang. Please call me "Maew", not "Nryang".
NEW GAME: https://tbgforums.com/forums/index.php?topic=6658.0

Maew Nryang

Last edited by TonyBrown148 (Today  00:01:10)
*See XKCD 1688.
Hi. My name is Maew Nryang. Please call me "Maew", not "Nryang".
NEW GAME: https://tbgforums.com/forums/index.php?topic=6658.0

PkmnQ

very bad idea: a virus that doesn't do anything unless it's september-december where it plays "all i want for christmas is you" while the computer is on
This was a thing I tried to do, but insert mess of a sentence here. Also, I'm a vowelless neither transparent nor translucent mammal of the genus Neogale, I guess. :/ B)
The future experience must be anticipated beforehand to ensure proper expectations.
Tip: Use c͢ombining cha͊racters, because ye᷂s.
Quine list

Threads that I think should be played more (found in the Infinite Flood): link chain

PkmnQ

Usually, the rule of the wall, the rule of the wall, and the rule of the rule of eternal impossibility. However, on the image of the moving object, the rule of the rule is that the moving object is partially open.
This was a thing I tried to do, but insert mess of a sentence here. Also, I'm a vowelless neither transparent nor translucent mammal of the genus Neogale, I guess. :/ B)
The future experience must be anticipated beforehand to ensure proper expectations.
Tip: Use c͢ombining cha͊racters, because ye᷂s.
Quine list

Threads that I think should be played more (found in the Infinite Flood): link chain

Maew Nryang

#1450
Salmon Fish

What would happen if I put a salmon into mifernite? What about anti-mifernite?
*See XKCD 1688.
Hi. My name is Maew Nryang. Please call me "Maew", not "Nryang".
NEW GAME: https://tbgforums.com/forums/index.php?topic=6658.0