Live data from Hacker News

Viewing profile — rusebor

rusebor

HN member
Joined
Wed, Aug 17, 2016, 8:12 AM UTC
HN karma
5
Public activity
9 items

About rusebor

No profile information was provided.

Recent public activity

  1. comment
    Comment #36101682

    quote "don't give advice unless asked" it is not you! i think most of the people feel the same way. at least i do i suspect that in your case a review is mandatory as well as fixin…

  2. comment
    Comment #35664879

    > 2) languages such as PL/SQL are much poorer than any modern programming language true but it is for a reason. For example you can replace/upgrade any piece of code on the running…

  3. comment
    Comment #34330450

    many say that git has an intuitive/concise data model. But it seems that even git team itself has not quite got it. Looking at one of the latest changes [1] in which a _new_ merge …

  4. comment
    Comment #34301053

    have been wondering for a while why HFTs exist when exchanges have holidays and trading hours [1]? doesn't the sub-milisecond speed contradict to the several hours pause in trading…

  5. comment
  6. comment
    Comment #34279628

    before the change CREATE TABLE the_table (was_char CHAR); CREATE VIEW table_read_api AS SELECT was_char FROM the_table; a client consumes data via: select was_char from table_read_…

  7. comment
    Comment #34264913

    a view would allow you to change a field's type. something like this CREATE VIEW table_read_api AS SELECT TO_CHAR(now_int) as was_char FROM the_table; not sure that the view is an …

  8. comment
    Comment #34243917

    what if we put the table behind a view? would it be count as a communication via API?

  9. comment
    Comment #27734882

    > which is going on the opposite direction as you would expect. It looks like a bug which should be fixed. Git should create a merge commit when it sees that "the direction" change…