
đź‘‹ Oi, mga repapips, Brian Dys here! I love music, photography, and creative stuff like UX design and art. This is a place where I collect my thoughts and works. Apart all these, I’m Jaycelle’s better half and Bryce’s dad. 🥰
What’s really efficient–getting stuck in traffic on a short route or going through the long intestinal insides of the city?
That yummy taste when you’ve got a buy 1 take 1 cheeseburger deal? Yes, it’s the same banana peel that gets a comedy laugh when you slip because of it.
Morning people notice this–shirtless men walking on the streets to buy gel or something and women carrying towels also walking on the streets.
I’ve learned to play the guitar practicing the song, “Line to Heaven” by Introvoys. It’s a very easy D-A-G-A said my cousin.
Remember that time when all you need is water from the tap? Then a corpse got stuck in one of Manila Water’s pipelines.
Once, I’ve used Ajax bar soap on my skin because I took a bath at the laundry area.
Just like roses, rice have come to us in different colors.
When we were kids, the best stage we’d really like balloons taken home by mom from parties was when they’re already hovering mid-air.
Some people, they do not learn the meaning of life–they realize it. I, on the other hand, realized the meaning of couch potato during my six-month stay in our house which turned into my parent’s house after graduation. I was being rooted to the couch sleeping at 4 AM and waking up for lunch.
I was told once to never trust anyone with the name Ricky or Randy.
Convert the mock-up to plain text and wrap each text to its semantic HTML tag
Wrap the module and its elements in <div> tags. Use 4-spaces as standard for indentations.
This template model provides for the first container to have the display, positions, floats and the second container the width, padding, margin, border.
Apply box-sizing:border-box to the second container to fix the box model.
6 March 2013
So you’ve been developing the front-end all along but you’ve forgotten to setup a Google Analytics for the site. Not too bad, right?
But when you’ve taken for granted the IE browser version 8 and below, that’s when you should acknowledge a headache.
Checkout this list of things to account for when developing the front-end of a website.
To start with:
As you go along:
Add title tag to icons without text labels — in case the user couldn’t decipher which icon he’s hovering on, a tooltip will appear.
Put states in icons — make it position:relative and on :active, put top:1px
Always put a control to remove notification messages away. A “dismiss” link or close button would suffice.
16 January 2013
Filenaming
Images
Coding
Others
5 December 2012
While marking up, know beforehand which versions of old browsers you will be supporting.
Setup notification messages or “notifier”
Always name the main wrapper accordingly. For example:
<div id=”page” class=”page-dashboard”>
Dashboard pertains to the page/screen.
Layering of elements – use position:relative and z-index numbers, 1 being the lowest (under the stack).
19 July 2012
Before launching a website, here are several checkpoints to validate:
9 July 2012
Commenting is disabled.
Editing HTML5 Boilerplate 4.1.0
While we’re waiting for the vector format to come across the web, we’re left to “fake” it out — our images (excluding photographs) times two (x2) to create a high-pixel-density image.
While we’re at it, let’s see how we can consolidate all those icons into one file and in hi-res fashion.
We have website icons sized 16px, 24px, 32px, etc. While laying it out in Illustrator or Photoshop, size wouldn’t really matter — just make it larger than 48 x 48 pixels.
Set out your canvas in a fixed manner — if you’ve settled with 48px, then multiply it by 10 and have a 480px wide canvas. It could contain 10 48px icons across.
In you CSS:
width:32px;
height:32px;
background-size:1000%;
background-position:-32px 0; /* in increments of 32 pixels */
Update on February 22, 2013
Let’s get to the details on how to write the HTML markup, really.
—