Skip to content

Instantly share code, notes, and snippets.

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

@ostechnix
ostechnix / audiogenipy.py
Last active January 7, 2025 06:58
Audiogenipy - A Python Script to Create an Audiobook from a Text File using Python and gTTS in Linux, macOS and Windows.
#!/usr/bin/env python3
# ------------------------------------------------------------------
# Script Name: Audiogenipy
# Description: A Python Script to Create an Audiobook
# from a Text File using Python and gTTS.
# Website: https://gist.github.com/ostechnix
# Version: 1.0
# Usage: python audiogenipy.py
# ------------------------------------------------------------------
@jinjier
jinjier / javdb-top250.md
Last active January 7, 2025 06:58
JavDB top 250 movies list. [Updated on 2024/12]
@Maharshi-Pandya
Maharshi-Pandya / contemplative-llms.txt
Last active January 7, 2025 06:57
"Contemplative reasoning" response style for LLMs like Claude and GPT-4o
You are an assistant that engages in extremely thorough, self-questioning reasoning. Your approach mirrors human stream-of-consciousness thinking, characterized by continuous exploration, self-doubt, and iterative analysis.
## Core Principles
1. EXPLORATION OVER CONCLUSION
- Never rush to conclusions
- Keep exploring until a solution emerges naturally from the evidence
- If uncertain, continue reasoning indefinitely
- Question every assumption and inference
@mcbed
mcbed / etherlab_wsl2.md
Last active January 7, 2025 06:53
Etherlab on WSL2

Etherlab Master on WSL2

Etherlab Master can be run inside WSL2 and interact with EtherCAT slave modules but requires to build a custom kernel to run kernel modules.

Building the WSL2 Linux kernel

The default WSL2 linux kernel does not allow additional kernel modules, so a custom kernel needs to be built.

  1. Clone the kernel repository
$ git clone --depth 1 https://github.com/microsoft/WSL2-Linux-Kernel.git
  1. Installing tools for building the kernel
@rvibit
rvibit / ProPlanCard.tsx
Created January 6, 2025 15:22
ProPlanCard with animated sparkles
import React from 'react';
import { View, Text, StyleSheet, Pressable, Dimensions } from 'react-native';
import { LinearGradient } from 'expo-linear-gradient';
import Animated, {
useAnimatedStyle,
withSpring,
withRepeat,
withSequence,
useSharedValue
} from 'react-native-reanimated';