Alex Vermeer's guide "8,760 hours" [1] could be helpful if you didn't already come up with your resolutions: Its method gives you a framework how to analyze and prioritize your long term goals for this or the next year.
An alternative in Germany (or any country adhering to the IBAN/BIC numbering system) is cringle [1]. It uses direct withdrawals (Lastschrift) or wire transfers and does not require the other party to have a cringle account in order to receive money, according to their website.
While the method using to sign documents is identical (as posted by inkfactory), the main difference is that bitstamped is also hosting your files. This can be regarded as both an advantage or a disadvantage over proofofexistence, depending what your position is regarding the remote hosting of the document.
A very nice list of debuggers, but I'm wondering why there is no mentioning of the (very good) debugging support you can find in IntelliJ and Eclipse and mostly, why there is no mentioning of Winpdb [1]; a very nice and platform-independent Python debugger with a full-fledged GUI.
I'd love to see some sort of retention limit, and the functionality to manually remove an uploaded design. An export function of all comments and a special stylesheet for printing (i.e., showing all comments below the picture) would make it perfect!
This is very interesting as it reminds me of my youth (and probably also the experiences of other people): After the obligatory QBASIC dabbling, my first experiences as a child with GUI design and programming was through macros and the VBA Editor of MS Office, which, at the time, had a good offline help system. Albeit not having any formal knowledge, creating some simple (mostly text-based and excel-cell-based) RPGs was possible thanks to that.
Apart from the request of removing their logos, Amazon also requested that "[you] shut down the site". Is this because of the specific business model you had, or only because of the domain name? If it is only because of the domain: Do you have any plans on continuing this service?
setcap solves the problem in the wrong way in this scenario imho: With setcap, any user could run node with a node script using ports < 1024.
What would be more useful is the ability to allow a _user_ to open a privileged port. In my option mappu's answer is the right way to go, i.e. using authbind to allow a certain user to open a port or a range of ports.
Very nice! However, in its current implementation, the service does not seem to optimize the created gifs at all, i.e. all frames are opaque and do not try to reuse existing pixels in the last frame(s).
javascript sorting: having expected a sorting somewhat similar to python and being very... surprised that javascript essentially sorts everything but primitive types by comparing their String counterparts, I decided to implement a more sensible compare function, similar to e.g. python:
If I recall correctly, it is possible to modify a pull-request by deleting the "active" commit of the pull request on github and adding something else, i.e. if I do something like rebase -i and then a push -f (which I can, because, after all, it is my own repository I am pushing to.)
Apparently this was already done for python a few years ago:
I just discovered a very similar, albeit older project that essentially does the same (i.e. implementing the actor model on top of threads, greenlets or stacklets)