Tumgik
#tinyx
l-etters · 2 years
Note
― uma onda de beijos e abraços para esses maravicherrys que são minhas pessoas de conforto e muito talentosos! amo vocês :
@s-eokie ; @ifvswon ; @nick-web ; @s-olaries ; @fshione ; @anqeliets ; @mistale ; @m-jng ; @fearmania ; @oikawazitos ; @s-telar ; @wonlita ; @pastelwalks ; @moranguinha-a ; @kka-duca ; @tinyxing ; @vkoqs ; @yoonitos ; @r-ubby ; @gooic 😘 !
— boa tarde hong! 🫶🏼 @s-eokie @ifvswon @nick-web @s-olaries @fshione @anqeliets @mistale @m-jng @fearmania @oikawazitos @s-telar @wonlita @pastelwalks @moranguinha-a @kka-duca @tinyxing @vkoqs @yoonitos @r-ubby @gooic 🫶🏼🫂💙
67 notes · View notes
vinnybox · 2 months
Note
Do you think you could paste the code you have for the sparkle cursor on your blog in an answer ( maybe to this )? The website you linked for it some time back has unfortunately been removed, and now everything's all messed up and it's hard to find :sad:
I did what I can :o !
Otherwise I found this other site with sparkle cursor code but you'd have to change the color yourself. Just change the Random in the script to the desired color code or color name
Code below cut
<script type="text/javascript">
// <![CDATA[
var colour="random"; // in addition to "random" can be set to any valid colour eg "#f0f" or "red"
var sparkles=50;
/****************************
*  Tinkerbell Magic Sparkle *
*(c)2005-13 mf2fm web-design*
*  http://www.mf2fm.com/rv  *
* DON'T EDIT BELOW THIS BOX *
****************************/
var x=ox=400;
var y=oy=300;
var swide=800;
var shigh=600;
var sleft=sdown=0;
var tiny=new Array();
var star=new Array();
var starv=new Array();
var starx=new Array();
var stary=new Array();
var tinyx=new Array();
var tinyy=new Array();
var tinyv=new Array();
window.onload=function() { if (document.getElementById) {
  var i, rats, rlef, rdow;
  for (var i=0; i<sparkles; i++) {
var rats=createDiv(3, 3);
rats.style.visibility="hidden";
rats.style.zIndex="999";
document.body.appendChild(tiny[i]=rats);
starv[i]=0;
tinyv[i]=0;
var rats=createDiv(5, 5);
rats.style.backgroundColor="transparent";
rats.style.visibility="hidden";
rats.style.zIndex="999";
var rlef=createDiv(1, 5);
var rdow=createDiv(5, 1);
rats.appendChild(rlef);
rats.appendChild(rdow);
rlef.style.top="2px";
rlef.style.left="0px";
rdow.style.top="0px";
rdow.style.left="2px";
document.body.appendChild(star[i]=rats);
  }
  set_width();
  sparkle();
}}
function sparkle() {
  var c;
  if (Math.abs(x-ox)>1 || Math.abs(y-oy)>1) {
ox=x;
oy=y;
for (c=0; c<sparkles; c++) if (!starv[c]) {
   star[c].style.left=(starx[c]=x)+"px";
   star[c].style.top=(stary[c]=y+1)+"px";
   star[c].style.clip="rect(0px, 5px, 5px, 0px)";
   star[c].childNodes[0].style.backgroundColor=star[c].childNodes[1].style.backgroundColor=(colour=="random")?newColour():colour;
   star[c].style.visibility="visible";
   starv[c]=50;
   break;
}
  }
  for (c=0; c<sparkles; c++) {
if (starv[c]) update_star(c);
if (tinyv[c]) update_tiny(c);
  }
  setTimeout("sparkle()", 40);
}
function update_star(i) {
  if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
  if (starv[i]) {
stary[i]+=1+Math.random()*3;
starx[i]+=(i%5-2)/5;
if (stary[i]<shigh+sdown) {
   star[i].style.top=stary[i]+"px";
   star[i].style.left=starx[i]+"px";
}
else {
   star[i].style.visibility="hidden";
   starv[i]=0;
   return;
}
  }
  else {
tinyv[i]=50;
tiny[i].style.top=(tinyy[i]=stary[i])+"px";
tiny[i].style.left=(tinyx[i]=starx[i])+"px";
tiny[i].style.width="2px";
tiny[i].style.height="2px";
tiny[i].style.backgroundColor=star[i].childNodes[0].style.backgroundColor;
star[i].style.visibility="hidden";
tiny[i].style.visibility="visible"
  }
}
function update_tiny(i) {
  if (--tinyv[i]==25) {
tiny[i].style.width="1px";
tiny[i].style.height="1px";
  }
  if (tinyv[i]) {
tinyy[i]+=1+Math.random()*3;
tinyx[i]+=(i%5-2)/5;
if (tinyy[i]<shigh+sdown) {
   tiny[i].style.top=tinyy[i]+"px";
   tiny[i].style.left=tinyx[i]+"px";
}
else {
   tiny[i].style.visibility="hidden";
   tinyv[i]=0;
   return;
}
  }
  else tiny[i].style.visibility="hidden";
}
document.onmousemove=mouse;
function mouse(e) {
  if (e) {
y=e.pageY;
x=e.pageX;
  }
  else {
set_scroll();
y=event.y+sdown;
x=event.x+sleft;
  }
}
window.onscroll=set_scroll;
function set_scroll() {
  if (typeof(self.pageYOffset)=='number') {
sdown=self.pageYOffset;
sleft=self.pageXOffset;
  }
  else if (document.body && (document.body.scrollTop || document.body.scrollLeft)) {
sdown=document.body.scrollTop;
sleft=document.body.scrollLeft;
  }
  else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
sleft=document.documentElement.scrollLeft;
sdown=document.documentElement.scrollTop;
  }
  else {
sdown=0;
sleft=0;
  }
}
window.onresize=set_width;
function set_width() {
  var sw_min=999999;
  var sh_min=999999;
  if (document.documentElement && document.documentElement.clientWidth) {
if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  }
  if (typeof(self.innerWidth)=='number' && self.innerWidth) {
if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  }
  if (document.body.clientWidth) {
if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  }
  if (sw_min==999999 || sh_min==999999) {
sw_min=800;
sh_min=600;
  }
  swide=sw_min;
  shigh=sh_min;
}
function createDiv(height, width) {
  var div=document.createElement("div");
  div.style.position="absolute";
  div.style.height=height+"px";
  div.style.width=width+"px";
  div.style.overflow="hidden";
  return (div);
}
function newColour() {
  var c=new Array();
  c[0]=255;
  c[1]=Math.floor(Math.random()*256);
  c[2]=Math.floor(Math.random()*(256-c[1]/2));
  c.sort(function(){return (0.5 - Math.random());});
  return ("rgb("+c[0]+", "+c[1]+", "+c[2]+")");
}
// ]]>
</script>
6 notes · View notes
hackernewsrobot · 1 year
Text
Tinyx resurrected Xvesa from the depths of Git history
https://github.com/tinycorelinux/tinyx
0 notes
hag-rambling-on · 1 year
Text
Unpopular opinion: I more or less like Tinyx designs (not concept). They remind me of figure skating.
1 note · View note
faces-and-morefaces · 2 years
Text
1 note · View note
444names · 2 years
Text
dinosaurs + hungarian male forenames
Aadasa Abella Abitia Abrome Abues Achia Acoly Acong Adinti Adnor Adocus Adons Adror Aeurus Afrus Agans Agnati Agurus Ajmus Alans Algus Aliops Alops Alous Alugus Alurus Alvid Ambale Amous Ancis Angops Angos Anlops Annan Annus Anonos Antor Anurus Aphor Aptops Aptor Arator Archus Arenar Asinus Aspon Assor Astena Astes Asulus Atops Aurus Avena Avimus Bachus Bacor Baibis Bakon Bales Ballus Bannus Baroly Bator Batus Baurus Bayong Beria Berus Binjia Biánis Bolius Bolus Bonian Brang Brator Brong Burus Bycnea Camon Camps Cangor Caura Caurus Cavus Cephus Ceptor Ceryx Chaos Chisu Chlus Chony Chtus Chypon Chália Clamps Clena Clenus Clodon Clops Codong Codor Colops Cornia Coxena Cravis Crodon Cryps Csanyx Csenus Dachus Dacrus Dagan Darcus Dasta Datia Daurus Dekton Delus Desior Dester Dezsák Dilops Diops Diple Donkor Donrás Donyx Dricon Drius Dromus Drora Durus Dyamon Dylon Dylor Dylus Edvia Eimus Elops Eltra Emonia Eocoes Eorkó Ephus Ephyps Epius Eptera Erocus Euaxa Euchus Eugens Eugos Eurus Feleya Ferena Fernia Fodon Fukus Fulin Fulpus Fácira Fülör Galops Galus Ganpel Garcus Garis Gassus Gexia Gimus Glong Godon Gryor Gryps Guacan Guang Gulon Gászan Hadrán Haeon Halba Haltán Hanops Haptor Hedus Heinus Hejies Helus Hense Hetor Hieron Hirops Hodor Holes Honis Hotale Hublia Hychus Hygia Hylus Hyngy Hypton Illor Imatus Inshor Inurus Iscum Jaffia Jentra Jeykus Jindus Jinrás Jurus Józsák Józsö Kagryx Katops Kazous Kerus Kestia Khele Kolor Kufera Kácsák Kályx Laffia Lafrus Lagon Lamót Laohal Laplus Lardon Larius Lator Laurus Leisus Lestes Lides Ligyps Liktia Limus Liopse Liovis Lisef Lixis Lodon Lopus Lornél Luang Lukus Lurus Luxia Lórás Machus Madong Majans Majax Majuns Makous Mallis Mamps Marrex Marus Matens Mator Mayong Megia Megos Mendon Menyx Meuang Meurus Micont Micus Miera Milárd Mimus Modong Mognax Montus Moran Mtort Murus Márdus Namps Natops Nator Neirus Neman Nenton Neopus Neurus Nithus Nochus Nodon Nothor Nykus Nádám Nárops Ojozsö Olimus Omeron Omimia Oncus Ondand Oraton Ornius Othios Otops Oveny Pachor Paibia Pakarx Pales Palops Palus Panta Papaco Parnid Parond Parus Pathon Paurus Pegond Peles Pelon Pelops Pelus Pethor Petia Petops Picror Pidon Pidont Pinon Pinops Pitan Piuma Primus Prinus Prodor Proper Protys Ptops Purus Pylus Pymia Pymor Qijia Qingor Qinus Rajkab Ranyx Rexia Rezsán Rhadek Rhadáv Rhisa Rinor Rinosa Rongia Rovus Saurgy Saurus Scinor Scodor Sebus Seimus Seirus Seusti Shore Simus Sinops Sinor Sithus Sketri Sodas Spiver Squile Stena Steran Sterus Steryx Stran Strik Strius Styron Sucas Succor Suchus Sygdus Sygia Sylok Synes Szlós Taleus Tannis Tarcor Tathan Taurus Tehus Teshus Thodon Tieles Tinok Tinyx Titor Titra Todon Tornia Torops Tsucer Turus Tylops Tylus Unnus Varcus Venax Verus Vlame Vlamát Wanpel Winhus Wulus Xiama Xianes Yanik Yinjia Yuanor Yurus Zaratu Zardon Zarus Zhodor Zholus Zhops Zhues Zilia Zsomps Zsánd Zuojia Zupon Áberis Árkais
0 notes
sameherebro · 3 years
Text
Shout out to the ads that have a huge fucking x or a close button. You guys are cool, I know certain apps need ads to work but those tiny x's that you cant even push unless it's by luck, fuck you. I'm looking at you happy coloring and wordscapes.
1 note · View note
asktheneverfairies · 4 years
Note
thoughts on fawn x nyx
As far as ships go, there’s nothing wrong with them in my eyes! They’re pretty adorable, they’re just not my absolute favorite pairing for each of the characters.
Fawnetta stole my heart first, and then I’ve written and developed a Tinker Bell/Nyx relationship with another role-player on my Tink RP blog for years, so I love Tinyx a lot as a quite obscure ship that it is.
There is undoubtedly a stronger basis for Fawnyx in canon bc they shared a whole movie, but IMO...Fawn in LotN was so OOC for herself, acting more like Tink’s role throughout the other movies, so IDK why “Tinker Bell and the Legend of the Neverbeast” didn’t star Tinker Bell anyway? I already ranted about that before though.
In short, my opinion is that if Fawn in the last film was more Tinker Bell than she was herself, her possible relationship with Nyx is the kinda dynamic I’d see for Tinyx instead. The original Fawn before they whitewashed and replaced her whole personality in the last film would have had a different dynamic with Nyx than what we saw in LotN because she wasn’t...Like That. Tink was like that, for the whole series until TPF and the last one. Fawn was the mature one who didn’t dive into dangerous situations willy-nilly.
I guess, My Thoughts on Fawnyx are that they’re cute and if I’d only seen the last movie, would be OTP material, but bc I hate the fact that they completely changed Fawn for her starring movie I don’t really engage in a lot of LotN-based Fawn content anyway, so that ship also falls to the wayside in my mind.
17 notes · View notes
l-etters · 2 years
Note
olá! eu tenho vários e acho que não consigo fazer um top 5 😭 //
por favor ! estou tao curioso 😭 além d que preciso d umas recomendações d blogs
ok ok! eles são:
@kka-duca
@tinyxing
@ifvswon
@gyusite
@pastelwalks
são os que eu mais visito com frequência, além de terem blogs maravilhosos! ☝🏻🙇🏻❤️‍🩹
13 notes · View notes
tinyhouseexpedition · 6 years
Video
youtube
Our BIG Tiny House Floor Upgrade // DIY Install Pergo TimberCraft +WetProtect
Check out our new (tiny) home improvement video!
25 notes · View notes
packsclass · 3 years
Text
Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media
© nocolorings kingedits alternativw tinyxing
like or credits on twitter: @/speatknow
239 notes · View notes
enbies-and-felonies · 4 years
Note
how did you add the sparkles to your blog? (btw they’re so cool)
I  had a friend explain how to do it to me, basically you go to your settings and hit the html edit thing, and right before the  </head> paste the thing below (if you want to change the colour from black, find one you like and find it’s number, like this #000000 is black, and so on, and change it in the code acordingly)
~~ (copy and paste below this line)~~
<script type="text/javascript"> // <![CDATA[ var colour="#000000"; var sparkles=120;
/**************************** *  Tinkerbell Magic Sparkle * * (c) 2005 mf2fm web-design * *  http://www.mf2fm.com/rv  * * DON'T EDIT BELOW THIS BOX * ****************************/ var x=ox=400; var y=oy=300; var swide=800; var shigh=600; var sleft=sdown=0; var tiny=new Array(); var star=new Array(); var starv=new Array(); var starx=new Array(); var stary=new Array(); var tinyx=new Array(); var tinyy=new Array(); var tinyv=new Array();
window.onload=function() { if (document.getElementById) {  var i, rats, rlef, rdow;  for (var i=0; i<sparkles; i++) {    var rats=createDiv(3, 3);    rats.style.visibility="hidden";    document.body.appendChild(tiny[i]=rats);    starv[i]=0;    tinyv[i]=0;    var rats=createDiv(5, 5);    rats.style.backgroundColor="transparent";    rats.style.visibility="hidden";    var rlef=createDiv(1, 5);    var rdow=createDiv(5, 1);    rats.appendChild(rlef);    rats.appendChild(rdow);    rlef.style.top="2px";    rlef.style.left="0px";    rdow.style.top="0px";    rdow.style.left="2px";    document.body.appendChild(star[i]=rats);  }  set_width();  sparkle(); }}
function sparkle() {  var c;  if (x!=ox || y!=oy) {    ox=x;    oy=y;    for (c=0; c<sparkles; c++) if (!starv[c]) {      star[c].style.left=(starx[c]=x)+"px";      star[c].style.top=(stary[c]=y)+"px";      star[c].style.clip="rect(0px, 5px, 5px, 0px)";      star[c].style.visibility="visible";      starv[c]=50;      break;    }  }  for (c=0; c<sparkles; c++) {    if (starv[c]) update_star(c);    if (tinyv[c]) update_tiny(c);  }  setTimeout("sparkle()", 40); }
function update_star(i) {  if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";  if (starv[i]) {    stary[i]+=1+Math.random()*3;    if (stary[i]<shigh+sdown) {      star[i].style.top=stary[i]+"px";      starx[i]+=(i%5-2)/5;      star[i].style.left=starx[i]+"px";    }    else {      star[i].style.visibility="hidden";      starv[i]=0;      return;    }  }  else {    tinyv[i]=50;    tiny[i].style.top=(tinyy[i]=stary[i])+"px";    tiny[i].style.left=(tinyx[i]=starx[i])+"px";    tiny[i].style.width="2px";    tiny[i].style.height="2px";    star[i].style.visibility="hidden";    tiny[i].style.visibility="visible"  } }
function update_tiny(i) {  if (--tinyv[i]==25) {    tiny[i].style.width="1px";    tiny[i].style.height="1px";  }  if (tinyv[i]) {    tinyy[i]+=1+Math.random()*3;    if (tinyy[i]<shigh+sdown) {      tiny[i].style.top=tinyy[i]+"px";      tinyx[i]+=(i%5-2)/5;      tiny[i].style.left=tinyx[i]+"px";    }    else {      tiny[i].style.visibility="hidden";      tinyv[i]=0;      return;    }  }  else tiny[i].style.visibility="hidden"; }
document.onmousemove=mouse; function mouse(e) {  set_scroll();  y=(e)?e.pageY:event.y+sdown;  x=(e)?e.pageX:event.x+sleft; }
function set_scroll() {  if (typeof(self.pageYOffset)=="number") {    sdown=self.pageYOffset;    sleft=self.pageXOffset;  }  else if (document.body.scrollTop || document.body.scrollLeft) {    sdown=document.body.scrollTop;    sleft=document.body.scrollLeft;  }  else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {    sleft=document.documentElement.scrollLeft; sdown=document.documentElement.scrollTop;  }  else {    sdown=0;    sleft=0;  } }
window.onresize=set_width; function set_width() {  if (typeof(self.innerWidth)=="number") {    swide=self.innerWidth;    shigh=self.innerHeight;  }  else if (document.documentElement && document.documentElement.clientWidth) {    swide=document.documentElement.clientWidth;    shigh=document.documentElement.clientHeight;  }  else if (document.body.clientWidth) {    swide=document.body.clientWidth;    shigh=document.body.clientHeight;  } }
function createDiv(height, width) {  var div=document.createElement("div");  div.style.position="absolute";  div.style.height=height+"px";  div.style.width=width+"px";  div.style.overflow="hidden";  div.style.backgroundColor=colour;  return (div); } // ]]> </script>
35 notes · View notes
tinyxing · 3 years
Note
hi tinyxing! i hope you're doing well! can you make chanyeol icons plz??
i'm doing fine ^^ hope u like the icons~~
5 notes · View notes
iconsmrtina · 4 years
Photo
Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media
❀ tini stoessel x aitana ocaña layouts ❀
reblog/like if you save.
(c) @tinyxing first header
31 notes · View notes
444names · 2 years
Text
english towns + every single country in the modern world + brythonic deities + american states + herbs common names + minerals + places in cumbria + plants common names + roman place names + natural sattelites + scottish surnames
Abaccarg Akram Alachita Alaunite Aldeet Alderd Alinhaw Alvite Amhaite Amhallite Andromeros Anite Annisby Aplete Arawks Ardin Argite Arleate Arryson Arshonby Artonyx Asackfor Asite Athivy Austacite Auxensin Avelipley Azite Baniite Banite Baraster Baraus Bastridge Baunyite Beaftow Belse Berysite Bhard Bhelde Bircort Blanaelite Blaniteth Blellan Bleon Bloweet Blurn Blydochad Blödi Bougilly Bower Braceafgh Brann Braquan Braste Bratby Bream Bridge Bridh Brinatby Brite Briziithia Bromston Bronend Brugh Brusite Buellite Bukudon Bunabay Burite Burnite Burtle Burydrite Buryson Buytod Bànad Caddenite Cadon Caikin Calby Calia Callebite Candrunite Canite Caoreede Carry Carsdam Celsey Cevite Chamer Cheaslazu Chite Chromon Chrìgh Chumaria Chutte Cille Clacshìch Clain Clarawcein Clard Clite Coclaugh Coldeston Colite Colorne Coluxenite Conchite Conth Conum Cooth Coraite Cosea Cownmoron Creite Crogats Croot Crougbury Cuisrandry Culine Curgite Curroite Cyite Cynite Cyrkbrocea Còmhaite Dainite Deilsite Demon Derite Dioboth Ditite Donite Dossougham Doveley Doviborns Duffe Dunnos Dyhort Eadmote Efolawle Eginubwa Ellheig Ellia Enews Esidge Essows Eucatonia Eucklead Eulain Faite Fariel Farite Fazer Felsa Ferite Ferry Fertite Fielites Fierumeste Figham Fleaterna Fluck Forouckin Frite Fruna Fòlarwain Gabhrobab Gadstna Gallia Gardbeck Gardialivy Garlon Garry Gattuddend Giterite Goite Golarstia Gonnum Gortlauck Grathne Graywokel Greath Greedge Greite Grivin Grosern Haite Halinge Hamet Hamoss Harstrains Hearassate Heartone Heasbaw Heirch Heldel Helle Hencald Henohria Hercafgh Hetite Hiterow Hiterrouge Horphytt Hovenus Hutiterley Hydrite Hyris Hysot Hytte Håleck Ilite Inite Ionite Ireenholy Irikite Irinds Irite Isbrite Iscoir Isite Jante Jikir Kadge Karba Kentiathed Kinsill Kinta Kipen Kiston Kreeite Kyite Könewelin Lacheadde Landite Lanesidhg Lavey Lelach Lermet Lessite Lierby Literlite Loebie Lomenus Lornsin Lortite Losedwe Lowcasite Loweed Loweente Luochigh Luoria Lìoscam Maley Mallania Mande Mangtoch Manis Manite Manonite Manthoe Maphàidia Marasite Marave Marrinley Mazzincory Mefor Melin Merierk Metrelite Micambia Mighte Mingste Moirk Molledbury Nadkenite Nagarot Nealawick Neste Nette Neweshib Nonite Nosidhùn Obarry Ogante Ohosanria Olberite Oldown Olequall Onich Ordam Ormaye Orthin Oughailme Ougille Parisd Partsmet Pedwolite Peite Penite Pheld Phydrite Physidgite Pinite Plema Plette Plewlax Plexange Podanntite Polisantag Polme Ponite Porairby Porome Porthairch Portortin Prehilth Prenk Pstowwotle Purcefort Purite Pursacratu Pyrtlod Qatsingil Reite Rhamarby Rialesfoot Ridcreanig Roclanite Rootby Roote Rosegille Ruingstly Rundrum Rusonch Sachaingon Saclawks Saspard Saujaper Scaccichaf Schite Scrough Seaite Seash Seastyrite Seliter Serimite Sgais Shacdh Shurdi Sidhod Sielstoite Silite Sille Skermete Skett Skingirite Slesey Slowpe Smate Smide Smord Sonite Souppitter Sparite Spezzincam Spines Stclite Sthiantigg Sthsarge Stinnohurn Stite Stlarvis Stlebon Stles Stlygodh Stroa Strough Stwin Styite Suarpe Sugèin Sumberite Suthwaite Swerby Swesuthlam Telite Thaigh Theaf Thiles Thnite Tield Tinyx Tonaigg Tonum Tough Tuson Tàild Ucreed Umaind Upitenona Uraingjia Urleas Urmaraite Uttlenite Vaein Varedale Varworix Veadene Venepton Venis Ventite Veolite Verigmegha Vetinne Waite Waywootar Weenfer Weenite Wherich Whiston Wiceite Wicham Wiched Willenom Wiloodge Winerrair Wiston Woolme Woorsgaras Wooterlite Wootho Worabaite Wortinod Xanate Yankcrader Yarve Yelles Ymiuq Yttle Zamainsite Zanto Zarnsonite Zhamson
1 note · View note
artsyeoll · 5 years
Text
Tumblr media Tumblr media
#𝟏𝐘𝐄𝐀𝐑𝐖𝐈𝐓𝐇𝐀𝐑𝐓𝐒𝐘𝐄𝐎𝐋𝐋 🛒⛓🔪★☆
today I came here, with all the pride of the world, to say that the blog just turned 1 year old!!! a year ago i made my first post, all insecure to send me asks, and of course i didn't get any lol but anyway, i kept making icons of my own free will, even did a lot of ulzzang icons. from the beginning, i met 2 blogs in particular that rlly inspired me, @hongdaedits and @everybodyicons (which unfortunately is no longer on tumblr, but is on twitter as @powedits), i want to tell u both that if I hadn't known the blog of one of you two would probably be quite different, maybe i wouldn't even be on tumblr.
now i will make a list of blogs and ppl that in this 1 year i felt that they supported me too much and helped me on my journey, but also blogs that for me are incredible in their own way
lets get it !!!
@3dawrk: só conheci seu blog por causa dos recomendados do tumblr, e sinceramente? fico TAO TAO feliz de ter clicado no seu blog por curiosidade kkkkkk mal sabia eu que encontraria icons dark LINDOS PARA UM CARALHO, e sendo sincera, antes de conhecer seu blog eu nao fazia icons com psd escuro ainda, mas depois de conhecer seu blog eu comecei a usar fotos com fundos mais escuros nas minhas edits e percebi que aquele era o tipo de edit que eu queria fazer ate o fim do meu blog! entao sim, vc é uma das minhas grandes inspirações dessa rede social, por favor continue postando essas edits e psds perfeitos. 😔🤪💞💓💌🙏
@luvpcy: in your case, i don't even remember how i met u to be honest, BUT, im very happy that this happened, your gifs are too beautiful 😔👍💓 and maybe i look a little "?????" but the truth is that i LOVE it when u send me cute asks, and that time when u made that baekhyun moodboard for me??? and the text you did for me on your follow forever??? i swear these days i cried man.... keep being that sweet and amazing person that you are 💌💓💞👍😔
@editshadow: seu blog é bem atual, mas de qualquer jeito eu tinha que colocar aqui! simplesmente vc veio pedir uma divulgação no meu blog e quando eu entrei no seu blog eu me apaixonei cara! te desejo todo o reconhecimento do mundo e espero que vc cresça muito esse ano 💕🌿🌼💓💞💌
@jeonsunday: MEUS AMIGOS! suas edits sao simplesmente impecáveis meu deus do ceu vei, o seu psd, TUDO É MUITO PERFEITO, inclusive me inspirei em você pra fazer o @exotaniestuff kk eu nao sei muitoo que falar mas tudo no seu blog é tao esteticamente agradavel vei so extremamente apaixonada 😔😔💓💗💘💞💝💖💕
@chwestv: outro blog de edits dark que eu recomendo MUITO MESMO, sei la, seus icons conseguem ser tão escuros mas mesmo assim eles nao ficam com aquela aparencia estranha, ele ficam esteticamente muito lindos???? considero isso um ponto super postivo do seu blog, continue fazendo esse ótimo trabalho e espero que atraia mais reconhecimento ✌✌💝💗💕💓🌱
@tinyxing: suas edits tem uma coisa muito unica que eu nem consigo explicar, seu psd é meio marrom mas bem clarinho que da um ar meio natural e eu acho esse efeito perfeito, fico muito feliz de um dia ter ido procurar layouts do bts e do exo e ter esbarrado no teu blog 😔😔👍💕💞💖💗💕💓💌
honorable mentions:
@getrektedits @lawedits @mincdrop @levy-ah @nhamilk @navilland @loveswayv @wlnterbear @cherryspsd @mirohsite @exodusarchive @wolfmb @googiesite @r-ra1nb0wgl0w @stormdkuttie @torahtt @agustevil @httvalentine @milkypsd @dreamiepsd @creamiepsds @glitterpsd @miniepsds @candy-psd @softie-yulli @s-sasuchiha @petitpsds @gguksite @nameoul @twicetail
im also made this psd in celebration of the 1st year of the blog :)
Tumblr media
116 notes · View notes