HackerTrans
TopNewTrendsCommentsPastAskShowJobs

hotdamnson

no profile record

comments

hotdamnson
·3 lata temu·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
·4 lata temu·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
·4 lata temu·discuss
It was a question back in 2012. Today nobody has any doubts anymore.
hotdamnson
·4 lata temu·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
·4 lata temu·discuss
I just posted the essence of the query, add

Where r.id = :repo

and you will have the same thing.
hotdamnson
·4 lata temu·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
·4 lata temu·discuss
I don't think that 'normal' tech / consulting / software house companies have those. It's more of a big corp thing.
hotdamnson
·4 lata temu·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
·4 lata temu·discuss
North east of Spain and south west of France properties prices will skyrocket now.
hotdamnson
·4 lata temu·discuss
hotdamnson
·4 lata temu·discuss
Google search when?
hotdamnson
·4 lata temu·discuss
December* and yes
hotdamnson
·4 lata temu·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
·4 lata temu·discuss
Time flies like an arrow, fruit flies like banana
hotdamnson
·4 lata temu·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
·4 lata temu·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
·4 lata temu·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;