• DISCLAIMER: WHAT YOU SEE HERE IS FAN CONTENT, I AM IN NO WAY AFFILIATED WITH GLITCHED OR EN HOUSE STUDIOS.


    that meme except both parties r staring at eachothers ***** #equality
    DISCLAIMER: WHAT YOU SEE HERE IS FAN CONTENT, I AM IN NO WAY AFFILIATED WITH GLITCHED OR EN HOUSE STUDIOS. that meme except both parties r staring at eachothers boobs #equality
    0 Comments 0 Shares 27 Views
  • I've spent over a week writing Sp00kyFox's modified Scale2x algorithm in Python, along with adding rules for long staircases of up to 3 pixels.

    This is the algorithm in pseudocode after calculating the luma values:

    *Note: Equality is used as being synonymous with "similar enough".*
    ```
    J
    A B C
    K D E F L
    G H I
    M

    E >> 1 2
    3 4

    if ( # top left
    B == D and B != F and D != H and (
    E != A or E == C or E == G or A == J or A == K)):

    E1 = min(B, D)

    if C != G: # 2px staircase
    if B == D == G == J and B != CJ: B4 = E
    if B == C == D == K and D != GK: D4 = E

    if CL != GM: # 3px staircase
    if B == D == G == J == JJ == GM and B != CJ: E3 = min(B, D)
    if B == C == D == K == KK == CL and D != GK: E2 = min(B, D)

    if ( # top right
    B == F and B != D and F != H and (
    E != C or E == A or E == I or C == J or C == L)):

    E2 = min(B, F)

    if A != I: # 2px staircase
    if A == B == F == L and F != IL: F3 = E
    if B == F == I == J and B != AJ: B3 = E

    if AK != IM: # 3px staircase
    if A == B == F == L == LL == AK and F != IL: E1 = min(B, F)
    if B == F == I == J == JJ == IM and D != AJ: E4 = min(B, F)

    if ( # bottom left
    D == H and B != D and F != H and (
    E != G or E == A or E == I or G == K or G == M)):

    E3 = min(D, H)

    if A != I: # 2px staircase
    if A == D == H == M and H != IM: H2 = E
    if D == H == I == K and D != AK: D2 = E

    if AJ != IL: # 3px staircase
    if A == D == H == M == MM == AJ and H != IM: E1 = min(D, H)
    if D == H == I == K == KK == IL and D != AK: E4 = min(D, H)

    if ( # bottom right
    F == H and B != F and D != H and (
    E != I or E == C or E == G or I == L or I == M)):

    E4 = min(F, H)

    if C != G: # 2px staircase
    if F == G == H == L and F != CL: F1 = E
    if C == F == H == M and H != IM: H1 = E

    if CL != GM: # 3px staircase
    if F == G == H == L == LL == GJ and F != CL: E3 = min(F, H)
    if C == F == H == M == MM == CJ and H != IM: E2 = min(F, H)
    ```
    As much as I love xBRZ, I dislike that it adds antialiasing, and it doesn't straighten staircases longer than 2px.


    My Scale2xSFX derivative may have trouble with thin anti-aliased lines (and I have yet to figure out how to solve this without bringing back old Scale2x artifacts), but at least my staircase rules work (and hopefully I wrote the pseudocode correctly for you guys, or it won't work the same).

    The purpose of this algorithm is to prep my pixel drawings for vectorization.
    I've spent over a week writing Sp00kyFox's modified Scale2x algorithm in Python, along with adding rules for long staircases of up to 3 pixels. This is the algorithm in pseudocode after calculating the luma values: *Note: Equality is used as being synonymous with "similar enough".* ``` J A B C K D E F L G H I M E >> 1 2 3 4 if ( # top left B == D and B != F and D != H and ( E != A or E == C or E == G or A == J or A == K)): E1 = min(B, D) if C != G: # 2px staircase if B == D == G == J and B != CJ: B4 = E if B == C == D == K and D != GK: D4 = E if CL != GM: # 3px staircase if B == D == G == J == JJ == GM and B != CJ: E3 = min(B, D) if B == C == D == K == KK == CL and D != GK: E2 = min(B, D) if ( # top right B == F and B != D and F != H and ( E != C or E == A or E == I or C == J or C == L)): E2 = min(B, F) if A != I: # 2px staircase if A == B == F == L and F != IL: F3 = E if B == F == I == J and B != AJ: B3 = E if AK != IM: # 3px staircase if A == B == F == L == LL == AK and F != IL: E1 = min(B, F) if B == F == I == J == JJ == IM and D != AJ: E4 = min(B, F) if ( # bottom left D == H and B != D and F != H and ( E != G or E == A or E == I or G == K or G == M)): E3 = min(D, H) if A != I: # 2px staircase if A == D == H == M and H != IM: H2 = E if D == H == I == K and D != AK: D2 = E if AJ != IL: # 3px staircase if A == D == H == M == MM == AJ and H != IM: E1 = min(D, H) if D == H == I == K == KK == IL and D != AK: E4 = min(D, H) if ( # bottom right F == H and B != F and D != H and ( E != I or E == C or E == G or I == L or I == M)): E4 = min(F, H) if C != G: # 2px staircase if F == G == H == L and F != CL: F1 = E if C == F == H == M and H != IM: H1 = E if CL != GM: # 3px staircase if F == G == H == L == LL == GJ and F != CL: E3 = min(F, H) if C == F == H == M == MM == CJ and H != IM: E2 = min(F, H) ``` As much as I love xBRZ, I dislike that it adds antialiasing, and it doesn't straighten staircases longer than 2px. My Scale2xSFX derivative may have trouble with thin anti-aliased lines (and I have yet to figure out how to solve this without bringing back old Scale2x artifacts), but at least my staircase rules work (and hopefully I wrote the pseudocode correctly for you guys, or it won't work the same). The purpose of this algorithm is to prep my pixel drawings for vectorization.
    0 Comments 0 Shares 9 Views
  • Wulfgar and Riko wishes everyone a Happy Pride Month 2021! πŸ³β€πŸŒˆβ€β€πŸ³β€πŸŒˆ

    Let us not forget that we still have a lot more to fight for in our journey to equality.

    Let us not forget those who struggled and died before us who fought for LGBTQIA+ Rights and those who continue to fight for those Rights Today!

    Website: https://fuzzwolves.wixsite.com/home

    Patreon: https://www.patreon.com/Fuzzwolves

    Wulfgar and Riko wishes everyone a Happy Pride Month 2021! πŸ³β€πŸŒˆβ€πŸΊπŸΊβ€πŸ³β€πŸŒˆ Let us not forget that we still have a lot more to fight for in our journey to equality. Let us not forget those who struggled and died before us who fought for LGBTQIA+ Rights and those who continue to fight for those Rights Today! Website: https://fuzzwolves.wixsite.com/home Patreon: https://www.patreon.com/Fuzzwolves
    0 Comments 0 Shares 48 Views
  • Personal log 430
    I don't even know how to begin, I have made a mistake, possibly the biggest one I ever have, she was right the deception cause is dead, overshadowed by jealousy and violence, no longer about freedom or equality, but turning the table and oppressing our oppressors

    And now I'm just repeating what she said

    Spin-dance... You were right and now, you're gone, all because of Me

    I'll turn this around, I WILL atone

    I'll fix this spin-dance I promise
    Personal log 430 I don't even know how to begin, I have made a mistake, possibly the biggest one I ever have, she was right the deception cause is dead, overshadowed by jealousy and violence, no longer about freedom or equality, but turning the table and oppressing our oppressors And now I'm just repeating what she said Spin-dance... You were right and now, you're gone, all because of Me I'll turn this around, I WILL atone I'll fix this spin-dance I promise
    0 Comments 0 Shares 33 Views
  • The Republic of Arizona was CELTICEMPIRE's country in *New Revolution*. Corrupt, jingoistic, and xenophobic, despite its anti-immigrant attitude it enacted full equality for Native Americans and established integrated military units. Arizona grew to encompass most of the southern United States, ranging from southern California, Utah, northern Mexico, and western Texas. Expansion into southern Texas sparked a rebellion soon echoed by uprisings in California; supported by Arizona's rival the Caribbean Republic, the insurgencies were only finally put down shortly before the game's end.

    SVG reconstruction of CELTICEMPIRE's original design with normalized proportions, uploaded to the now-defunct IOT Wiki in 2019. No explanation of the symbolism was ever given.

    [Download submitted to DeviantArt](https://www.deviantart.com/el-thorvaldo/art/Flag-of-Arizona-New-Revolution-931398762) September 2022; [alternative download available via Patreon.](https://www.patreon.com/posts/72702991)
    The Republic of Arizona was CELTICEMPIRE's country in *New Revolution*. Corrupt, jingoistic, and xenophobic, despite its anti-immigrant attitude it enacted full equality for Native Americans and established integrated military units. Arizona grew to encompass most of the southern United States, ranging from southern California, Utah, northern Mexico, and western Texas. Expansion into southern Texas sparked a rebellion soon echoed by uprisings in California; supported by Arizona's rival the Caribbean Republic, the insurgencies were only finally put down shortly before the game's end. SVG reconstruction of CELTICEMPIRE's original design with normalized proportions, uploaded to the now-defunct IOT Wiki in 2019. No explanation of the symbolism was ever given. [Download submitted to DeviantArt](https://www.deviantart.com/el-thorvaldo/art/Flag-of-Arizona-New-Revolution-931398762) September 2022; [alternative download available via Patreon.](https://www.patreon.com/posts/72702991)
    0 Comments 0 Shares 8 Views
  • β€’ Name: Jo-Del
    β€’ Age: 23
    β€’ Origin: Unknown
    β€’ Height: 6'2''
    β€’ Gender: Male
    β€’ Race: Human
    β€’ Eye Color: Blue
    β€’ Hair Color: Brunette
    β€’ Skin Tone: Peach
    β€’ Favorite Color: Orange
    β€’ Favorite Food: Korean-style Spiced Chicken
    β€’ Alignment: Good
    β€’ Hobbies: Helping/working with Koddela at the forge, trains with his team, arm wrestling with Basim or other Bloodhound clan members, takes walks outside of the city, and collects unique stones (precious or not).
    β€’ Likes: Talking to Basim, Skye, Koddela, and (rarely Zerrius), amber stones, rock/metal music, ancient architecture, and Tigers.
    β€’ Dislikes: Inequality, when Zerrius talks about anything body related, most candies, gray skies (mainly when there's no rain), and guns.
    β€’ Personality: Stressed (but keeps it suppressed), inspired, creative, responsive, and practical.
    β€’ Weapons: Double Sword (With replaceable blades)
    β€’ Abilities:
    - Cursed with "Heat Stroke": The longer he fights, the more pain he recedes, and the angrier he gets; the more heat catches on through his arms and legs. His double sword handle was designed by Garter to transmit the heat into the disposable blades to cut like a red hot knife.
    - Con to "Heat Stroke": If he overheats, the heat will go to his head causing him to pass out almost immediately.
    β€’ Name: Jo-Del β€’ Age: 23 β€’ Origin: Unknown β€’ Height: 6'2'' β€’ Gender: Male β€’ Race: Human β€’ Eye Color: Blue β€’ Hair Color: Brunette β€’ Skin Tone: Peach β€’ Favorite Color: Orange β€’ Favorite Food: Korean-style Spiced Chicken β€’ Alignment: Good β€’ Hobbies: Helping/working with Koddela at the forge, trains with his team, arm wrestling with Basim or other Bloodhound clan members, takes walks outside of the city, and collects unique stones (precious or not). β€’ Likes: Talking to Basim, Skye, Koddela, and (rarely Zerrius), amber stones, rock/metal music, ancient architecture, and Tigers. β€’ Dislikes: Inequality, when Zerrius talks about anything body related, most candies, gray skies (mainly when there's no rain), and guns. β€’ Personality: Stressed (but keeps it suppressed), inspired, creative, responsive, and practical. β€’ Weapons: Double Sword (With replaceable blades) β€’ Abilities: - Cursed with "Heat Stroke": The longer he fights, the more pain he recedes, and the angrier he gets; the more heat catches on through his arms and legs. His double sword handle was designed by Garter to transmit the heat into the disposable blades to cut like a red hot knife. - Con to "Heat Stroke": If he overheats, the heat will go to his head causing him to pass out almost immediately.
    0 Comments 0 Shares 12 Views
  • I'm tired of feeling helpless because I can't afford to donate to the causes I care about right now! So I'm going to try to do what I can! Adding some fundraising stickers to my shop! Proceeds for each sticker will go to their affiliated cause! You can read more about each sticker & cause in my shop!

    Macha the cat spirit & slime - proceeds will support @lavoszero in raising money to escape an unsafe (homophobic & transphobic) home.

    Pride Flag Lumie - proceeds will support LGBTQIA+ organizations (this month it will be Equality Texas, I'll alternate monthly if we've raised something to donate!)

    Watermelon Lumie - proceeds will go to Care for Gaza

    Luffy Slime - proceeds will go to support my friend Dan & his sweet dog Luffy in getting a place to live that will allow them to keep Luffy!

    More details and direct support links to these causes in my shop! https://vidramon.bigcartel.com
    I'm tired of feeling helpless because I can't afford to donate to the causes I care about right now! So I'm going to try to do what I can! Adding some fundraising stickers to my shop! Proceeds for each sticker will go to their affiliated cause! You can read more about each sticker & cause in my shop! Macha the cat spirit & slime - proceeds will support @lavoszero in raising money to escape an unsafe (homophobic & transphobic) home. Pride Flag Lumie - proceeds will support LGBTQIA+ organizations (this month it will be Equality Texas, I'll alternate monthly if we've raised something to donate!) Watermelon Lumie - proceeds will go to Care for Gaza Luffy Slime - proceeds will go to support my friend Dan & his sweet dog Luffy in getting a place to live that will allow them to keep Luffy! More details and direct support links to these causes in my shop! https://vidramon.bigcartel.com
    0 Comments 0 Shares 8 Views
  • β€’ Age: 24
    β€’ Origin: Atlantis Greece
    β€’ Height: 6'4''
    β€’ Gender: Male
    β€’ Race: Piscine
    β€’ Eye Color: Black
    β€’ Hair Color: Pine Green
    β€’ Skin Tone: Aqua Green
    β€’ Favorite Color: Red
    β€’ Favorite Food: Kebapche
    β€’ Alignment: Good
    β€’ Hobbies: Cooks for fun with Ron, lifts anything heavy, bird watching, and explores town and cities on his own time.
    β€’ Likes: Zeph, anyone he can make friends or acquaintances with, seeing his friends improve, seals and whales.
    β€’ Dislikes: Inequality, Jellyfish, stories about Leviathans, and deep sea trenches.
    β€’ Personality: Stoic, noble, insistent, open-minded, and lucid.
    β€’ Weapons: Fist, and dual Mycenean short swords.
    β€’ Abilities:
    - Moves faster than an average shark in water and runs faster/jumps higher on land than an average surface dweller.
    - Rage mode that ignores most injuries and hits taken.
    β€’ Age: 24 β€’ Origin: Atlantis Greece β€’ Height: 6'4'' β€’ Gender: Male β€’ Race: Piscine β€’ Eye Color: Black β€’ Hair Color: Pine Green β€’ Skin Tone: Aqua Green β€’ Favorite Color: Red β€’ Favorite Food: Kebapche β€’ Alignment: Good β€’ Hobbies: Cooks for fun with Ron, lifts anything heavy, bird watching, and explores town and cities on his own time. β€’ Likes: Zeph, anyone he can make friends or acquaintances with, seeing his friends improve, seals and whales. β€’ Dislikes: Inequality, Jellyfish, stories about Leviathans, and deep sea trenches. β€’ Personality: Stoic, noble, insistent, open-minded, and lucid. β€’ Weapons: Fist, and dual Mycenean short swords. β€’ Abilities: - Moves faster than an average shark in water and runs faster/jumps higher on land than an average surface dweller. - Rage mode that ignores most injuries and hits taken.
    0 Comments 0 Shares 11 Views
InkBlot Art https://beta.inkblot.art