Skip to content

Instantly share code, notes, and snippets.

View fetis's full-sized avatar
🦑
:wat:

Sergey Fetiskin fetis

🦑
:wat:
View GitHub Profile
@fetis
fetis / kmb.md
Last active December 4, 2020 12:38
КМБ мамкиного инвестора

КМБ мамкиного инвестора

Курс от Тиькофф Журнала про инвестиции. Про основы основ.
https://journal.tinkoff.ru/pro/invest/

Курс "Финансовые рынки и институты" от ВШЭ (2014). Примеры немного старые, но теоретическая информация подробная.
https://www.coursera.org/learn/finansovye-rynki/home/info

Курсы по экономике на Khan Academy (непроверено)
https://www.khanacademy.org/economics-finance-domain

@fetis
fetis / master.md
Last active October 21, 2020 12:12
How to restore `master` branch

How to restore master branch

Once you've created your new repo you might be interested to bring master branch back to be aligned with your other projects

Here'are the steps how to do it:

  1. Brings master back
git checkout -b master && git push origin -u master
@fetis
fetis / styleguide.md
Last active August 7, 2019 15:56
Missed code conventions for Angular

Story

Code conventions were dropped in Angular 8 with this PR angular/angular#30334

If you still need them to reference (because you based your style guide on it) here they are

Coding conventions

Have a consistent set of coding, naming, and whitespace conventions.

@fetis
fetis / transform.xsl
Last active April 1, 2019 21:17
Railway Empire tools. Export cities from Tile map to CSV file. You can import this file in Tome editor to update/create cities.
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
exclude-result-prefixes="xs"
version="2.0">
<xsl:output method="text"></xsl:output>
<xsl:template match="/">ID;DisplayName;NameId;TownFounded;TownActive;TownFactory0;TownFactory1;TownFactory2;TownPopulation<xsl:text>
</xsl:text>
<xsl:apply-templates select="//objectgroup[contains(@name, 'city_')]"></xsl:apply-templates>