582 comments

[ 3.1 ms ] story [ 179 ms ] thread
This year we launched a new service with unlimited UI design for startups. (http://fairpixels.pro)
Been following you guys for a while and will connect in the new year! Love the work you’ve been producing for a friend.
My health https://www.instagram.com/p/BdX6yyInrBD/?taken-by=kthakore2

Took a long break from hacking and staying indoors playing with yet another framework. I am much happier :) my depression is better and I have more balance :) Less likely to burn out.

Awesome to hear. Mental health is something that is overlooked by a lot of people in this industry until it's too late. Ran into that a few years back and like yourself, have been working to make it better.
I worked on two cool open source music technology projects called ListenBrainz [1] (basically an open source version of Last.FM backed by the MetaBrainz Foundation, the people behind MusicBrainz) and AcousticBrainz [2] (a project trying to crowdsource acoustic information about music and release it as public domain). We released a beta for ListenBrainz over the summer and I've been working on data dumps for both ListenBrainz and AcousticBrainz for the past few weeks.

[1] https://listenbrainz.org/

[2] https://acousticbrainz.org

Both projects look fantastic!

How does listenbrainz differ-from / compare-to Libre.fm?

We wanted to take our own shot at building a reliable open service with new tech. We're also much more focused on providing open and easy access to the data we have as conveniently as possible, so that people can build cool stuff with it. Right now, we provide a Google BigQuery dataset [1] that you can run any queries on. It has around 70M listens from 1300 users.

[1] https://blog.musicbrainz.org/2017/08/05/listenbrainz-data-is...

8 months of life without alcohol, pot, meat.

Launching an agency/consultancy with a sister company that resells hosting and optimization.

Very impressive. Controlling yourself is way harder and far more rewarding than controlling others.
Thanks. I've learned to accept that I can't do anything about most of what's happening around the world but I can do something about my daily decisions.
How did it go with the alcohol? I am going to try from Jan 1. Plan is to do at least 2 months. Do you think its better to cut it off in stages or just abruptly?
If you’re an alcoholic and drink daily, it can be very dangerous to stop cold turkey. If this is more of a lifestyle change, where you drink a few times a week but want to cut it out, I’d say (with zero scientific justification whatsoever) it’s sort of up to the person. Dietary and habitual changes for me have been easiest when made dramatically, but I know for many others that reduces quality outcomes. This is probably one of those scenarios where you need to know which side of the spectrum works best for you from past experiences.
> If you’re an alcoholic and drink daily, it can be very dangerous to stop cold turkey.

Could you elaborate? I have plans to do exactly that Jan 1.

You'll get into withdrawal which results in mental (anxiety, paranoia, etc...) and physical effects (tremors, nausea, vomiting, sleeping disorder, etc...).

Depending how hooked you are it could be a real physical dependency which can be harmful.

That being said, its just the same as the effects of alcohol in general, they are just stacking up when you have withdrawal. If you have truly decided to stop/lower your drinking - and you actually have what you consider a problem - its wiser to tapper it off, but it does require actual will to do it...

Below is a link that describe the withdrawal you can go through (found after a quick search, looks fairly accurate): https://www.therecoveryvillage.com/alcohol-abuse/withdrawal-...

Hey there. Sorry for the delay in getting back to you. I hope you still see this.

Alcohol has very dangerous withdrawal for those who are daily drinkers. I’ve witnessed this first hand with a father who was a daily drinker that was forced into stopping due to medical issues.

There are multiple risks during severe alcohol withdrawal, including heart failure, seizures, and more. I cannot stress enough that if you are a daily drinker over a long period of time, you need to seek medical assistants from at least your primary care. Do not stop unless you are being supervised. Not only are you reducing your risk for success, but also you’re putting your life at risk. Quit, but please quit responsibly.

My email is in my profile name. Happy to talk more in detail. Here for you my friend.

How much do you drink a day? a week?

What made you want to stop?

I can help you out based on your responses.

It's doable, the first few days can be rough for the body but after that it's mostly in our heads. I've learned that people who are enthusiastic about drinking and getting others drunk usually have some other issues going on under the surface. Some people can just drink a few times a year or month, not me. I'm an all or nothing person, life got easier once I accepted that.

As for how I did it, it boils down to just making two columns on a sheet of paper and listing how alcohol has helped and how alcohol has hurt you. It became an easy decision after I did that.

Hi, I've replied to wjossey's comment but no response so far, did you just woke up one morning and decided enough is enough (without any inner monologue and stuff like that?). What do you think about trying to quit right there just like that?
Last year I started meditation and as a part of it, I quit alcohol and pot. I wish I can quit my bad habits.
I tried to create a new programming language, Toy Santa, but I became too demotivated to finish it. But I feel the codebase of toysanta is the best I've been doing to date. It's in C++, using Direct2D. One day, I will release it on github. But until then, I will try to create a presentable version.

