Skip to content
View Vassago1911's full-sized avatar
🏠
Working from home
🏠
Working from home
  • Hamburg, Germany
Block or Report

Block or report Vassago1911

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Vassago1911/README.md
  • 👋 Hi, I’m @Vassago1911, aka Marc :)
  • 👀 I’m interested in Math, Python, Data, Games, Science, Blender, .. lots of things ;)
  • 🌱 I’m currently learning: Docker, Elm, DevOps, Security,..
  • 📫 How to reach me: preferred is always email marc@lange-data.org

Pinned

  1. Make a stack of pngs of the same siz... Make a stack of pngs of the same size (e.g. from a 3d render) into a gif
    1
    #e.g. add as command in your .bashrc, .zshrc, or just put in your favourite python mini-scripts :D
    2
    alias stack_pngs="python -c 'import imageio.v3 as iio; import os; import numpy as np; A = np.array([ iio.imread(fi) for fi in sorted(os.listdir()) if \".png\" in fi ]); iio.imwrite(\"stacked.gif\",A,frames_per_second=30)'"
  2. play a one-second 440 Hz tone play a one-second 440 Hz tone
    1
    import numpy as np; import sounddevice as sd; fs = 44100; t = np.linspace(0,1,fs,endpoint=False); data = np.sin(2*np.pi*440*t); sd.play(data,fs, blocking=True)
  3. prime_test.py prime_test.py
    1
    is_prime = lambda n: f'{n} is prime' if all([ (n%i)!=0 for i in range(2,n-1) ])  else f'{n} is not prime'
    2
    
                  
    3
    # use like: for i in range(1000):
    4
    #               print(is_prime(i))
  4. pyglet_mc pyglet_mc Public

    Forked from fogleman/Minecraft

    Simple Minecraft-inspired program using Python and Pyglet

    Python

  5. randomised_pca randomised_pca Public

    Forked from facebookarchive/fbpca

    Fast Randomized PCA/SVD

    Python

  6. PhdThesis PhdThesis Public

    my thesis tex-files

    TeX 1