Skip to content

Instantly share code, notes, and snippets.

View arupgsh's full-sized avatar
🔬

Arup Ghosh arupgsh

🔬
View GitHub Profile
@connor11528
connor11528 / silicon-valley-companies-04-2022.tsv
Last active March 11, 2025 09:20
This is a list of all companies that have raised money from investors in the past year and have their corporate headquarters in Silicon Valley
name website round_name amount_raised round_date hq_location year_founded description
Lacework lacework.com Series D $1,300,000,000.00 2021-11-17 Mountain View, CA 2015 Lacework delivers threat/anomaly detection and compliance across multicloud environments, workloads, containers and K8s.
BridgeBio bridgebio.com Post Ipo Debt $750,000,000.00 2021-11-17 Palo Alto, CA 2014 Hope Through Rigorous Science
SambaNova sambanovasystems.com Series D $676,000,000.00 2021-04-12 Palo Alto, CA 2017 SambaNova Systems, Inc. provides software solutions. The Company offers building machine learning and big data analytics platforms which enables optimum performance for any ML training, inference, and analytics models. SambaNova Systems serves customers in the United States.
Nuro nuro.ai Series D $600,000,000.00 2021-11-01 Mountain View, CA 2016 Join us in accelerating the benefits of robotics for everyday life.
Nuro nuro.ai Series D $600,000,000.00 2021-11-01 Mountain View, CA 2016 Join us in accelerating the benefits of roboti
@rahularity
rahularity / work-with-multiple-github-accounts.md
Last active April 21, 2025 22:13
How To Work With Multiple Github Accounts on your PC

How To Work With Multiple Github Accounts on a single Machine

Let suppose I have two github accounts, https://github.com/rahul-office and https://github.com/rahul-personal. Now i want to setup my mac to easily talk to both the github accounts.

NOTE: This logic can be extended to more than two accounts also. :)

The setup can be done in 5 easy steps:

Steps:

  • Step 1 : Create SSH keys for all accounts
  • Step 2 : Add SSH keys to SSH Agent
@wolfv
wolfv / github_actions.yaml
Last active December 20, 2024 02:31
micromamba usage
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
@sirselim
sirselim / basecalling_notes.md
Last active August 16, 2024 07:37
a collection of my notes while working on nanopore basecalling on the Jetson Xavier

Jetson Xavier basecalling notes

initial basecalling runs

'fast' flip-flop calling on the Jetson Xavier

guppy_basecaller --disable_pings --compress_fastq -c dna_r9.4.1_450bps_fast.cfg -i flongle_fast5_pass/ -s flongle_test2 -x 'auto' --recursive 
@elowy01
elowy01 / BCFtools cheat sheet
Last active March 19, 2025 15:34
BCFtools cheat sheet
*bcftools filter
*Filter variants per region (in this example, print out only variants mapped to chr1 and chr2)
qbcftools filter -r1,2 ALL.chip.omni_broad_sanger_combined.20140818.snps.genotypes.hg38.vcf.gz
*printing out info for only 2 samples:
bcftools view -s NA20818,NA20819 filename.vcf.gz
*printing stats only for variants passing the filter:
bcftools view -f PASS filename.vcf.gz
@jaskiratr
jaskiratr / chmod-400.cmd
Created June 29, 2018 01:03
Set permission of file equivalent to chmod 400 on Windows.
# Source: https://stackoverflow.com/a/43317244
$path = ".\aws-ec2-key.pem"
# Reset to remove explict permissions
icacls.exe $path /reset
# Give current user explicit read-permission
icacls.exe $path /GRANT:R "$($env:USERNAME):(R)"
# Disable inheritance and remove inherited permissions
icacls.exe $path /inheritance:r
@perrygeo
perrygeo / Dockerfile
Last active June 27, 2024 13:18
Minimal debian image with Python 3.6 and geo python tools
FROM python:3.6-slim-stretch
ADD requirements.txt /tmp/requirements.txt
RUN apt-get update && \
apt-get install -y \
build-essential \
make \
gcc \
locales \
@ipurusho
ipurusho / STAR.md
Last active September 27, 2023 16:58
A brief tutorial on how to run the STAR aligner on medinfo.mssm.edu

###Download STAR### Obtain STAR source from https://github.com/alexdobin/STAR

Add the following to your .bashrc file and source it: export PATH=/path/to/STAR/bin/:$PATH

###Generate Reference Genome

#!/bin/bash
# function Extract for common file formats
function extract {
if [ -z "$1" ]; then
# display usage if no parameters given
echo "Usage: extract <path/file_name>.<zip|rar|bz2|gz|tar|tbz2|tgz|Z|7z|xz|ex|tar.bz2|tar.gz|tar.xz>"
else
if [ -f "$1" ] ; then
NAME=${1%.*}