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 |
|---|---|---|---|---|---|---|---|---|
```java
package graphs.special;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.LinkedList;
import java.util.Queue;
// Maximum Cardinality Bipartite Matching
// 1.Augmenting Path Algorithm
// 2.Hopcroft Karp's Algorithm
// 3.Max Flow based Solution
public class MCBM {
// 1.Augmenting Path Al... | /content/code_sandbox/graphs/special/MCBM.java | java | 2016-05-29T16:04:20 | 2024-08-15T19:22:08 | Competitive-programming-library | AhmadElsagheer/Competitive-programming-library | 2,432 | 813 |
```java
package graphs.shortest_path;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.PriorityQueue;
/*
* Single-Source Shortest Path
*/
public class SSSP {
static final int INF = (int)1e9; //don't increase, avoid overflow
static ArrayList<Edge>[] adjList;
static int V;
/*
* 1. Dijkst... | /content/code_sandbox/graphs/shortest_path/SSSP.java | java | 2016-05-29T16:04:20 | 2024-08-15T19:22:08 | Competitive-programming-library | AhmadElsagheer/Competitive-programming-library | 2,432 | 591 |
```java
package graphs.trees;
import java.util.*;
class EulerWalk { // Euler walk on a rooted tree
static ArrayList<Integer>[] children;
static int[] E, L, tin, tout;
static int N, t;
static void dfs(int u, int depth)
{
tin[u] = t;
E[t] = u;
L[t++] = depth;
for(int v: children[u])
{
dfs(v, depth... | /content/code_sandbox/graphs/trees/EulerWalk.java | java | 2016-05-29T16:04:20 | 2024-08-15T19:22:08 | Competitive-programming-library | AhmadElsagheer/Competitive-programming-library | 2,432 | 266 |
```java
package graphs.trees;
//Build the tree using the in-order and post-order traversals
public class TreeTraversal {
static class Node { int val; Node left, right; Node(int x) { val = x; } }
//idxOf is the idx of the specified node in the in[] array
static Node buildTree(int[] post, int[] in, int[] id... | /content/code_sandbox/graphs/trees/TreeTraversal.java | java | 2016-05-29T16:04:20 | 2024-08-15T19:22:08 | Competitive-programming-library | AhmadElsagheer/Competitive-programming-library | 2,432 | 294 |
```java
package graphs.trees;
//1. Calculate the height of the tree rooted at node u for all nodes
//2. find the proper root of a given tree
import java.util.ArrayList;
import java.util.LinkedList;
import java.util.Queue;
public class TreeDiameter {
static ArrayList<Integer>[] adjList;
static int N, dp_down[][],... | /content/code_sandbox/graphs/trees/TreeDiameter.java | java | 2016-05-29T16:04:20 | 2024-08-15T19:22:08 | Competitive-programming-library | AhmadElsagheer/Competitive-programming-library | 2,432 | 625 |
```java
package graphs.trees;
import java.util.Arrays;
/*
* Lowest Common Ancestor in a Rooted Tree
*
* Algorithm 1: Parent Sparse Table
* Algorithm 2: Euler Walk + RMQ
*/
public class LCA {
/*
* Algorithm 1: Parent Sparse Table
*/
static int N, L[], P[][]; // P[i][j] --> the 2^j th ancestor of node i
... | /content/code_sandbox/graphs/trees/LCA.java | java | 2016-05-29T16:04:20 | 2024-08-15T19:22:08 | Competitive-programming-library | AhmadElsagheer/Competitive-programming-library | 2,432 | 596 |
```java
package graphs.max_flow;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.LinkedList;
import java.util.Queue;
//Try to test the implementation with some input of your choice
public class MaxFlow2 {
static final int INF = (int)1e9;
static int V, s, t, res[][]; //input
static ArrayList... | /content/code_sandbox/graphs/max_flow/MaxFlow2.java | java | 2016-05-29T16:04:20 | 2024-08-15T19:22:08 | Competitive-programming-library | AhmadElsagheer/Competitive-programming-library | 2,432 | 444 |
```java
package graphs.max_flow;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.LinkedList;
import java.util.Queue;
/*
* Max Flow: Edmonds Karp's Algorithm
*/
public class MaxFlow1 {
static final int INF = (int)1e9;
static int V, s, t; //s != t
static ArrayList<Integer>[] adjList;
stat... | /content/code_sandbox/graphs/max_flow/MaxFlow1.java | java | 2016-05-29T16:04:20 | 2024-08-15T19:22:08 | Competitive-programming-library | AhmadElsagheer/Competitive-programming-library | 2,432 | 391 |
```java
package graphs.max_flow;
import java.util.LinkedList;
import java.util.Queue;
//Try to test the implementation with some input of your choice
public class MaxFlow3 {
static final int INF = (int)1e9;
static int V, s, t, c[][]; //input
static int pushRelabel() //O(V^3)
{
int[] h = new int[V], e = ne... | /content/code_sandbox/graphs/max_flow/MaxFlow3.java | java | 2016-05-29T16:04:20 | 2024-08-15T19:22:08 | Competitive-programming-library | AhmadElsagheer/Competitive-programming-library | 2,432 | 573 |
```java
package strings;
public class SuffixArray {
int[] SA;
SuffixArray(char[] s) //has a terminating character (e.g. '$')
{
int n = s.length, RA[] = new int[n];
SA = new int[n];
for(int i = 0; i < n; ++i) { RA[i] = s[i]; SA[i] = i; }
for(int k = 1; k < n; k <<= 1)
{
sort(SA, RA, n, k);
... | /content/code_sandbox/strings/SuffixArray.java | java | 2016-05-29T16:04:20 | 2024-08-15T19:22:08 | Competitive-programming-library | AhmadElsagheer/Competitive-programming-library | 2,432 | 480 |
```java
package strings;
import java.util.TreeMap;
public class SuffixAutomaton {
int[] link, len;
TreeMap<Character, Integer>[] next;
int lst, idx;
SuffixAutomaton(char[] s)
{
int n = s.length;
link = new int[n<<1];
len = new int[n<<1];
next = new TreeMap[n<<1];
next[0] = new TreeMap<>();
for(cha... | /content/code_sandbox/strings/SuffixAutomaton.java | java | 2016-05-29T16:04:20 | 2024-08-15T19:22:08 | Competitive-programming-library | AhmadElsagheer/Competitive-programming-library | 2,432 | 304 |
```java
package strings;
public class Z_Algorithm {
static int[] zAlgo(char[] s)
{
int n = s.length;
int[] z = new int[n];
for(int i = 1, l = 0, r = 0; i < n; ++i)
{
if(i <= r)
z[i] = Math.min(r - i + 1, z[i - l]);
while(i + z[i] < n && s[z[i]] == s[i + z[i]])
++z[i];
if(i + z[i] - 1 > r)
... | /content/code_sandbox/strings/Z_Algorithm.java | java | 2016-05-29T16:04:20 | 2024-08-15T19:22:08 | Competitive-programming-library | AhmadElsagheer/Competitive-programming-library | 2,432 | 155 |
```java
package strings;
public class PrefixAutomaton {
//Prefix Function: pi[k] = length of longest proper prefix matching a suffix ending at k
static int[] prefixFunction(char[] s) // O(n)
{
int n = s.length, pi[] = new int[n];
for(int i = 1, j = 0; i < n; ++i) //j = pi[i-1] at the beginning of every iter... | /content/code_sandbox/strings/PrefixAutomaton.java | java | 2016-05-29T16:04:20 | 2024-08-15T19:22:08 | Competitive-programming-library | AhmadElsagheer/Competitive-programming-library | 2,432 | 334 |
```java
package strings;
public class SuffixTrie {
static final int R = 26; //Alphabet (lowercase etters in below implementation)
static class Node { Node[] next = new Node[R]; int val = -1; }
Node root = new Node();
void put(char[] s, int idx) // O(n) where n = |s|. Can be implemented recursively
{
... | /content/code_sandbox/strings/SuffixTrie.java | java | 2016-05-29T16:04:20 | 2024-08-15T19:22:08 | Competitive-programming-library | AhmadElsagheer/Competitive-programming-library | 2,432 | 216 |
```java
package strings;
import java.util.Arrays;
public class AhoCorasick {
static final int k = 26;
static class Node
{
int p, c, link = -1;
boolean leaf;
Node(int a, int b) { p = a; c = b; }
int[] next = new int[26], go = new int[26];
{
Arrays.fill(next, -1);
Arrays.fill(go, -1);
}
}... | /content/code_sandbox/strings/AhoCorasick.java | java | 2016-05-29T16:04:20 | 2024-08-15T19:22:08 | Competitive-programming-library | AhmadElsagheer/Competitive-programming-library | 2,432 | 381 |
```java
package strings;
public class Manacher {
static int[][] manacher(char[] s)
{
int n = s.length, d1[] = new int[n], d2[] = new int[n];
//Calculation of odd-length palindromes
for(int i = 0, l = 0, r = -1; i < n; ++i)
{
int k = i > r ? 1 : Math.min(r - i + 1, d1[l + r - i]);
while(i + k < n && i... | /content/code_sandbox/strings/Manacher.java | java | 2016-05-29T16:04:20 | 2024-08-15T19:22:08 | Competitive-programming-library | AhmadElsagheer/Competitive-programming-library | 2,432 | 357 |
```jupyter notebook
{
"cells": [
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"import pandas as pd\n",
"import numpy as np"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed"... | /content/code_sandbox/4. Resampling.ipynb | jupyter notebook | 2016-06-28T02:57:43 | 2024-08-16T13:43:39 | TimeSeriesAnalysisWithPython | AileenNielsen/TimeSeriesAnalysisWithPython | 1,800 | 1,075 |
```jupyter notebook
{
"cells": [
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"import matplotlib.pylab as plt\n",
"%matplotlib inline\n",
"from matplotlib.pylab import rcParams\n",
"rcParams['figure.figsize'] = 15... | /content/code_sandbox/9. Clustering & Classification.ipynb | jupyter notebook | 2016-06-28T02:57:43 | 2024-08-16T13:43:39 | TimeSeriesAnalysisWithPython | AileenNielsen/TimeSeriesAnalysisWithPython | 1,800 | 1,318 |
```jupyter notebook
{
"cells": [
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"import pandas as pd\n",
"import numpy as np"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed"... | /content/code_sandbox/1. Dates & Times.ipynb | jupyter notebook | 2016-06-28T02:57:43 | 2024-08-16T13:43:39 | TimeSeriesAnalysisWithPython | AileenNielsen/TimeSeriesAnalysisWithPython | 1,800 | 2,813 |
```jupyter notebook
{
"cells": [
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"import pandas as pd\n",
"import numpy as np"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed"... | /content/code_sandbox/3. Reading in data and making sensible data frames.ipynb | jupyter notebook | 2016-06-28T02:57:43 | 2024-08-16T13:43:39 | TimeSeriesAnalysisWithPython | AileenNielsen/TimeSeriesAnalysisWithPython | 1,800 | 2,057 |
```jupyter notebook
{
"cells": [
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"import pandas as pd\n",
"import numpy as np\n",
"import matplotlib.pylab as plt\n",
"%matplotlib inline\n",
"from matplotlib.pylab ... | /content/code_sandbox/7. Forecasting.ipynb | jupyter notebook | 2016-06-28T02:57:43 | 2024-08-16T13:43:39 | TimeSeriesAnalysisWithPython | AileenNielsen/TimeSeriesAnalysisWithPython | 1,800 | 2,192 |
```jupyter notebook
{
"cells": [
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"import numpy as np\n",
"import pandas as pd"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed"... | /content/code_sandbox/2. Time Zone Handling.ipynb | jupyter notebook | 2016-06-28T02:57:43 | 2024-08-16T13:43:39 | TimeSeriesAnalysisWithPython | AileenNielsen/TimeSeriesAnalysisWithPython | 1,800 | 1,169 |
```jupyter notebook
{
"cells": [
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"import matplotlib.pylab as plt\n",
"%matplotlib inline\n",
"import numpy as np\n",
"from numpy import fft\n",
"import pandas as pd"... | /content/code_sandbox/8. Spectral Analysis.ipynb | jupyter notebook | 2016-06-28T02:57:43 | 2024-08-16T13:43:39 | TimeSeriesAnalysisWithPython | AileenNielsen/TimeSeriesAnalysisWithPython | 1,800 | 2,021 |
```jupyter notebook
{
"cells": [
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"%matplotlib inline\n",
"from matplotlib.pylab import plt\n",
"\n",
"import pandas as pd\n",
"import numpy as np\n",
"import sta... | /content/code_sandbox/6. Trend & Seasonality.ipynb | jupyter notebook | 2016-06-28T02:57:43 | 2024-08-16T13:43:39 | TimeSeriesAnalysisWithPython | AileenNielsen/TimeSeriesAnalysisWithPython | 1,800 | 6,533 |
```jupyter notebook
{
"cells": [
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"%matplotlib inline \n",
"import matplotlib.pylab\n",
"import numpy as np\n",
"import pandas as pd"
]
},
{
"cell_type": "code... | /content/code_sandbox/5. Moving Window Functions.ipynb | jupyter notebook | 2016-06-28T02:57:43 | 2024-08-16T13:43:39 | TimeSeriesAnalysisWithPython | AileenNielsen/TimeSeriesAnalysisWithPython | 1,800 | 1,333 |
```python
#!/usr/bin/env python3
# This is free and unencumbered software released into the public
# domain.
# Anyone is free to copy, modify, publish, use, compile, sell, or
# distribute this software, either in source code form or as a
# compiled binary, for any purpose, commercial or non-commercial, and
# by any m... | /content/code_sandbox/update-readmes.py | python | 2016-05-29T15:31:22 | 2024-08-13T08:27:57 | python-tutorial | Akuli/python-tutorial | 1,350 | 834 |
```python
#!/usr/bin/env python3
# This is free and unencumbered software released into the public
# domain.
# Anyone is free to copy, modify, publish, use, compile, sell, or
# distribute this software, either in source code form or as a
# compiled binary, for any purpose, commercial or non-commercial, and
# by any m... | /content/code_sandbox/linkcheck.py | python | 2016-05-29T15:31:22 | 2024-08-13T08:27:57 | python-tutorial | Akuli/python-tutorial | 1,350 | 1,125 |
```python
# This is free and unencumbered software released into the public
# domain.
# Anyone is free to copy, modify, publish, use, compile, sell, or
# distribute this software, either in source code form or as a
# compiled binary, for any purpose, commercial or non-commercial, and
# by any means.
# In jurisdiction... | /content/code_sandbox/common.py | python | 2016-05-29T15:31:22 | 2024-08-13T08:27:57 | python-tutorial | Akuli/python-tutorial | 1,350 | 1,130 |
```css
/* This file is used by the HTML files that make-html.py creates.
Customize this if you want to create HTML files with different
colors. See also make-html.py's --pygments-style option. */
body {
color: white;
background-color: #222222;
}
a {
color: orange;
}
``` | /content/code_sandbox/html-style.css | css | 2016-05-29T15:31:22 | 2024-08-13T08:27:57 | python-tutorial | Akuli/python-tutorial | 1,350 | 70 |
```python
#!/usr/bin/env python3
# This is free and unencumbered software released into the public
# domain.
# Anyone is free to copy, modify, publish, use, compile, sell, or
# distribute this software, either in source code form or as a
# compiled binary, for any purpose, commercial or non-commercial, and
# by any m... | /content/code_sandbox/update-ends.py | python | 2016-05-29T15:31:22 | 2024-08-13T08:27:57 | python-tutorial | Akuli/python-tutorial | 1,350 | 1,097 |
```python
#!/usr/bin/env python3
# This is free and unencumbered software released into the public
# domain.
# Anyone is free to copy, modify, publish, use, compile, sell, or
# distribute this software, either in source code form or as a
# compiled binary, for any purpose, commercial or non-commercial, and
# by any m... | /content/code_sandbox/make-html.py | python | 2016-05-29T15:31:22 | 2024-08-13T08:27:57 | python-tutorial | Akuli/python-tutorial | 1,350 | 2,181 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="255,240,165"
"Colour1"="255,176,59"
"Colour2"="19,119,61"
"Colour3"="19,119,61"
"Colour4"="140,40,0"
"Colour5"="255,255,255"
"Colour6"="0,0,0"
"Colour7"="85,85,85"
"Colour8"="187,0,0"
"... | /content/code_sandbox/13. Grass.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="255,255,255"
"Colour1"="255,255,169"
"Colour2"="50,50,50"
"Colour3"="50,50,50"
"Colour4"="214,214,214"
"Colour5"="255,255,255"
"Colour6"="50,50,50"
"Colour7"="83,83,83"
"Colour8"="210,8... | /content/code_sandbox/18. Idletoes.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="101,123,131"
"Colour1"="88,110,117"
"Colour2"="253,246,227"
"Colour3"="238,232,213"
"Colour4"="238,232,213"
"Colour5"="101,123,131"
"Colour6"="7,54,66"
"Colour7"="0,43,54"
"Colour8"="22... | /content/code_sandbox/38. Solarized Light.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="62,62,62"
"Colour1"="201,85,0"
"Colour2"="244,244,244"
"Colour3"="244,244,244"
"Colour4"="63,63,63"
"Colour5"="62,62,62"
"Colour6"="62,62,62"
"Colour7"="102,102,102"
"Colour8"="151,11,2... | /content/code_sandbox/12. github.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="160,160,160"
"Colour1"="255,255,255"
"Colour2"="27,29,30"
"Colour3"="27,29,30"
"Colour4"="0,0,0"
"Colour5"="252,151,31"
"Colour6"="27,29,30"
"Colour7"="80,83,84"
"Colour8"="249,38,114"
... | /content/code_sandbox/44. Thayer.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="187,187,187"
"Colour1"="255,255,255"
"Colour2"="0,0,0"
"Colour3"="85,85,85"
"Colour4"="0,0,0"
"Colour5"="0,255,0"
"Colour6"="0,0,0"
"Colour7"="85,85,85"
"Colour8"="187,0,0"
"Colour9"="2... | /content/code_sandbox/20. Igvita Light.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="247,247,247"
"Colour1"="202,99,30"
"Colour2"="14,16,10"
"Colour3"="14,16,10"
"Colour4"="159,218,156"
"Colour5"="247,247,247"
"Colour6"="77,77,77"
"Colour7"="90,90,90"
"Colour8"="199,0,4... | /content/code_sandbox/22. Kibble.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="255,255,255"
"Colour1"="255,132,0"
"Colour2"="0,0,0"
"Colour3"="0,0,0"
"Colour4"="220,50,47"
"Colour5"="255,255,255"
"Colour6"="0,0,0"
"Colour7"="27,29,33"
"Colour8"="220,50,47"
"Colour... | /content/code_sandbox/41. Sympfonic.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="255,250,244"
"Colour1"="158,156,154"
"Colour2"="14,16,25"
"Colour3"="14,16,25"
"Colour4"="255,255,255"
"Colour5"="255,0,24"
"Colour6"="35,35,35"
"Colour7"="68,68,68"
"Colour8"="255,0,15... | /content/code_sandbox/02. Argonaut.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="210,216,217"
"Colour1"="236,236,236"
"Colour2"="61,63,65"
"Colour3"="61,63,65"
"Colour4"="112,130,132"
"Colour5"="0,40,49"
"Colour6"="37,41,42"
"Colour7"="37,41,42"
"Colour8"="242,72,64... | /content/code_sandbox/39. Solarized Darcula.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="219,219,219"
"Colour1"="255,255,255"
"Colour2"="0,0,0"
"Colour3"="0,0,0"
"Colour4"="187,187,187"
"Colour5"="255,255,255"
"Colour6"="87,87,87"
"Colour7"="38,38,38"
"Colour8"="255,27,0"
"... | /content/code_sandbox/16. Hurtado.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="215,201,167"
"Colour1"="223,189,34"
"Colour2"="122,37,30"
"Colour3"="122,37,30"
"Colour4"="255,255,255"
"Colour5"="0,0,0"
"Colour6"="0,0,0"
"Colour7"="85,85,85"
"Colour8"="255,63,0"
"Co... | /content/code_sandbox/35. Red Sands.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="237,237,237"
"Colour1"="255,248,216"
"Colour2"="34,34,37"
"Colour3"="34,34,37"
"Colour4"="34,34,37"
"Colour5"="237,237,237"
"Colour6"="0,0,0"
"Colour7"="93,80,74"
"Colour8"="208,14,24"
... | /content/code_sandbox/14. Highway.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="217,239,211"
"Colour1"="159,255,109"
"Colour2"="58,61,63"
"Colour3"="58,61,63"
"Colour4"="66,255,88"
"Colour5"="217,239,211"
"Colour6"="31,31,31"
"Colour7"="3,39,16"
"Colour8"="251,0,42... | /content/code_sandbox/17. Ic Green Ppl.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```javascript
// Registry find library
var Registry = function(iTree, sComputerName) {
this.iTree = (iTree || Registry.HKEY_LOCAL_MACHINE);
this.sComputerName = (sComputerName || '.');
var locStr = 'winmgmts:{impersonationLevel=impersonate}//'
+ this.sComputerName
+ '/root/default:StdRe... | /content/code_sandbox/_puttycolor.js | javascript | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 1,361 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="224,219,183"
"Colour1"="255,248,216"
"Colour2"="42,31,29"
"Colour3"="42,31,29"
"Colour4"="87,61,38"
"Colour5"="87,61,38"
"Colour6"="87,61,38"
"Colour7"="155,108,74"
"Colour8"="190,45,38... | /content/code_sandbox/03. Birds Of Paradise.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="255,255,255"
"Colour1"="255,94,125"
"Colour2"="0,0,0"
"Colour3"="0,0,0"
"Colour4"="187,187,187"
"Colour5"="255,255,255"
"Colour6"="0,0,0"
"Colour7"="85,85,85"
"Colour8"="255,85,85"
"Col... | /content/code_sandbox/07. Dark Pastel.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="219,219,219"
"Colour1"="255,255,255"
"Colour2"="0,0,0"
"Colour3"="0,0,0"
"Colour4"="187,187,187"
"Colour5"="255,255,255"
"Colour6"="0,0,0"
"Colour7"="85,85,85"
"Colour8"="229,34,34"
"Co... | /content/code_sandbox/29. Monokai Stevelosh.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="59,35,34"
"Colour1"="142,42,25"
"Colour2"="223,219,195"
"Colour3"="223,219,195"
"Colour4"="115,99,90"
"Colour5"="0,0,0"
"Colour6"="0,0,0"
"Colour7"="128,128,128"
"Colour8"="204,0,0"
"Co... | /content/code_sandbox/31. Novel.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="255,255,255"
"Colour1"="255,255,255"
"Colour2"="23,19,16"
"Colour3"="23,19,16"
"Colour4"="255,255,255"
"Colour5"="255,255,255"
"Colour6"="23,19,16"
"Colour7"="23,19,16"
"Colour8"="128,0... | /content/code_sandbox/30. Neopolitan.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="201,201,201"
"Colour1"="255,255,255"
"Colour2"="26,24,24"
"Colour3"="26,24,24"
"Colour4"="255,255,255"
"Colour5"="201,201,201"
"Colour6"="48,43,42"
"Colour7"="77,78,72"
"Colour8"="167,7... | /content/code_sandbox/40. Sundried.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="209,195,184"
"Colour1"="209,195,184"
"Colour2"="46,44,40"
"Colour3"="46,44,40"
"Colour4"="209,195,184"
"Colour5"="209,195,184"
"Colour6"="113,115,112"
"Colour7"="46,44,40"
"Colour8"="14... | /content/code_sandbox/33. Papirus Dark.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="0,255,0"
"Colour1"="0,255,0"
"Colour2"="0,0,0"
"Colour3"="0,0,0"
"Colour4"="35,255,24"
"Colour5"="255,0,24"
"Colour6"="0,0,0"
"Colour7"="102,102,102"
"Colour8"="153,0,0"
"Colour9"="229,... | /content/code_sandbox/15. Homebrew.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="242,242,242"
"Colour1"="255,255,255"
"Colour2"="0,0,0"
"Colour3"="0,0,0"
"Colour4"="77,77,77"
"Colour5"="255,255,255"
"Colour6"="0,0,0"
"Colour7"="102,102,102"
"Colour8"="153,0,0"
"Colo... | /content/code_sandbox/34. Pro.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="255,255,255"
"Colour1"="255,255,255"
"Colour2"="50,50,50"
"Colour3"="50,50,50"
"Colour4"="214,214,214"
"Colour5"="255,255,255"
"Colour6"="53,53,53"
"Colour7"="83,83,83"
"Colour8"="210,8... | /content/code_sandbox/09. Espresso.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="185,188,186"
"Colour1"="254,255,178"
"Colour2"="31,31,31"
"Colour3"="31,31,31"
"Colour4"="248,62,25"
"Colour5"="185,188,186"
"Colour6"="58,61,67"
"Colour7"="136,137,135"
"Colour8"="190,... | /content/code_sandbox/28. Monokai Dimmed.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="212,231,212"
"Colour1"="100,136,144"
"Colour2"="36,52,53"
"Colour3"="36,52,53"
"Colour4"="87,100,122"
"Colour5"="212,231,212"
"Colour6"="117,117,117"
"Colour7"="138,138,138"
"Colour8"="... | /content/code_sandbox/36. Seafoam Pastel.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="217,230,242"
"Colour1"="217,230,242"
"Colour2"="13,25,38"
"Colour3"="13,25,38"
"Colour4"="217,230,242"
"Colour5"="217,230,242"
"Colour6"="0,0,0"
"Colour7"="38,38,38"
"Colour8"="184,122,... | /content/code_sandbox/04. Blazer.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="215,208,199"
"Colour1"="255,255,255"
"Colour2"="21,21,21"
"Colour3"="21,21,21"
"Colour4"="255,137,57"
"Colour5"="215,208,199"
"Colour6"="16,16,16"
"Colour7"="64,64,64"
"Colour8"="232,79... | /content/code_sandbox/49. X Dotshare.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="197,200,198"
"Colour1"="234,234,234"
"Colour2"="29,31,33"
"Colour3"="0,0,0"
"Colour4"="197,200,198"
"Colour5"="197,200,198"
"Colour6"="29,31,33"
"Colour7"="0,0,0"
"Colour8"="204,102,102... | /content/code_sandbox/46. Tomorrow Night.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="174,164,122"
"Colour1"="244,244,244"
"Colour2"="25,28,39"
"Colour3"="25,28,39"
"Colour4"="146,128,91"
"Colour5"="174,164,122"
"Colour6"="24,24,24"
"Colour7"="85,85,85"
"Colour8"="129,0,... | /content/code_sandbox/06. Ciapre.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="131,148,150"
"Colour1"="147,161,161"
"Colour2"="0,43,54"
"Colour3"="7,54,66"
"Colour4"="0,43,54"
"Colour5"="238,232,213"
"Colour6"="7,54,66"
"Colour7"="0,43,54"
"Colour8"="220,50,47"
"C... | /content/code_sandbox/37. Solarized Dark.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="196,197,181"
"Colour1"="196,197,181"
"Colour2"="26,26,26"
"Colour3"="26,26,26"
"Colour4"="246,247,236"
"Colour5"="196,197,181"
"Colour6"="26,26,26"
"Colour7"="98,94,76"
"Colour8"="244,0... | /content/code_sandbox/27. Monokai Soda.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="175,194,194"
"Colour1"="255,255,255"
"Colour2"="0,0,0"
"Colour3"="0,0,0"
"Colour4"="255,255,255"
"Colour5"="175,194,194"
"Colour6"="0,0,0"
"Colour7"="0,0,0"
"Colour8"="255,48,48"
"Colou... | /content/code_sandbox/24. Liquid Carbon Transparent.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="255,255,255"
"Colour1"="255,215,0"
"Colour2"="51,51,51"
"Colour3"="51,51,51"
"Colour4"="0,255,0"
"Colour5"="255,255,255"
"Colour6"="77,77,77"
"Colour7"="85,85,85"
"Colour8"="255,43,43"
... | /content/code_sandbox/08. Desert.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="255,255,255"
"Colour1"="255,255,255"
"Colour2"="51,51,51"
"Colour3"="85,85,85"
"Colour4"="0,0,0"
"Colour5"="0,255,0"
"Colour6"="77,77,77"
"Colour7"="85,85,85"
"Colour8"="255,43,43"
"Col... | /content/code_sandbox/19. Igvita Desert.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="255,255,212"
"Colour1"="255,255,212"
"Colour2"="20,20,20"
"Colour3"="20,20,20"
"Colour4"="255,255,255"
"Colour5"="255,255,212"
"Colour6"="20,20,20"
"Colour7"="38,38,38"
"Colour8"="192,1... | /content/code_sandbox/47. Twilight.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="224,219,183"
"Colour1"="255,248,216"
"Colour2"="35,35,44"
"Colour3"="35,35,44"
"Colour4"="87,61,38"
"Colour5"="87,61,38"
"Colour6"="87,61,38"
"Colour7"="155,108,74"
"Colour8"="190,45,38... | /content/code_sandbox/10. Fish Of Paradise.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="255,255,255"
"Colour1"="255,255,255"
"Colour2"="34,79,188"
"Colour3"="34,79,188"
"Colour4"="127,127,127"
"Colour5"="255,255,255"
"Colour6"="0,0,0"
"Colour7"="102,102,102"
"Colour8"="153... | /content/code_sandbox/32. Ocean.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="220,220,204"
"Colour1"="220,220,204"
"Colour2"="63,63,63"
"Colour3"="63,63,63"
"Colour4"="115,99,90"
"Colour5"="0,0,0"
"Colour6"="77,77,77"
"Colour7"="112,144,128"
"Colour8"="112,80,80"... | /content/code_sandbox/50. Zenburn.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="220,220,204"
"Colour1"="255,94,125"
"Colour2"="37,35,79"
"Colour3"="37,35,79"
"Colour4"="255,85,85"
"Colour5"="255,255,255"
"Colour6"="37,35,79"
"Colour7"="112,144,128"
"Colour8"="112,8... | /content/code_sandbox/48. Vaughn.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="0,0,0"
"Colour1"="0,0,0"
"Colour2"="255,255,255"
"Colour3"="255,255,255"
"Colour4"="127,127,127"
"Colour5"="0,0,0"
"Colour6"="0,0,0"
"Colour7"="102,102,102"
"Colour8"="153,0,0"
"Colour9... | /content/code_sandbox/43. Terminal Basic.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="236,240,254"
"Colour1"="246,255,235"
"Colour2"="35,37,55"
"Colour3"="35,37,55"
"Colour4"="254,205,94"
"Colour5"="236,240,254"
"Colour6"="3,7,60"
"Colour7"="108,91,48"
"Colour8"="198,0,7... | /content/code_sandbox/11. Fish Tank.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="175,194,194"
"Colour1"="255,255,255"
"Colour2"="48,48,48"
"Colour3"="48,48,48"
"Colour4"="48,48,48"
"Colour5"="175,194,194"
"Colour6"="0,0,0"
"Colour7"="0,0,0"
"Colour8"="255,48,48"
"Co... | /content/code_sandbox/23. Liquid Carbon.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="208,208,208"
"Colour1"="229,229,229"
"Colour2"="38,38,38"
"Colour3"="38,38,38"
"Colour4"="228,201,175"
"Colour5"="208,208,208"
"Colour6"="28,28,28"
"Colour7"="28,28,28"
"Colour8"="214,1... | /content/code_sandbox/42. Teerb.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="175,194,194"
"Colour1"="255,255,255"
"Colour2"="0,0,0"
"Colour3"="0,0,0"
"Colour4"="255,255,255"
"Colour5"="175,194,194"
"Colour6"="188,204,205"
"Colour7"="255,255,255"
"Colour8"="255,4... | /content/code_sandbox/25. Liquid Carbon Transparent Inverse.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="216,222,233"
"Colour1"="147,161,161"
"Colour2"="52,61,70"
"Colour3"="79,91,102"
"Colour4"="0,43,54"
"Colour5"="216,222,233"
"Colour6"="79,91,102"
"Colour7"="0,43,56"
"Colour8"="236,95,1... | /content/code_sandbox/51. Mariana.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="77,77,76"
"Colour1"="234,234,234"
"Colour2"="250,250,250"
"Colour3"="0,0,0"
"Colour4"="214,214,214"
"Colour5"="77,77,76"
"Colour6"="142,144,140"
"Colour7"="0,0,0"
"Colour8"="255,51,52"
... | /content/code_sandbox/45. Tomorrow.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="0,0,0"
"Colour1"="0,0,0"
"Colour2"="254,244,156"
"Colour3"="254,244,156"
"Colour4"="127,127,127"
"Colour5"="0,0,0"
"Colour6"="0,0,0"
"Colour7"="102,102,102"
"Colour8"="204,0,0"
"Colour9... | /content/code_sandbox/26. Man Page.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="230,230,230"
"Colour1"="255,255,255"
"Colour2"="0,0,0"
"Colour3"="0,0,0"
"Colour4"="187,187,187"
"Colour5"="255,255,255"
"Colour6"="0,0,0"
"Colour7"="100,102,102"
"Colour8"="187,0,0"
"C... | /content/code_sandbox/01. Apple Terminal.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="160,160,160"
"Colour1"="207,207,207"
"Colour2"="35,35,35"
"Colour3"="35,35,35"
"Colour4"="160,160,160"
"Colour5"="160,160,160"
"Colour6"="48,48,48"
"Colour7"="104,104,104"
"Colour8"="21... | /content/code_sandbox/21. Invisibone.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Colour0"="217,230,242"
"Colour1"="217,111,95"
"Colour2"="41,38,47"
"Colour3"="41,38,47"
"Colour4"="217,230,242"
"Colour5"="217,230,242"
"Colour6"="0,0,0"
"Colour7"="50,50,50"
"Colour8"="195,115,1... | /content/code_sandbox/05. Chalkboard.reg | unknown | 2016-04-01T10:00:42 | 2024-08-13T21:14:19 | putty-color-themes | AlexAkulov/putty-color-themes | 1,115 | 273 |
```unknown
{
"bitwise": true,
"immed": true,
"newcap": true,
"noarg": true,
"noempty": true,
"nonew": true,
"trailing": true,
"maxlen": 200,
"boss": true,
"eqnull": true,
"expr": true,
"globalstrict": true,
"laxbreak": true,
"loopfunc": true,
"sub": true,
"undef": true,
"indent": 2,
... | /content/code_sandbox/.jshintrc | unknown | 2016-01-04T01:19:52 | 2024-08-15T22:13:36 | pev | AlexTatiyants/pev | 2,757 | 145 |
```yaml
pev:
build: .
ports:
- "8000:8000"
volumes:
- ./:/var/www/pev/
``` | /content/code_sandbox/docker-compose.yml | yaml | 2016-01-04T01:19:52 | 2024-08-15T22:13:36 | pev | AlexTatiyants/pev | 2,757 | 34 |
```unknown
FROM debian:jessie
RUN apt-get update && apt-get -y install apt-transport-https curl g++ make python ruby
RUN curl -sL path_to_url | bash -
RUN apt-get -y install nodejs
COPY tsdrc ~/.tsdrc
COPY . /var/www/pev
WORKDIR /var/www/pev
RUN npm install -g gulp
RUN npm install
CMD cd /var/www/pev && npm st... | /content/code_sandbox/Dockerfile | unknown | 2016-01-04T01:19:52 | 2024-08-15T22:13:36 | pev | AlexTatiyants/pev | 2,757 | 99 |
```xml
import * as gulp from 'gulp';
import {runSequence, task} from './tools/utils';
// --------------
// Clean (override).
gulp.task('clean', task('clean', 'all'));
gulp.task('clean.dist', task('clean', 'dist'));
gulp.task('clean.test', task('clean', 'test'));
gulp.task('clean.tmp', task('clean', 'tmp'));
... | /content/code_sandbox/gulpfile.ts | xml | 2016-01-04T01:19:52 | 2024-08-15T22:13:36 | pev | AlexTatiyants/pev | 2,757 | 439 |
```unknown
{
"strictSSL": false
}
``` | /content/code_sandbox/tsdrc | unknown | 2016-01-04T01:19:52 | 2024-08-15T22:13:36 | pev | AlexTatiyants/pev | 2,757 | 10 |
```javascript
// Turn on full stack traces in errors to help debugging
Error.stackTraceLimit=Infinity;
jasmine.DEFAULT_TIMEOUT_INTERVAL = 100;
// Cancel Karma's synchronous start,
// we will call `__karma__.start()` later, once all the specs are loaded.
__karma__.loaded = function() {};
System.config({
baseURL: '/... | /content/code_sandbox/test-main.js | javascript | 2016-01-04T01:19:52 | 2024-08-15T22:13:36 | pev | AlexTatiyants/pev | 2,757 | 341 |
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title><%= APP_TITLE %></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- inject:css -->
<!-- endinject -->
</he... | /content/code_sandbox/app/index.html | html | 2016-01-04T01:19:52 | 2024-08-15T22:13:36 | pev | AlexTatiyants/pev | 2,757 | 172 |
```xml
import {provide} from 'angular2/core';
import {bootstrap} from 'angular2/platform/browser';
import {ROUTER_PROVIDERS, LocationStrategy, HashLocationStrategy} from 'angular2/router';
import {App} from './components/app/app';
bootstrap(App, [
ROUTER_PROVIDERS,
provide(LocationStrategy, { useClass: HashLocatio... | /content/code_sandbox/app/bootstrap.ts | xml | 2016-01-04T01:19:52 | 2024-08-15T22:13:36 | pev | AlexTatiyants/pev | 2,757 | 75 |
```javascript
// Karma configuration
// Generated on Wed Jul 15 2015 09:44:02 GMT+0200 (Romance Daylight Time)
'use strict';
module.exports = function(config) {
config.set({
// base path that will be used to resolve all patterns (eg. files, exclude)
basePath: './',
// frameworks to use
// availabl... | /content/code_sandbox/karma.conf.js | javascript | 2016-01-04T01:19:52 | 2024-08-15T22:13:36 | pev | AlexTatiyants/pev | 2,757 | 713 |
```xml
export class HighlightType {
static NONE: string = 'none';
static DURATION: string = 'duration';
static ROWS: string = 'rows';
static COST: string = 'cost';
}
export enum EstimateDirection {
over,
under
}
export class ViewMode {
static FULL: string = 'full';
static COMPACT: stri... | /content/code_sandbox/app/enums.ts | xml | 2016-01-04T01:19:52 | 2024-08-15T22:13:36 | pev | AlexTatiyants/pev | 2,757 | 91 |
```xml
import {Pipe} from 'angular2/core';
/// <reference path="moment.d.ts" />
@Pipe({ name: 'momentDate' })
export class MomentDatePipe {
transform(value: string, args: string[]): any {
return moment(value).format('LLL');
}
}
@Pipe({ name: 'duration' })
export class DurationPipe {
transform(valu... | /content/code_sandbox/app/pipes.ts | xml | 2016-01-04T01:19:52 | 2024-08-15T22:13:36 | pev | AlexTatiyants/pev | 2,757 | 324 |
```xml
export interface IPlan {
id: string;
name: string;
content: any;
query: string;
createdOn: Date;
planStats: any;
formattedQuery: string;
}
``` | /content/code_sandbox/app/interfaces/iplan.ts | xml | 2016-01-04T01:19:52 | 2024-08-15T22:13:36 | pev | AlexTatiyants/pev | 2,757 | 45 |
```html
<div class="page">
<button class="pull-right btn btn-link" (click)="prefill()">create a sample plan</button>
<span class="text-muted">For best results, use <code>EXPLAIN (ANALYZE, COSTS, VERBOSE, BUFFERS, FORMAT JSON)</code><br>
Psql users can export the plan to a file using <code>psql -qAt -f expl... | /content/code_sandbox/app/components/plan-new/plan-new.html | html | 2016-01-04T01:19:52 | 2024-08-15T22:13:36 | pev | AlexTatiyants/pev | 2,757 | 276 |
```xml
import {IPlan} from '../../interfaces/iplan';
import {Component, OnInit} from 'angular2/core';
import {HighlightType, EstimateDirection, ViewMode} from '../../enums';
import {DurationPipe, DurationUnitPipe} from '../../pipes';
import {PlanService} from '../../services/plan-service';
import {SyntaxHighlightServi... | /content/code_sandbox/app/components/plan-node/plan-node.ts | xml | 2016-01-04T01:19:52 | 2024-08-15T22:13:36 | pev | AlexTatiyants/pev | 2,757 | 1,752 |
```html
<div class="plan-node"
[class.expanded]="showDetails"
[class.compact]="viewOptions.viewMode === viewModes.COMPACT"
[class.dot]="viewOptions.viewMode === viewModes.DOT">
<header (click)="showDetails = !showDetails" tooltip="view node details">
<h4>{{getNodeName()}}</h4>
<span *ngIf="view... | /content/code_sandbox/app/components/plan-node/plan-node.html | html | 2016-01-04T01:19:52 | 2024-08-15T22:13:36 | pev | AlexTatiyants/pev | 2,757 | 1,204 |
```xml
import {Component, OnInit} from 'angular2/core';
import {ROUTER_DIRECTIVES} from 'angular2/router';
import {IPlan} from '../../interfaces/iplan';
import {PlanService} from '../../services/plan-service';
import {PlanNew} from '../plan-new/plan-new';
import {MomentDatePipe} from '../../pipes';
@Component({
... | /content/code_sandbox/app/components/plan-list/plan-list.ts | xml | 2016-01-04T01:19:52 | 2024-08-15T22:13:36 | pev | AlexTatiyants/pev | 2,757 | 300 |
```html
<div class="page">
<div class="hero-container" *ngIf="plans.length === 0">
Welcome to PEV! Please <a [routerLink]="['/PlanNew']">submit</a> a plan for visualization
</div>
<table class="table pad-bottom">
<tr *ngFor="#plan of plans">
<!-- this is a hack that should be converted to a pro... | /content/code_sandbox/app/components/plan-list/plan-list.html | html | 2016-01-04T01:19:52 | 2024-08-15T22:13:36 | pev | AlexTatiyants/pev | 2,757 | 334 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.