Hacker News .hn (a.k.a HN2)new | past | comments | ask | show | jobs | submit | samrat's commentslogin

I've just added a Windows version too.


I recently discovered https://github.com/weirdNox/emacs-gdb/ . The installation is a bit unconventional compared to the usual Emacs package installation process, but works pretty well.

This recreates the Visual Studio style workflow described in https://twitter.com/pervognsen/status/1098453808651202560 and https://youtu.be/0woxSWjWsb8?t=254


I am in India and I cannot access the site. The DNS resolves to `23.227.131.12` but the server doesn't seem to respond to pings either.

I can access the site through a VPN.

Anyone else facing the same issue? Anyone know what's up with that?


Same, from Canada. My guess is that it will come back up later.


The book can also be found on Amazon but this link seems to be the way to buy the DRM-free version.


Do Cambridge courses not have labs/projects? I looked at the course materials on a few of the courses and couldn't find any. Or are they given out to students separately?


There are hardware and software labs, which are administered on paper by PhD students. These include(d): ML (the functional programming language), FPGA/soft core development, Java tasks, breadboarding some logic, prolog and probably some different ones now (looks like some machine learning tasks?). Some of them are referenced and described on the links above. There's also a group project in year 2, a dissertation individual project in year 3, and a small holiday project between 1 and 2. Overall, a few students get through it without being able to properly program, but most basically self teach.


There is a system of supervisions, that is a bit like doing homework and going over it in a private (1/2/3 students to one prof) lesson once every two weeks. Sometimes the questions would be standard for a course, sometimes the professors chose their own. They are not necessarily directly tied to the course as lectured.


I haven't been able to get my hands on the book, but Edward Sciore's "Database Design and Implementation" is supposed to be such a book.


There is no logical reason this book should be as expensive as it is: https://www.abebooks.com/servlet/SearchResults?cm_sp=SearchF...

Worldcat shows some libraries have it: https://www.worldcat.org/title/database-design-and-implement...



A course (lightly)based on HtDP is also starting in Coursera in a few days- https://www.coursera.org/course/programdesign. It uses Racket and the first two weeks of videos are already up so you can preview them.


The first two weeks' lectures are already up.


Probably to reduce some friction from the process. They also don't charge a transaction fee(as noted in another comment), so i could see myself using this on my site.

Of course a much useful service would be something like flattr. IIRC, There was some talk about them starting to accept bitcoins but i haven't heard about that lately.


This looks really great. Silly question: is there any way to access localhost from other devices on my WLAN?


No, not localhost. But you can make the built-in debugging server bind to all IP addresses, including the one used on your WLAN.

In backend/local_server.py, change the line that says:

    app.run()
to instead read:

    app.run(host='0.0.0.0')
You should then be able to access the server at the WLAN IP address of your machine, provided port 5000 is opened by your firewall.

Even better, however, would be to use uwsgi in standalone mode. I've updated the README with instructions on this.


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: