Difference between revisions of "User talk:Piphi"

(Eclipse Logo: new section)
(yay)
(48 intermediate revisions by 14 users not shown)
Line 1: Line 1:
 +
{{User:Piphi/Template:Header}}
 
I also answer questions about the GMAAS.
 
I also answer questions about the GMAAS.
 +
 +
Piphi can you please make a template for my wiki math games? thank you. --[[User:Aops-g5-gethsemanea2|Aops-g5-gethsemanea2]] ([[User talk:Aops-g5-gethsemanea2|talk]]) 00:08, 3 September 2020 (EDT)
  
 
== shutdown ==
 
== shutdown ==
Line 7: Line 10:
 
--[[User:Piphi|piphi]] ([[User talk:Piphi|talk]]) 13:52, 4 February 2020 (EST)
 
--[[User:Piphi|piphi]] ([[User talk:Piphi|talk]]) 13:52, 4 February 2020 (EST)
  
== Firefox Logo ==
+
Why is it about to be shut down?
 
 
Recently I've been working on drawing the Firefox logo using [[Asymptote]], and just recently with a lot of help from [https://artofproblemsolving.com/community/user/sonone sonone] we finished it!
 
 
 
===More info===
 
 
 
====Inspiration====
 
I decided to draw the Firefox logo after seeing sonone's [https://artofproblemsolving.com/community/c68h2059229p14822284 submission] for the [https://aops.com/community/h2059229 Asymptote Design Comptetion].  Two of their submissions were Asymptote drawings of the browsers Safari and Chrome and since Firefox wasn't there I decided to draw it. :)
 
 
 
====Beginnings====
 
I drew the logo by copying a 128x128 Firefox logo into MS paint and finding the coordinates of each intersection to make the curves.  [[Image:Firefox128.png|thumb|right|Firefox]]  This resulted in the below image.
 
<asy>
 
//firefox
 
fill(Circle((64,64),30), purple);
 
 
 
//fox belly
 
draw((76,82)..(66,38)..(35,66));
 
path a = (76,82)..(66,38)..(35,66);
 
 
 
//fox lower mouth
 
draw((35,66)..(27,69)..(23,75));
 
path b = (35,66)..(27,69)..(23,75);
 
 
 
//fox upper mouth
 
draw((23,75)..(32,79)..(44,76));
 
path c = (23,75)..(32,79)..(44,76);
 
 
 
//fox middle nose
 
draw((44,76)..(54,74)..(63,75));
 
path d = (44,76)..(54,74)..(63,75);
 
 
 
//fill(a--b--c--d--cycle);
 
 
 
//fox upper nose
 
draw((63,75)..(53,79.5)..(46,84)..(41,89)..(32,92));
 
path e = (63,75)..(53,79.5)..(46,84)..(41,89)..(32,92);
 
 
 
//fox left ear
 
draw((32,92)..(29,99)..(29,106));
 
path f = (32,92)..(29,99)..(29,106);
 
 
 
//fox left back
 
draw((29,106)..(14,38)..(64,9));
 
path g = (29,106)..(14,38)..(64,9);
 
 
 
//fox right back
 
draw((64,9)..(113,35)..(105,100));
 
path h = (64,9)..(113,35)..(105,100);
 
 
 
// fox outer part of inner tail
 
draw((76,82)..(96,70)..(96,49));
 
path i = (76,82)..(96,70)..(96,49);
 
 
 
// fox upper belly
 
draw((39,59)..(63,38)..(96,49)..(111,81));
 
path j = (39,59)..(63,38)..(96,49)..(111,81);
 
 
 
// fox middle belly
 
draw((111,81)..(108,92)..(105,100));
 
path k = (111,81)..(108,92)..(105,100);
 
 
 
// fox lower chin
 
draw((39,59)..(45,67)..(58,70));
 
path l = (39,59)..(45,67)..(58,70);
 
 
 
// fox snout
 
draw((58,70)..(60,71)..(63,75));
 
path m = (58,70)..(60,71)..(63,75);
 
 
 
//fox outer right ear
 
draw((32,92)..(37,98)..(45,102));
 
path n = (32,92)..(37,98)..(45,102);
 
 
 
//fox inner right ear
 
draw((45,102)..(44,95)..(46,84));
 
path o = (45,102)..(44,95)..(46,84);
 
 
 
// fox middle belly
 
