Skip to content

Instantly share code, notes, and snippets.

@lorenzofay
lorenzofay / numpy-ultraquick-tutorial.ipynb
Created May 11, 2021 19:55
NumPy UltraQuick Tutorial
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@WetHat
WetHat / PY-AltVectorAlgebra.ipynb
Last active July 20, 2023 16:50
A Symbolic Vector Algebra Extension for SymPy
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@5ay3h
5ay3h / awesome-python-sorted-by-stars-2019-05-13.md
Created May 13, 2019 16:43
awesome-python-sorted-by-stars-2019-05-13.md
@erogol
erogol / tts_example.ipynb
Last active July 5, 2024 04:27
TTS_example.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@daybreaker
daybreaker / reactions.rb
Last active May 11, 2022 12:41
Ruby script to check slack reaction counts
require 'slack-ruby-client' # first, make sure you do: gem install slack-ruby-client
require 'date'
# Add your Slack API token here
token = [YOUR TOKEN HERE]
Slack.configure do |config|
config.token = token
end
@codedependant
codedependant / Maya_Python_Select_Verticies_by_Material.py
Created November 12, 2012 09:21
Maya Python Select Verticies by Material
import pymel.core as pm
import maya.cmds as cmds
cmds.hyperShade(o="lambert1")
cmds.ConvertSelectionToVertices()
#shrink selected region to avoid border verticies
cmds.ShrinkPolygonSelectionRegion()