Posts: 3,214 
Joined: Mar 2013 
Pronouns: she/her/hers 
Location:  ρ(∂v/∂t+v•∇v)= -∇p+∇•T+f
		
	 
 
	
		
		
		This thread is my subission for Reyweld's game
		
	  
	
		12-12-2017, 04:09 AM 
	 
	
		Nowhere did they say that I can't do this, so I'm just going to make this thread with all the stuff I want and then submit it at the end of signups. 
 
There's no way that this could conceivably backfire.
	 
	
	
	
		
	 
 
 
	
	
	
		
Posts: 3,214 
Joined: Mar 2013 
Pronouns: she/her/hers 
Location:  ρ(∂v/∂t+v•∇v)= -∇p+∇•T+f
		
	 
 
	
		
		
		RE: This thread is my subission for Reyweld's game
		
	  
	
		12-12-2017, 04:12 AM 
(This post was last modified: 12-12-2017, 04:12 AM by Kíeros.)
	 
	
		Have a kitty. 
			Show Content 
			Spoiler![[Image: 1508381315.icefire_ych_tf_blackcat_kotakun.png]](https://images-ext-2.discordapp.net/external/i0JAQG8IxLl9-IJ4_EKAkluK2o3MAwEvLdVGWkFPDqU/http/d.facdn.net/art/icefire/1508381315/1508381315.icefire_ych_tf_blackcat_kotakun.png)  
		 
	 
	
	
	
		
	 
 
 
	
	
		A character on fire WOULDN'T say "I am cold." 
		
		
Offline 
		
	 
	
		
Posts: 4,286 
Joined: Jan 2016 
Pronouns: officially she 
Location:  the woods
		
	 
 
	
		
		
		RE: This thread is my subission for Reyweld's game
		
	  
	
		12-12-2017, 04:12 AM 
	 
	
		what's a subission
	 
	
	
	
		
	 
 
 
	
	
	
		
Posts: 2,158 
Joined: Mar 2017 
Pronouns: He/him/funky/fresh 
Location:  [◇]
		
	 
 
	
		
		
		RE: This thread is my subission for Reyweld's game
		
	  
	
		12-12-2017, 04:13 AM 
	 
	
		whats a subission
	 
	
	
	
		
	 
 
 
	
	
		A character on fire WOULDN'T say "I am cold." 
		
		
Offline 
		
	 
	
		
Posts: 4,286 
Joined: Jan 2016 
Pronouns: officially she 
Location:  the woods
		
	 
 
	
		
		
		RE: This thread is my subission for Reyweld's game
		
	  
	
		12-12-2017, 04:14 AM 
	 
	
		also, what the fuck 
 
 (12-12-2017, 04:12 AM)Kíeros Wrote: »Have a kitty. 
			Show Content 
			Spoiler![[Image: 1508381315.icefire_ych_tf_blackcat_kotakun.png]](https://images-ext-2.discordapp.net/external/i0JAQG8IxLl9-IJ4_EKAkluK2o3MAwEvLdVGWkFPDqU/http/d.facdn.net/art/icefire/1508381315/1508381315.icefire_ych_tf_blackcat_kotakun.png)  
		  
	 
	
	
	
		
	 
 
 
	
	
		A character on fire WOULDN'T say "I am cold." 
		
		
Offline 
		
	 
	
		
Posts: 4,286 
Joined: Jan 2016 
Pronouns: officially she 
Location:  the woods
		
	 
 
	
		
		
		RE: This thread is my subission for Reyweld's game
		
	  
	
		12-12-2017, 04:20 AM 
	 
	
		 (12-12-2017, 04:09 AM)Kíeros Wrote: »I'm just going to make this thread with all the stuff I want and then submit it at the end of signups. 
 
There's no way that this could conceivably backfire.  
i bet you didn't want a delicious sandwich in your thread. 
 
![[Image: reXJgrw.jpg]](https://i.imgur.com/reXJgrw.jpg)  
 
now you're gonna have to deal with this in your mafia role, suckaaaaa
	 
	
	
	
		
	 
 
 
	
	
	
		
Posts: 3,214 
Joined: Mar 2013 
Pronouns: she/her/hers 
Location:  ρ(∂v/∂t+v•∇v)= -∇p+∇•T+f
		
	 
 
	
		
		
		RE: This thread is my subission for Reyweld's game
		
	  
	
		12-12-2017, 04:29 AM 
	 
	
		Code: DEFINE PROCEDURE ''MINUS'' [M,N]: 
BLOCK 0: BEGIN 
    IF M < N, THEN: 
    QUIT BLOCK 0; 
    LOOP AT MOST M + 1 TIMES: 
    BLOCK 1: BEGIN 
        IF OUTPUT + N = M THEN: 
        ABORT LOOP 1; 
        OUTPUT ⇐ OUTPUT + 1; 
    BLOCK 1: END; 
BLOCK 0: END. 
 
DEFINE PROCEDURE ''REMAINDER'' [M,N]: 
BLOCK 0: BEGIN 
    IF N = 0, THEN: 
    QUIT BLOCK 0; 
    LOOP AT MOST M + 1 TIMES: 
    BLOCK 1: BEGIN 
        IF OUTPUT * N > M, THEN: 
        ABORT LOOP 1: 
        CELL(0) ⇐ CELL(0) + 1; 
    BLOCK 1: END; 
    CELL(0) ⇐ MINUS [CELL(0),1]; 
    CELL(0) ⇐ CELL(0) * N; 
    OUTPUT ⇐ MINUS [M,CELL(0)]; 
BLOCK 0: END. 
 
DEFINE PROCEDURE ''PRIME?'' [N]: 
BLOCK 0: BEGIN 
    IF N = 0, THEN: 
    QUIT BLOCK 0; 
    CELL(0) ⇐ 2; 
    LOOP AT MOST MINUS [N,2] TIMES: 
    BLOCK 1: BEGIN 
        IF REMAINDER [N,CELL(0)] = 0 THEN: 
        QUIT BLOCK 0; 
        CELL(0) ⇐ CELL(0) + 1; 
    BLOCK 1: END 
    OUTPUT ⇐ YES; 
BLOCK 0: END. 
 
DEFINE PROCEDURE ''GOLDBACH?'' [N]: 
BLOCK 0: BEGIN 
    CELL(0) ⇐ 2; 
    LOOP AT MOST N TIMES: 
    BLOCK 1: BEGIN 
        IF {PRIME? [CELL(0)] AND PRIME? [MINUS [N,CELL(0)]]}, THEN: 
        BLOCK 2: BEGIN 
            OUTPUT ⇐ YES; 
            QUIT BLOCK 0; 
        BLOCK 2: END; 
        CELL(0) ⇐ CELL(0) + 1; 
    BLOCK 1: END; 
BLOCK 0: END.
  
	 
	
	
	
		
	 
 
 
	
	
	
		
Posts: 3,214 
Joined: Mar 2013 
Pronouns: she/her/hers 
Location:  ρ(∂v/∂t+v•∇v)= -∇p+∇•T+f
		
	 
 
	
		
		
		RE: This thread is my subission for Reyweld's game
		
	  
	
		12-12-2017, 04:44 AM 
	 
	
		 (12-12-2017, 04:14 AM)a52 Wrote: »also, what the fuck kitty
	 
	
	
	
		
	 
 
 
	
	
	
		
Posts: 852 
Joined: Nov 2017 
Pronouns: she/her, they/them 
Location:  the chaos dimension
		
	 
 
	
		
		
		RE: This thread is my subission for Reyweld's game
		
	  
	
		12-12-2017, 05:11 AM 
	 
	
		I will see you on... the BATTELFIELD
	 
	
	
(_____/  
|.:.:.:.:.:./ 
|_ |_ |_ |_
 
	
		
	 
 
 
	
	
	
		
Posts: 844 
Joined: Oct 2017 
Pronouns: He/him 
Location:  Oregon, USA
		
	 
 
	
		
		
		RE: This thread is my subission for Reyweld's game
		
	  
	
		12-12-2017, 05:28 AM 
	 
	
	
	
	
		
	 
 
 
	
	
	
		
Posts: 10,065 
Joined: Jul 2011 
Pronouns:  
Location:  
		
	 
 
	
		
		
		RE: This thread is my subission for Reyweld's game
		
	  
	
		12-12-2017, 05:31 AM 
	 
	
		*Lock this thread*
	 
	
	
	
		
	 
 
 
	
	
		A character on fire WOULDN'T say "I am cold." 
		
		
Offline 
		
	 
	
		
Posts: 4,286 
Joined: Jan 2016 
Pronouns: officially she 
Location:  the woods
		
	 
 
	
		
		
		2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79
		
	  
	
		12-12-2017, 06:38 AM 
	 
	
		 (12-12-2017, 05:28 AM)kilozombie Wrote: »  
immunized against primes my ass
	 
	
	
	
		
	 
 
 
	
	
	
		
Posts: 1,685 
Joined: Oct 2012 
Pronouns: he, him, his 
Location:  
		
	 
 
	
		
		
		RE: This thread is my subission for Reyweld's game
		
	  
	
		12-12-2017, 07:11 AM 
	 
	
		What's a subission?
	 
	
	
	
		
	 
 
 
	
	
	
		
Posts: 1,685 
Joined: Oct 2012 
Pronouns: he, him, his 
Location:  
		
	 
 
	
		
		
		RE: This thread is my subission for Reyweld's game
		
	  
	
		12-12-2017, 07:13 AM 
	 
	
		The kitty is made largely of goo. 
I approve of this.
	 
	
	
	
		
	 
 
 
	
	
	
		
Posts: 844 
Joined: Oct 2017 
Pronouns: He/him 
Location:  Oregon, USA
		
	 
 
	
		
		
		RE: 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79
		
	  
	
		12-12-2017, 07:28 AM 
	 
	
		 (12-12-2017, 06:38 AM)a52 Wrote: »immunized against primes my ass  
what the hell man 
 
dude jeez what the heck
	 
	
	
	
		
	 
 
 
	
	
	
		
Posts: 6,617 
Joined: Dec 2014 
Pronouns: He/Him (or They/Them) 
Location:  Hell-Place, Ontario
		
	 
 
	
		
		
		RE: This thread is my subission for Reyweld's game
		
	  
	
		12-12-2017, 03:28 PM 
	 
	
		I am pleased. I am so pleased.
	 
	
	
Sig: 
			Show Content 
			Spoiler
 (03-02-2015, 02:07 AM)Papers Wrote: »i don't know what i expected from reyweld's new hawkspace thread  (06-02-2016, 04:16 AM)Schazer Wrote: »Tokyo could kick your scrawny ass  (11-10-2017, 06:39 PM)Myeth Wrote: »reach for the stars 
And then annihilate them as a powermove  (02-06-2017, 01:02 AM)Justice Watch Wrote: »
			Show Content 
			Spoiler 
![[Image: LkT4Tqb.png]](https://i.imgur.com/LkT4Tqb.png)  
		  
 
		 
 
	
		
	 
 
 
	
	
	
		
Posts: 3,214 
Joined: Mar 2013 
Pronouns: she/her/hers 
Location:  ρ(∂v/∂t+v•∇v)= -∇p+∇•T+f
		
	 
 
	
		
		
		RE: This thread is my subission for Reyweld's game
		
	  
	
		12-12-2017, 10:08 PM 
	 
	
		 (12-12-2017, 07:13 AM)SeaWyrm Wrote: »The kitty is made largely of goo. 
I approve of this. It's a good kitty.
	 
	
	
	
		
	 
 
 
	
	
	
		
Posts: 1,685 
Joined: Oct 2012 
Pronouns: he, him, his 
Location:  
		
	 
 
	
		
		
		RE: This thread is my subission for Reyweld's game
		
	  
	
		12-12-2017, 10:14 PM 
	 
	
	
	
	
		
	 
 
 
	
	
	
		
Posts: 3,214 
Joined: Mar 2013 
Pronouns: she/her/hers 
Location:  ρ(∂v/∂t+v•∇v)= -∇p+∇•T+f
		
	 
 
	
		
		
		RE: This thread is my subission for Reyweld's game
		
	  
	
		12-12-2017, 10:21 PM 
	 
	
		 (12-12-2017, 10:18 PM)Kíeros Wrote: »See, any thread of mine without QG Omega is just a huge fraud. What did you just say to me? You don't have a cute kitty in there, so I could say the same of you. 
 
And besides, it took you what, nine minutes to post that? You'd think if you were seriously going to be the thread I'm using, you'd have that stuff locked down. 
 
Please, we all know that this is gonna be the thread and no matter what you do, it's pointless.
	 
	
	
	
		
	 
 
 
	
	
	
		
Posts: 3,214 
Joined: Mar 2013 
Pronouns: she/her/hers 
Location:  ρ(∂v/∂t+v•∇v)= -∇p+∇•T+f
		
	 
 
	
		
		
		RE: This thread is my subission for Reyweld's game
		
	  
	
		12-12-2017, 10:24 PM 
	 
	
		 (12-12-2017, 10:23 PM)Kíeros Wrote: »I'M GETTING TO THAT. And look, you and I both know that it took that long because my computer froze, so I couldn't use shapecatcher to draw in the nabla. F6 
Tab 
"Nabla" 
Enter 
 
No mouse movements, took me ten seconds. You already knew the name of what you were looking for, no need to draw it in shapecatcher.
	 
	
	
	
		
	 
 
 
	
	
	
		
Posts: 1,685 
Joined: Oct 2012 
Pronouns: he, him, his 
Location:  
		
	 
 
	
		
		
		RE: This thread is my subission for Reyweld's game
		
	  
	
		12-14-2017, 12:10 AM 
	 
	
		But what IS a subission?
	 
	
	
	
		
	 
 
 
	
	
	
		
Posts: 3,214 
Joined: Mar 2013 
Pronouns: she/her/hers 
Location:  ρ(∂v/∂t+v•∇v)= -∇p+∇•T+f
		
	 
 
	
		
		
		RE: This thread is my subission for Reyweld's game
		
	  
	
		12-14-2017, 01:37 AM 
	 
	
		 (12-14-2017, 01:36 AM)Kíeros Wrote: »Oh yeah? Well it's not the other one. No, Mirdini's right. This is totally the real thread. Or as Sonic would say, "You're the faker!"
	 
	
	
	
		
	 
 
 
	
	
	
		
Posts: 3,214 
Joined: Mar 2013 
Pronouns: she/her/hers 
Location:  ρ(∂v/∂t+v•∇v)= -∇p+∇•T+f
		
	 
 
	
		
		
		RE: This thread is my subission for Reyweld's game
		
	  
	
		12-17-2017, 01:07 AM 
	 
	
	
	
	
		
	 
 
 
	
	
	
		
Posts: 3,214 
Joined: Mar 2013 
Pronouns: she/her/hers 
Location:  ρ(∂v/∂t+v•∇v)= -∇p+∇•T+f
		
	 
 
	
		
		
		RE: This thread is my subission for Reyweld's game
		
	  
	
		12-17-2017, 01:07 AM 
	 
	
		FUCK YOU I WAS GONNA POST THAT HERE
	 
	
	
	
		
	 
 
 
	
	
	
		
Posts: 3,214 
Joined: Mar 2013 
Pronouns: she/her/hers 
Location:  ρ(∂v/∂t+v•∇v)= -∇p+∇•T+f
		
	 
 
	
		
		
		RE: This thread is my subission for Reyweld's game
		
	  
	
		12-20-2017, 02:10 AM 
	 
	
		 (12-20-2017, 02:08 AM)Kíeros Wrote: »There we go, the one thread I'm going with has been officially submitted. There we go, this is in here now. Have fun all you all with whatever role this becomes.
	 
	
	
	
		
	 
 
 
	 
 |