Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
btipling
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
by
btipling
10y ago
It's the same model as GitHub. It costs money for private repos. So it is free if that's what you want.
2.
▲
by
btipling
10y ago
You might also want to check out Floobits which has collaborative editing for vim and neovim: https://github.com/Floobits/floobits-vim https://github.com/Floobits/floobits-neovim https:/
3.
▲
by
btipling
10y ago
I wrote a lengthy question and signed up but at the payment screen it required a credit card. I would have preferred a third party service like PayPal. I am not inclined to enter my credit card information into random websites. I would have
4.
▲
by
btipling
12y ago
I worked on the Ask Toolbar back in 2009. I did an AMA about it on reddit way back when[1]. I was hired to work on Bloglines, a Google Reader competitor that was shut down and I moved to the toolbar to work on the Firefox version. I just wa
5.
▲
On Moving to io.js
(news.floobits.com)
5 points
by
btipling
12y ago
|
0 comments
6.
▲
by
btipling
12y ago
API issues aside, I recently deleted my LinkedIn account and my life has been better off for it. My recruiter spam volume dropped from daily emails to maybe two or three times a month. I'm not sure if LinkedIn provides any value, I
7.
▲
by
btipling
12y ago
I am one of those programmers who doesn't have a computer science background. Instead I have an MLS (and an undergrad anthropology degree) and thus though myself am not a librarian have some idea of the value librarians provide. For on
8.
▲
by
btipling
12y ago
> The author critically misunderstands the way that `this` gets set... I don't actually. (I'm the author) I know that the this key word is executed at run time to figure out what this is. It is true there are simpler ways t
9.
▲
by
btipling
12y ago
> This is what I expect from neovim: provide me with async lint/checks. It would have to be written using the new remote-plugin architecture I'd think. Plugins that were written for Vim would always be synchronous.
10.
▲
by
btipling
12y ago
Regarding the bit about Floobits, it's very nice of them to mention us, we love Neovim, and all of the things said are true, but the Neovim remote plugin API recently changed and we're rushing to get our plugin to be compatible. T
11.
▲
by
btipling
12y ago
> My experience with NeoVim is that it's not ready to replace Vim yet And when did you last try Neovim? Because I use it everyday with all of my plugins from vim with 0 problems. The new remote plugin system with python support is
12.
▲
by
btipling
12y ago
> For the past eight months I have only seen Neovim folks being very professional, open, and quick to respond to user input. They've done even more than that. They have gone to great lengths to be helpful. For example, tarruda creat
13.
▲
Floobits now supports Neovim
(news.floobits.com)
7 points
by
btipling
12y ago
|
0 comments
14.
▲
by
btipling
12y ago
It's pretty much still the same experience. Once plugins that take advantage of the async and when gui's take advantage of the API I'm pretty sure neovim will not just be equal, but far superior.
15.
▲
by
btipling
12y ago
I'd add to that to try and start using neovim. I've switched to it on Mac without a hitch and we (Floobits) have already moved our vim plugin to use the new neovim python-client plugin for much better async behavior. Making an asy
16.
▲
by
btipling
12y ago
Yep, I wrote most of it way back in the day and then someone else took up the reigns, I don't think it's been updated in a long time. It's definitely not 0.9.4 compatible at this point. I'm working on an alternative temp
17.
▲
Maps, Sets and Iterators in JavaScript
(bjorn.tipling.com)
3 points
by
btipling
12y ago
|
0 comments
18.
▲
by
btipling
12y ago
> It's unclear whether the average person learns anything from a startup. > Entrepreneurs don't seem to learn much from their failures There is a difference between not learning anything at all and not learning something fro
19.
▲
by
btipling
12y ago
The truth of it is that the startup life isn't for every engineer. Startup code is messy. You don't have architects who draw UMLs for you, you don't have the luxury of time to do things right. At a small startup everything is
20.
▲
by
btipling
12y ago
The sociologist professor was discussing research. Though she agrees with the idea, it wasn't a claim made by her, it was a discussion.
21.
▲
by
btipling
12y ago
We are talking about people. So I think this kind of research and distinction makes for a powerful reminder of why tolerance for diversity is so important. Were those young people who do not happen to fit so nicely into these categories enc
22.
▲
by
btipling
12y ago
Sure, you could think of it as one gradient (gender) mapped to another (sexual orientation). The whole desire of us to classify these things into neat little labels falls apart though when you look at research and ethnographies of different
23.
▲
by
btipling
12y ago
It would still be a gradient even if the distribution of where people fit into it isn't even. The way my sociologist professor explained it in school was that the gradient is for "attraction" and like some appreciate the attr
24.
▲
by
btipling
12y ago
This "essentialism" applies to gender as well. Not just gender but sexual orientation and even biological sex which some sociologists and anthropologists distinguish as different from gender. These are not binary, but actually gra
25.
▲
by
btipling
12y ago
At floobits we use "actions" in addition to model events for our flux like implementation. Views trigger usually actions, modifying models triggers events on the model. Views in themselves do not usually trigger model updates. So
26.
▲
by
btipling
12y ago
It's best to just not concatenate strings and then dump them into HTML. You can't know it's not an XSS issue unless you know how this ended up in localStorage to begin with. It could be untrusted user content that came from t
27.
▲
by
btipling
12y ago
I've been interviewed by seldo before, when he was at awe.sm. It was a good technical interview. His questions were relevant and forced me to think. I like interviews in which I walk away learning something and I definitely did learn
28.
▲
by
btipling
12y ago
I know this is just demonstrating an example, but the example includes a dangerous XSS vulnerability: for(var i=0; i<products.length; i++) { content += products[i].name + '<br />'; }
29.
▲
by
btipling
12y ago
And I also missed out on including this, thank you.
30.
▲
by
btipling
12y ago
Nice catch, I will update the blog post.
More ›