Making Makeup Work and Civilised Eyebrows

I am going to talk about makeup stuff today. Yes, that girly talk, you guys should still read on though. I promise it won’t be just skin deep…

This post will not be complete without the before and after shots, so here they are, left without makeup, right with makeup:

beforeafter

I think it’s fair to say that many girls in IT are late-adopters in the makeup market, me included. The product types themselves baffled me for quite a long time – eyeshadow, foundation, powder, bb cream, eye curler, bronzer, eyebrow pencils, etcetera etcetera. Not to mention the brands supplying those products. What I tend to associate when I heard about these products was, money, money, money and money. And more often than not, it also conjured some feeling of disappointment caused by buying something that ended up useless, only to be thrown in the bin five minutes after. Like buying lipstick that I thought would make me look great (read: look older), only to find that the colour made me look like a prostitute instead. Bin.

Despite the frequent experimental failures, I know that somehow, I will have to make it work for me. Yep, make the makeup work (can’t resist!). Men don’t have to put on makeup, good for them, but women can’t really get away from it. I’m not trying to be sexist, because a study done in 2009 illustrated nicely why makeup is only for the female sex:

‘Given this sex difference in contrast, Russell found a connection between the application of cosmetics and how it consistently increases facial contrast. Female faces wearing cosmetics have greater facial contrast than the same faces not wearing cosmetics. Russell noted that female facial beauty has been closely linked to sex differences, with femininity considered attractive. His results suggest that cosmetics may function in part by exaggerating a sexually dimorphic attribute to make the face appear more feminine and attractive.

“Cosmetics are typically used in precisely the correct way to exaggerate this difference, ” Russell said. “Making the eyes and lips darker without changing the surrounding skin increases the facial contrast. Femininity and attractiveness are highly correlated, so making a face more feminine also makes it more attractive.”

091020153100-large
In the photo, “Illusion of Sex,” two faces are perceived as male and female. However, both faces are actually versions of the same androgynous face. One face was created by increasing the contrast of the androgynous face, while the other face was created by decreasing the contrast. The face with more contrast is perceived as female, while the face with less contrast is perceived as male. This demonstrates that contrast is an important cue for perceiving the sex of a face, with greater contrast appearing feminine, and lesser contrast appearing masculine.’

So if wearing makeup objectively increase attractiveness for women, then I suppose the reasons to apply makeup everyday will be very similar to the reasons why we have showers or why we wear something decent. The quote I hear a lot is “Eat to please thyself, but dress to please others” (Benjamin Franklin). If you want to look your best, spending time on makeup can be more effective than spending time and money on other items like dresses or shoes. This is because people will look at your face more often than your shoes (wanna bet?). Applying foundations and powder makes your face looks brighter, looks healthier and most importantly, not pale. Lipstick does a great job in making the entire face appear fresh, even if internally I’m kind of sick *cough*. When I don’t have enough sleep the night before, concealers will fix up the bags under my eyes, they’re gone in a puff!

I have one monolid, and one normal eyelid. This drove me nuts, because I couldn’t really follow eye makeup advice for monolids, nor could I follow the advice for normal eyelid. It took a lot of trial and error using sticky tape, eye sticker, and eye glue to “fix” the monolid to make it look somewhat like a normal one (guess which method works best?). One of my aunt apparently used to have monolids when she was younger, so she cut sticky tape in the shape of the normal eyelids she wanted, and persevered to keep them on her eyes for the entire day, every day, for over a year. She was a real perfectionist and methodical. She got the double eyelids at the end, it was epic hardwork.

Good makeup brings the best of your facial features. I have always thought of my eyebrows to be dull, no more than messy pile of crumpled hairs. But with a little bit of shaping, and some brow zings, voila they turned to be something else!

IMG_7017

I love my madeup civilised eyebrows now, they’re kinda cool 🙂

Of course there’s also the negative side of makeup. Once I’ve decided to use makeup in a work setting, I have to consistently apply them because I will look quite different without it. This get quite repetitive and boring when I do it for 15 minutes each day, five days a week. Lately I put the stopwatch on and record the time it takes just so I can race my past self. It’s more exciting this way.