(yes, I am a tad attention-grabbing here;-)

...I an autodidact, I work for myself.

You’ve got to self promote. So what’s it capable of doing? Now/planned/hoped for
It can't do a lot. The language 'specification' is just a buch of lined paper sheets. What I want my language to do, is a layer between the core of a C++ program, and the user-customizable side.

I'm using it to call a zoom function in my skeleton image program.

  void toysanta() {  
    toy	*nbzoom = nullptr;  
    nbzoom = isVerb(L"setzoomlevel");  
    if(nbzoom) {  
        if(nbzoom->hasClaus && nbzoom->sled == toy::integer) {  
            bool	k = false;  
	    POINT	pt = {0,0};  
            toy *xt = getToy(L"x");  
            toy *yt = getToy(L"y");  
            if(xt && yt && xt->canNumber() && yt->canNumber()) {  
                pt.x = xt->getInteger();  
                pt.y = yt->getInteger();  
                k = true;  
            }  
            setzoomlevel(nbzoom->claus.integer, k, pt);  
        }  
    }  
  }
The toysanta() member function is from the VerbCommand class. From the zoom widget, there's

  void ZoomWidget::sendzoom_to_target(bool k, POINT pt) {  
    if(target) {  
        std::wstring	cc = L"setzoomlevel ";  
        int		zoom = realZ;//(zPos-32)/3;  
        cc += std::to_wstring(zoom);  
        if(k) {  
            cc += L" x " + std::to_wstring(pt.x);  
            cc += L" y " + std::to_wstring(pt.y);  
        }  
        target->receive(&cc);  
    }  
  }
The receive() member function calls the toysanta() function from the target.

What I plan, is for it to just be perfect, to be honest. I hope it may help others create better software one day.

(comment deleted)
कुछ बताने लायक नहीं :( ---- nothing worth telling :(
Application security for NOAA and obtaining my OSCP certification.
Much more VR than I expected to, and it was more interesting than I expected as well.
What sort of VR stuff we're you getting into, if you don't mind me asking?

It's a pretty cool space, but I don't see to many people playing in it (maybe because of the barrier to entry).

I have worked on some for the Rift, the Gear and the Daydream. I think the reason why not a lot of people are in the space is that customers aren't there yet. It's one of those things that doesn't live up to the hype, but it is getting better fast.
Expanding Fellowship.AI to New York and London
I continued to work on intercooler.js:

https://github.com/LeadDyno/intercooler-js

http://intercoolerjs.org

I'm trying to get people to reconsider the more traditional web development style of server-side rendering of HTML + HATEOAS.

Yes! There’s nothing wrong with traditional web dev architecture!
I remember seeing this last year too, I like it. This is a good reminder for me to try using it in side projects.

I fear though that you're swimming against the currents (obviously, speaking about the current trends of everyone using React or one of the other frameworks for frontend development). I hope you'll gain traction in creating a trend of a different path, making traditional web development style a viable alternative for modern web apps.

I don't mind going against the current, I'm a contrarian by nature. :)

I hope you find it useful, and good luck in 2018.

(comment deleted)
Primarily on my kinda-side project Exoframe [1]. We needed a self-hosted tool that allows simple one-command deployments and I've ended up building it myself using Docker. Seems to work pretty well so far :D

[1] https://github.com/exoframejs/exoframe

I gained 30 lbs (on purpose)
(comment deleted)
Congrats! That's definitely harder than it may sound to some.
System for automating perception using Deep Learning - computer vision, natural language processing, text to speech, advanced speech recognition. For robotics and artistic purposes. The pace in this area is simply stunning and it's unbelievable what a talented kid can do with it these days. Maybe I'll release parts of it as open source someday.
https://focuster.com

Automatic scheduling in your calendar for your to-do list.

This past year we added a ton of new integrations with project management tools as well as support for calendars beyond Google (eg. Apple iCloud, Microsoft Exchange, etc).

It has been a ton of work but very satisfying! Would love to connect with other bootstrapped SaaS founders.

Not bootstrapped, but am a year in having raised seed funding in May. Would still love to connect. Email is in my profile.
I keep a growing library of little one-page javascript apps for illustrating concepts and educating my two boys. Reviewing my commit history for the year, I was pleased to find I've added nearly 20 apps to it in 2017. I wouldn't have been able to build so many 20 years ago, but there's so much code available out there to copy-paste, programming often feels like playing with building blocks.

http://ideonexus.github.io/Explorable-Explanations/

As a programmer with a young child who loves screens, this is a lovely idea.
great work, i was looking for something like this. Thanks for sharing
https://ossia.io : a visual programming language for interactive shows & music, and its associated network protocols & integrations in creative coding environments (puredata, max/msp, unity3d, openframeworks, etc...)