[2] https://www.reddit.com/r/Entrepreneur/comments/6wz5d5/10kmrr....
Ask HN: What did you work on in 2017?
51–60 of 583 posts
Re: Ask HN: What did you work on in 2017?
#52Re: Ask HN: What did you work on in 2017?
#53https://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.
Re: Ask HN: What did you work on in 2017?
#54Re: Ask HN: What did you work on in 2017?
#55Created 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?
#56I 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
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?
#57https://itunes.apple.com/us/app/safepay-pakistan/id123442758...
Re: Ask HN: What did you work on in 2017?
#58A STOMP broker written in C using nginx core without the HTTP or SMTP modules. 2017 and wrote more C than JavaScript.
Re: Ask HN: What did you work on in 2017?
#59Technically that means designing an FPGA-based vision system which interfaces with existing control system.
Re: Ask HN: What did you work on in 2017?
#60Also boring enterprise work.