soinus | 3 years ago | on: Ask HN: How to get excited about deep learning
soinus's comments
soinus | 3 years ago | on: Ask HN: What is the most impactful thing you've built?
soinus | 3 years ago | on: The pool of talented C++ developers is running dry
soinus | 3 years ago | on: The pool of talented C++ developers is running dry
soinus | 3 years ago | on: The pool of talented C++ developers is running dry
soinus | 4 years ago | on: Quitting your dream job twice
My take on why it's hard is that I want to be a team player and I generally want to do good for the company and especially the team. If I go and do something else, which I believe in, but which is not what we agreed upon with my team, it feels awkward and I either have to do it in my spare time (this strategy wears thin with time) it "sabotage" something else that I'm doing.
So I definitely see a structural issue at hand here. If anybody has a suggestion of how these situations could be addressed - I'm all ears. How can we tackle situations where the time to write code is much much less than the amount of time to discuss if we have to write this code? How to skip to writing the code quicker?
soinus | 5 years ago | on: Ask HN: How to increase SWE salaries in Europe?
soinus | 5 years ago | on: Ask HN: How do you keep track and organize your life?
soinus | 5 years ago | on: The iPad's new cursor and keyboard
To those, who can't or don't want to watch the video: you can configure iPad to lock you in a single app and unlock with either biometric or pin entry. This is available in the accessibility settings.
soinus | 5 years ago | on: The iPad's new cursor and keyboard
Once every <insert-some-time-frame> I start missing games and decide to play something. I have a dedicated relatively powerful PC for that. What I have recently found out is that I can play XCOM2 on my PC through my iPad with Steam link. The experience was good enough out of the box but the way the cursor was controlled through an iPad screen felt a bit out of place.
Yesterday, I suddenly realized that I can use a Bluetooth mouse with my iPad and holy crap, the experience is like playing on the PC but I am not attached to the desk! There is only one minor issue of not being able to move the mouse to the bottom of the screen without triggering the applications bar, but this was not too annoying.
Not sure how important this is to anyone, but I was amazed that I could do this.
soinus | 6 years ago | on: How We reduced our Google Maps API cost
Working in data science I keep thinking about how I would solve a particular problem. Regarding real-time traffic: how would you solve something like this? Clearly one has to have a lot of anonymized data one can trust. Now the question is how to get these data. Google is building it's business on providing a useful service, like gmaps, for free and on using the data from the users of this service in aggregate to sell useful information to businesses that require these data for whatever they are working on, like the company in the article. Google is very transparent about how they use your data when you use their service and they seem to try to do their best to anonymize these data, e.g. you hardly ever get the access to even anonymous data outside of Google, but rather to the information computed from these data. So I see no objective reason for being so angry. What am I missing here? In the end, if you ever want a service like "ETA at destination" someone will need to acquire the data anyway, right?
soinus | 6 years ago | on: Ask HN: What projects are you working on now?
Otherwise, I did find out that now I have the time to learn some things I wanted to for a long time (like OpenGL) or play guitar again, so that takes the remaining time.
soinus | 6 years ago | on: The good, the bad and the ugly standup
I believe weekly OKRs are the best of two worlds: they are restrictive enough to feel the peer pressure for ones committed goal and descriptive enough for any manager to get a grip on the current situation, while at the same time relaxed enough for engineers to not feel like they are trapped in a cage. One week is plenty of time to either finish some work that just needs to be done or write a small prototype. In fact I liked it so much, that I brought the idea of OKRs back to my research lab and everybody loves it!
Scrum is the worst of this for me. We've rotated through a couple of daily formats and it always feels micromanaged and pointless. In addition to that it takes away the personal feeling of achievement. My best work in this framework has been done when I ignored the framework as the whole...
soinus | 6 years ago | on: Germany's Giant Windmills Are Unpopular
soinus | 6 years ago | on: Ask HN: What do you automate in your life and work?
soinus | 7 years ago | on: Ask HN: What is the best laptop to run Linux in 2019?
soinus | 8 years ago | on: Sublime Text build 3133 now available
soinus | 9 years ago | on: Show HN: Yet another Sublime Text plugin for C++ completion
soinus | 9 years ago | on: Show HN: Yet another Sublime Text plugin for C++ completion
soinus | 9 years ago | on: Show HN: Yet another Sublime Text plugin for C++ completion
I will do a brief list of all that I know of: https://github.com/quarnster/SublimeClang - discontinued
This one is pretty close to what I want: https://github.com/lvzixun/Clang-Complete It uses libclang and should work on all systems. It didn't work properly for me under Linux, but feel free to use it if it does.
There is also a plugin https://github.com/griebd/clangHelper which shares the purpose with what I have written, but was never updated after the initial commit, which is a pity. I probably wouldn't have written mine if it would be alive.
Then there are https://github.com/LuckyGeck/YcmdCompletion, https://github.com/glymehrvrd/CppYCM and https://github.com/ivankoster/SublimeYouCompleteMe that use ycmd server to complete code. Ycmd is well-known to those who are vim users under the name YouCompleteMe. Unfortunately all these plugins are not fully in line with Ycmd server developments, e.g. the HMAC auth often mismatch and sometimes there is even no setting for that. These all are really great! And I do like the server-client architecture of this, but I could not make any of these work reliably for me. Believe me, I have tried. Also, again, it is harder for the user to separately setup a server and then register a client to it with multiple settings. Also there is a need for a .ycm_extra_conf.py file that has non-trivial syntax (as a python file)
And then there is https://github.com/pl-ca/ClangAutoComplete which is a really nice plugin and I started off my forking it. It uses only clang binary and is written in a simple, easy to grasp way, so it was perfect to hack around. However, I wanted to have a more modular structure and to make is unit tested and to use libclang when possible, so we have diverged.
Correct me if I did any wrong statement please and point me to the ones I may have forgotten.