draw((8,64)..(39,17)..(111,81)..(102,98)..(95,106)..(87,115)..(81,124));
 
path p = (8,64)..(39,17)..(111,81)..(102,98)..(95,106)..(87,115)..(81,124);
 
 
 
// fox upper left tail
 
draw((81,124)..(68,112)..(62,94));
 
path q = (81,124)..(68,112)..(62,94);
 
 
 
 
 
//fill(c--d--e--f--g--cycle, orange);
 
 
 
shipout(bbox(lightgrey+3mm,FillDraw(lightgrey)));
 
</asy>
 
 
 
But then I encountered a small problem, I had no idea how to paint it!
 
 
 
====Continuation====
 
So that's when I asked sonone to help me color it.  I found a nice function from [https://artofproblemsolving.com/community/c68h564416p3303712 here] (which I later used to draw in inner circle).  But sonone found a better function to help us and they also fixed the curves up a bit.  They then drew a part of the fox using that function.
 
 
 
<asy>
 
//firefox
 
fill(Circle((64,64),30), purple);
 
 
 
//fox belly
 
//draw((76,82)..(66,38)..(35,66),red);
 
path a = (76,82)..(66,38)..(35,66);
 
 
 
//fox lower mouth
 
draw((35,66)..(27,69)..(23,75));
 
path b = (35,66)..(27,69)..(23,75);
 
 
 
//fox upper mouth
 
draw((23,75)..(32,79)..(44,76));
 
path c = (23,75)..(32,79)..(44,76);
 
 
 
//fox middle nose
 
draw((44,76)..(54,74)..(63,75));
 
path d = (44,76)..(54,74)..(63,75);
 
 
 
//fox upper nose
 
draw((63,75)..(53,79.5)..(46,84)..(41,89)..(32,92));
 
path e = (63,75)..(53,79.5)..(46,84)..(41,89)..(32,92);
 
 
 
//fox left ear
 
draw((32,92)..(29,99)..(29,106));
 
path f = (32,92)..(29,99)..(29,106);
 
 
 
//fox left back
 
draw((29,106)..(14,38)..(64,9));
 
path g = (29,106)..(14,38)..(64,9);
 
 
 
//fox right back
 
draw((64,9)..(113,35)..(105,100));
 
path h = (64,9)..(113,35)..(105,100);
 
 
 
// fox outer part of inner tail
 
draw((76,82)..(96,70)..(96,49));
 
path i = (76,82)..(96,70)..(96,49);
 
 
 
// fox upper belly
 
//draw((39,59)..(63,38)..(96,49)..(111,81),orange);
 
path j = (39,59)..(63,38)..(96,49)..(111,81);
 
 
 
// fox middle belly
 
draw((111,81)..(108,92)..(105,100));
 
path k = (111,81)..(108,92)..(105,100);
 
 
 
// fox lower chin
 
draw((39,59)..(45,67)..(58,70));
 
path l = (58,70)..(45,67)..(39,59);
 
 
 
// fox snout
 
draw((58,70)..(60,71)..(63,75));
 
path m = (63,75)..(60,71)..(58,70);
 
 
 
//fox outer right ear
 
draw((32,92)..(37,98)..(45,102));
 
path n = (32,92)..(37,98)..(45,102);
 
 
 
//fox inner right ear
 
draw((45,102)..(44,95)..(46,84));
 
path o = (45,102)..(44,95)..(46,84);
 
 
 
// fox middle belly
 
draw((8,64)..(39,17)..(111,81)..(102,98)..(95,106)..(87,115)..(81,124));
 
path p = (8,64)..(39,17)..(111,81)..(102,98)..(95,106)..(87,115)..(81,124);
 
 
 
// fox upper left tail
 
draw((81,124)..(68,112)..(62,94));
 
path q = (81,124)..(68,112)..(62,94);
 
 
 
// updated belly
 
draw((76,82)..(65,40)..(39,59));
 
path aA=(39,59)..(65,40)..(76,82);
 
 
 
//updated fox upper belly
 
draw((111,81)..(96,49)..(47,43)..(35,66));
 
path jJ=(111,81)..(96,49)..(47,43)..(35,66);
 
 
 
// updated fox upper belly extra
 
draw((96,49)..(47,43)..(35,66),red);
 
path jJ1=(96,49)..(46.5,43.5)..(35,66);
 
 
 
picture middle_shade;
 
path one=aA--i--jJ1--b--c--d--m--l--cycle;
 
