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
| import csv | |
| import os | |
| import sys | |
| import subprocess | |
| def filter_keeds(zfile, klist='kids.csv', exdir='tmp'): | |
| """Filter the students. | |
| :param zfile: The (zip) file with all homework submissions. |
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
| import vispy | |
| vispy.use('glfw') | |
| required_extensions = [ | |
| 'GL_ARB_framebuffer_object', | |
| 'GL_EXT_framebuffer_object', | |
| 'GL_EXT_framebuffer_blit', | |
| 'GL_EXT_framebuffer_multisample', | |
| 'GL_EXT_packed_depth_stencil', | |
| ] |
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
| [Desktop Entry] | |
| Name=Visual Studio Code | |
| Exec=/home/abhikpal/.bin/vscode | |
| Icon=/home/abhikpal/.bin/code-stable-code_1.17.2-1508162334_amd64/VSCode-linux-x64/resources/app/resources/linux/code.png | |
| Type=Application | |
| Categories=Utility; |
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
| (require 'package) | |
| (setq package-enable-at-startup nil) | |
| (add-to-list 'package-archives | |
| '("org" . "http://orgmode.org/elpa/") | |
| '("melpa" . "https://melpa.org/packages/")) | |
| (package-initialize) | |
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
| export ALTERNATE_EDITOR="" | |
| export EDITOR="emacs24 -nw" | |
| export VISUAL="emacs24" | |
| alias em="$EDITOR" | |
| alias emacs="$EDITOR" | |
| alias emx="$VISUAL" | |
| alias emacsx="#VISUAL" | |
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
| <?xml version='1.0'?> | |
| <!DOCTYPE fontconfig SYSTEM 'fonts.dtd'> | |
| <fontconfig> | |
| <match target="font"> | |
| <edit mode="assign" name="rgba"> | |
| <const>rgb</const> | |
| </edit> | |
| </match> | |
| <match target="font"> |
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
| \documentclass{standalone} | |
| \usepackage{amsmath, amssymb, amsthm} | |
| \begin{document} | |
| $\prec \subseteq \Sigma^{\ast} \times \Sigma^{\ast}$ | |
| \end{document} |
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
| \begin{table}[ht] | |
| \footnotesize | |
| \centering | |
| \begin{tabular}{llllll} | |
| & \multicolumn{5}{c}{$\phi_{\Delta t} \pm 0.01 s$}\\ | |
| \cmidrule(lr){2-6} | |
| & $T_1$ & $T_2$ & $T_3$ & $T_4$ & $T_5$\\ \toprule | |
| $m_2$ & 0.52 & 0.80 & 0.08 & 0.84 & 0.80\\ | |
| $m_3$ & 0.96 & 1.20 & 1.32 & 0.40 & 0.72\\ | |
| $m_4$ & 0.64 & 0.68 & 0.84 & 0.84 & 0.68\\ |
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
| \documentclass{standalone} | |
| \usepackage{mathpazo} | |
| \usepackage[usenames, dvipsnames]{xcolor} | |
| \usepackage{tikz} | |
| \usetikzlibrary{calc,patterns,decorations.pathmorphing, decorations.markings} | |
| \begin{document} | |
| \begin{tikzpicture} |
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
| # | |
| # Additive Wave | |
| # by Daniel Shiffman | |
| # | |
| # Python port: Abhik Pal | |
| # | |
| # Create a more complex wave by adding two waves together. | |
| # | |
| import cProfile | |
| from p5 import * |
NewerOlder