Live data from Hacker News

Ask HN: What did you work on in 2017?

news.ycombinator.com

51–60 of 583 posts

Re: Ask HN: What did you work on in 2017?

#51
This year we launched a new service [1] unlimited UI design for startups. What started as an experiment, completely shifted our business and became the core of what we do. Wrote about it on reddit [2]

[1] http://fairpixels.pro

[2] https://www.reddit.com/r/Entrepreneur/comments/6wz5d5/10kmrr....

Re: Ask HN: What did you work on in 2017?

#52
There were a few other things going on, but mostly I've taken xi editor forward. It's still almost at the point where you'd want to use it for your daily work, but not there just yet. In the last two months, I've had a strong focus on performance, and now it's paying off. A few PR's are still in flight, and there's a write-up than needs to be done, but it's now scrolling smoothly on my 165 Hz gaming monitor (2560x1440 resolution, integrated graphics at that). I'm excited about the progress and feel that it will become a really usable tool fairly soon.

Re: Ask HN: What did you work on in 2017?

#53

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.

Re: Ask HN: What did you work on in 2017?

#55
Published The Tao of tmux: https://leanpub.com/the-tao-of-tmux/read. Thanks to the HN readers who bought the book!

Created new design for all my open source projects: https://www.git-pull.com (see sidebar at left, e.g. https://libtmux.git-pull.com)

Rebooted CJK (Chinese, Japanese, Korean) language project, cihai: https://cihai.git-pull.com (see also: https://unihan-etl.git-pull.com). Needs funding.

New docutils based website started, https://devel.tech. Example: https://devel.tech/features/django-vs-flask/

I catalog open source contributions I make while working on the website at https://devel.tech/site/open-source

Updates to https://www.hskflashcards.com. Switching from Bootstrap 4 to Bulma

Re: Ask HN: What did you work on in 2017?

#56
post #23

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.

Re: Ask HN: What did you work on in 2017?

#57
Worked on Safepay, (Venmo for Pakistan). Got the iOS app built and integrated it with Cybersource for visa/MasterCard transactions, and all the banks in Pakistan for bank-to-bank transfers. Currently working on the Android app. Great way to learn how money moves in traditional finance

https://getsafepay.com

https://itunes.apple.com/us/app/safepay-pakistan/id123442758...

Re: Ask HN: What did you work on in 2017?

#59
Started an initiative which will allow to tick "{machine, deep} learning, computer vision" checkbox in company's product feature-list.

Technically that means designing an FPGA-based vision system which interfaces with existing control system.

Post reply on HN