pen[][] firefox1={{yellow+.3*orange,yellow+orange,orange}};
 
latticeshade(middle_shade,rotate(90)*one,firefox1);
 
add(rotate(-90)*middle_shade);
 
 
 
shipout(bbox(lightgrey+3mm,FillDraw(lightgrey)));
 
</asy>
 
 
 
They then also drew more of the fox.
 
 
 
<asy>
 
//firefox
 
fill(Circle((64,64),30), purple);
 
 
 
//fox belly
 
//draw((76,82)..(66,38)..(35,66),red);
 
path a = (76,82)..(66,38)..(35,66);
 
 
 
//fox lower mouth
 
draw((35,66)..(27,69)..(23,75));
 
path b = (35,66)..(27,69)..(23,75);
 
 
 
//fox upper mouth
 
draw((23,75)..(32,79)..(44,76));
 
path c = (23,75)..(32,79)..(44,76);
 
 
 
//fox middle nose
 
draw((44,76)..(54,74)..(63,75));
 
path d = (44,76)..(54,74)..(63,75);
 
 
 
//fox upper nose
 
draw((63,75)..(53,79.5)..(46,84)..(41,89)..(32,92));
 
path e = (63,75)..(53,79.5)..(46,84)..(41,89)..(32,92);
 
 
 
//fox left ear
 
draw((32,92)..(29,99)..(29,106));
 
path f = (32,92)..(29,99)..(29,106);
 
 
 
//fox left back
 
draw((29,106)..(14,38)..(64,9));
 
path g = (29,106)..(14,38)..(64,9);
 
 
 
//fox right back
 
draw((64,9)..(113,35)..(105,100));
 
path h = (64,9)..(113,35)..(105,100);
 
 
 
// fox outer part of inner tail
 
draw((76,82)..(96,70)..(96,49));
 
path i = (76,82)..(96,70)..(96,49);
 
 
 
// fox upper belly
 
//draw((39,59)..(63,38)..(96,49)..(111,81),orange);
 
path j = (39,59)..(63,38)..(96,49)..(111,81);
 
 
 
// fox middle belly
 
draw((111,81)..(108,92)..(105,100));
 
path k = (105,100)..(108,92)..(111,81);
 
 
 
// fox lower chin
 
draw((39,59)..(45,67)..(58,70));
 
path l = (58,70)..(45,67)..(39,59);
 
 
 
// fox snout
 
draw((58,70)..(60,71)..(63,75));
 
path m = (63,75)..(60,71)..(58,70);
 
 
 
//fox outer right ear
 
draw((32,92)..(37,98)..(45,102));
 
path n = (32,92)..(37,98)..(45,102);
 
 
 
//fox inner right ear
 
draw((45,102)..(44,95)..(46,84));
 
path o = (45,102)..(44,95)..(46,84);
 
 
 
// fox middle belly
 
draw((8,64)..(39,17)..(111,81)..(102,98)..(95,106)..(87,115)..(81,124));
 
path p = (8,64)..(39,17)..(111,81)..(102,98)..(95,106)..(87,115)..(81,124);
 
 
 
// fox upper left tail
 
draw((81,124)..(68,112)..(62,94));
 
path q = (81,124)..(68,112)..(62,94);
 
 
 
// updated belly
 
draw((76,82)..(65,40)..(39,59));
 
path aA=(39,59)..(65,40)..(76,82);
 
 
 
//updated fox upper belly
 
draw((111,81)..(96,49)..(47,43)..(35,66));
 
path jJ=(111,81)..(96,49)..(47,43)..(35,66);
 
 
 
// updated fox upper belly extra
 
draw((96,49)..(47,43)..(35,66),red);
 
path jJ1=(96,49)..(46.5,43.5)..(35,66);
 
 
 
draw((29,106)..(9.3,72)..(14,38));
 
path g1=(29,106)..(9.3,72)..(14,38);
 
 
 
draw((8,64)..(39,17)..(111,81));
 
path p1=(8,64)..(39,17)..(111,81);
 
 
 
picture ms;
 
path one=aA--i--jJ1--b--c--d--m--l--cycle;
 
pen[][] firefox1={{yellow+.3*orange,yellow+orange,orange+.5*red}};
 
latticeshade(ms,rotate(90)*one,firefox1);
 
add(rotate(-90)*ms);
 
 
 
picture bs;
 
