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
# Android < 6.x.x termux legacy repository | |
deb https://mirrors.nju.edu.cn/termux stable main | |
deb https://archive.org/download/termux-repositories-legacy/termux-repositories-legacy-24.12.2019.tar/termux-repositories-legacy%2Fwebroot%2Ftermux-packages stable main | |
deb https://termux.unternet.net/apt/dists/termux-packages stable main |
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
#include <stdio.h> | |
#include <string.h> | |
#include <assert.h> | |
int main(int argc, char *argv[]){ | |
assert(argc == 3); | |
char *file_name = argv[1]; | |
char *html_title = argv[2]; | |
FILE *fpin = stdin; |
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
// Generate packed pictures | |
// gcc pprint.c -lpng16 -lz -O2 -o pprint | |
// This takes in a 8 bit depth RGBA png of any size, and produces an a4 size | |
// paper of 300dpi Which can be use for automatically generating 1x1in copies of | |
// picture for mass production. | |
/** | |
* The author disclaims copyright to this source code. In place of | |
* a legal notice, here is a blessing: | |
* |
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[12pt]{article} | |
\renewcommand{\familydefault}{\sfdefault} | |
\usepackage{graphicx, chemfig, hyperref} | |
\title{Physics \\ | |
Activity \#2: What's the matter?} | |
\author{Al-buharie Amjari, STEM-A 12} | |
\makeatletter % from: https://tex.stackexchange.com/a/101263/134144 | |
\tikzset{ | |
dot diameter/.store in=\dot@diameter, |
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
*.aux | |
*.log | |
t.pdf |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
*.log | |
*.aux | |
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
#include <assert.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
typedef struct vec3D vec3D; | |
struct vec3D { | |
float x, y, z; | |
}; | |
_Static_assert(sizeof(vec3D) == 12, "May not work"); |
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{article} | |
\usepackage{multicol} | |
\usepackage{amsmath} | |
\usepackage{amssymb} | |
\usepackage{mathtools} | |
\usepackage{graphicx} | |
\usepackage{enumerate} | |
\usepackage{geometry}[top=0.5in] | |
\title{Basic Calculus \\ | |
Activity II} |