Skip to content

Instantly share code, notes, and snippets.

View le-dawg's full-sized avatar
👁️
I may be slow to respond.

dawg le-dawg

👁️
I may be slow to respond.
View GitHub Profile

I've recently joined Amazon Dublin from India and got opportunities to interview with Meta London, Zalando Berlin & some other companies. I extensively researched about companies hiring internationally which support visa & relocation for Tech roles. So sharing list of companies:

Do consider to STAR, if it helped you.

London

@le-dawg
le-dawg / NumMath_TUHH_2015_pt1.md
Created January 8, 2022 19:49
Numerical Mathematics Study Guide

Numerical Mathematics Study Guide

Part 1 of the TUHH Engineering Math Notes by by 0xdawg

Usage

The subdivisions or "Chapters" are clusters of knowledge around Numerical Mathematics, more or less strictly ordered by increasing specificity or involvedness. Use this to guide your learning journey around anything that involves calculations on computers with limited precision (the vast majority of cases). This is relevant for instance for complex computations involving a very large number of multiplication or division operations, especially when the sought values are in the [0..1] range.

Practical relevance for this lies in the training of neural networks and their deployment on less capable infrastructure, for instance. Other applications revolve around eigenvalue, singular value computations etc. as part of numerical simulations aka. interpolation, approximation, FEMs and other methods.

@taoyuan
taoyuan / npm-using-https-for-git.sh
Last active April 27, 2024 01:22
Force git to use https:// instead of git://
# npm using https for git
git config --global url."https://github.com/".insteadOf git@github.com:
git config --global url."https://".insteadOf git://
# npm using git for https
git config --global url."git@github.com:".insteadOf https://github.com/
git config --global url."git://".insteadOf https://
@bsweger
bsweger / useful_pandas_snippets.md
Last active April 19, 2024 18:04
Useful Pandas Snippets

Useful Pandas Snippets

A personal diary of DataFrame munging over the years.

Data Types and Conversion

Convert Series datatype to numeric (will error if column has non-numeric values)
(h/t @makmanalp)