path two=jJ--b--c--d--e--f--g1--p1--cycle;
 
pen[][] firefox1={{yellow+.3*orange,yellow+orange,red}};
 
latticeshade(bs,rotate(120)*two,firefox1);
 
add(rotate(-120)*bs);
 
 
 
picture right_ear_shade;
 
path two=n--o--(46,84)..(41,89)..(32,92)--cycle;
 
pen[][] firefox2={{yellow+.5*orange,orange+yellow,orange}};
 
latticeshade(right_ear_shade,rotate(90)*two,firefox2);
 
add(rotate(-90)*right_ear_shade);
 
 
 
shipout(bbox(lightgrey+3mm,FillDraw(lightgrey)));
 
</asy>
 
 
 
Then I learned how to use this function, I fixed the colors of the image above and colored the rest of the image!
 
 
 
Here is the final drawing:
 
<asy>
 
/**
 
* Firefox
 
*
 
* Made by piphi and sonone
 
*
 
* For more information go to the link below.
 
* https://artofproblemsolving.com/wiki/index.php/User_talk:Piphi#Firefox_Logo
 
*/
 
path circ = Circle((64,64),30)--cycle;
 
 
 
path upper = (111,81)..(102,98)..(95,106)..(87,115)..(81,124);
 
path q = (81,124)..(68,112)..(62,94);
 
path i = (76,82)..(96,70)..(96,49);
 
path ll = (111,81)..(106,61)..(96,49);
 
 
 
picture highest_tail_shade;
 
path two=upper--q--i--ll--cycle;
 
pen[][] firefox2={{rgb(255,242,77),rgb(255,219,63),rgb(251,122,83)}};
 
latticeshade(highest_tail_shade,rotate(110)*two,firefox2);
 
add(rotate(-110)*highest_tail_shade);
 
 
 
void fillmyway(picture pic=currentpicture,pair C,path P,real[] r,pen[] p,int n=100)
 
{
 
int m=r.length;
 
for(int k=n;k>0;--k)
 
{
 
real[] g(real rr)
 
{
 
real qq=70,ss=0; real[] col={0,0,0};
 
for(int kk=0;kk<r.length-1;++kk)
 
{
 
real h=r[kk+1]-r[kk];
 
for (real t=0.05;t<1;t+=0.1)
 
{
 
real rt=r[kk]+t*h;
 
col+=exp(-qq*(rr-rt)^2)*h*((1-t)*colors(rgb(p[kk]))+t*colors(rgb(p[kk+1])));
 
ss+=exp(-qq*(rr-rt)^2)*h;
 
}
 
}
 
return col/ss;
 
}
 
real[] col=g(k/n);
 
unfill(shift(C)*scale(k/n)*shift(-C)*P);
 
fill(shift(C)*scale(k/n)*shift(-C)*P,rgb(col[0],col[1],col[2]));
 
}
 
}
 
 
 
pen[] p={rgb(109,93,228),rgb(104,88,218),rgb(167,66,233),rgb(188,59,231),rgb(170,51,216)};
 
real[] r={0,0.45,0.8,0.9,1};
 
 
 
fillmyway((50,45),circ,r,p);
 
 
 
//fox belly
 
path a = (76,82)..(66,38)..(35,66);
 
 
 
//fox lower mouth
 
path b = (35,66)..(27,69)..(23,75);
 
 
 
//fox upper mouth
 
path c = (23,75)..(32,79)..(44,76);
 
 
 
//fox middle nose
 
path d = (44,76)..(54,74)..(63,75);
 
 
 
//fox upper nose
 
path e = (63,75)..(53,79.5)..(46,84)..(41,89)..(32,92);
 
 
 
//fox left ear
 
path f = (32,92)..(29,99)..(29,106);
 
 
 
//fox left back
 
path g = (29,106)..(14,38)..(64,9);
 
 
 
//fox right back
 
path h = (64,9)..(113,35)..(105,100);
 
path hh = (105,100)..(113,35)..(64,9);
 
  
// fox outer part of inner tail
+
[[User:Creativehedgehog|CreativeHedgehog]] ([[User talk:Creativehedgehog|talk]]) 12:01, 25 June 2020 (EDT)
path i = (76,82)..(96,70)..(96,49);
 
  
// fox upper belly
+
Because I commented right before AMC10/12B --[[File:Piphi_Text.png|40px|link=User:Piphi]] 12:48, 25 June 2020 (EDT)
path j = (39,59)..(63,38)..(96,49)..(111,81);
 
  
// fox middle belly extra
+
== testing api ==
path k = (105,100)..(108,92)..(111,81);
 
  
path kk = (111,81)..(108,92)..(105,100);
+
hello i am making a new section
  
