This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'--------------------------------------------------------------------------------------- | |
' Module : cCallAPIByName | |
' DateTime : 31/08/2008 19:40 | |
' Author : Cobein | |
' Mail : [email protected] | |
' WebPage : http://www.advancevb.com.ar | |
' Purpose : Call APIs by name | |
' Usage : At your own risk | |
' Requirements: None | |
' Distribution: You can freely use this code in your own |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
biber presentation && \ | |
pdflatex -shell-escape presentation.tex && pdflatex -shell-escape presentation.tex |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Enable-WindowsOptionalFeature -FeatureName ServicesForNFS-ClientOnly, ClientForNFS-Infrastructure -Online -NoRestart | |
New-PSDrive -PSProvider FileSystem -Name M -Root \\192.168.8.101\export\shared -Persist |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
choco install zoxide nvm 7zip.install pyenv-win git neovim starship vscode googlechrome powershell-core powertoys winfsp gsudo rclone notepadplusplus |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import time | |
import numpy as np | |
N = 4096 | |
A = np.random.randn(N, N).astype(np.float32) | |
B = np.random.randn(N, N).astype(np.float32) | |
# number of multiplications |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PAPER=solution-1.tex | |
SHELL=/bin/zsh | |
# remove extension .tex from PAPER | |
# https://unix.stackexchange.com/a/460224 | |
FILENAME := $(shell x='$(PAPER)'; echo "$${x%%.*}") | |
.PHONY: all clean watch | |
# use -shell-escape to use minted package | |
# use -bibtex for biblatex support |