ablomen | 4 years ago | on: School surveillance of students via laptops may do more harm than good
ablomen's comments
ablomen | 6 years ago | on: Parsoid in PHP, or There and Back Again
ablomen | 6 years ago | on: Tim Cook Appears Alongside Trump in Re-Election Campaign Ad Shot
https://en.wikipedia.org/wiki/Apple_Inc.#Criticism_and_contr...
I think Apple has done a lot worse in its "proud history" and is still doing it.
ablomen | 6 years ago | on: Nobody talks about the real reason to use Tabs over Spaces
Tabs for indentation, spaces for alignment looks to me like the best of both worlds.
ablomen | 8 years ago | on: I don’t want to be a software developer anymore
Not to mention the fact that until recently (over here at least) most beer festivals looked quite a bit like open source conventions, just with different stickers. And the "beer nerds" (including me) I know are just as in to beer as I was in to computers.
ablomen | 8 years ago | on: I don’t want to be a software developer anymore
When I started as all round IT guy 10 years ago it felt like a dream, getting payed for doing what I was doing anyway. And the first 4 years of turning in to a web developer was fun and challenging.
But after a while the shine wears off and getting up every day to make software for clients you are not interested in, with deadlines and promises that where not made by your self, it just drains you.
After finding my own solution (starting up a beer brewery) another thing dawned, sitting behind a computer hours every day for work just is not good for your body or your mind. The money is great, the work can be fun, but at least for me, the best thing I have ever done is starting something totally non-IT (or other office job) related.
ablomen | 8 years ago | on: Javascript Arrays and Functional Programming
let out = ["a", "b", "c", 1, 2, 3]
// Turn letters to upper case
.map(i => {
return typeof i === "string"
? i.toUpperCase()
: i;
})
// Add one to numbers
.map(i => {
return typeof i === "number"
? i + 1
: i;
})
// split letters and numbers up
.reduce((all, i) => {
typeof i === "string"
? all.letters.push(i)
: all.numbers.push(i);
return all;
}, { "letters": [], "numbers": [] });
// => { letters: ["A", "B", "C"], numbers: [2, 3, 4] }ablomen | 8 years ago | on: Lawsuit: Sexual harassment ‘victim’ was San Francisco business rival in disguise
ablomen | 8 years ago | on: Lawsuit: Sexual harassment ‘victim’ was San Francisco business rival in disguise
ablomen | 8 years ago | on: Mini.css – Minimal, responsive, style-agnostic CSS framework
ablomen | 8 years ago | on: Mini.css – Minimal, responsive, style-agnostic CSS framework