Skip to content

Instantly share code, notes, and snippets.

View rpbaltazar's full-sized avatar
🧶
Knitting the next thing

Rui Baltazar rpbaltazar

🧶
Knitting the next thing
View GitHub Profile
@rpbaltazar
rpbaltazar / merlin_todo.md
Last active August 29, 2015 14:10
Merlin todo
  • washing the dishes and help her to dry them and put them away
  • cleaning the kitchen area with CIF
  • vacuum all the floors (and then clean/empty Mario) + check that all the hairs are removed form the tables chairs legs
  • clean and put far from the floor all the Plugs and cables
  • washing the windows and the mirrors (with Lasciva and newspapers)
  • cleaning the shower floor and windows and remove the hairs form the hole + wc + sink with CIF (remove all the brown spot close to the sink, wash the wc inside and outside
  • wash the tiles close to the wc and close to the sink (with the detergent for disinfect)
  • washing the floor with HOT water and detergent
  • cleaning the bench in your bedroom with a sponge can remove the stains (are not visible but that thing is really dirty)
  • remove the dust from the black tv table and the buddha stand with the yellow flat sponge
@rpbaltazar
rpbaltazar / multiline-text-wrap
Last active August 29, 2015 14:09
Multiline text wrapping using css (webkit only)
#parent-element {
/* Breaking this into main wrapper and truncate
allows you to have content that you actually
truncate and some other that you don't */
.main-wrapper {
height: 160px;
}
.truncate {
@rpbaltazar
rpbaltazar / awesome_nail.js.coffee
Last active August 29, 2015 14:08
<irony>Awesome nail to camel case a string</irony>
toCamelCase= (str) ->
val = _.map(str.split("_"), (x) ->
x[0].toUpperCase() + x.substr(1,1000)
).join("")
val[0].toLowerCase() + val.substr(1,1000)