Skip to content

Instantly share code, notes, and snippets.

@ashwinvis
ashwinvis / backup_venv.sh
Last active May 15, 2023 16:02
Backup virtualenv before a Python 3.x upgrade and restore / recreate after the upgrade
#!/bin/bash
cd ~
pip freeze --user --exclude-editable > REQUIREMENTS.txt
cd $WORKON_HOME # or wherever you store your virtualenvs
for activate in ./*/bin/activate
do
source $activate
echo $VIRTUAL_ENV
@ashwinvis
ashwinvis / shell.nix
Created February 28, 2022 11:04
Execute rootless Docker to build conda-forge recipes locally via `nix-shell`
# Copyright 2022 Ashwin V. Mohanan
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
{ pkgs ? import <nixpkgs> {} }:
@ashwinvis
ashwinvis / already_included_in_glossario.xsh
Last active September 30, 2021 13:39
Check if a term is already included in glossario
#!/usr/bin/env xonsh
# Requires: xonsh, awk
# git clone https://github.com/carpentries/glosario
# cd glossario
# xonsh already_included_in_glossario.xsh
slugs = [
name.strip()
@ashwinvis
ashwinvis / THANKS.md
Last active July 7, 2020 05:22
GitHub Retro
@ashwinvis
ashwinvis / conda2pip.sh
Created April 2, 2020 12:11
Conda packages to pip packages convertor
#!/bin/bash
conda env export > environment.yml
# exclude pure python packages
grep -v .*=py..$ environment.yml > conda_environment.yml
# extract pure python packages under - pip:
grep .*=py..$ environment.yml | awk -F= '{print " "$1"=="$2}' >> conda_environment.yml
@ashwinvis
ashwinvis / LU_decomposition.ipynb
Created March 9, 2020 12:29 — forked from jfpuget/LU_decomposition.ipynb
A Speed Comparison Of C, Julia, Python, Numba, and Cython on LU Factorization
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ashwinvis
ashwinvis / en_SE
Created January 8, 2020 06:03 — forked from bmaupin/en_SE
en_SE locale
escape_char /
comment_char %
% This file was generated by taking the LC_TIME section from en_US and
% replacing date/time representation with that of sv_SE from the glibc
% locale sources
% (http://sourceware.org/git/?p=glibc.git;a=tree;f=localedata/locales;hb=HEAD)
% (https://www.gnu.org/software/libc/manual/html_node/Formatting-Calendar-Time.html)
% This file is part of the GNU C Library and contains locale data.
@ashwinvis
ashwinvis / install_stow.sh
Created June 29, 2017 16:32
CPAN and GNU stow installation
#!/bin/bash
# Set up CPAN
# Append the following lines to .bashrc / .profile
# PERL_DIR=$HOME/.perl
# export PERL_LOCAL_LIB_ROOT=$PERL_DIR:${PERL_LOCAL_LIB_ROOT}
# export PATH=$PERL_DIR/bin:$PATH
# export PERL5LIB=$PERL_DIR/lib/perl5
# PERL_MB_OPT="--install_base \"${PERL_DIR}\""; export PERL_MB_OPT;
# PERL_MM_OPT="INSTALL_BASE=${PERL_DIR}"; export PERL_MM_OPT;
@ashwinvis
ashwinvis / fizzbuzz.py
Created July 29, 2019 20:20
A Fizzbuzz implementation: modular and extensible
lookup = {3: "Fizz", 5: "Buzz"}
def is_multiple(n, m):
return n % m == 0
def fizzbuzz(n):
output = ""
for m, string in lookup.items():
@ashwinvis
ashwinvis / following.ipynb
Last active July 13, 2019 18:44
View statistics and organize your Mastodon following into lists
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.