text stringlengths 9 39.2M | dir stringlengths 25 226 | lang stringclasses 163
values | created_date timestamp[s] | updated_date timestamp[s] | repo_name stringclasses 751
values | repo_full_name stringclasses 752
values | star int64 1.01k 183k | len_tokens int64 1 18.5M |
|---|---|---|---|---|---|---|---|---|
```javascript
/**
* @file Binding.js
*/
/**
* Responsible for creating a binding between an element and a gesture.
* @class Binding
*/
class Binding {
/**
* Constructor function for the Binding class.
* @param {Element} element - The element to associate the gesture to.
* @param {Gesture} gesture - A i... | /content/code_sandbox/src/core/classes/Binding.js | javascript | 2016-03-15T20:49:25 | 2024-08-16T15:00:47 | zingtouch | zingchart/zingtouch | 2,112 | 374 |
```javascript
/**
* @file Binder.js
*/
/**
* A chainable object that contains a single element to be bound upon.
* Called from ZingTouch.bind(), and is used to chain over gesture callbacks.
* @class
*/
class Binder {
/**
* Constructor function for the Binder class.
* @param {Element} element - The elemen... | /content/code_sandbox/src/core/classes/Binder.js | javascript | 2016-03-15T20:49:25 | 2024-08-16T15:00:47 | zingtouch | zingchart/zingtouch | 2,112 | 238 |
```javascript
/**
* @file ZingEvent.js
* Contains logic for ZingEvents
*/
import util from '../util.js';
const INITIAL_COORDINATE = 0;
/**
* An event wrapper that normalizes events across browsers and input devices
* @class ZingEvent
*/
class ZingEvent {
/**
* @constructor
* @param {Event} event - The e... | /content/code_sandbox/src/core/classes/ZingEvent.js | javascript | 2016-03-15T20:49:25 | 2024-08-16T15:00:47 | zingtouch | zingchart/zingtouch | 2,112 | 425 |
```javascript
/**
* @file Region.js
*/
import Binder from './Binder.js';
import Gesture from './../../gestures/Gesture.js';
import arbiter from './../arbiter.js';
import State from './State.js';
/**
* Allows the user to specify a region to capture all events to feed ZingTouch
* into. This can be as narrow as the ... | /content/code_sandbox/src/core/classes/Region.js | javascript | 2016-03-15T20:49:25 | 2024-08-16T15:00:47 | zingtouch | zingchart/zingtouch | 2,112 | 1,601 |
```javascript
/**
* @file Pan.js
* Contains the Pan class
*/
import Gesture from './Gesture.js';
import util from './../core/util.js';
const DEFAULT_INPUTS = 1;
const DEFAULT_MIN_THRESHOLD = 1;
/**
* A Pan is defined as a normal movement in any direction on a screen.
* Pan gestures do not track start events and... | /content/code_sandbox/src/gestures/Pan.js | javascript | 2016-03-15T20:49:25 | 2024-08-16T15:00:47 | zingtouch | zingchart/zingtouch | 2,112 | 1,340 |
```javascript
/**
* @file State.js
*/
import Gesture from './../../gestures/Gesture.js';
import Pan from './../../gestures/Pan.js';
import Distance from './../../gestures/Distance.js';
import Rotate from './../../gestures/Rotate.js';
import Swipe from './../../gestures/Swipe.js';
import Tap from './../../gestures/Ta... | /content/code_sandbox/src/core/classes/State.js | javascript | 2016-03-15T20:49:25 | 2024-08-16T15:00:47 | zingtouch | zingchart/zingtouch | 2,112 | 1,783 |
```javascript
/**
* @file Rotate.js
* Contains the Rotate class
*/
import Gesture from './Gesture.js';
import util from './../core/util.js';
const DEFAULT_INPUTS = 2;
/**
* A Rotate is defined as two inputs moving about a circle,
* maintaining a relatively equal radius.
* @class Rotate
*/
class Rotate extends... | /content/code_sandbox/src/gestures/Rotate.js | javascript | 2016-03-15T20:49:25 | 2024-08-16T15:00:47 | zingtouch | zingchart/zingtouch | 2,112 | 793 |
```javascript
/**
* @file Swipe.js
* Contains the Swipe class
*/
import Gesture from './Gesture.js';
import util from './../core/util.js';
const DEFAULT_INPUTS = 1;
const DEFAULT_MAX_REST_TIME = 100;
const DEFAULT_ESCAPE_VELOCITY = 0.2;
const DEFAULT_TIME_DISTORTION = 100;
const DEFAULT_MAX_PROGRESS_STACK = 10;
/... | /content/code_sandbox/src/gestures/Swipe.js | javascript | 2016-03-15T20:49:25 | 2024-08-16T15:00:47 | zingtouch | zingchart/zingtouch | 2,112 | 1,677 |
```javascript
/**
* @file Gesture.js
* Contains the Gesture class
*/
import util from './../core/util.js';
/**
* The Gesture class that all gestures inherit from.
*/
class Gesture {
/**
* Constructor function for the Gesture class.
* @class Gesture
*/
constructor() {
/**
* The generic strin... | /content/code_sandbox/src/gestures/Gesture.js | javascript | 2016-03-15T20:49:25 | 2024-08-16T15:00:47 | zingtouch | zingchart/zingtouch | 2,112 | 811 |
```javascript
/**
* @file Distance.js
* Contains the abstract Distance class
*/
import Gesture from './Gesture.js';
import util from './../core/util.js';
const DEFAULT_INPUTS = 2;
const DEFAULT_MIN_THRESHOLD = 1;
/**
* A Distance is defined as two inputs moving either together or apart.
* @class Distance
*/
cl... | /content/code_sandbox/src/gestures/Distance.js | javascript | 2016-03-15T20:49:25 | 2024-08-16T15:00:47 | zingtouch | zingchart/zingtouch | 2,112 | 882 |
```javascript
/**
* @file Tap.js
* Contains the Tap class
*/
import Gesture from './Gesture.js';
import util from './../core/util.js';
const DEFAULT_MIN_DELAY_MS = 0;
const DEFAULT_MAX_DELAY_MS = 300;
const DEFAULT_INPUTS = 1;
const DEFAULT_MOVE_PX_TOLERANCE = 10;
/**
* A Tap is defined as a touchstart to touche... | /content/code_sandbox/src/gestures/Tap.js | javascript | 2016-03-15T20:49:25 | 2024-08-16T15:00:47 | zingtouch | zingchart/zingtouch | 2,112 | 1,384 |
```unknown
{"version":3,"sources":["webpack:///webpack/bootstrap","webpack:///./src/core/classes/Binder.js","webpack:///./src/core/util.js","webpack:///./src/gestures/Gesture.js","webpack:///./src/core/dispatcher.js","webpack:///./src/core/interpreter.js","webpack:///./src/core/arbiter.js","webpack:///./src/gestures/Pa... | /content/code_sandbox/dist/zingtouch.min.js.map | unknown | 2016-03-15T20:49:25 | 2024-08-16T15:00:47 | zingtouch | zingchart/zingtouch | 2,112 | 29,437 |
```javascript
/*!
*
* ZingTouch v2.0.0
* Author: ZingChart path_to_url
*/!function(e){var t={};function n(r){if(t[r])return t[r].exports;var i=t[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0... | /content/code_sandbox/dist/zingtouch.min.js | javascript | 2016-03-15T20:49:25 | 2024-08-16T15:00:47 | zingtouch | zingchart/zingtouch | 2,112 | 6,558 |
```unknown
{"version":3,"sources":["webpack:///webpack/bootstrap","webpack:///./src/ZingTouch.js","webpack:///./src/core/arbiter.js","webpack:///./src/core/classes/Binder.js","webpack:///./src/core/classes/Binding.js","webpack:///./src/core/classes/Input.js","webpack:///./src/core/classes/Region.js","webpack:///./src/c... | /content/code_sandbox/dist/zingtouch.js.map | unknown | 2016-03-15T20:49:25 | 2024-08-16T15:00:47 | zingtouch | zingchart/zingtouch | 2,112 | 37,999 |
```javascript
/*!
*
* ZingTouch v2.0.0
* Author: ZingChart path_to_url
*/
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/
/******/ // Che... | /content/code_sandbox/dist/zingtouch.js | javascript | 2016-03-15T20:49:25 | 2024-08-16T15:00:47 | zingtouch | zingchart/zingtouch | 2,112 | 22,271 |
```jupyter notebook
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# \n",
"\n",
"## \n",
"\n",
"JPEG\n",
"\n",
"$512$$x_i$$i$$x_i$$[0,255]$8 bits$x$$x\\in\\mathbb{R}^n, n=512^2$\n",
"\n",
"JPEGJoint Photographic Expert Group\n",
"\n",
" $\\be... | /content/code_sandbox/chapter32.ipynb | jupyter notebook | 2016-05-09T14:20:50 | 2024-08-16T14:40:36 | notes-linear-algebra | zlotus/notes-linear-algebra | 3,514 | 1,982 |
```jupyter notebook
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# \n",
"\n",
"## \n",
"\n",
"$A$$A$$x$$A$$x$$Ax$$A$$x$$Ax$\n",
"\n",
"($x$)($Ax$)$Ax$$x$$Ax$$x$$x$Eigen vector\n",
"\n",
"$$Ax=\\lambda x\\tag{1}$$\n",
"\n",
"* $0$$Ax=0$$0$$A... | /content/code_sandbox/chapter21.ipynb | jupyter notebook | 2016-05-09T14:20:50 | 2024-08-16T14:40:36 | notes-linear-algebra | zlotus/notes-linear-algebra | 3,514 | 1,586 |
```jupyter notebook
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# \n",
"\n",
"\n",
"\n",
"* $A=S\\Lambda S^{-1}$$A^{-1}=S\\Lambda^{-1}S^{-1}$\n",
"\n",
"* $A,\\ B$$A+B$$x^T(A+B)x$$x^TAx>0,\\ x^TBx>0$$x^T(A+B)x>0$\n",
"\n",
"* $m\\times n$$A$$A^TA$... | /content/code_sandbox/chapter29.ipynb | jupyter notebook | 2016-05-09T14:20:50 | 2024-08-16T14:40:36 | notes-linear-algebra | zlotus/notes-linear-algebra | 3,514 | 1,552 |
```jupyter notebook
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# \n",
"\n",
"## \n",
"\n",
"****\n",
"\n",
" `jupyter notebook (ipython notebook)` \n",
"\n",
"`Github` `.ipynb` [Nbviewer](path_to_url \n",
"\n",
"----\n",
"\n",
"... | /content/code_sandbox/ReadMe.ipynb | jupyter notebook | 2016-05-09T14:20:50 | 2024-08-16T14:40:36 | notes-linear-algebra | zlotus/notes-linear-algebra | 3,514 | 783 |
```jupyter notebook
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# $e^{At}$\n",
"\n",
"## $\\frac{\\mathrm{d}u}{\\mathrm{d}t}=Au$\n",
"\n",
"first-order systemfirst derivativeconstant coefficient\n",
"\n",
"$\\begin{cases}\\frac{\\mathrm{d}u_1}{\\mathrm{d}... | /content/code_sandbox/chapter23.ipynb | jupyter notebook | 2016-05-09T14:20:50 | 2024-08-16T14:40:36 | notes-linear-algebra | zlotus/notes-linear-algebra | 3,514 | 2,467 |
```jupyter notebook
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# \n",
"\n",
"\n",
"\n",
"## \n",
"\n",
"$\\begin{cases}x&+2y&+z&=2\\\\3x&+8y&+z&=12\\\\&4y&+z&=2\\end{cases}$$Ax=b$$\\begin{bmatrix}1&2&1\\\\3&8&1\\\\0&4&1\\end{bmatrix}\\begin{bmatrix}x\\\\... | /content/code_sandbox/chapter02.ipynb | jupyter notebook | 2016-05-09T14:20:50 | 2024-08-16T14:40:36 | notes-linear-algebra | zlotus/notes-linear-algebra | 3,514 | 1,550 |
```jupyter notebook
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# \n",
"\n",
"$2$$2$\n",
"\n",
"$\\begin{cases}2x&-y&=0\\\\-x&+2y&=3\\end{cases}$$\\begin{bmatrix}2&-1\\\\-1&2\\end{bmatrix}\\begin{bmatrix}x\\\\y\\end{bmatrix}=\\begin{bmatrix}0\\\\3\\end{bmatrix}$$... | /content/code_sandbox/chapter01.ipynb | jupyter notebook | 2016-05-09T14:20:50 | 2024-08-16T14:40:36 | notes-linear-algebra | zlotus/notes-linear-algebra | 3,514 | 17,561 |
```jupyter notebook
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# \n",
"\n",
"determinant\n",
"\n",
"1. $\\det{I}=1$\n",
"2. \n",
"\n",
" $\\det P=\\begin{cases}1\\quad &even\\\\-1\\quad &odd\\end{cases}$\n",
"\n",
" $\\begin{vmatrix}1&0... | /content/code_sandbox/chapter18.ipynb | jupyter notebook | 2016-05-09T14:20:50 | 2024-08-16T14:40:36 | notes-linear-algebra | zlotus/notes-linear-algebra | 3,514 | 1,230 |
```jupyter notebook
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# 3\n",
"\n",
"$\\det(A-\\lambda I)=0$$\\lambda$$\\lambda$$A-\\lambda I$$x$\n",
"\n",
"\n",
"\n",
"* $\\frac{\\mathrm{d}u}{\\mathrm{d}t}=Au$$e^{At}$\n",
"* $A=A^T$$A=Q\\Lambda Q^T$\n",
... | /content/code_sandbox/chapter33.ipynb | jupyter notebook | 2016-05-09T14:20:50 | 2024-08-16T14:40:36 | notes-linear-algebra | zlotus/notes-linear-algebra | 3,514 | 1,670 |
```jupyter notebook
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# \n",
"\n",
"\n",
"\n",
"## \n",
"\n",
"$z=\\begin{bmatrix}z_1\\\\z_2\\\\\\vdots\\\\z_n\\end{bmatrix}$$z$$\\mathbb{R}^n$$\\mathbb{C}^n$\n",
"\n",
"### \n",
"\n",
"$\\left|v\\... | /content/code_sandbox/chapter27.ipynb | jupyter notebook | 2016-05-09T14:20:50 | 2024-08-16T14:40:36 | notes-linear-algebra | zlotus/notes-linear-algebra | 3,514 | 2,097 |
```jupyter notebook
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# \n",
"\n",
"## \n",
"\n",
"Markov matrix\n",
"\n",
"1. ****$0$\n",
"2. $1$\n",
"\n",
"steady state$0$$1$\n",
"\n",
"\n",
"\n",
"1. $1$\n",
"2. $1$\n",
"\... | /content/code_sandbox/chapter24.ipynb | jupyter notebook | 2016-05-09T14:20:50 | 2024-08-16T14:40:36 | notes-linear-algebra | zlotus/notes-linear-algebra | 3,514 | 1,958 |
```jupyter notebook
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# \n",
"\n",
"\n",
"\n",
"## \n",
"\n",
"* $m\\times n$$A$$n\\times p$$B$$A$$B$$AB=C$$C$$m\\times p$$C$$i$$j$$c_{ij}$\n",
"\n",
" $$c_{ij}=row_i\\cdot column_j=\\sum_{k=i}^na_{ik}b... | /content/code_sandbox/chapter03.ipynb | jupyter notebook | 2016-05-09T14:20:50 | 2024-08-16T14:40:36 | notes-linear-algebra | zlotus/notes-linear-algebra | 3,514 | 1,967 |
```jupyter notebook
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# \n",
"\n",
"$A=U\\varSigma V^T$\n",
"\n",
"* $A=Q\\Lambda Q^T$$A$$\\Lambda$$Q$\n",
"\n",
"* $A=S\\Lambda S^T$$S$$A$$S$\n",
"\n",
"$A$****$v_1,v_2,\\cdots,v_r$$A$$A$****$u_1,u_2,\\cd... | /content/code_sandbox/chapter30.ipynb | jupyter notebook | 2016-05-09T14:20:50 | 2024-08-16T14:40:36 | notes-linear-algebra | zlotus/notes-linear-algebra | 3,514 | 2,325 |
```jupyter notebook
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# \n",
"\n",
"## \n",
"\n",
"$1$\n",
"\n",
"\n",
"\n",
"1. \n",
"2. \n",
"\n",
"\n",
"\n",
"* $A=S\\varLambda S^{-1}$\n",
"* 2$S$$1$$A=Q\\varLambda Q^{-1}$$Q=Q... | /content/code_sandbox/chapter26.ipynb | jupyter notebook | 2016-05-09T14:20:50 | 2024-08-16T14:40:36 | notes-linear-algebra | zlotus/notes-linear-algebra | 3,514 | 1,097 |
```jupyter notebook
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# \n",
"\n",
"$v_1,\\ v_2,\\ \\cdots,\\ v_n$$m\\times n$$A$\n",
"\n",
"$A$$0$$rank(A)=n$\n",
"\n",
"$c$$Ac=0$$rank(A)\\lt n$\n",
"\n",
"$S$basis\n",
"\n",
"1. \n",
"2. $S$... | /content/code_sandbox/chapter09.ipynb | jupyter notebook | 2016-05-09T14:20:50 | 2024-08-16T14:40:36 | notes-linear-algebra | zlotus/notes-linear-algebra | 3,514 | 573 |
```jupyter notebook
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# \n",
"\n",
"$x^TAx$ellipsehyperbola\n",
"\n",
"## \n",
"\n",
"$A=\\begin{bmatrix}a&b\\\\b&d\\end{bmatrix}$\n",
"\n",
"1. $\\lambda_1>0,\\ \\lambda_2>0$\n",
"2. leading principal... | /content/code_sandbox/chapter28.ipynb | jupyter notebook | 2016-05-09T14:20:50 | 2024-08-16T14:40:36 | notes-linear-algebra | zlotus/notes-linear-algebra | 3,514 | 1,339 |
```jupyter notebook
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# 1\n",
"\n",
"## \n",
"\n",
"$3 \\times 3$$M$\n",
"\n",
"$M$\n",
"$\n",
"\\begin{bmatrix}\n",
"1 & 0 & 0 \\\\\n",
"0 & 0 & 0 \\\\\n",
"0 & 0 & 0 \\\\\n",
"\\end{bmatr... | /content/code_sandbox/chapter11.ipynb | jupyter notebook | 2016-05-09T14:20:50 | 2024-08-16T14:40:36 | notes-linear-algebra | zlotus/notes-linear-algebra | 3,514 | 1,652 |
```jupyter notebook
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# \n",
"\n",
"$m \\times n$$A$$rank(A)=r$\n",
"\n",
"* $C(A^T) \\in \\mathbb{R}^n, dim C(A^T)=r$1\n",
"\n",
"* $N(A) \\in \\mathbb{R}^n, dim N(A)=n-r$\n",
"\n",
"* $C(A) \\in \\mathb... | /content/code_sandbox/chapter10.ipynb | jupyter notebook | 2016-05-09T14:20:50 | 2024-08-16T14:40:36 | notes-linear-algebra | zlotus/notes-linear-algebra | 3,514 | 1,511 |
```jupyter notebook
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# \n",
"\n",
"\n",
"\n",
"$$\n",
"T(v+w)=T(v)+T(w)\\\\\n",
"T(cv)=cT(v)\n",
"$$\n",
"\n",
"$T$$T(cv+dw)=cT(v)+dT(w)$\n",
"\n",
"\n",
"\n",
"1$T: \\mathbb{R}^2\\to\... | /content/code_sandbox/chapter31.ipynb | jupyter notebook | 2016-05-09T14:20:50 | 2024-08-16T14:40:36 | notes-linear-algebra | zlotus/notes-linear-algebra | 3,514 | 34,272 |
```jupyter notebook
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# \n",
"\n",
"* $Q=\\Bigg[q_1\\ q_2\\ \\cdots\\ q_n\\Bigg]$$Q^TQ=I$\n",
"* Gram-Schmidt$E=b-P, P=Ax=\\frac{A^Tb}{A^TA}\\cdot A$\n",
"* 4-10\n",
"* \n",
"* \n",
"* $Ax=\\lambda x$$\\det(A-... | /content/code_sandbox/chapter25.ipynb | jupyter notebook | 2016-05-09T14:20:50 | 2024-08-16T14:40:36 | notes-linear-algebra | zlotus/notes-linear-algebra | 3,514 | 2,291 |
```jupyter notebook
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# $A$\n",
"\n",
"## \n",
"\n",
"$Ax=\\lambda x$$\\det(A-\\lambda I)=0$$\\lambda$$x$\n",
"\n",
"\n",
"\n",
"$A$$x_1, x_2, \\cdots, x_n$$S=\\Bigg[x_1x_2\\cdots x_n\\Bigg]$ $$S^{-1}AS=\\... | /content/code_sandbox/chapter22.ipynb | jupyter notebook | 2016-05-09T14:20:50 | 2024-08-16T14:40:36 | notes-linear-algebra | zlotus/notes-linear-algebra | 3,514 | 2,608 |
```jupyter notebook
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# $A$ $LU$ \n",
"\n",
"$AB$\n",
"$$\n",
"\\begin{aligned}\n",
"A \\cdot A^{-1} = I & = A^{-1} \\cdot A\\\\\n",
"(AB) \\cdot (B^{-1}A^{-1}) & = I\\\\\n",
"\\textrm{} AB \\textrm{} & B^{-1... | /content/code_sandbox/chapter04.ipynb | jupyter notebook | 2016-05-09T14:20:50 | 2024-08-16T14:40:36 | notes-linear-algebra | zlotus/notes-linear-algebra | 3,514 | 1,163 |
```jupyter notebook
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Gram-Schmidt\n",
"\n",
"## \n",
"\n",
"orthonormal$q_i^Tq_j=\\begin{cases}0\\quad i\\neq j\\\\1\\quad i=j\\end{cases}$\n",
"\n",
"$Q=\\Bigg[q_1 q_2 \\cdots q_n\\Bigg]$\n",
"\n",
"$A... | /content/code_sandbox/chapter17.ipynb | jupyter notebook | 2016-05-09T14:20:50 | 2024-08-16T14:40:36 | notes-linear-algebra | zlotus/notes-linear-algebra | 3,514 | 1,726 |
```jupyter notebook
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# R\n",
"\n",
"## Permutation Matrix\n",
"\n",
"$P$$A$\n",
"\n",
"$PA=LU$\n",
"\n",
"$n$$P$$\\binom{n}{1}=n!$\n",
"\n",
"$P$$P^TP = I$\n",
"\n",
"$P^T = P^{-1}\n",
... | /content/code_sandbox/chapter05.ipynb | jupyter notebook | 2016-05-09T14:20:50 | 2024-08-16T14:40:36 | notes-linear-algebra | zlotus/notes-linear-algebra | 3,514 | 432 |
```jupyter notebook
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# \n",
"\n",
"$S$$T$$S \\cap T$\n",
"\n",
"$m \\times n$$A$$n \\times 1$$x$$m \\times 1$$b$$Ax=b$\n",
"\n",
"$$\n",
"\\begin{bmatrix}\n",
"a_{11} & a_{12} & \\cdots & a_{1(n-1)} & a_{... | /content/code_sandbox/chapter06.ipynb | jupyter notebook | 2016-05-09T14:20:50 | 2024-08-16T14:40:36 | notes-linear-algebra | zlotus/notes-linear-algebra | 3,514 | 565 |
```jupyter notebook
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# \n",
"\n",
"\n",
"\n",
"1. *$m\\times n$$A$$Ax=\\begin{bmatrix}1\\\\0\\\\0\\end{bmatrix}$$Ax=\\begin{bmatrix}0\\\\1\\\\0\\end{bmatrix}$$m,n,rank(A)$*\n",
"\n",
" $m=3$$r<m$$r=n$\n",
... | /content/code_sandbox/chapter35.ipynb | jupyter notebook | 2016-05-09T14:20:50 | 2024-08-16T14:40:36 | notes-linear-algebra | zlotus/notes-linear-algebra | 3,514 | 6,810 |
```jupyter notebook
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# \n",
"\n",
"1. $u, v, w$$\\mathbb{R}^7$$u, v, w$$1, 2, 3$\n",
"\n",
"2. $5 \\times 3$$U$echelon form$3$$3$$\\begin{bmatrix}0\\\\0\\\\0\\\\ \\end{bmatrix}$\n",
"\n",
"3. $10 \\times 3$$B=\\b... | /content/code_sandbox/chapter13.ipynb | jupyter notebook | 2016-05-09T14:20:50 | 2024-08-16T14:40:36 | notes-linear-algebra | zlotus/notes-linear-algebra | 3,514 | 1,415 |
```jupyter notebook
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# \n",
"\n",
"r$m \\times n$$dim C(A^T)=r$$dim N(A)=n-r$$\\mathbb{R}^n$$dim C(A)=r$$dim N(A^T)$=m-r$\\mathbb{R}^m$\n",
"\n",
"$x, y$$x^T \\cdot y=0$$x_1y_1+x_2y_x+\\cdots+x_ny_n=0$$x, y$vector orthog... | /content/code_sandbox/chapter14.ipynb | jupyter notebook | 2016-05-09T14:20:50 | 2024-08-16T14:40:36 | notes-linear-algebra | zlotus/notes-linear-algebra | 3,514 | 1,634 |
```jupyter notebook
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# \n",
"\n",
"$\\mathbb{R}^2$$a, b$$b$$a$$p$\n"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"image/... | /content/code_sandbox/chapter15.ipynb | jupyter notebook | 2016-05-09T14:20:50 | 2024-08-16T14:40:36 | notes-linear-algebra | zlotus/notes-linear-algebra | 3,514 | 17,591 |
```jupyter notebook
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# \n",
"\n",
"inverse$A^{-1}A=I=AA^{-1}$$m\\times n$$A$$m=n=rank(A)$\n",
"\n",
"## left inserve\n",
"\n",
"$A$$m>n=rank(A)$\n",
"\n",
"$Ax=b$$b$$A$$b$$A$\n",
"\n",
"$\\mathbb{... | /content/code_sandbox/chapter34.ipynb | jupyter notebook | 2016-05-09T14:20:50 | 2024-08-16T14:40:36 | notes-linear-algebra | zlotus/notes-linear-algebra | 3,514 | 1,594 |
```jupyter notebook
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# \n",
"\n",
"$P=A(A^TA)^{-1}A^T$$Pb$$A$\n",
"\n",
" \n",
"* $b\\in C(A)$$Pb=b$\n",
"* $b\\bot C(A)$$Pb=0$\n",
"\n",
"$b$$A$$A$\n",
"\n",
"$b\\in C(A)$$b=Ax$$p=Pb=A(A^TA)^{-1}... | /content/code_sandbox/chapter16.ipynb | jupyter notebook | 2016-05-09T14:20:50 | 2024-08-16T14:40:36 | notes-linear-algebra | zlotus/notes-linear-algebra | 3,514 | 11,496 |
```jupyter notebook
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# $Ax=0$\n",
"\n",
"$3 \\times 4$\n",
"$\n",
"A=\n",
"\\begin{bmatrix}\n",
"1 & 2 & 2 & 2\\\\\n",
"2 & 4 & 6 & 8\\\\\n",
"3 & 6 & 8 & 10\\\\\n",
"\\end{bmatrix}\n",
"$$Ax=0$\n... | /content/code_sandbox/chapter07.ipynb | jupyter notebook | 2016-05-09T14:20:50 | 2024-08-16T14:40:36 | notes-linear-algebra | zlotus/notes-linear-algebra | 3,514 | 1,647 |
```jupyter notebook
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# \n",
"\n",
"\n",
"\n",
"1. $\\det I=1$\n",
"2. \n",
"3. \n",
"\n",
"\n",
"\n",
"$$\\begin{vmatrix}a&b\\\\c&d\\end{vmatrix}=\\begin{vmatrix}a&0\\\\c&d\\end{vmatrix}+\\begin{v... | /content/code_sandbox/chapter19.ipynb | jupyter notebook | 2016-05-09T14:20:50 | 2024-08-16T14:40:36 | notes-linear-algebra | zlotus/notes-linear-algebra | 3,514 | 1,474 |
```jupyter notebook
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# \n",
"\n",
"\n",
"\n",
"## \n",
"\n",
"$\\begin{bmatrix}a&b\\\\c&d\\end{bmatrix}^{-1}=\\frac{1}{ad-bc}\\begin{bmatrix}d&-b\\\\-c&a\\end{bmatrix}$\n",
"\n",
"$$\n",
"A^{-1}=\\fra... | /content/code_sandbox/chapter20.ipynb | jupyter notebook | 2016-05-09T14:20:50 | 2024-08-16T14:40:36 | notes-linear-algebra | zlotus/notes-linear-algebra | 3,514 | 1,725 |
```jupyter notebook
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# $Ax=b$\n",
"\n",
"$3 \\times 4$\n",
"$\n",
"A=\n",
"\\begin{bmatrix}\n",
"1 & 2 & 2 & 2\\\\\n",
"2 & 4 & 6 & 8\\\\\n",
"3 & 6 & 8 & 10\\\\\n",
"\\end{bmatrix}\n",
"$$Ax=b$\n... | /content/code_sandbox/chapter08.ipynb | jupyter notebook | 2016-05-09T14:20:50 | 2024-08-16T14:40:36 | notes-linear-algebra | zlotus/notes-linear-algebra | 3,514 | 1,550 |
```jupyter notebook
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# \n",
"\n",
"## "
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"image/png": your_sha256_hashiAAAAAl... | /content/code_sandbox/chapter12.ipynb | jupyter notebook | 2016-05-09T14:20:50 | 2024-08-16T14:40:36 | notes-linear-algebra | zlotus/notes-linear-algebra | 3,514 | 25,060 |
```rebol
z_theme <- function() {
theme_bw(base_size=9) +
#Background and Grid formatting
theme(panel.background=element_rect(fill="#F0F0F0", color="#F0F0F0")) +
theme(plot.background=element_rect(fill="#F0F0F0", color="#F0F0F0")) +
theme(panel.border=element_rect(color="#F0F0F0")) +
theme(panel.gr... | /content/code_sandbox/z_theme.r | rebol | 2016-06-23T18:12:14 | 2024-08-09T22:43:39 | investing | zonination/investing | 1,737 | 332 |
```unknown
# Load libraries
# setwd("~/Dropbox/R/Stock Market")
# library(ggplot2)
# library(scales)
# source("z_theme.r")
# stocks<-read.csv("returns.csv", stringsAsFactors=FALSE)
stockrisk<-matrix(NA,nrow=21,ncol=3)
stockrisk<-as.data.frame(stockrisk)
names(stockrisk)<-c("year","chance","nochance")
for(n in 1:21){
... | /content/code_sandbox/snippets/snip1.R | unknown | 2016-06-23T18:12:14 | 2024-08-09T22:43:39 | investing | zonination/investing | 1,737 | 238 |
```unknown
``` | /content/code_sandbox/snippets/name | unknown | 2016-06-23T18:12:14 | 2024-08-09T22:43:39 | investing | zonination/investing | 1,737 | 2 |
```unknown
# NOTICE: This code is probably poorly-written garbage. Try to understand
# it at your own risk.
# Set working directory, and import libraries:
# setwd("~/Dropbox/R/Stock Market")
library(ggplot2)
library(scales)
library(lubridate)
source("z_theme.r")
# The following data source:
# I strongly recommend usi... | /content/code_sandbox/stocks.R | unknown | 2016-06-23T18:12:14 | 2024-08-09T22:43:39 | investing | zonination/investing | 1,737 | 1,213 |
```unknown
# Set working directory, and import libraries:
setwd("~/Dropbox/R/Stock Market")
library(ggplot2)
library(scales)
library(lubridate)
source("z_theme.r")
# The following data source:
# I strongly recommend using the github link below, since the sp500 data is
# actively maintained. My data is updated only occ... | /content/code_sandbox/altplots/stocks-anim.R | unknown | 2016-06-23T18:12:14 | 2024-08-09T22:43:39 | investing | zonination/investing | 1,737 | 1,642 |
```unknown
.eslintrc.js
dist/
node_modules
example/
scripts/
app.plugin.js
fetchWindowsCapabilites.js
mock.js
react-native.config.js
``` | /content/code_sandbox/.eslintignore | unknown | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 35 |
```javascript
const {
PERMISSIONS: {ANDROID},
} = require('./dist/commonjs/permissions.android');
const {
PERMISSIONS: {IOS},
} = require('./dist/commonjs/permissions.ios');
const {
PERMISSIONS: {WINDOWS},
} = require('./dist/commonjs/permissions.windows');
const {RESULTS} = require('./dist/commonjs/results');
c... | /content/code_sandbox/mock.js | javascript | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 496 |
```ruby
require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
Pod::Spec.new do |s|
s.name = "RNPermissions"
s.version = package["version"]
s.license = package["license"]
s.summary = package["description"]
s.author = package["author"]
s.homepage ... | /content/code_sandbox/RNPermissions.podspec | ruby | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 211 |
```javascript
const path = require('path');
const pkg = require('../package.json');
const {getDefaultConfig, mergeConfig} = require('@react-native/metro-config');
const escape = require('escape-string-regexp');
const exclusionList = require('metro-config/src/defaults/exclusionList');
const peerDependencies = Object.k... | /content/code_sandbox/example/metro.config.js | javascript | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 278 |
```javascript
// Fetch list of Windows UWP App capabilites from the Microsoft docs
// The names of individual capabilites are in <strong> tag and follow camelCase
const https = require('https');
const {EOL} = require('os');
https.get(
'path_to_url
(res) => {
res.setEncoding('utf8');
let data = '';
r... | /content/code_sandbox/fetchWindowsCapabilites.js | javascript | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 336 |
```javascript
module.exports = require('./dist/commonjs/expo');
``` | /content/code_sandbox/app.plugin.js | javascript | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 12 |
```javascript
'use strict';
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint', 'react', 'react-hooks'],
env: {
es6: true,
},
parserOptions: {
project: './tsconfig.json',
ecmaFeatures: {jsx: true},
ecmaVersion: 2018,
sourceType: 'module... | /content/code_sandbox/.eslintrc.js | javascript | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 524 |
```javascript
import React from 'react';
import {AppRegistry} from 'react-native';
import {Provider as PaperProvider} from 'react-native-paper';
import {name as appName} from './app.json';
import {App} from './src/App';
let Main = () => (
<PaperProvider>
<App />
</PaperProvider>
);
AppRegistry.registerCompone... | /content/code_sandbox/example/index.js | javascript | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 82 |
```javascript
const path = require('path');
const pkg = require('../package.json');
const resolverConfig = {
extensions: ['.ts', '.tsx', '.js', '.jsx', '.json'],
alias: {[pkg.name]: path.resolve(__dirname, '../src')},
};
module.exports = {
presets: ['module:@react-native/babel-preset'],
plugins: [['module-res... | /content/code_sandbox/example/babel.config.js | javascript | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 85 |
```unknown
save-exact true
``` | /content/code_sandbox/example/.yarnrc | unknown | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 6 |
```unknown
def node_require(script)
# Resolve script with node to allow for hoisting
require Pod::Executable.execute_command('node', ['-p',
"require.resolve(
'#{script}',
{paths: [process.argv[1]]},
)", __dir__]).strip
end
node_require('react-native/scripts/react_native_pods.rb')
node_require('... | /content/code_sandbox/example/ios/Podfile | unknown | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 378 |
```unknown
# This `.xcode.env` file is versioned and is used to source the environment
# used when running script phases inside Xcode.
# To customize your local environment, you can create an `.xcode.env.local`
# file that is not versioned.
# NODE_BINARY variable contains the PATH to the node executable.
#
# Customize ... | /content/code_sandbox/example/ios/.xcode.env | unknown | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 118 |
```unknown
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 54;
objects = {
/* Begin PBXBuildFile section */
0C80B921A6F3F58F76C31292 /* libPods-RNPermissionsExample.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-RNPermissionsExample.a */; };
13B07FBC... | /content/code_sandbox/example/ios/RNPermissionsExample.xcodeproj/project.pbxproj | unknown | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 6,378 |
```unknown
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1210"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
buildImplicitDependencies = "YES">
<BuildActionEntries>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning ... | /content/code_sandbox/example/ios/RNPermissionsExample.xcodeproj/xcshareddata/xcschemes/RNPermissionsExample.xcscheme | unknown | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 677 |
```xml
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="18122" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initi... | /content/code_sandbox/example/ios/RNPermissionsExample/LaunchScreen.storyboard | xml | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 756 |
```xml
#import "AppDelegate.h"
#import <React/RCTBundleURLProvider.h>
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.moduleName = @"RNPermissionsExample";
// You can add your custom initial props in the dictionary be... | /content/code_sandbox/example/ios/RNPermissionsExample/AppDelegate.mm | xml | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 175 |
```unknown
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "path_to_url">
<plist version="1.0">
<dict>
<key>NSPrivacyAccessedAPITypes</key>
<array>
<dict>
<key>NSPrivacyAccessedAPIType</key>
<string>NSPrivacyAccessedAPICategoryUserDefaults</string>
<key>NSPrivacy... | /content/code_sandbox/example/ios/RNPermissionsExample/PrivacyInfo.xcprivacy | unknown | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 338 |
```objective-c
#import <RCTAppDelegate.h>
#import <UIKit/UIKit.h>
@interface AppDelegate : RCTAppDelegate
@end
``` | /content/code_sandbox/example/ios/RNPermissionsExample/AppDelegate.h | objective-c | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 22 |
```objective-c
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
int main(int argc, char *argv[])
{
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}
``` | /content/code_sandbox/example/ios/RNPermissionsExample/main.m | objective-c | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 44 |
```xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "path_to_url">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleDisplayName</key>
<string>RNPermissionsExample</string>
<key>CFBundleExecutable</key>
<string>$(EXECU... | /content/code_sandbox/example/ios/RNPermissionsExample/Info.plist | xml | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 938 |
```unknown
<?xml version="1.0" encoding="UTF-8"?>
<Workspace
version = "1.0">
<FileRef
location = "group:RNPermissionsExample.xcodeproj">
</FileRef>
<FileRef
location = "group:Pods/Pods.xcodeproj">
</FileRef>
</Workspace>
``` | /content/code_sandbox/example/ios/RNPermissionsExample.xcworkspace/contents.xcworkspacedata | unknown | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 76 |
```xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "path_to_url">
<plist version="1.0">
<dict>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>
``` | /content/code_sandbox/example/ios/RNPermissionsExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist | xml | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 72 |
```xml
import * as React from 'react';
import {Platform, ScrollView, StatusBar, View} from 'react-native';
import {Appbar, Button, Divider, Snackbar, Text} from 'react-native-paper';
import RNPermissions, {NotificationOption, PERMISSIONS, Permission} from 'react-native-permissions';
// eslint-disable-next-line @typesc... | /content/code_sandbox/example/src/App.tsx | xml | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 1,041 |
```json
PODS:
- boost (1.83.0)
- DoubleConversion (1.1.6)
- FBLazyVector (0.74.2)
- fmt (9.1.0)
- glog (0.3.5)
- hermes-engine (0.74.2):
- hermes-engine/Pre-built (= 0.74.2)
- hermes-engine/Pre-built (0.74.2)
- RCT-Folly (2024.01.01.00):
- boost
- DoubleConversion
- fmt (= 9.1.0)
- g... | /content/code_sandbox/example/ios/Podfile.lock | json | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 14,420 |
```objective-c
// AutolinkedNativeModules.g.h contents generated by "react-native autolink-windows"
#pragma once
namespace winrt::Microsoft::ReactNative
{
void RegisterAutolinkedNativeModulePackages(winrt::Windows::Foundation::Collections::IVector<winrt::Microsoft::ReactNative::IReactPackageProvider> const& packageP... | /content/code_sandbox/example/windows/Example/AutolinkedNativeModules.g.h | objective-c | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 74 |
```unknown
<?xml version="1.0" encoding="utf-8"?>
<Package
xmlns="path_to_url"
xmlns:mp="path_to_url"
xmlns:uap="path_to_url"
xmlns:uap3="path_to_url"
xmlns:uap6="path_to_url"
xmlns:iot="path_to_url"
xmlns:uap4="path_to_url"
xmlns:uap2="path_to_url"
IgnorableNamespaces="uap mp uap3 uap6 iot uap4 uap2... | /content/code_sandbox/example/windows/Example/Package.appxmanifest | unknown | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 852 |
```xml
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="path_to_url">
<ItemGroup>
<ApplicationDefinition Include="App.xaml" />
</ItemGroup>
<ItemGroup>
<Midl Include="App.idl" />
</ItemGroup>
<ItemGroup>
<ClCompile Include="pch.cpp" />
<ClCompile Include="App.cpp" />
... | /content/code_sandbox/example/windows/Example/Example.vcxproj.filters | xml | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 534 |
```c++
#include "pch.h"
#include "App.h"
#include "AutolinkedNativeModules.g.h"
#include "ReactPackageProvider.h"
using namespace winrt::Example;
using namespace winrt::Example::implementation;
/// <summary>
/// Initializes the singleton application object. This is the first line of
/// authored code executed, an... | /content/code_sandbox/example/windows/Example/App.cpp | c++ | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 254 |
```xml
<react:ReactApplication
x:Class="Example.App"
xmlns="path_to_url"
xmlns:x="path_to_url"
xmlns:local="using:Example"
xmlns:react="using:Microsoft.ReactNative">
<Application.Resources>
<XamlControlsResources xmlns="using:Microsoft.UI.Xaml.Controls" />
</Application.Resources>
</... | /content/code_sandbox/example/windows/Example/App.xaml | xml | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 82 |
```unknown
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.Windows.CppWinRT" version="2.0.210312.4" targetFramework="native" />
<package id="Microsoft.UI.Xaml" version="2.3.191129002" targetFramework="native" />
</packages>
``` | /content/code_sandbox/example/windows/Example/packages.config | unknown | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 75 |
```objective-c
#pragma once
#include "winrt/Microsoft.ReactNative.h"
namespace winrt::Example::implementation
{
struct ReactPackageProvider : winrt::implements<ReactPackageProvider, winrt::Microsoft::ReactNative::IReactPackageProvider>
{
public: // IReactPackageProvider
void CreatePackage(winrt::... | /content/code_sandbox/example/windows/Example/ReactPackageProvider.h | objective-c | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 97 |
```c++
#include "pch.h"
``` | /content/code_sandbox/example/windows/Example/pch.cpp | c++ | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 6 |
```c++
// AutolinkedNativeModules.g.cpp contents generated by "react-native autolink-windows"
#include "pch.h"
#include "AutolinkedNativeModules.g.h"
namespace winrt::Microsoft::ReactNative
{
void RegisterAutolinkedNativeModulePackages(winrt::Windows::Foundation::Collections::IVector<winrt::Microsoft::ReactNative::I... | /content/code_sandbox/example/windows/Example/AutolinkedNativeModules.g.cpp | c++ | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 89 |
```objective-c
#pragma once
#define NOMINMAX
#include <hstring.h>
#include <restrictederrorinfo.h>
#include <unknwn.h>
#include <windows.h>
#include <winrt/Windows.ApplicationModel.Activation.h>
#include <winrt/Windows.Foundation.Collections.h>
#include <winrt/Windows.Foundation.h>
#include <winrt/Windows.UI.Xaml.Con... | /content/code_sandbox/example/windows/Example/pch.h | objective-c | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 223 |
```unknown
namespace Example
{
}
``` | /content/code_sandbox/example/windows/Example/App.idl | unknown | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 6 |
```unknown
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.29215.179
MinimumVisualStudioVersion = 10.0.40219.1
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Example", "Example\Example.vcxproj", "{17FAB8EC-5020-4037-A6C7-D83295B29658}"
ProjectSec... | /content/code_sandbox/example/windows/Example.sln | unknown | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 8,355 |
```xml
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="path_to_url">
<ImportGroup Label="PropertySheets" />
<PropertyGroup Label="UserMacros" />
<!--
To customize common C++/WinRT project properties:
* right-click the project node
* expand the Common Properties item
* se... | /content/code_sandbox/example/windows/Example/PropertySheet.props | xml | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 129 |
```xml
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="16.0" DefaultTargets="Build" xmlns="path_to_url">
<Import Project="..\packages\Microsoft.Windows.CppWinRT.2.0.210312.4\build\native\Microsoft.Windows.CppWinRT.props" Condition="Exists('..\packages\Microsoft.Windows.CppWinRT.2.0.210312.4\build\native... | /content/code_sandbox/example/windows/Example/Example.vcxproj | xml | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 2,269 |
```c++
#include "pch.h"
#include "ReactPackageProvider.h"
#include "NativeModules.h"
using namespace winrt::Microsoft::ReactNative;
namespace winrt::Example::implementation
{
void ReactPackageProvider::CreatePackage(IReactPackageBuilder const &packageBuilder) noexcept
{
AddAttributedModules(packageBuilder);
}
... | /content/code_sandbox/example/windows/Example/ReactPackageProvider.cpp | c++ | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 76 |
```objective-c
#pragma once
#include "App.xaml.g.h"
namespace winrt::Example::implementation
{
struct App : AppT<App>
{
App() noexcept;
};
} // namespace winrt::Example::implementation
``` | /content/code_sandbox/example/windows/Example/App.h | objective-c | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 47 |
```batchfile
@rem
@rem
@rem
@rem path_to_url
@rem
@rem Unless required by applicable law or agreed to in writing, software
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@rem
@if "%DEBUG%"=="" @echo off
@rem ##########################################################################
... | /content/code_sandbox/example/android/gradlew.bat | batchfile | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 666 |
```ini
# Project-wide Gradle settings.
# IDE (e.g. Android Studio) users:
# Gradle settings configured through the IDE *will override*
# any settings specified in this file.
# For more details on how to configure your build environment visit
# path_to_url
# Specifies the JVM arguments used for the daemon process.
# ... | /content/code_sandbox/example/android/gradle.properties | ini | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 396 |
```ini
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-all.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
``` | /content/code_sandbox/example/android/gradle/wrapper/gradle-wrapper.properties | ini | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 66 |
```qmake
# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the proguardFiles
# directive in build.gradle.
#
# For more detail... | /content/code_sandbox/example/android/app/proguard-rules.pro | qmake | 2016-03-24T16:33:42 | 2024-08-15T16:56:05 | react-native-permissions | zoontek/react-native-permissions | 4,008 | 94 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.