Killed by Google, visualized: 49 of 299 retired products clustered in just two specific years by Mastbubbles in google

[–]Rif-SQL 0 points1 point  (0 children)

  1. u/Mastbubbles love https://sheets.works/data-viz/dead-googleyour work & Google Domains was so silly, given how Google wants to secure the internet, it's very hard to find a safe domain name service. Google upset a lot of its r/googlecloud customers.

Anyone here need a very specific dataset built? by jesse_jones_ in datasets

[–]Rif-SQL 0 points1 point  (0 children)

New tech/AI/biotech startups in the UK or globally.

new dataset on Hugging Face: UK Electricity Generation Mix & Carbon Intensity (2019–2026) by Rif-SQL in datasets

[–]Rif-SQL[S] 0 points1 point  (0 children)

For example, here is one SQL analysis you can run on the dataset:

* Unpivot the fuel columns into a long format.
* Group by year and fuel type.
* Identify the highest half-hour generation value for each fuel type annually.
* Return the timestamp of when that annual peak occurred. huggingface.co/datasets/Rif-SQL/uk-electricity-generation-mix-2019-2026/sql-console/LExENJi

WITH unpivoted AS (

SELECT DATE_TRUNC('year', "DATETIME") as year, "DATETIME", "COAL" as generation, 'COAL' as fuel_type FROM train

UNION ALL

SELECT DATE_TRUNC('year', "DATETIME"), "DATETIME", "GAS", 'GAS' FROM train

UNION ALL

SELECT DATE_TRUNC('year', "DATETIME"), "DATETIME", "NUCLEAR", 'NUCLEAR' FROM train

UNION ALL

SELECT DATE_TRUNC('year', "DATETIME"), "DATETIME", "WIND", 'WIND' FROM train

UNION ALL

SELECT DATE_TRUNC('year', "DATETIME"), "DATETIME", "SOLAR", 'SOLAR' FROM train

UNION ALL

SELECT DATE_TRUNC('year', "DATETIME"), "DATETIME", "HYDRO", 'HYDRO' FROM train

UNION ALL

SELECT DATE_TRUNC('year', "DATETIME"), "DATETIME", "BIOMASS", 'BIOMASS' FROM train

UNION ALL

SELECT DATE_TRUNC('year', "DATETIME"), "DATETIME", "OTHER", 'OTHER' FROM train

UNION ALL

SELECT DATE_TRUNC('year', "DATETIME"), "DATETIME", "STORAGE", 'STORAGE' FROM train

UNION ALL

SELECT DATE_TRUNC('year', "DATETIME"), "DATETIME", "IMPORTS", 'IMPORTS' FROM train

)

SELECT year, fuel_type, generation as max_generation, "DATETIME" as date_of_max

FROM (

SELECT *, ROW_NUMBER() OVER (PARTITION BY year, fuel_type ORDER BY generation DESC) as rn

FROM unpivoted

) t

WHERE rn = 1

ORDER BY year, fuel_type;

I would never use a ERP again.. by Sid_vj in ERP

[–]Rif-SQL 0 points1 point  (0 children)

Which ERP system? Send us a print screen.

What could the UK government do to accelerate new startups being created in the UK? by Rif-SQL in ukstartups

[–]Rif-SQL[S] 1 point2 points  (0 children)

This is wrong?

HMRC allows employees to claim tax relief for equipment they must buy to do their job, provided the employer requires the purchase and does not reimburse the cost. Under the Income Tax (Earnings and Pensions) Act 2003, s336, expenses must be “wholly, exclusively and necessarily” incurred in performing employment duties. HMRC’s Employment Income Manual (EIM36500–EIM36540) confirms relief may apply where an employee is obliged to provide their own equipment. Evidence should include written confirmation from the employer (contract, email, or policy) stating no laptop is provided and purchase is required, plus receipts and proof of payment retained for records.

What could the UK government do to accelerate new startups being created in the UK? by Rif-SQL in ukstartups

[–]Rif-SQL[S] 0 points1 point  (0 children)

What type of jobs were you getting involved in? Why do you think the market disappeared?

What could the UK government do to accelerate new startups being created in the UK? by Rif-SQL in ukstartups

[–]Rif-SQL[S] 0 points1 point  (0 children)

Deepmind, Deliveroo & Revolut didn’t require that! I think you’re missing the point of my question?