I’ve put off writing this post because I thought it’s “too girly”, but hey if boys can talk about cars and not being labeled “too guyish”, I don’t see why girls should shy away from topics like this. I hope you can share some of your experience too, I noticed quite a lot of my girl friends started putting serious makeup (using eyeshadows++) within this last year. We could have probably helped out each other and avoided the earlier frustrations.

Author image Min'an

About

I’m Min’an, the other couch potato from nimblecouchpotatoes.com . I spent most of my life in Singapore before picking up a degree in Sydney. where I met Marty, my other potato-half. I worked as a java developer/build engineer/firefighter at Atlassian for a few years before following Marty to Stockholm where she found the job of her dreams.

In my past life I worked a great deal with Bamboo and Maven, and had some involvement with JIRA. Firefighting takes its toll on you and I’m now on a journey to figure out what I had missed wearing the red suit.

Author image Min'an

Referencing local aar files with Android Studio’s new Gradle-based build system

The new Android Studio IDE uses a new, Gradle-based build system. If you want to reference other android libraries, the process is now a little more complicated . At face value, the docs suggest you need to

Keeping a copy of the library sources around is useful if you need to build it again. If you’re using git, git submodules or one of its alternatives would be useful for this.

OTOH, if the author has kindly uploaded it to a maven repository as an aar (an apklib generated by the android-maven-plugin will not work), you can consume it as a normal dependency, something like:

dependencies {
  compile 'com.github.chrisbanes.actionbarpulltorefresh:library:0.7.+'
}

If all you have is the aar itself though, you’ll be out of luck because local aar files are not supported. So something like:

dependencies {
  compile files('libs/some-awesome-library.aar')
}

will not work, only aar files obtained from say a maven repository are allowed.

It turns out that almost any non-file repository is allowed, even flatDirs, so

repositories {
  mavenCentral()
  flatDir {
    dirs 'libs'
  }
}
...
dependencies {
  compile 'com.actionbarsherlock:actionbarsherlock-local:4.4.0@aar'
}

will work, assuming that your local aars are found in the libs dir. Note the addition of @aar, which indicates the packaging type of the dependency. The group (com.actionbarsherlock in this case) doesn’t actually matter as the artifact name, version and packaging type are all that’s used to look up the aar file.

Whilst this does save you the trouble of having to maintain a dependency to another codebase, it means you’ll probably be checking in a magic, binary artifact. For libraries using the maven plugin to generate an apklib, you still need a build.gradle to produce the actual aar though I have found this to be rather straightforward.

Author image Min'an

PAF #3 Svenska Ord

It’s been just over two months since we moved to Stockholm. It’s been relatively smooth sailing so far, largely thanks to our awesome housemates and the general hospitality of the Swedes we’ve met. Almost all Swedes can speak perfect english, save a number of migrants. Ironically, it turns out that you usually get better service at shops if you speak proper english as opposed to attempting to speak Swedish.

Which unfortunately turns out to be a massive problem if you’re actually tring to learn Swedish. I’ve not felt it as much since I’ve been doing stuff by myself for the most part and haven’t had to converse in Swedish very much, but it’s alot more tricky for Marty since the default conversational language at work is Swedish. It’s particularly bad when they have Fika, or coffee break, where they gather round and have coffee and cake…and speak mostly in Swedish.

One of our goals coming over was indeed to learn Svenska (that’s Swedish in Swedish) in the time we were here and we made some good headway initially. As things got busier, Marty with work and me doing PAFs we’ve put aside less and less time to actually try and pick it up. Marty keeps going on about the previous app she used for learning chinese and how there wasn’t an app with the features she wanted for learning Swedish. And so, therein lay PAF #3, Svenska Ord or Swedish Word, an Android flashcard app. It’s somewhat of a cop-out because it’s in Java/Android, and I’d like to justify it by seeing it’s the first project that will actually provide some actual practical benefits to us 😛 I’ll be attempting to do as much TDD as possibly, so we should have a nice set of tests at the end. Realistically I think the coverage will be mostly at the back-end rather than the front.

Here’s a copy of the spec Marty put together when we were planning for PAF #3:

On a side note I’ve gotten annoyed that I don’t get notified when folks reply to my comments on other blogs, so I’ve installed subscribe to comments reloaded on my instance. Let me know if you run into issues with it. 

Author image Min'an