// fox lower chin
 
path l = (58,70)..(45,67)..(39,59);
 
  
// fox snout
+
==asdfasdfasdf==
path m = (63,75)..(60,71)..(58,70);
+
I AM ALSO MAKING A NEW SECTION :)
 +
-------
 +
much grrrrrrrrr
  
//fox outer right ear
+
== yay ==
path n = (32,92)..(37,98)..(45,102);
 
  
//fox inner right ear
+
This page has 420 edits from 184 different authors
path o = (45,102)..(44,95)..(46,84);
 
  
// fox middle belly
 
path p = (8,64)..(39,17)..(111,81)..(102,98)..(95,106)..(87,115)..(81,124);
 
path upper = (111,81)..(102,98)..(95,106)..(87,115)..(81,124);
 
  
// fox upper left tail
+
Looks like Piphi's doing Go. (go is pretty complicated) Creativehedgehog 17:02, 9 July 2020 (EDT)
path q = (81,124)..(68,112)..(62,94);
 
  
// updated belly
+
<del>stalker</del> [[File:Tongue-Classroom.gif]].  It's not too bad, the template was just way too repetitive (361 numbers i had to change lol). You know, right now we're the only two people doing AWGs (AoPS Wiki Games) so maybe we should make a collab game. I'll PM you about it.
path aA=(39,59)..(65,40)..(76,82);
 
  
//updated fox upper belly
+
Hey what? Hey! I'm starting my AWG-[[User:Wuwang2002|wuwang2002]]
path jJ=(111,81)..(96,49)..(47,43)..(35,66);
 
  
path ll = (111,81)..(106,61)..(96,49);
+
Ideas of Creativehedgehog 22:02, 9 July 2020 (EDT):
  
// updated fox upper belly extra
+
Do show qi (Sorry for bad Chinese)-[[User:Wuwang2002|wuwang2002]]
path jJ1=(96,49)..(46.5,43.5)..(35,66);
 
  
path g1=(29,106)..(9.3,72)..(14,38);
+
Hmm, looks like you've blocked PMs, I'll PF you tomorrow then --[[User:Piphi|<font style="font-family: Segoe Print;font-size: 30px">πφ</font>]] 23:07, 9 July 2020 (EDT)
  
path p1=(8,64)..(39,17)..(111,81);
+
CreativeHedgehog sent a PM to wuwang2002 and asked if wuwang2002 had one with Piphi. Creativehedgehog 09:50, 10 July 2020 (EDT)
  
picture ms;
+
Not sure I completely understand what's going on, but I PFed you [https://artofproblemsolving.com/community/c1227529 here] --[[User:Piphi|<font style="font-family: Segoe Print;font-size: 30px">πφ</font>]] 14:40, 10 July 2020 (EDT)
path one=aA--i--jJ1--b--c--d--m--l--cycle;
 
pen[][] firefox1={{yellow+orange,rgb(255,172,28),orange+.5*red}};
 
latticeshade(ms,rotate(90)*one,firefox1);
 
add(rotate(-90)*ms);
 
  
picture bs;
+
CreativeHedgehog--maybe we could do dou shou qi? -[[User:Wuwang2002|Wuwang2002]] ([[User talk:Wuwang2002|talk]]) 21:30, 17 July 2020 (EDT)
path two=jJ--b--c--d--e--f--g1--p1--cycle;
 
pen[][] firefox1={{rgb(255,227,67),rgb(255,149,19),rgb(255,92,50),rgb(255,48,82)}};
 
latticeshade(bs,rotate(130)*two,firefox1);
 
add(rotate(-130)*bs);
 
  
picture right_ear_shade;
+
Great idea! I have already started doing it, if you check the upload log I have uploaded many files. Creativehedgehog 15:43, 18 July 2020 (EDT)
path two=n--o--(46,84)..(41,89)..(32,92)--cycle;
 
pen[][] firefox2={{rgb(255,189,70),rgb(255,155,59),rgb(255,80,56)}};
 
latticeshade(right_ear_shade,rotate(130)*two,firefox2);
 
