Hacker News new | past | comments | ask | show | jobs | submit | sid-'s comments login

bin is probably a bad name since its name of a directory in linux. how about bintel ?


Also in UK and AU English (and likely others) it’s the word for trashcan.

Pray your office is free of folks who think bin puns are funny & original.


live text is an iOS feature you could experiment with


Ipvs offers round Robin load balancing at the l4 layer


It does, but seems to suffer some of the ills in the article[1]. I haven’t tried it, though and should to confirm.

[1] http://www.austintek.com/LVS/LVS-HOWTO/HOWTO/LVS-HOWTO.UDP.h...


It didnt get "Tiger Woods" correct.


Sharing my poem on the birth of my daughter

I cry when I burp I cry when I pee Sometimes I cry Reason without any

I cry when I want milk I cry when I have gas And boy can I cry High pitch and low bass

I cry when u pick me up I cry when u put me down In the middle of the night Loud enough to wake the town

I cry when I poop I cry when I fart But most of all I cry From my Papa when I part !

Happy new year hn !



I think we should have subscription products that respect privacy and data for all successful products; Maps, Youtube, Search, FB, etc.


Cool idea...I would be more interested in auto-documentation tool based on this.


That'd be truly remarkable as in actual magic.

Take this rather simple example:

  PointList interpolate(PointList sample_points, OrderedRealNumberList points_to_interpolate);
This function can be auto-documented from its name and the names and types of its arguments alone. No ML required - simple pattern matching and LUTs will do. But then again, do you really need a detailed documentation in such case?

Where a documentation would actually be helpful are cases like this:

  SUBROUTINE PCHFE (N, X, F, D, INCFD, SKIP, NE, XE, FE, IERR)
A format commonly found in the FORTRAN code of numeric libraries. If the author(s) didn't document this, an AI wouldn't stand a chance to know what it does.

PCHFE is Piecewise Cubic-Hermite Function Evaluation of course [1] and the parameters aren't exactly self-explanatory either...

[1] http://www.netlib.org/slatec/pchip/pchfe.f


Guessing !! N,X, and F are probably related to NE,XE, and FE "E" means "error"? Maybe. IERR is an error flag. Idiomatic fortran there.

Each of those variables will be defined later on, in the code. at least with a type (not required, but it is not 1960 anymore). In that declaration is where some comments would be.

          REAL*8 N ! Radius of the body in radians
Point being that fortran is not hopelessly opaque. A subroutine declaration is backed up with some more information.

(now if "implicit none" is not a requirement, then this all you get)

Love seeing some hard core numeric code. Precise and compact. No pointers, nothing sophisticated. Do loops, if statements, subroutine calls.


> In that declaration is where some comments would be.

Admittedly, I haven't read a lot of Fortran code, but I have yet to see anybody who includes such comments. It wouldn't be so bad except also:

a) the only code I see in Fortran is numerics code, therefore written by mathematicians or other people who seem to believe that using more than one letter to describe a term is an admission of weakness

b) people write function names as if it costs $1000 per extra character

c) there often doesn't seem to be any introductory resources to the concepts that are being implemented that might let me discover what cryptic one-letter variable names might actually refer to


> In that declaration is where some comments would be.

Here's the declaration of the parameters:

  INTEGER  N, INCFD, NE, IERR
  REAL  X(*), F(INCFD,*), D(INCFD,*), XE(*), FE(*)
  LOGICAL  SKIP
Sorry, but no comments to be found :)

> NE,XE, and FE "E" means "error"? Maybe.

Wrong guess - "E" means "Evaluation" as in "to be evaluated" in this case. It's also not clear which are inputs and outputs and primitive data types give no indication at all about constraints and use-case.

> IERR is an error flag. Idiomatic fortran there.

Now that's true, but idiomatic cases that are well documented and don't benefit from AI documentation. Simple pattern matching will do.

The point I was trying to make wasn't really about any specific programming language either. The point is rather that documentation requires translating implementation to intent and purpose.

If you have a system that's capable of translating a program into purpose, constraints, and usage example(s) expressed in plain natural language; you have created a system to end all programming languages, because the inverse transform would be possible as well...


i agree with you!

nice to see someone else using fortran 77. or at least reading it.


Wow ! Amazing concept and execution...loved it.



Thanks, but as mentioned in the post, without a good understanding it's really difficult to choose tools.

I'm looking for materials that put these tools into context & perspective so we can make a more informed judgement call.


Consider applying for YC's Spring batch! Applications are open till Feb 11.

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

Search: