text
stringlengths
9
39.2M
dir
stringlengths
26
295
lang
stringclasses
185 values
created_date
timestamp[us]
updated_date
timestamp[us]
repo_name
stringlengths
1
97
repo_full_name
stringlengths
7
106
star
int64
1k
183k
len_tokens
int64
1
13.8M
```scss @font-face { font-family: 'noto'; src: url('../fonts/noto-sans-regular.ttf') format('truetype'); font-weight: 300; font-style: normal; } @font-face { font-family: 'noto'; src: url('../fonts/noto-sans-italic.ttf') format('truetype'); font-weight: 300; font-style: italic; } @font-face { font-f...
/content/code_sandbox/app/assets/sass/_fonts.scss
scss
2016-01-04T01:19:52
2024-08-15T22:13:36
pev
AlexTatiyants/pev
2,757
270
```scss .btn { border-radius: $border-radius-base; padding: $padding-base $padding-lg; font-size: $font-size-base; line-height: 1.2; text-decoration: none; text-transform: uppercase; cursor: pointer; margin-left: $padding-base; &-default { border: 1px solid $blue; color: $blue; back...
/content/code_sandbox/app/assets/sass/_buttons.scss
scss
2016-01-04T01:19:52
2024-08-15T22:13:36
pev
AlexTatiyants/pev
2,757
519
```scss $connector-height: 12px; $connector-line: 2px solid darken($line-color, 10%); .plan { padding-bottom: $padding-lg * 3; margin-left: 100px; ul { display: flex; padding-top: $connector-height; position: relative; margin: auto; transition: all 0.5s; margin-top: -5px; // vertical connector...
/content/code_sandbox/app/assets/sass/_plan.scss
scss
2016-01-04T01:19:52
2024-08-15T22:13:36
pev
AlexTatiyants/pev
2,757
779
```scss //vars $page-width: 1000px; $padding-base: 6px; $padding-sm: 3px; $padding-lg: 10px; $padding-xl: 18px; $font-size-base: 13px; $font-size-xs: round($font-size-base * 0.7); $font-size-sm: round($font-size-base * 0.9); $font-size-lg: round($font-size-base * 1.3); $font-size-xl: round($font-size-base * 1.7); $f...
/content/code_sandbox/app/assets/sass/_variables.scss
scss
2016-01-04T01:19:52
2024-08-15T22:13:36
pev
AlexTatiyants/pev
2,757
409
```scss nav { font-size: round($font-size-base * 1.3); background-color: #fff; padding: round($padding-lg * 1.5); .nav-container { width: $page-width; margin: auto; } .about { float: right; line-height: 2; margin-left: $padding-xl; } } ```
/content/code_sandbox/app/assets/sass/_nav.scss
scss
2016-01-04T01:19:52
2024-08-15T22:13:36
pev
AlexTatiyants/pev
2,757
83
```scss // Spinning Icons // -------------------------- .#{$fa-css-prefix}-spin { -webkit-animation: fa-spin 2s infinite linear; animation: fa-spin 2s infinite linear; } .#{$fa-css-prefix}-pulse { -webkit-animation: fa-spin 1s infinite steps(8); animation: fa-spin 1s infinite steps(8); } @-we...
/content/code_sandbox/app/assets/sass/font-awesome/_animated.scss
scss
2016-01-04T01:19:52
2024-08-15T22:13:36
pev
AlexTatiyants/pev
2,757
195
```scss // Icon Sizes // ------------------------- /* makes the font 33% larger relative to the icon container */ .#{$fa-css-prefix}-lg { font-size: (4em / 3); line-height: (3em / 4); vertical-align: -15%; } .#{$fa-css-prefix}-2x { font-size: 2em; } .#{$fa-css-prefix}-3x { font-size: 3em; } .#{$fa-css-prefix}-4x...
/content/code_sandbox/app/assets/sass/font-awesome/_larger.scss
scss
2016-01-04T01:19:52
2024-08-15T22:13:36
pev
AlexTatiyants/pev
2,757
128
```scss /* FONT PATH * -------------------------- */ @font-face { font-family: 'FontAwesome'; src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}'); src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'), url('#{$fa-font-path}/fontawesome-web...
/content/code_sandbox/app/assets/sass/font-awesome/_path.scss
scss
2016-01-04T01:19:52
2024-08-15T22:13:36
pev
AlexTatiyants/pev
2,757
220
```scss // Bordered & Pulled // ------------------------- .#{$fa-css-prefix}-border { padding: .2em .25em .15em; border: solid .08em $fa-border-color; border-radius: .1em; } .#{$fa-css-prefix}-pull-left { float: left; } .#{$fa-css-prefix}-pull-right { float: right; } .#{$fa-css-prefix} { &.#{$fa-css-prefix}-...
/content/code_sandbox/app/assets/sass/font-awesome/_bordered-pulled.scss
scss
2016-01-04T01:19:52
2024-08-15T22:13:36
pev
AlexTatiyants/pev
2,757
190
```scss // List Icons // ------------------------- .#{$fa-css-prefix}-ul { padding-left: 0; margin-left: $fa-li-width; list-style-type: none; > li { position: relative; } } .#{$fa-css-prefix}-li { position: absolute; left: -$fa-li-width; width: $fa-li-width; top: (2em / 14); text-align: center; &.#...
/content/code_sandbox/app/assets/sass/font-awesome/_list.scss
scss
2016-01-04T01:19:52
2024-08-15T22:13:36
pev
AlexTatiyants/pev
2,757
122
```scss /*! * Font Awesome 4.5.0 by @davegandy - path_to_url - @fontawesome */ @import "variables"; @import "mixins"; @import "path"; @import "core"; @import "larger"; @import "fixed-width"; @import "list"; @import "bordered-pulled"; @import "animated"; @import "rotated-flipped"; @import "stacked"; @import "icons";...
/content/code_sandbox/app/assets/sass/font-awesome/_styles.scss
scss
2016-01-04T01:19:52
2024-08-15T22:13:36
pev
AlexTatiyants/pev
2,757
98
```scss // Base Class Definition // ------------------------- .#{$fa-css-prefix} { display: inline-block; font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration font-size: inherit; // can't have font-size inherit on line above, so need to override t...
/content/code_sandbox/app/assets/sass/font-awesome/_core.scss
scss
2016-01-04T01:19:52
2024-08-15T22:13:36
pev
AlexTatiyants/pev
2,757
113
```scss // Stacked Icons // ------------------------- .#{$fa-css-prefix}-stack { position: relative; display: inline-block; width: 2em; height: 2em; line-height: 2em; vertical-align: middle; } .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { position: absolute; left: 0; width: 100%; text-...
/content/code_sandbox/app/assets/sass/font-awesome/_stacked.scss
scss
2016-01-04T01:19:52
2024-08-15T22:13:36
pev
AlexTatiyants/pev
2,757
155
```css html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,...
/content/code_sandbox/app/assets/styles.css
css
2016-01-04T01:19:52
2024-08-15T22:13:36
pev
AlexTatiyants/pev
2,757
10,718
```scss // Variables // -------------------------- $fa-font-path: "../fonts" !default; $fa-font-size-base: 14px !default; $fa-line-height-base: 1 !default; //$fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.5.0/fonts" !default; // for referencing Bootstrap CDN font files directly $fa-css-prefix...
/content/code_sandbox/app/assets/sass/font-awesome/_variables.scss
scss
2016-01-04T01:19:52
2024-08-15T22:13:36
pev
AlexTatiyants/pev
2,757
7,871
```scss // Rotated & Flipped Icons // ------------------------- .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } .#{$fa-css-prefix}-flip-horizontal { @includ...
/content/code_sandbox/app/assets/sass/font-awesome/_rotated-flipped.scss
scss
2016-01-04T01:19:52
2024-08-15T22:13:36
pev
AlexTatiyants/pev
2,757
217
```scss // Fixed Width Icons // ------------------------- .#{$fa-css-prefix}-fw { width: (18em / 14); text-align: center; } ```
/content/code_sandbox/app/assets/sass/font-awesome/_fixed-width.scss
scss
2016-01-04T01:19:52
2024-08-15T22:13:36
pev
AlexTatiyants/pev
2,757
34
```scss // Mixins // -------------------------- @mixin fa-icon() { display: inline-block; font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration font-size: inherit; // can't have font-size inherit on line above, so need to override text-rendering: a...
/content/code_sandbox/app/assets/sass/font-awesome/_mixins.scss
scss
2016-01-04T01:19:52
2024-08-15T22:13:36
pev
AlexTatiyants/pev
2,757
239
```scss /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen readers do not read off random characters that represent icons */ .#{$fa-css-prefix}-glass:before { content: $fa-var-glass; } .#{$fa-css-prefix}-music:before { content: $fa-var-music; } .#{$fa-css-prefix}-search:before { content: $fa-v...
/content/code_sandbox/app/assets/sass/font-awesome/_icons.scss
scss
2016-01-04T01:19:52
2024-08-15T22:13:36
pev
AlexTatiyants/pev
2,757
12,756
```emacs lisp ((emacs-lisp-mode (indent-tabs-mode . nil) (tab-width . 2)) (git-commit-mode (git-commit-major-mode . git-commit-elisp-text-mode))) ```
/content/code_sandbox/.dir-locals.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
42
```org # -*- fill-column: 100 -*- #+STARTUP: content * Changelog ** current master - Deprecated ~treemacs-window-background-color~ in favour of ~treemacs-window-background-face~ and ~treemacs-hl-line-face~ - Added ~treemacs-copy-absolute-path-at-point~ - Added ~treemacs-start-on-boot~ - Made it possible to disable w...
/content/code_sandbox/Changelog.org
org
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
2,079
```org # -*- fill-column: 120 -*- * Content :TOC:noexport: - [[#treemacs-extension-tutorial][Treemacs Extension Tutorial]] - [[#intro][Intro]] - [[#setup-basics][Setup Basics]] - [[#defining-node-types][Defining Node Types]] - [[#en...
/content/code_sandbox/Extensions.org
org
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
4,510
```org # -*- fill-column: 120 org-list-indent-offset: 1 toc-org-max-depth: 2 org-hide-emphasis-markers: nil -*- #+STARTUP: noinlineimages [[path_to_url [[path_to_url#/treemacs][file:path_to_url [[path_to_url#/treemacs][file:path_to_url * Treemacs - a tree layout file explorer for Emacs ...
/content/code_sandbox/README.org
org
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
16,578
```emacs lisp ;;; -*- lexical-binding: t -*- ;;; Based on path_to_url (require 'bytecomp) (require 'checkdoc) (require 'dash) (require 's) (defconst all-el-files (append (directory-files "./src/elisp" :full ".el") (directory-files "./src/extra" :full ".el"))) (defconst valid-doc-words ...
/content/code_sandbox/test/checkdock.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
962
```emacs lisp (defconst FOO) (defun fn1 ()) (defun fn2 ()) ```
/content/code_sandbox/test/testdir1/testdir2/testdir3/testfile.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
15
```org * Foo ** Foo2 *** Foo3 * Bar ```
/content/code_sandbox/test/testdir1/testdir2/testdir3/testfile.org
org
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
15
```python from subprocess import Popen, PIPE import sys STATUS_CMD = "git status -sb" def main(): proc = Popen(STATUS_CMD, shell=True, stdout=PIPE, bufsize=100) if (proc.wait() != 0): sys.exit(2) line = proc.stdout.readline() i_open = line.find(b"[") i_close = line.find(b"]") if (i_...
/content/code_sandbox/src/scripts/treemacs-git-commit-diff.py
python
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
365
```python from subprocess import Popen, PIPE from os.path import exists import sys GIT_CMD = "git clean -ndX" STDOUT = sys.stdout.buffer def quote(string): return b'"' + string + b'"' def process_git_output(root, proc): root_bytes = bytes(root, "utf-8") count = 0 for line in proc.stdout: # ...
/content/code_sandbox/src/scripts/treemacs-find-ignored-files.py
python
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
313
```python from subprocess import Popen, PIPE import sys # Command line arguments are a list of maildirs. # The output is a list of items in the form '((P1 A1) (P2 A2))' where P is the node path for a maildir # node, and A is the mail count annotation text # Exmaple: '(((treemacs-mu4e "/web/") " (176)")((treemacs-mu4e ...
/content/code_sandbox/src/scripts/treemacs-count-mail.py
python
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
522
```python from os import listdir from os.path import isdir from posixpath import join import sys import os LIMIT = int(sys.argv[1]) SHOW_ALL = sys.argv[2] == 't' ROOTS = sys.argv[3:] STDOUT = sys.stdout # special workaround for windows platforms # the default `join' implementation cannot quite deal with windo...
/content/code_sandbox/src/scripts/treemacs-dirs-to-collapse.py
python
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
705
```python from subprocess import run, Popen, PIPE, DEVNULL, check_output import sys import os # There are 3+ command line arguments: # 1) the file to update # 2) the file's previous state, to check if things changed at all # 3) the file's parents that need to be updated as well FILE = sys.argv[1] OLD_FACE = sys.argv[...
/content/code_sandbox/src/scripts/treemacs-single-file-git-status.py
python
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
898
```python from subprocess import Popen, PIPE from os import listdir, environ from os.path import isdir, islink from posixpath import join import sys # The script is supplied with the followig command line arguments # 1) the repository root - used only for file-joining to an absolute path # the actual working direct...
/content/code_sandbox/src/scripts/treemacs-git-status.py
python
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
1,171
```emacs lisp ;;; treemacs-test.el --- Tests for treemacs -*- lexical-binding: t -*- ;; This program is free software; you can redistribute it and/or modify ;; (at your option) any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied ...
/content/code_sandbox/test/treemacs-test.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
23,644
```emacs lisp ;;; treemacs.el --- A tree style file viewer package -*- lexical-binding: t -*- ;; This program is free software; you can redistribute it and/or modify ;; (at your option) any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the...
/content/code_sandbox/src/elisp/treemacs-mouse-interface.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
4,061
```emacs lisp ;;; treemacs.el --- A tree style file viewer package -*- lexical-binding: t -*- ;; This program is free software; you can redistribute it and/or modify ;; (at your option) any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the...
/content/code_sandbox/src/elisp/treemacs-interface.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
15,335
```emacs lisp ;;; treemacs.el --- A tree style file viewer package -*- lexical-binding: t -*- ;; This program is free software; you can redistribute it and/or modify ;; (at your option) any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the...
/content/code_sandbox/src/elisp/treemacs-treelib.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
10,693
```emacs lisp ;;; treemacs.el --- A tree style file viewer package -*- lexical-binding: t -*- ;; This program is free software; you can redistribute it and/or modify ;; (at your option) any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the...
/content/code_sandbox/src/elisp/treemacs-rendering.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
13,299
```emacs lisp ;;; treemacs.el --- A tree style file explorer package -*- lexical-binding: t -*- ;; Author: Alexander Miller <alexanderm@web.de> ;; Package-Requires: ((emacs "26.1") (cl-lib "0.5") (dash "2.11.0") (s "1.12.0") (ace-window "0.9.0") (pfuture "1.7") (hydra "0.13.2") (ht "2.2") (cfrs "1.3.2")) ;; Homepage:...
/content/code_sandbox/src/elisp/treemacs.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
2,952
```emacs lisp ;;; treemacs.el --- A tree style file viewer package -*- lexical-binding: t -*- ;; This program is free software; you can redistribute it and/or modify ;; (at your option) any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the...
/content/code_sandbox/src/elisp/treemacs-file-management.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
5,633
```emacs lisp ;;; treemacs.el --- A tree style file viewer package -*- lexical-binding: t -*- ;; This program is free software; you can redistribute it and/or modify ;; (at your option) any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the...
/content/code_sandbox/src/elisp/treemacs-scope.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
2,518
```emacs lisp ;;; treemacs.el --- A tree style file viewer package -*- lexical-binding: t -*- ;; This program is free software; you can redistribute it and/or modify ;; (at your option) any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the...
/content/code_sandbox/src/elisp/treemacs-dom.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
2,596
```emacs lisp ;;; treemacs.el --- A tree style file viewer package -*- lexical-binding: t -*- ;; This program is free software; you can redistribute it and/or modify ;; (at your option) any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the...
/content/code_sandbox/src/elisp/treemacs-tag-follow-mode.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
3,563
```emacs lisp ;;; treemacs.el --- A tree style file viewer package -*- lexical-binding: t -*- ;; This program is free software; you can redistribute it and/or modify ;; (at your option) any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the...
/content/code_sandbox/src/elisp/treemacs-tags.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
5,261
```emacs lisp ;;; treemacs.el --- A tree style file viewer package -*- lexical-binding: t -*- ;; This program is free software; you can redistribute it and/or modify ;; (at your option) any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the...
/content/code_sandbox/src/elisp/treemacs-macros.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
5,699
```emacs lisp ;;; treemacs.el --- A tree style file viewer package -*- lexical-binding: t -*- ;; This program is free software; you can redistribute it and/or modify ;; (at your option) any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the...
/content/code_sandbox/src/elisp/treemacs-logging.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
728
```emacs lisp ;;; treemacs.el --- A tree style file viewer package -*- lexical-binding: t -*- ;; This program is free software; you can redistribute it and/or modify ;; (at your option) any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the...
/content/code_sandbox/src/elisp/treemacs-core-utils.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
13,019
```emacs lisp ;;; treemacs.el --- A tree style file viewer package -*- lexical-binding: t -*- ;; This program is free software; you can redistribute it and/or modify ;; (at your option) any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the...
/content/code_sandbox/src/elisp/treemacs-header-line.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
1,225
```emacs lisp ;;; treemacs.el --- A tree style file viewer package -*- lexical-binding: t -*- ;; This program is free software; you can redistribute it and/or modify ;; (at your option) any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the...
/content/code_sandbox/src/elisp/treemacs-visuals.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
1,257
```emacs lisp ;;; treemacs-bookmarks.el --- A tree style file viewer package -*- lexical-binding: t -*- ;; This program is free software; you can redistribute it and/or modify ;; (at your option) any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; withou...
/content/code_sandbox/src/elisp/treemacs-bookmarks.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
2,127
```emacs lisp ;;; treemacs.el --- A tree style file viewer package -*- lexical-binding: t -*- ;; This program is free software; you can redistribute it and/or modify ;; (at your option) any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the...
/content/code_sandbox/src/elisp/treemacs-annotations.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
3,249
```emacs lisp ;;; treemacs.el --- A tree style file viewer package -*- lexical-binding: t -*- ;; This program is free software; you can redistribute it and/or modify ;; (at your option) any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the...
/content/code_sandbox/src/elisp/treemacs-icons.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
9,196
```emacs lisp ;;; treemacs-diagnostics.el --- A tree style file viewer package -*- lexical-binding: t -*- ;; This program is free software; you can redistribute it and/or modify ;; (at your option) any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; with...
/content/code_sandbox/src/elisp/treemacs-diagnostics.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
817
```emacs lisp ;;; treemacs.el --- A tree style file viewer package -*- lexical-binding: t -*- ;; This program is free software; you can redistribute it and/or modify ;; (at your option) any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the...
/content/code_sandbox/src/elisp/treemacs-faces.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
1,507
```emacs lisp ;;; treemacs.el --- A tree style file viewer package -*- lexical-binding: t -*- ;; This program is free software; you can redistribute it and/or modify ;; (at your option) any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the...
/content/code_sandbox/src/elisp/treemacs-persistence.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
4,297
```emacs lisp ;;; treemacs.el --- A tree style file viewer package -*- lexical-binding: t -*- ;; This program is free software; you can redistribute it and/or modify ;; (at your option) any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the...
/content/code_sandbox/src/elisp/treemacs-follow-mode.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
1,064
```emacs lisp ;;; treemacs.el --- A tree style file viewer package -*- lexical-binding: t -*- ;; This program is free software; you can redistribute it and/or modify ;; (at your option) any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the...
/content/code_sandbox/src/elisp/treemacs-customization.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
11,690
```emacs lisp ;;; treemacs.el --- A tree style file viewer package -*- lexical-binding: t -*- ;; This program is free software; you can redistribute it and/or modify ;; (at your option) any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the...
/content/code_sandbox/src/elisp/treemacs-filewatch-mode.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
3,353
```emacs lisp ;;; treemacs-mode.el --- A tree style file viewer package -*- lexical-binding: t -*- ;; This program is free software; you can redistribute it and/or modify ;; (at your option) any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without eve...
/content/code_sandbox/src/elisp/treemacs-mode.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
4,994
```emacs lisp ;;; treemacs.el --- A tree style file viewer package -*- lexical-binding: t -*- ;; This program is free software; you can redistribute it and/or modify ;; (at your option) any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the...
/content/code_sandbox/src/elisp/treemacs-themes.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
1,300
```emacs lisp ;;; treemacs.el --- A tree style file viewer package -*- lexical-binding: t -*- ;; This program is free software; you can redistribute it and/or modify ;; (at your option) any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the...
/content/code_sandbox/src/elisp/treemacs-fringe-indicator.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
1,294
```emacs lisp ;;; treemacs.el --- A tree style file viewer package -*- lexical-binding: t -*- ;; This program is free software; you can redistribute it and/or modify ;; (at your option) any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the...
/content/code_sandbox/src/elisp/treemacs-workspaces.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
8,858
```emacs lisp ;;; treemacs.el --- A tree style file viewer package -*- lexical-binding: t -*- ;; This program is free software; you can redistribute it and/or modify ;; (at your option) any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the...
/content/code_sandbox/src/elisp/treemacs-project-follow-mode.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
1,164
```emacs lisp ;;; treemacs.el --- A tree style file viewer package -*- lexical-binding: t -*- ;; This program is free software; you can redistribute it and/or modify ;; (at your option) any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the...
/content/code_sandbox/src/elisp/treemacs-compatibility.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
1,801
```emacs lisp ;;; treemacs-git-commit-diff-mode.el --- A tree style file viewer package -*- lexical-binding: t -*- ;; This program is free software; you can redistribute it and/or modify ;; (at your option) any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRA...
/content/code_sandbox/src/elisp/treemacs-git-commit-diff-mode.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
1,116
```emacs lisp ;;; treemacs.el --- A tree style file viewer package -*- lexical-binding: t -*- ;; This program is free software; you can redistribute it and/or modify ;; (at your option) any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the...
/content/code_sandbox/src/elisp/treemacs-peek-mode.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
1,370
```emacs lisp ;;; treemacs.el --- A tree style file viewer package -*- lexical-binding: t -*- ;; This program is free software; you can redistribute it and/or modify ;; (at your option) any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the...
/content/code_sandbox/src/elisp/treemacs-async.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
5,744
```emacs lisp ;;; treemacs.el --- A tree style file viewer package -*- lexical-binding: t -*- ;; This program is free software; you can redistribute it and/or modify ;; (at your option) any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the...
/content/code_sandbox/src/elisp/treemacs-hydras.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
5,078
```emacs lisp ;;; treemacs-tab-bar.el --- Tab bar integration for treemacs -*- lexical-binding: t -*- ;; Author: Alexander Miller <alexanderm@web.de> ;; Jason Dufair <jase@dufair.org> ;; Aaron Jensen <aaronjensen@gmail.com> ;; Package-Requires: ((emacs "27.1") (treemacs "0.0") (dash "2.11.0")) ;; Version: 0 ;; Ho...
/content/code_sandbox/src/extra/treemacs-tab-bar.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
1,329
```emacs lisp ;;; treemacs.el --- A tree style file viewer package -*- lexical-binding: t -*- ;; This program is free software; you can redistribute it and/or modify ;; (at your option) any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the...
/content/code_sandbox/src/elisp/treemacs-extensions.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
5,782
```emacs lisp ;;; treemacs-mu4e.el --- mu4e integration for treemacs -*- lexical-binding: t -*- ;; Author: Alexander Miller <alexanderm@web.de> ;; Package-Requires: ((emacs "26.1") (treemacs "0.0") (pfuture "1.7") (dash "2.11.0") (s "1.10.0") (ht "2.2")) ;; Homepage: path_to_url ;; Version: 0 ;; This program is free...
/content/code_sandbox/src/extra/treemacs-mu4e.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
3,577
```emacs lisp ;;; treemacs-persp.el --- Persp-mode integration for treemacs -*- lexical-binding: t -*- ;; Author: Alexander Miller <alexanderm@web.de> ;; Package-Requires: ((emacs "26.1") (treemacs "0.0") (persp-mode "2.9.7") (dash "2.11.0")) ;; Version: 0 ;; Homepage: path_to_url ;; This program is free software; y...
/content/code_sandbox/src/extra/treemacs-persp.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
1,456
```emacs lisp ;;; treemacs-evil.el --- Evil mode integration for treemacs -*- lexical-binding: t -*- ;; Author: Alexander Miller <alexanderm@web.de> ;; Package-Requires: ((emacs "26.1") (evil "1.2.12") (treemacs "0.0")) ;; Version: 0 ;; Homepage: path_to_url ;; This program is free software; you can redistribute it ...
/content/code_sandbox/src/extra/treemacs-evil.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
1,590
```emacs lisp ;;; treemacs-projectile.el --- Projectile integration for treemacs -*- lexical-binding: t -*- ;; Author: Alexander Miller <alexanderm@web.de> ;; Package-Requires: ((emacs "26.1") (projectile "0.14.0") (treemacs "0.0")) ;; Version: 0 ;; Homepage: path_to_url ;; This program is free software; you can red...
/content/code_sandbox/src/extra/treemacs-projectile.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
1,482
```emacs lisp ;;; treemacs-perspective.el --- Perspective integration for treemacs -*- lexical-binding: t -*- ;; Author: Alexander Miller <alexanderm@web.de> ;; Jason Dufair <jase@dufair.org> ;; Package-Requires: ((emacs "26.1") (treemacs "0.0") (perspective "2.8") (dash "2.11.0")) ;; Version: 0 ;; Homepage: path_t...
/content/code_sandbox/src/extra/treemacs-perspective.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
1,464
```emacs lisp ;;; treemacs-magit.el --- Magit integration for treemacs -*- lexical-binding: t -*- ;; Author: Alexander Miller <alexanderm@web.de> ;; Package-Requires: ((emacs "26.1") (treemacs "0.0") (pfuture "1.3" ) (magit "2.90.0")) ;; Version: 0 ;; Homepage: path_to_url ;; This program is free software; you can r...
/content/code_sandbox/src/extra/treemacs-magit.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
2,249
```emacs lisp ;;; treemacs-icons-dired.el --- Treemacs icons for dired -*- lexical-binding: t -*- ;; Author: Alexander Miller <alexanderm@web.de> ;; Package-Requires: ((treemacs "0.0") (emacs "26.1")) ;; Version: 0 ;; Homepage: path_to_url ;; This program is free software; you can redistribute it and/or modify ;; (a...
/content/code_sandbox/src/extra/treemacs-icons-dired.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
1,633
```emacs lisp ;;; treemacs-all-the-icons.el --- all-the-icons integration for treemacs -*- lexical-binding: t -*- ;; Author: Eric Dallo <ercdll1337@gmail.com> ;; Package-Requires: ((emacs "26.1") (all-the-icons "4.0.1") (treemacs "0.0")) ;; Version: 0 ;; Homepage: path_to_url ;; This program is free software; you ca...
/content/code_sandbox/src/extra/treemacs-all-the-icons.el
emacs lisp
2016-07-17T21:13:35
2024-08-16T10:41:21
treemacs
Alexander-Miller/treemacs
2,068
6,804
```javascript const path = require('path') const MiniCssExtractPlugin = require('mini-css-extract-plugin') module.exports = { entry: './src/main.js', output: { path: path.resolve(__dirname, 'public'), filename: 'bundle.js' }, module: { rules: [ { test: /\.jsx?$/, exclude: /n...
/content/code_sandbox/webpack.config.js
javascript
2016-05-27T07:59:24
2024-08-14T13:07:59
ytdl-webserver
Algram/ytdl-webserver
1,436
166
```javascript /* global document */ import React from 'react' import { render } from 'react-dom' import DownloadPanel from './components/DownloadPanel' import './stylesheets/shared.scss' render( <DownloadPanel />, document.getElementById('app') ) ```
/content/code_sandbox/src/main.js
javascript
2016-05-27T07:59:24
2024-08-14T13:07:59
ytdl-webserver
Algram/ytdl-webserver
1,436
51
```javascript #!/usr/bin/env node const http = require('http') const querystring = require('querystring') const postData = querystring.stringify({ 'url': 'path_to_url }) const req = http.request( { host: 'localhost', port: '3000', path: '/download', method: 'POST', headers: { 'Content-T...
/content/code_sandbox/test/e2e.js
javascript
2016-05-27T07:59:24
2024-08-14T13:07:59
ytdl-webserver
Algram/ytdl-webserver
1,436
234
```javascript /* global localStorage */ function getItem (key) { return JSON.parse(localStorage.getItem(key)) } function setItem (key, value) { localStorage.setItem(key, JSON.stringify(value)) } function removeItem (key) { localStorage.removeItem(key) } module.exports = { getItem, setItem, removeItem } ...
/content/code_sandbox/src/javascripts/localStorage.js
javascript
2016-05-27T07:59:24
2024-08-14T13:07:59
ytdl-webserver
Algram/ytdl-webserver
1,436
68
```scss @import "./shared"; .downloadPanel { align-content: center; align-items: flex-center; display: flex; flex-wrap: wrap; height: 100vh; justify-content: center; padding: 0 20px; } ```
/content/code_sandbox/src/stylesheets/DownloadPanel.scss
scss
2016-05-27T07:59:24
2024-08-14T13:07:59
ytdl-webserver
Algram/ytdl-webserver
1,436
56
```scss @import './shared'; .downloadForm { align-items: center; display: flex; justify-content: center; width: 100%; &__input { @include makePanel(); appearance: none; flex: 0 1 500px; font-size: 16px; height: 20px; margin-right: 10px; padding: 10px; &--error { border...
/content/code_sandbox/src/stylesheets/DownloadForm.scss
scss
2016-05-27T07:59:24
2024-08-14T13:07:59
ytdl-webserver
Algram/ytdl-webserver
1,436
214
```javascript /* global XMLHttpRequest */ function get (url) { // Return a new promise. return new Promise((resolve, reject) => { // Do the usual XHR stuff const req = new XMLHttpRequest() req.open('GET', url) req.setRequestHeader('Content-type', 'application/x-www-form-urlencoded') req.onload...
/content/code_sandbox/src/javascripts/helpers.js
javascript
2016-05-27T07:59:24
2024-08-14T13:07:59
ytdl-webserver
Algram/ytdl-webserver
1,436
383
```scss @import "./shared"; .downloadList { @include makePanel(); background: $background_secondary; display: flex; flex: 0 1 600px; flex-wrap: wrap; list-style-type: none; margin-top: 20px; max-height: 80%; overflow-y: auto; position:relative; &__item { display: flex; flex: 1 0 300px; ...
/content/code_sandbox/src/stylesheets/DownloadList.scss
scss
2016-05-27T07:59:24
2024-08-14T13:07:59
ytdl-webserver
Algram/ytdl-webserver
1,436
334
```javascript import React, { Component } from 'react' import PropTypes from 'prop-types' import '../stylesheets/DownloadForm.scss' class DownloadForm extends Component { componentDidMount () { } render () { return ( <form className='downloadForm' onSubmit={this.props.onSubmit}> <input classNa...
/content/code_sandbox/src/components/DownloadForm.js
javascript
2016-05-27T07:59:24
2024-08-14T13:07:59
ytdl-webserver
Algram/ytdl-webserver
1,436
113
```scss @import url(path_to_url $accent_primary: #cc181e; $text_primary: #eeffff; $text_secondary: #d3d0c8; $background_primary: #202530; $background_secondary: #2f343f; @mixin makePanel() { border: none; border-radius: 2px; box-shadow: 0 0 5px rgb(40,40,40); outline: none; } * { margin: 0; padding: 0;...
/content/code_sandbox/src/stylesheets/shared.scss
scss
2016-05-27T07:59:24
2024-08-14T13:07:59
ytdl-webserver
Algram/ytdl-webserver
1,436
312
```javascript import React, { Component } from 'react' import PropTypes from 'prop-types' import '../stylesheets/DownloadList.scss' class DownloadList extends Component { componentDidMount () { } render () { return ( <ul className='downloadList'> {this.props.videos.map((video, index) => ...
/content/code_sandbox/src/components/DownloadList.js
javascript
2016-05-27T07:59:24
2024-08-14T13:07:59
ytdl-webserver
Algram/ytdl-webserver
1,436
299
```javascript /* global document */ import React, { Component } from 'react' import PropTypes from 'prop-types' import { isURL } from 'validator' import DownloadForm from './DownloadForm' import DownloadList from './DownloadList' import { post } from '../javascripts/helpers' import localStorage from '../javascripts/lo...
/content/code_sandbox/src/components/DownloadPanel.js
javascript
2016-05-27T07:59:24
2024-08-14T13:07:59
ytdl-webserver
Algram/ytdl-webserver
1,436
599
```javascript const Hapi = require('@hapi/hapi') const Inert = require('@hapi/inert') const mkdirp = require('mkdirp') const path = require('path') const youtube = require('./handlers/youtube') const server = new Hapi.Server({ port: process.env.PORT || 3000, routes: { files: { relativeTo: path.join(__dir...
/content/code_sandbox/src/server/server.js
javascript
2016-05-27T07:59:24
2024-08-14T13:07:59
ytdl-webserver
Algram/ytdl-webserver
1,436
339
```javascript const path = require('path') const fs = require('fs') const ffmpeg = require('fluent-ffmpeg') const youtubeDl = require('@microlink/youtube-dl') function exists (filename, cb) { fs.access(filename, fs.F_OK, (err) => { if (!err) { cb(true) } else { cb(false) } }) } function do...
/content/code_sandbox/src/server/handlers/youtube.js
javascript
2016-05-27T07:59:24
2024-08-14T13:07:59
ytdl-webserver
Algram/ytdl-webserver
1,436
380
```html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Ytdl - Webserver</title> </head> <body> <div id="app"></div> <script src="bundle.js"></script> </body> </html> ```
/content/code_sandbox/public/index.html
html
2016-05-27T07:59:24
2024-08-14T13:07:59
ytdl-webserver
Algram/ytdl-webserver
1,436
82
```javascript /******/ (function(modules) { // webpackBootstrap /******/ // The module cache /******/ var installedModules = {}; /******/ // The require function /******/ function __webpack_require__(moduleId) { /******/ // Check if module is in cache /******/ if(installedModules[moduleId]) /******/ return...
/content/code_sandbox/public/bundle.js
javascript
2016-05-27T07:59:24
2024-08-14T13:07:59
ytdl-webserver
Algram/ytdl-webserver
1,436
197,723
```yaml line_length: warning: 120 ```
/content/code_sandbox/.swiftlint.yml
yaml
2016-01-19T19:49:55
2024-08-10T21:10:40
Reusable
AliSoftware/Reusable
2,999
10
```ruby Pod::Spec.new do |s| s.cocoapods_version = '~> 1.4' s.name = "Reusable" s.version = "4.1.2" s.summary = "A Swift Mixin to deal with reusable UITableView & UICollectionView cells and XIB-based views" s.description = <<-DESC Reusable is a [Swift Mixin](path_to_url ...
/content/code_sandbox/Reusable.podspec
ruby
2016-01-19T19:49:55
2024-08-10T21:10:40
Reusable
AliSoftware/Reusable
2,999
422
```swift // swift-tools-version:5.4 import PackageDescription let package = Package( name: "Reusable", platforms: [.iOS(.v9), .tvOS(.v9)], products: [ .library(name: "Reusable", targets: ["Reusable"]) ], targets: [ .target( name: "Reusable", path: "Sources" ) ...
/content/code_sandbox/Package.swift
swift
2016-01-19T19:49:55
2024-08-10T21:10:40
Reusable
AliSoftware/Reusable
2,999
98
```yaml opt_in_rules: - empty_count included: - ../Sources - ReusableDemo line_length: warning: 120 error: 160 ```
/content/code_sandbox/Example/.swiftlint.yml
yaml
2016-01-19T19:49:55
2024-08-10T21:10:40
Reusable
AliSoftware/Reusable
2,999
38
```json PODS: - Reusable (4.1.2): - Reusable/Storyboard (= 4.1.2) - Reusable/View (= 4.1.2) - Reusable/Storyboard (4.1.2) - Reusable/View (4.1.2) DEPENDENCIES: - Reusable (from `../`) EXTERNAL SOURCES: Reusable: :path: "../" SPEC CHECKSUMS: Reusable: 6bae6a5e8aa793c9c441db0213c863a64bce9136 ...
/content/code_sandbox/Example/Pods/Manifest.lock
json
2016-01-19T19:49:55
2024-08-10T21:10:40
Reusable
AliSoftware/Reusable
2,999
174
```objective-c #import <Foundation/Foundation.h> @interface PodsDummy_Reusable_tvOS : NSObject @end @implementation PodsDummy_Reusable_tvOS @end ```
/content/code_sandbox/Example/Pods/Target Support Files/Reusable-tvOS/Reusable-tvOS-dummy.m
objective-c
2016-01-19T19:49:55
2024-08-10T21:10:40
Reusable
AliSoftware/Reusable
2,999
27
```objective-c #ifdef __OBJC__ #import <UIKit/UIKit.h> #else #ifndef FOUNDATION_EXPORT #if defined(__cplusplus) #define FOUNDATION_EXPORT extern "C" #else #define FOUNDATION_EXPORT extern #endif #endif #endif FOUNDATION_EXPORT double ReusableVersionNumber; FOUNDATION_EXPORT const unsigned char ReusableVersionString[]...
/content/code_sandbox/Example/Pods/Target Support Files/Reusable-tvOS/Reusable-tvOS-umbrella.h
objective-c
2016-01-19T19:49:55
2024-08-10T21:10:40
Reusable
AliSoftware/Reusable
2,999
64