add(rotate(-130)*right_ear_shade);
 
  
 +
Piphi is making Gomoku.
  
picture lowest_tail_shade;
+
CreativeHedgehog, thanks for adding that message to the user count, but I think it's better for users to only have to add one to the user count. I can take care of the progress bar. Also, don't sign something with someone else's username. And I think it's better if the title of the see also section of [[User:Piphi/Games]] did not have a link, since the link it has previously was only a link to itself. --[[User:Piphi|<font style="font-family: Segoe Print;font-size: 30px">πφ</font>]] 20:00, 18 July 2020 (EDT)
path two=p1--kk--hh--(64,9)..(25,24)..(8,64)--cycle;
 
pen[][] firefox2={{rgb(254,228,78),rgb(250,129,85),rgb(229,11,113)}};
 
latticeshade(lowest_tail_shade,rotate(110)*two,firefox2);
 
add(rotate(-110)*lowest_tail_shade);
 
  
clip(currentpicture, g--h--(81,124)--cycle);
+
Thanks, Piphi! Looks like you are making Mancala.[[https://artofproblemsolving.com/wiki/index.php/User:CreativeHedgehog CreativeHedgehog]] 17:55, 19 July 2020 (EDT)
  
shipout(bbox(lightgrey+3mm,FillDraw(lightgrey)));
+
Has this page been vandalized? -penguinempress
</asy>
 
  
== Eclipse Logo ==
+
Yes, it was. I reverted the changes though.--[[User:Piphi|<font style="font-family: Segoe Print;font-size: 30px">πφ</font>]] 16:13, 4 August 2020 (EDT)
  
After making the Firefox logo I decided to make a series of logos out of Asymptote.  The logo that I chose to do next was the Eclipse logo. [[Image:Logo-eclipse.png|thumb|right|Eclipse]]
+
So many people using my user page style.  I think I'll make a list.
 +
# [[User:Edud_looc]]
 +
# [[User:Rusczyk]]
 +
# [[User:Aray10]]
 +
# [[User:OlympusHero]]
 +
# [[User:Nattie]]
 +
# [[User:Ssbgm9002]]
 +
# [[User:Rohanqv]]
 +
# [[User:Prabh1512]]
 +
# [[User:GoldAlicorn9]]
 +
# [[User:Niqhtwolf]]
 +
# [[User:IntelligentElephant2010]]
 +
# [[User:Objectz]]
  
In case you don't know [https://www.eclipse.org/downloads/ Eclipse] is an IDE for the Java programming language.
+
That is the exact reason why I made a template for your page in one of my templates. [https://artofproblemsolving.com/wiki/index.php/User:CreativeHedgehog CreativeHedgehog], <span style="display:none;">[[User:CreativeHedgehog]]</span>
  
Anyway, here is my drawing!
+
{{User:CreativeHedgehog/Templates/AoPS Duotone/Style 5|maroon|˜|#61ad00|#61ad00|maroon}} 19:13, 13 August 2020 (EDT)
  
<asy>
+
Actually I am also doing AWGs :) --[[User:Aops-g5-gethsemanea2|Aops-g5-gethsemanea2]] ([[User talk:Aops-g5-gethsemanea2|talk]]) 06:16, 11 September 2020 (EDT)
/**
 
* Eclipse
 
*
 
* Made by piphi
 
*
 
* For more information go to the link below.
 
* https://artofproblemsolving.com/wiki/index.php/User_talk:Piphi#Eclipse
 
*/
 
  
fill(circle((55,50),45),darkblue+white*0.2+purple*0.05);
 
  
picture ic;
+
YES!! 330 different authors!! This page is now the page with highest total number of distinct authors! --[[User:Piphi|<font style="font-family: Segoe Print;font-size: 30px">πφ</font>]] 18:31, 28 September 2020 (EDT)
path two=circle((55,50),30)--cycle;
 
pen[][] firefox2={{darkblue+white*0.2+purple*0.05,darkblue+white*0.2+purple*0.05,darkblue+white*0.25+purple*0.2}};
 
latticeshade(ic,rotate(90)*two,firefox2);
 
add(rotate(-90)*ic);
 
  
fill((100,57)--(100,62)--(9,62)--(9,57)--cycle,white);
+
== Well... AoPS has shutdown ==
fill((100,47)--(100,52)--(9,52)--(9,47)--cycle,white);
 
fill((100,37)--(100,42)--(9,42)--(9,37)--cycle,white);
 
  
clip(currentpicture, circle((55,50),45)--cycle);
+
But the wiki lives on!
  
path a = (48,3)..(0,50)..(48,96);
+
== Hello! [[File:AoPS Smile emoji.gif]] ==
path b = (48,96)..(7,50)..(48,3);
 
  
fill(a--b--cycle,rgb(247,148,30));
+
hey! just want to say thanks [[File:AoPS Smile emoji.gif]] [[User:Rf20008|Rf20008]] ([[User talk:Rf20008|talk]]) 12:14, 29 September 2020 (EDT)
</asy>
 

Revision as of 17:20, 2 October 2020

I also answer questions about the GMAAS.

Piphi can you please make a template for my wiki math games? thank you. --Aops-g5-gethsemanea2 (talk) 00:08, 3 September 2020 (EDT)

shutdown

The AoPS wiki is about to be shut down.

--piphi (talk) 13:52, 4 February 2020 (EST)

Why is it about to be shut down?

CreativeHedgehog (talk) 12:01, 25 June 2020 (EDT)

Because I commented right before AMC10/12B --Piphi Text.png 12:48, 25 June 2020 (EDT)

testing api

hello i am making a new section


asdfasdfasdf

I AM ALSO MAKING A NEW SECTION :)


much grrrrrrrrr

yay

This page has 420 edits from 184 different authors


Looks like Piphi's doing Go. (go is pretty complicated) Creativehedgehog 17:02, 9 July 2020 (EDT)

stalker Tongue-Classroom.gif. It's not too bad, the template was just way too repetitive (361 numbers i had to change lol). You know, right now we're the only two people doing AWGs (AoPS Wiki Games) so maybe we should make a collab game. I'll PM you about it.

Hey what? Hey! I'm starting my AWG-wuwang2002

Ideas of Creativehedgehog 22:02, 9 July 2020 (EDT):

Do show qi (Sorry for bad Chinese)-wuwang2002

Hmm, looks like you've blocked PMs, I'll PF you tomorrow then --πφ 23:07, 9 July 2020 (EDT)

CreativeHedgehog sent a PM to wuwang2002 and asked if wuwang2002 had one with Piphi. Creativehedgehog 09:50, 10 July 2020 (EDT)

Not sure I completely understand what's going on, but I PFed you here --πφ 14:40, 10 July 2020 (EDT)

CreativeHedgehog--maybe we could do dou shou qi? -Wuwang2002 (talk) 21:30, 17 July 2020 (EDT)

Great idea! I have already started doing it, if you check the upload log I have uploaded many files. Creativehedgehog 15:43, 18 July 2020 (EDT)

Piphi is making Gomoku.

CreativeHedgehog, thanks for adding that message to the user count, but I think it's better for users to only have to add one to the user count. I can take care of the progress bar. Also, don't sign something with someone else's username. And I think it's better if the title of the see also section of User:Piphi/Games did not have a link, since the link it has previously was only a link to itself. --πφ 20:00, 18 July 2020 (EDT)

Thanks, Piphi! Looks like you are making Mancala.[CreativeHedgehog] 17:55, 19 July 2020 (EDT)

Has this page been vandalized? -penguinempress

Yes, it was. I reverted the changes though.--πφ 16:13, 4 August 2020 (EDT)

So many people using my user page style. I think I'll make a list.

  1. User:Edud_looc
  2. User:Rusczyk
  3. User:Aray10
  4. User:OlympusHero
  5. User:Nattie
  6. User:Ssbgm9002
  7. User:Rohanqv
  8. User:Prabh1512
  9. User:GoldAlicorn9
  10. User:Niqhtwolf
  11. User:IntelligentElephant2010
  12. User:Objectz

That is the exact reason why I made a template for your page in one of my templates. CreativeHedgehog, User:CreativeHedgehog


˜


19:13, 13 August 2020 (EDT)

Actually I am also doing AWGs :) --Aops-g5-gethsemanea2 (talk) 06:16, 11 September 2020 (EDT)


YES!! 330 different authors!! This page is now the page with highest total number of distinct authors! --πφ 18:31, 28 September 2020 (EDT)

Well... AoPS has shutdown

But the wiki lives on!

Hello! AoPS Smile emoji.gif

hey! just want to say thanks AoPS Smile emoji.gif Rf20008 (talk) 12:14, 29 September 2020 (EDT)