2018.06.18 || Flexbox on Speed Dial
Iâve been using a lot of flexbox in recent web projects, so I figured I would try to streamline it by using html classes.
In order to actually test it, I typed it out in codepen. Check it out here.
"I'm Dorothy Gale from Kansas"
Peter Solarz
tumblr dot com

#extradirty
2025 on Tumblr: Trends That Defined the Year
we're not kids anymore.

if i look back, i am lost
Stranger Things
ojovivo

oozey mess

Product Placement
i don't do bad sauce passes
d e v o n

blake kathryn
đȘŒ
TVSTRANGERTHINGS

JBB: An Artblog!
Today's Document
art blog(derogatory)
Three Goblin Art
seen from Germany
seen from United States
seen from Malaysia

seen from TĂŒrkiye

seen from United States

seen from Singapore

seen from United Kingdom
seen from United States

seen from United States

seen from United States

seen from Malaysia
seen from Australia

seen from United Kingdom

seen from Malaysia

seen from Australia
seen from United States

seen from United Kingdom
seen from TĂŒrkiye
seen from Hong Kong SAR China
seen from Germany
@5040
2018.06.18 || Flexbox on Speed Dial
Iâve been using a lot of flexbox in recent web projects, so I figured I would try to streamline it by using html classes.
In order to actually test it, I typed it out in codepen. Check it out here.
2017.11.15 || CubeTunnel
I had a conversation with my friend Torcado that opened up an idea for a goofy Javascript project. I was thinking about mouse interactivity on webpages, and toyed with the idea of being able to throw around a 3D cube on a flat webpage. The cube would arc through the air and land all according to some typical physics engine, but it would never get closer or farther away from you. That is to say... the cube can fall in any direction, but always be the same distance away from the camera, and always be on screen.
Torcado said this is what an orthographic projection will always do. And it makes sense! But I liked the way he ended up explaining it to me. Imagine the cube, and your camera, sitting in an infinitely long tunnel exactly the height and width of your browser window. A tunnel where the end is technically nonexistent, and infinitesimally small. And now, with your camera aimed straight down the tunnel, present it orthographically. Simply by definition, all four edges of the tunnel have to be exactly parallel to your viewport, so you immediately find your entire screen filled with the nonexistent ending to an infinitely long tunnel. And now the cube always remains exactly the same size no matter where you throw it in the tunnel.
But now to see if I can get it done. Torcado recommends using threejs, and I donât have any preference since itâs all new to me. Time to learn a little.
2017.06.08 || revolv.fr
My current summer project has apparently become undertaking my personal portfolio website that has been sitting on the sidelines for nearly a year now. I downloaded Brackets and my workflow actually seems to have taken off for once. Itâs pretty great.
I have a lot of component projects that Iâll finish on the way to having all the right elements for my current plans for this site. Between JavaScript tinkering and hammering out the paragraphs of text about myself, I think this is pretty fun. Itâs nice and balanced and Iâve encountered some hurdles in programming that Iâve learned something from already.
2017.02.03 || IconCanv
I donât have a whole lot to say about this yet, but there was a math problem I was having a long time ago that halted this project completely and all of a suddenly Iâve been feeling inspired to pick it up again.
It really is something fun though, I promise!
2016.08.15 || Penrose Points
I might be diving a little too quickly into things trying to learn how to use canvas to draw polygons when my knowledge of HTML and CSS doesnât have a very good foundation in the first place.
Regardless, coming up with the numbers for all twelve points for a penrose triangle centered around the origin took too much time overall, but is pretty satisfying to look at.
NOTE:Â ânâ is the length of each side of the smallest triangle in the center.
Plugged it all into desmos.
Definitely works.
Now in code.
2016.08.15 || Penrose Points
I might be diving a little too quickly into things trying to learn how to use canvas to draw polygons when my knowledge of HTML and CSS doesnât have a very good foundation in the first place.
Regardless, coming up with the numbers for all twelve points for a penrose triangle centered around the origin took too much time overall, but is pretty satisfying to look at.
NOTE:Â ânâ is the length of each side of the smallest triangle in the center.
Plugged it all into desmos.
Definitely works.
2016.08.15 || Penrose Points
I might be diving a little too quickly into things trying to learn how to use canvas to draw polygons when my knowledge of HTML and CSS doesnât have a very good foundation in the first place.
Regardless, coming up with the numbers for all twelve points for a penrose triangle centered around the origin took too much time overall, but is pretty satisfying to look at.
NOTE:Â ânâ is the length of each side of the smallest triangle in the center.
2015.06.06 -- ZXCVCalc
Results from what I ultimately decided to use for the percentages. âxcvâ continues to come out as the most frequent sequence by about three times as much as the second most frequent.
This is a paper Iâve had with me for a while, apologies for the poor phone picture, scanning just isnât feasible.
Important note, if you check the chart there towards the corners, youâll notice what is basically a percentage of how difficult the quarter of that chart is in comparison to everything else. (Higher percent = more difficult sequences involved)
FREQUENCY OF CHARACTER to QUARTER OF CHART PERCENTAGE
Z : 16.99% to 28.14%
C : 20.93% to 26.94%
X : 30.87% to 22.51%
V : 31.21% to 22.14%
The relationship between the percentages are inverses and they are distanced from each other similarly both ways. Even though this is totally expected considering how I split up the numbers, itâs good to have some concrete comparisons to make to prove everything still makes sense.
The cube in frequency and percentages.
2015.05.31 -- ZXCVCalc
Nevermind,
I did finish it.
2015.05.30 -- ZXCVCalc
As a start I think Iâll just lay down a little bit of work I was doing in Java towards information input and analyzation. A recent computer science class Iâve been taking has us using an IDE called BlueJ, so itâs out of this that youâll see all these pictures.
I was told once about, within any particular game, the control scheme of using ZXCV on the keyboard with your left hand or actions, and pairing it with your right hand on the arrow keys. It sounded familiar and I wasnât a fan at first, but I got to thinking about it so much I started writing out some ideas for how ZXCV + Arrow Keys could be set to cover a very wide majority of video game genres. So, inspired, I wanted to build a game based on making very quick three character sequences out of the keys ZXCV. I wanted to find out what were the easiest three letter sequences to type. So I made this.
Itâs just a single class, I didnât feel like any more were needed at the time though now I can think of a few alternatives that would have greatly sped up the process. This was written and basically completed on 2015.05.17.
I asked some people to just take their left hand, place it on the ZXCV keys, and press buttons without thinking about how they pressed it. I developed the class to accept a single, massive string of characters (like this 1504 character long one here) to receive the letters, remove everything that wasnât a z, x, c, or v, and register all the possible forwards-reading 3 character sequences out of the string. Then it displays a bunch of information:
Copying the massive string into the objectâs constructor.
METHOD A through C just checks the string three different ways to get all possible sequences. It sees how often each letter was pressed, and then, most importantly, gets the most often typed sequence. As it turns out, I got eight people including myself to type a fairly large string, and the top sequences was âxcvâ in six of them. âzxcâ in the other two.
This is another function written in the same class, which was really the most necessary. This is the same 1504 characters string but provides a look at all the sequences stored within a cubic matrix in the class. With this, and especially with much larger strings, I should be very easily able to get a list top to bottom of the easier to harder to press sequences. Though, this doesnât account for left-handed people. Iâm not really sure how that would affect it.
The only thing I didnât complete was a method that just runs through the cubic matrix and writes that list of all 64 possible sequences in order of frequency. In fact, I wasnât quite sure how to get it done. This seems to work just as well anyhow.