Skip to content

Instantly share code, notes, and snippets.

View silpol's full-sized avatar
🏠
Email is the best comm tool.

Andriy Tymchenko silpol

🏠
Email is the best comm tool.
View GitHub Profile
==========================
How Software Companies Die
==========================
- Orson Scott Card
The environment that nurtures creative programmers kills management and
marketing types - and vice versa.
Programming is the Great Game. It consumes you, body and soul. When
you're caught up in it, nothing else matters. When you emerge into
@silpol
silpol / oemc_hackathon_2023.ipynb
Created September 13, 2023 11:35
Andriy_oemc_hackathon_2023.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@silpol
silpol / Andriy_oemc_hackathon_2023_AutoML.ipynb
Last active September 15, 2023 20:04
Andriy_oemc_hackathon_2023_AutoML.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@silpol
silpol / nordpool_current_date_URL.js
Created February 6, 2024 20:17
Bookmarklet for new NordPool site to show current date graph of price in Finland
javascript:function url() {
var date = new Date();
var y = date.getFullYear();
var m = date.getMonth() +1;
if(m < 10){m = '0' + m;}
var d = date.getDate();
if(d < 10){d = '0' + d;}
var date = y + "-" + m + "-" + d;
return 'https://data.nordpoolgroup.com/auction/day-ahead/prices?deliveryDate='+date+'&deliveryAreas=FI&currency=EUR';