News:

The moderation team is holding a poll on the topic of the site's connection to Scratch. More details 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
6 (42.9%)
dogs
3 (21.4%)
hamsters
1 (7.1%)
birds
2 (14.3%)
lizards
2 (14.3%)

Total Members Voted: 14

PkmnQ

Quote from: Byron_Inc_TBGIs there a way to use scientific notation with variable power in JS
What do you mean by that?
Quickly, I must save the Q's!
Project EAPIDTOTT2TTNO's current target: 4n topic
A cool kid quietly measures the distance in the banquet (5). :/ B)
On a journey to a new domain full of enrichment, With auras and curses for your entertainment, The concept of collectibles spent to unblock your path, Is stretched far to create an interesting aftermath. The ideas start simple at their most plain, Followed by golden power breaking constraints, Along with barriers to check you've cleared things out, Although double vision puts their power in doubt. Why raise up when you can instead replace, And why take just some when you can completely erase? Replacing with nothing may sound like obliteration, But there's a good reason for its differentiation. Special colors that melt, fortify, and wash, And blockages not even gold can squash, A loft rumored to be haunted by a certain curse, And a metal whose purity demonstrates its worth. You've just reached amounts less than none, One thing is clear: It has only just begun.
Tip: Use c͢ombining cha͊racters, because ye᷂s.
Quine list

Threads that I think should be played more: link chain Pre-posted Destruction
Scripts: The sky is the limit

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
bomb

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
Quickly, I must save the Q's!
Project EAPIDTOTT2TTNO's current target: 4n topic
A cool kid quietly measures the distance in the banquet (5). :/ B)
On a journey to a new domain full of enrichment, With auras and curses for your entertainment, The concept of collectibles spent to unblock your path, Is stretched far to create an interesting aftermath. The ideas start simple at their most plain, Followed by golden power breaking constraints, Along with barriers to check you've cleared things out, Although double vision puts their power in doubt. Why raise up when you can instead replace, And why take just some when you can completely erase? Replacing with nothing may sound like obliteration, But there's a good reason for its differentiation. Special colors that melt, fortify, and wash, And blockages not even gold can squash, A loft rumored to be haunted by a certain curse, And a metal whose purity demonstrates its worth. You've just reached amounts less than none, One thing is clear: It has only just begun.
Tip: Use c͢ombining cha͊racters, because ye᷂s.
Quine list

Threads that I think should be played more: link chain Pre-posted Destruction
Scripts: The sky is the limit

solitaire







solitaire







solitaire







solitaire







Byron_Inc_TBG

bomb

Byron_Inc_TBG

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

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
bomb

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
bomb

Incendiary

I heard there was another TBG-style forum called intforums, is that still around/active?
Just another internet user and anime transbian catgirl who really likes Touhou Project for some reason. If you were looking for something interesting here, you've come to the wrong place.
My not even remotely popular TBGs: Don't Use Characters in Your Username|TGORADTFYFWBAAASA|Mildly Inconvenient Computer Viruses|Guess what? You lose!|Totally Normal Store|Count Up with Hidden Effects|Tonoight on Bottom G'ear|Luigi Status|Things (The Semi-Official Reboot)|The TBGers Feed Yuyuko
My Super Dead RPGs: The TBGs Gun Game|We Play Cards|N00bs vs Pr0s|The Stupid, Unfair and Boring Game Show Nobody Asked For|Invasion Day


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

Gilbert189

%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

bomb

solitaire

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






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: :|
// scratch // vimeo // wasteof // imgbb //

"If you ever decide not to be lame again, GIVE ME A CALL."

PkmnQ

i accidentally created a math problem

how many 10-digit numbers contain both 20 and 25 in them
Quickly, I must save the Q's!
Project EAPIDTOTT2TTNO's current target: 4n topic
A cool kid quietly measures the distance in the banquet (5). :/ B)
On a journey to a new domain full of enrichment, With auras and curses for your entertainment, The concept of collectibles spent to unblock your path, Is stretched far to create an interesting aftermath. The ideas start simple at their most plain, Followed by golden power breaking constraints, Along with barriers to check you've cleared things out, Although double vision puts their power in doubt. Why raise up when you can instead replace, And why take just some when you can completely erase? Replacing with nothing may sound like obliteration, But there's a good reason for its differentiation. Special colors that melt, fortify, and wash, And blockages not even gold can squash, A loft rumored to be haunted by a certain curse, And a metal whose purity demonstrates its worth. You've just reached amounts less than none, One thing is clear: It has only just begun.
Tip: Use c͢ombining cha͊racters, because ye᷂s.
Quine list

Threads that I think should be played more: link chain Pre-posted Destruction
Scripts: The sky is the limit

TonyBrown148

#1446
5192296858534827628530496329220096 = 2^112
*See XKCD 1688.
Hi. My name is Tony Brown, or TB148 for short.
NEW GAME: https://tbgforums.com/forums/index.php?topic=6658.0

TonyBrown148

Last edited by TonyBrown148 (Today  00:01:10)
*See XKCD 1688.
Hi. My name is Tony Brown, or TB148 for short.
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
Quickly, I must save the Q's!
Project EAPIDTOTT2TTNO's current target: 4n topic
A cool kid quietly measures the distance in the banquet (5). :/ B)
On a journey to a new domain full of enrichment, With auras and curses for your entertainment, The concept of collectibles spent to unblock your path, Is stretched far to create an interesting aftermath. The ideas start simple at their most plain, Followed by golden power breaking constraints, Along with barriers to check you've cleared things out, Although double vision puts their power in doubt. Why raise up when you can instead replace, And why take just some when you can completely erase? Replacing with nothing may sound like obliteration, But there's a good reason for its differentiation. Special colors that melt, fortify, and wash, And blockages not even gold can squash, A loft rumored to be haunted by a certain curse, And a metal whose purity demonstrates its worth. You've just reached amounts less than none, One thing is clear: It has only just begun.
Tip: Use c͢ombining cha͊racters, because ye᷂s.
Quine list

Threads that I think should be played more: link chain Pre-posted Destruction
Scripts: The sky is the limit

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.
Quickly, I must save the Q's!
Project EAPIDTOTT2TTNO's current target: 4n topic
A cool kid quietly measures the distance in the banquet (5). :/ B)
On a journey to a new domain full of enrichment, With auras and curses for your entertainment, The concept of collectibles spent to unblock your path, Is stretched far to create an interesting aftermath. The ideas start simple at their most plain, Followed by golden power breaking constraints, Along with barriers to check you've cleared things out, Although double vision puts their power in doubt. Why raise up when you can instead replace, And why take just some when you can completely erase? Replacing with nothing may sound like obliteration, But there's a good reason for its differentiation. Special colors that melt, fortify, and wash, And blockages not even gold can squash, A loft rumored to be haunted by a certain curse, And a metal whose purity demonstrates its worth. You've just reached amounts less than none, One thing is clear: It has only just begun.
Tip: Use c͢ombining cha͊racters, because ye᷂s.
Quine list

Threads that I think should be played more: link chain Pre-posted Destruction
Scripts: The sky is the limit

TonyBrown148

#1450
Salmon Fish

What would happen if I put a salmon into mifernite? What about anti-mifernite?
*See XKCD 1688.
Hi. My name is Tony Brown, or TB148 for short.
NEW GAME: https://tbgforums.com/forums/index.php?topic=6658.0