Viewing profile — lollipop25
lollipop25
HN member- Joined
- Tue, Oct 14, 2014, 1:58 PM UTC
- HN karma
- 175
- Public activity
- 96 items
- HN profile
- View on Hacker News ↗
About lollipop25
No profile information was provided.
Recent public activity
-
story
Ask HN: When should an open-source library stop supporting legacy browsers?
You can also rephrase the question as: - Are you assuming full ES5 support when building libraries? - Are you assuming partial ES6 support when building libraries? - Are you pushin…
-
story
Ask HN: How do you deal with snark on an open-source project?
I'm not talking about Twitter snark or HN snark where an all-out nerd war can happen in a snap and nobody really cares. I'm talking about snark thrown in a Github issue . How do yo…
-
story
Ask HN: When are you considered a “senior” programmer?
I have been doing web development for as long as I remember. I get by with tools that are needed for the job. I don't fancy the new and shiny. I just get things done fast and done …
-
story
Am I doing open source right?
I'm a member of an open source project. I tend to issues, answer questions, do house keeping, review some PRs, such and such. But I feel out of place because although I tend to the…
-
comment
Comment #11699400
App: - HTML: Vanilla - CSS: Bootstrap 4 (SCSS) + node-sass - JS: Any framework (ES6) + Rollup + Babel Deployment: - Repo: GitLab - Host: GitLab Pages - CI: GitLab CI
-
comment
Comment #11681074
Because electrical engineering and math. It's like a spectrum: Math [Uhm...math] Computer Science [algorithms] Computer Engineering [robotics] Electrical Engineering [electronics] …
-
comment
Comment #11655923
First off, use a native app, Gmail or another email client. It's lighter since you aren't loading the UI resources like you would in a web app. It can also be set to store messages…
-
comment
Comment #11641739
Apparently you haven't seen this comic: https://xkcd.com/927/ Got a question? Ask Stack Overflow. Want a reference? Get a real book. Want to learn programming? Go practice.
-
comment
Comment #11641732
From the looks of it, you're essentially doing tracking. Won't be long before your solution also gets blocked by an ad blocker.
-
comment
Comment #11586415
A system that gathers data about the current weather, date, time, weight, height etc. to... ...suggest you your breakfast, lunch and dinner. "you probably need a pizza today"
-
comment
Comment #11586406
Promises alone, good for me. Promises + generators, they just created a monster. I'll probably be sticking to just promises for a while. JavaScript is becoming terrible these days …
-
comment
Comment #11586339
> This means we never know where a function is being called from. Not really. Chrome dev tools has an "async" option which allows the stack trace to follow through async calls. You…
-
comment
Comment #11576253
This depends on the browser. Dev tools are "smart". It knows where you should put a breakpoint (i.e: putting it on a blank line, it puts it on the next executable line instead). It…
-
comment
Comment #11567871
> Should I focus on one language and become really good at it or work in multiple languages and stay mediocre? Both. Master one, but learn enough to be able get around with the oth…
-
comment
Comment #11539217
Good try kid. But you ain't goin' nowhere with this FUD. - Life's too short to deal with cross-browser incompatibilities. - jQuery too heavy for you, there's Zepto. - Not at all ti…
-
comment
Comment #11524158
Code level: Unit tests, peer-reviews. Integration: Automated UI testing. Functional: Humans, lots of them. Startups usually have very small teams. Take advantage of tools that do s…
-
comment
Comment #11517145
> WITHOUT frameworks But... but... jQuery? :D Anyways, in real-world development, jQuery is still the #1 go-to tool. A little above vanilla, but not too much abstraction. It's just…
-
comment
Comment #11464051
> What happens when a solely-responsible engineer quits a startup? - The management will try its best to keep the person. Raises, counter-offers, benefits will be put on the table.…
-
comment
Comment #11451369
Most of the ES6 constructs are already available in Node 5 with no strings attached https://nodejs.org/en/docs/es6/#which-features-ship-with-nod... React has already been there for…
-
comment
Comment #11393785
Finally. After struggling with their own package manager, they ultimately moved to npm.
-
comment
Comment #11372169
> These libraries basically are JavaScript's "standard library"... they just happen to be optional. Optional is great and I'm siding on building APIs on the user-land side if possi…
-
comment
Comment #11370728
> I don't understand why one guy pulling their repository off the npm servers affected others' projects. That's because 1) npm isn't immutable. The owner of a package can delete th…
-
comment
Comment #11370674
Because the runtime is present? I mean, why should I install Java to build my JavaScript when Node is present? And wouldn't it be weird if pip served Ruby gems or Homebrew providin…
-
comment
Comment #11367340
https://www.quora.com/How-is-Javascript-used-within-the-Spot...
-
comment
Comment #11358864
The root of the problem is why FooBarComponent is a giant index.js. Also, why does it have React bundled if it expects to be a reusable component? Also, frameworks like React etc. …