Skip to content

Instantly share code, notes, and snippets.

View sidsarasvati's full-sized avatar
Coding Simulation in Simulation

Sid Sarasvati sidsarasvati

Coding Simulation in Simulation
View GitHub Profile

📇 How to Move Gmail Contacts to iCloud (iOS)

Move your Gmail contacts into Apple iCloud so they sync across your iPhone, iPad, and Mac.


✅ Option 1: Sync Gmail Contacts (No Export Needed)

This method keeps contacts in Gmail, but makes them show up on iPhone.

@sidsarasvati
sidsarasvati / setup.sh
Created December 27, 2023 18:37 — forked from bradp/setup.sh
New Mac Setup Script
echo "Creating an SSH key for you..."
ssh-keygen -t rsa
echo "Please add this public key to Github \n"
echo "https://github.com/account/ssh \n"
read -p "Press [Enter] key after this..."
echo "Installing xcode-stuff"
xcode-select --install
@sidsarasvati
sidsarasvati / CountryCode.md
Last active October 19, 2021 15:45 — forked from kcak11/App.md
Country Codes

Country Codes

List of all Country Codes (ISO & Dialing) sorted in alphabetical order.

@sidsarasvati
sidsarasvati / Dockerfile
Created November 3, 2018 23:10
node container
# Dockerfile for node environment
FROM node:9-alpine AS build
# optionally install gyp tools for native builds
RUN apk add --update --no-cache \
python \
make \
g++