HackerTrans
TopNewTrendsCommentsPastAskShowJobs

hotdamnson

no profile record

comments

hotdamnson
·vor 3 Jahren·discuss
I did something like that going from Sao Paulo (Brazil) to Leticia (Colombia) following the coast toward north and later taking amazon river cargo ships. It took me about 5 months, transit days about 2 months.
hotdamnson
·vor 4 Jahren·discuss
I mitigate the imbalance by minimalism.

For example I spend only about 20% of what I make (after taxes). It's not that difficult for IT guys and remote world we live in right now.
hotdamnson
·vor 4 Jahren·discuss
It was a question back in 2012. Today nobody has any doubts anymore.
hotdamnson
·vor 4 Jahren·discuss
It's worth noting that the actual Saudis make up only 62% of the country population(according to wikipedia). The rest are mostly semi-slaves / slaves from Indian subcontinent / south east Asia. It's not as extreme as cases of Oman or UAE but still noticeable.
hotdamnson
·vor 4 Jahren·discuss
I just posted the essence of the query, add

Where r.id = :repo

and you will have the same thing.
hotdamnson
·vor 4 Jahren·discuss
Why do these new big thing databases make SQL look like some witchcraft?

Here is some proper SQL query:

SELECT DISTINCT

       r.id,  

       r.owner_id,  

       r.name,  

       COUNT(r.id) OVER (PARTITION BY r.id) AS COUNT  

  FROM repository r  

  JOIN star s ON s.repository_id = r.id  
ORDER BY 4 DESC;
hotdamnson
·vor 4 Jahren·discuss
I don't think that 'normal' tech / consulting / software house companies have those. It's more of a big corp thing.
hotdamnson
·vor 4 Jahren·discuss
What history can actually teach us is that things that never happened before happen all the time. This is so valid for anything related to global finance.
hotdamnson
·vor 4 Jahren·discuss
North east of Spain and south west of France properties prices will skyrocket now.
hotdamnson
·vor 4 Jahren·discuss
hotdamnson
·vor 4 Jahren·discuss
Google search when?
hotdamnson
·vor 4 Jahren·discuss
December* and yes
hotdamnson
·vor 4 Jahren·discuss
If the Korean child is born on the 31st of December at 23:59 it will be 2 years old and 2 minutes old at the same time.
hotdamnson
·vor 4 Jahren·discuss
Time flies like an arrow, fruit flies like banana
hotdamnson
·vor 4 Jahren·discuss
Would it be actually legal for the Figma owners to sell the company to Adobe, create the new company, say Figma2.0 and create similar(better) product from scratch, also advertise it as creators of original Figma come up with Figma2.0?
hotdamnson
·vor 4 Jahren·discuss
Here in Thailand, there were cases where the shop sent a package containing cash amount paid by the customer because they didn't have the item they sold. This was an attempt to avoid some negative repercussions from the platform they were selling on (Shoppe, Lazada). Totally mental.
hotdamnson
·vor 4 Jahren·discuss
This is a very poorly written SQL.. Try some modern syntax: select DISTINCT sale_person_id, sale_person_name, max(no_products_sold) over (partition by sale_person_id) AS max_products_sold, commission_percentage, sales_department from no_products_sold;