├── data
└── .gitkeep
├── packages
├── indexer
│ ├── .env
│ ├── data
│ ├── README.md
│ ├── src
│ │ ├── index.ts
│ │ ├── config.ts
│ │ └── main.ts
│ ├── .prettierignore
│ ├── .gitignore
│ ├── nab-indexer.pm2.json
│ ├── .vscode
│ │ └── settings.json
│ ├── .npmignore
│ ├── tsconfig.module.json
│ ├── .github
│ │ ├── CONTRIBUTING.md
│ │ ├── PULL_REQUEST_TEMPLATE.md
│ │ └── ISSUE_TEMPLATE.md
│ ├── .editorconfig
│ └── tslint.json
├── nab-server
│ ├── .env
│ ├── data
│ ├── htdocs
│ ├── peers.yaml
│ ├── .prettierignore
│ ├── nab-server.pm2.json
│ ├── .vscode
│ │ └── settings.json
│ ├── .gitignore
│ ├── .npmignore
│ ├── tsconfig.module.json
│ ├── .github
│ │ ├── CONTRIBUTING.md
│ │ ├── PULL_REQUEST_TEMPLATE.md
│ │ └── ISSUE_TEMPLATE.md
│ └── .editorconfig
├── saidit-ingest
│ ├── .env
│ ├── README.md
│ ├── src
│ │ └── index.ts
│ ├── .prettierignore
│ ├── .gitignore
│ ├── saidit-ingest.pm2.json
│ ├── .npmignore
│ ├── tsconfig.module.json
│ ├── .github
│ │ ├── CONTRIBUTING.md
│ │ ├── PULL_REQUEST_TEMPLATE.md
│ │ └── ISSUE_TEMPLATE.md
│ ├── .editorconfig
│ └── tslint.json
├── notabug
│ ├── src
│ │ ├── vendor
│ │ │ ├── argon2.stub.js
│ │ │ ├── snew-classic-ui
│ │ │ │ ├── static
│ │ │ │ │ ├── css
│ │ │ │ │ │ ├── components
│ │ │ │ │ │ │ ├── mixins.css
│ │ │ │ │ │ │ ├── mixins.css.map
│ │ │ │ │ │ │ ├── colors.css.map
│ │ │ │ │ │ │ ├── variables.css.map
│ │ │ │ │ │ │ ├── animations.css.map
│ │ │ │ │ │ │ ├── colors.css
│ │ │ │ │ │ │ ├── variables.css
│ │ │ │ │ │ │ ├── toggles.css.map
│ │ │ │ │ │ │ ├── animations.css
│ │ │ │ │ │ │ ├── animations.less
│ │ │ │ │ │ │ ├── alerts.less
│ │ │ │ │ │ │ ├── toggles.css
│ │ │ │ │ │ │ ├── image-upload.css.map
│ │ │ │ │ │ │ ├── close.less
│ │ │ │ │ │ │ ├── toggles.less
│ │ │ │ │ │ │ ├── components.less
│ │ │ │ │ │ │ ├── progress.less
│ │ │ │ │ │ │ ├── utils.less
│ │ │ │ │ │ │ ├── image-upload.css
│ │ │ │ │ │ │ └── image-upload.less
│ │ │ │ │ │ ├── expando.css.map
│ │ │ │ │ │ └── modtools.less
│ │ │ │ │ ├── add.png
│ │ │ │ │ ├── alert.png
│ │ │ │ │ ├── award.png
│ │ │ │ │ ├── blank.png
│ │ │ │ │ ├── blued.png
│ │ │ │ │ ├── bluer.png
│ │ │ │ │ ├── cake.png
│ │ │ │ │ ├── check.png
│ │ │ │ │ ├── close.png
│ │ │ │ │ ├── css.png
│ │ │ │ │ ├── eye.png
│ │ │ │ │ ├── find.png
│ │ │ │ │ ├── house.png
│ │ │ │ │ ├── icon.png
│ │ │ │ │ ├── json.png
│ │ │ │ │ ├── kill.png
│ │ │ │ │ ├── mail.png
│ │ │ │ │ ├── map.png
│ │ │ │ │ ├── nsfw.png
│ │ │ │ │ ├── nsfw2.png
│ │ │ │ │ ├── pixel.png
│ │ │ │ │ ├── rss.png
│ │ │ │ │ ├── world.png
│ │ │ │ │ ├── aupgray.gif
│ │ │ │ │ ├── aupgray.png
│ │ │ │ │ ├── aupmod.gif
│ │ │ │ │ ├── aupmod.png
│ │ │ │ │ ├── cclogo.png
│ │ │ │ │ ├── close_x.png
│ │ │ │ │ ├── favicon.ico
│ │ │ │ │ ├── like_ie.png
│ │ │ │ │ ├── modmail.png
│ │ │ │ │ ├── noimage.png
│ │ │ │ │ ├── nothing.png
│ │ │ │ │ ├── online.png
│ │ │ │ │ ├── pencil.png
│ │ │ │ │ ├── report.png
│ │ │ │ │ ├── save_ie.png
│ │ │ │ │ ├── search.png
│ │ │ │ │ ├── shield.png
│ │ │ │ │ ├── spinner.png
│ │ │ │ │ ├── stripe.png
│ │ │ │ │ ├── wired_w.png
│ │ │ │ │ ├── adowngray.gif
│ │ │ │ │ ├── adowngray.png
│ │ │ │ │ ├── adownmod.gif
│ │ │ │ │ ├── adownmod.png
│ │ │ │ │ ├── alert_2x.png
│ │ │ │ │ ├── alien-head.png
│ │ │ │ │ ├── blog_head.png
│ │ │ │ │ ├── blog_snoo.gif
│ │ │ │ │ ├── blog_snoo.png
│ │ │ │ │ ├── breakout.png
│ │ │ │ │ ├── check_2x.png
│ │ │ │ │ ├── close_x_2x.png
│ │ │ │ │ ├── css_liked.png
│ │ │ │ │ ├── css_login.png
│ │ │ │ │ ├── css_saved.png
│ │ │ │ │ ├── css_submit.png
│ │ │ │ │ ├── css_update.png
│ │ │ │ │ ├── defaultapp.png
│ │ │ │ │ ├── dislike_ie.png
│ │ │ │ │ ├── droparrow.gif
│ │ │ │ │ ├── giftgold.png
│ │ │ │ │ ├── gold-coin.png
│ │ │ │ │ ├── gradient.png
│ │ │ │ │ ├── icon-info.png
│ │ │ │ │ ├── icon-touch.png
│ │ │ │ │ ├── littlehead.png
│ │ │ │ │ ├── mailgray.png
│ │ │ │ │ ├── reddit404a.png
│ │ │ │ │ ├── reddit404b.png
│ │ │ │ │ ├── reddit404c.png
│ │ │ │ │ ├── reddit404d.png
│ │ │ │ │ ├── reddit404e.png
│ │ │ │ │ ├── reddit500.png
│ │ │ │ │ ├── reddit_ban.png
│ │ │ │ │ ├── reddit_ie.png
│ │ │ │ │ ├── rightarrow.png
│ │ │ │ │ ├── search-x2.png
│ │ │ │ │ ├── snoo-tray.png
│ │ │ │ │ ├── space-snoo.png
│ │ │ │ │ ├── spinner_2x.png
│ │ │ │ │ ├── spreddit1.gif
│ │ │ │ │ ├── spreddit10.gif
│ │ │ │ │ ├── spreddit11.gif
│ │ │ │ │ ├── spreddit12.gif
│ │ │ │ │ ├── spreddit13.gif
│ │ │ │ │ ├── spreddit14.gif
│ │ │ │ │ ├── spreddit2.gif
│ │ │ │ │ ├── spreddit3.gif
│ │ │ │ │ ├── spreddit4.gif
│ │ │ │ │ ├── spreddit5.gif
│ │ │ │ │ ├── spreddit6.gif
│ │ │ │ │ ├── spreddit7.gif
│ │ │ │ │ ├── spreddit8.gif
│ │ │ │ │ ├── spreddit9.gif
│ │ │ │ │ ├── throbber.gif
│ │ │ │ │ ├── transpLOGO.png
│ │ │ │ │ ├── trending.png
│ │ │ │ │ ├── addmoderator.png
│ │ │ │ │ ├── alien-clippy.png
│ │ │ │ │ ├── aupmod-large.png
│ │ │ │ │ ├── bestof_award.png
│ │ │ │ │ ├── beta.reddit1.png
│ │ │ │ │ ├── beta.reddit2.png
│ │ │ │ │ ├── beta.reddit3.png
│ │ │ │ │ ├── beta.reddit4.png
│ │ │ │ │ ├── close-small.png
│ │ │ │ │ ├── compact
│ │ │ │ │ │ ├── edit.png
│ │ │ │ │ │ ├── hide.png
│ │ │ │ │ │ ├── save.png
│ │ │ │ │ │ ├── context.png
│ │ │ │ │ │ ├── domain.png
│ │ │ │ │ │ ├── email.png
│ │ │ │ │ │ ├── modmail.png
│ │ │ │ │ │ ├── nomail.png
│ │ │ │ │ │ ├── options.png
│ │ │ │ │ │ ├── parent.png
│ │ │ │ │ │ ├── reply.png
│ │ │ │ │ │ ├── report.png
│ │ │ │ │ │ ├── unhide.png
│ │ │ │ │ │ ├── unread.png
│ │ │ │ │ │ ├── unsave.png
│ │ │ │ │ │ ├── upvote.png
│ │ │ │ │ │ ├── collapse.png
│ │ │ │ │ │ ├── downvote.png
│ │ │ │ │ │ ├── havemail.png
│ │ │ │ │ │ ├── permalink.png
│ │ │ │ │ │ ├── selftext.png
│ │ │ │ │ │ ├── throbber.gif
│ │ │ │ │ │ ├── menu-options.png
│ │ │ │ │ │ ├── mobilesprite.png
│ │ │ │ │ │ ├── newmodmail.png
│ │ │ │ │ │ ├── border-button.png
│ │ │ │ │ │ ├── mobilesprite2.png
│ │ │ │ │ │ ├── modmail-active.png
│ │ │ │ │ │ ├── nomail-active.png
│ │ │ │ │ │ ├── options-active.png
│ │ │ │ │ │ ├── options_icons.png
│ │ │ │ │ │ ├── upvote-active.png
│ │ │ │ │ │ ├── youbrokereddit.png
│ │ │ │ │ │ ├── border-button-red.png
│ │ │ │ │ │ ├── downvote-active.png
│ │ │ │ │ │ ├── havemail-active.png
│ │ │ │ │ │ ├── newmodmail-active.png
│ │ │ │ │ │ ├── reddit_startimg.png
│ │ │ │ │ │ ├── selftext-active.png
│ │ │ │ │ │ ├── menu-options-active.png
│ │ │ │ │ │ ├── border-button-active.png
│ │ │ │ │ │ ├── border-button-red-active.png
│ │ │ │ │ │ └── reddit-apple-mobile-device.png
│ │ │ │ │ ├── css_disliked.png
│ │ │ │ │ ├── gagged-alien.png
│ │ │ │ │ ├── gold
│ │ │ │ │ │ ├── endcap.png
│ │ │ │ │ │ ├── gold-snoo.png
│ │ │ │ │ │ ├── snoo-head.png
│ │ │ │ │ │ ├── tikkit-bg.png
│ │ │ │ │ │ ├── comment-gild.png
│ │ │ │ │ │ ├── reddit-golds.png
│ │ │ │ │ │ ├── comment-gild-x2.png
│ │ │ │ │ │ ├── creddits-snoo.png
│ │ │ │ │ │ ├── gold-laurel-bg.png
│ │ │ │ │ │ ├── reddit-creddits.png
│ │ │ │ │ │ ├── reddit-gilding.png
│ │ │ │ │ │ ├── userpage-gild.png
│ │ │ │ │ │ ├── using-creddits.png
│ │ │ │ │ │ ├── gold-insignia-big.png
│ │ │ │ │ │ ├── userpage-gild-x2.png
│ │ │ │ │ │ ├── using-creddits-x2.png
│ │ │ │ │ │ ├── gold-only-upvote-mod.png
│ │ │ │ │ │ ├── goldvertisement-gild.png
│ │ │ │ │ │ ├── goldvertisement-gold.png
│ │ │ │ │ │ ├── goldvertisement-logo.png
│ │ │ │ │ │ ├── gold-only-downvote-mod.png
│ │ │ │ │ │ ├── gold-only-mail-havemail.png
│ │ │ │ │ │ └── gold-only-modmail-havemail.png
│ │ │ │ │ ├── goldmorelink.png
│ │ │ │ │ ├── gradient-nub.png
│ │ │ │ │ ├── green-check.png
│ │ │ │ │ ├── icon-expand.png
│ │ │ │ │ ├── icons
│ │ │ │ │ │ └── report.png
│ │ │ │ │ ├── like_firefox.png
│ │ │ │ │ ├── like_safari.png
│ │ │ │ │ ├── modmailgray.png
│ │ │ │ │ ├── next_organic.png
│ │ │ │ │ ├── over18_icon.png
│ │ │ │ │ ├── pencil-gray.png
│ │ │ │ │ ├── prev_organic.png
│ │ │ │ │ ├── reddit_alien.png
│ │ │ │ │ ├── reddit_edit.png
│ │ │ │ │ ├── reddit_flair.png
│ │ │ │ │ ├── reddit_mute.png
│ │ │ │ │ ├── reddit_rules.png
│ │ │ │ │ ├── reddit_spam.png
│ │ │ │ │ ├── save_firefox.png
│ │ │ │ │ ├── save_safari.png
│ │ │ │ │ ├── search-icon.png
│ │ │ │ │ ├── search-large.png
│ │ │ │ │ ├── self_default.png
│ │ │ │ │ ├── spreddit_ie.png
│ │ │ │ │ ├── submit-hope.png
│ │ │ │ │ ├── throbber_v2.gif
│ │ │ │ │ ├── vid-expanded.png
│ │ │ │ │ ├── youbrokeit1.png
│ │ │ │ │ ├── youbrokeit2.png
│ │ │ │ │ ├── youbrokeit3.png
│ │ │ │ │ ├── adowngray-large.png
│ │ │ │ │ ├── adownmod-large.png
│ │ │ │ │ ├── alert_mouseover.png
│ │ │ │ │ ├── ambivote-icon.png
│ │ │ │ │ ├── aupgray-large.png
│ │ │ │ │ ├── bg-button-add.png
│ │ │ │ │ ├── blog-collapsed.png
│ │ │ │ │ ├── blog-expanded.png
│ │ │ │ │ ├── button-normal.png
│ │ │ │ │ ├── button-pressed.png
│ │ │ │ │ ├── clippy-bullet.png
│ │ │ │ │ ├── close_x_hover.png
│ │ │ │ │ ├── continue-thread.png
│ │ │ │ │ ├── create-a-reddit.png
│ │ │ │ │ ├── dislike_firefox.png
│ │ │ │ │ ├── dislike_safari.png
│ │ │ │ │ ├── dorks-toolbar.png
│ │ │ │ │ ├── droparrowgray.gif
│ │ │ │ │ ├── droparrowwhite.gif
│ │ │ │ │ ├── gradient-button.png
│ │ │ │ │ ├── help
│ │ │ │ │ │ ├── tb-ss-help.png
│ │ │ │ │ │ ├── tb-ss-left.png
│ │ │ │ │ │ ├── tb-ss-link.png
│ │ │ │ │ │ ├── tb-ss-logo.png
│ │ │ │ │ │ ├── tb-ss-close.png
│ │ │ │ │ │ ├── tb-ss-logout.png
│ │ │ │ │ │ ├── tb-ss-middle.png
│ │ │ │ │ │ ├── tb-ss-right.png
│ │ │ │ │ │ ├── tb-ss-whole.png
│ │ │ │ │ │ ├── tb-ss-comment.png
│ │ │ │ │ │ ├── tb-ss-scoreetc.png
│ │ │ │ │ │ ├── tb-ss-username.png
│ │ │ │ │ │ └── tb-ss-serendipity.png
│ │ │ │ │ ├── icon-contract.png
│ │ │ │ │ ├── icon-expand_2x.png
│ │ │ │ │ ├── modactions_lock.png
│ │ │ │ │ ├── modactions_mute.png
│ │ │ │ │ ├── multi_icons
│ │ │ │ │ │ ├── ask.png
│ │ │ │ │ │ ├── diy.png
│ │ │ │ │ │ ├── books.png
│ │ │ │ │ │ ├── cars.png
│ │ │ │ │ │ ├── funny.png
│ │ │ │ │ │ ├── games.png
│ │ │ │ │ │ ├── music.png
│ │ │ │ │ │ ├── news.png
│ │ │ │ │ │ ├── style.png
│ │ │ │ │ │ ├── tech.png
│ │ │ │ │ │ ├── video.png
│ │ │ │ │ │ ├── business.png
│ │ │ │ │ │ ├── comics.png
│ │ │ │ │ │ ├── grooming.png
│ │ │ │ │ │ ├── health.png
│ │ │ │ │ │ ├── military.png
│ │ │ │ │ │ ├── science.png
│ │ │ │ │ │ ├── shopping.png
│ │ │ │ │ │ ├── sports.png
│ │ │ │ │ │ ├── travel.png
│ │ │ │ │ │ ├── philosophy.png
│ │ │ │ │ │ ├── cute_animals.png
│ │ │ │ │ │ ├── entertainment.png
│ │ │ │ │ │ ├── life_advice.png
│ │ │ │ │ │ ├── models_pinup.png
│ │ │ │ │ │ ├── art_and_design.png
│ │ │ │ │ │ ├── food_and_drink.png
│ │ │ │ │ │ ├── unusual_stories.png
│ │ │ │ │ │ └── pictures_and_gifs.png
│ │ │ │ │ ├── page_white_copy.png
│ │ │ │ │ ├── permalink-arrow.png
│ │ │ │ │ ├── reddit_automod.png
│ │ │ │ │ ├── reddit_edited.png
│ │ │ │ │ ├── reddit_firefox.png
│ │ │ │ │ ├── reddit_gold-40.png
│ │ │ │ │ ├── reddit_gold-70.png
│ │ │ │ │ ├── reddit_loading.png
│ │ │ │ │ ├── reddit_modqueue.png
│ │ │ │ │ ├── reddit_reported.png
│ │ │ │ │ ├── reddit_safari.png
│ │ │ │ │ ├── reddit_traffic.png
│ │ │ │ │ ├── self_default2.png
│ │ │ │ │ ├── serendipity!_ie.png
│ │ │ │ │ ├── share-to-email.png
│ │ │ │ │ ├── share-to-tumblr.png
│ │ │ │ │ ├── spreddit_safari.png
│ │ │ │ │ ├── sr-add-button.png
│ │ │ │ │ ├── throbber_v2_2x.gif
│ │ │ │ │ ├── vid-collapsed.png
│ │ │ │ │ ├── welcome-lines.png
│ │ │ │ │ ├── welcome-upvote.png
│ │ │ │ │ ├── widget_arrows.gif
│ │ │ │ │ ├── widget_arrows.png
│ │ │ │ │ ├── xray-snoo-body.png
│ │ │ │ │ ├── xray-snoo-feet.png
│ │ │ │ │ ├── xray-snoo-head.png
│ │ │ │ │ ├── 70x70-placeholder.png
│ │ │ │ │ ├── bg-button-remove.png
│ │ │ │ │ ├── close_x_hover_2x.png
│ │ │ │ │ ├── gradient-nub-gray.png
│ │ │ │ │ ├── icon-circle-check.png
│ │ │ │ │ ├── icon-contract_2x.png
│ │ │ │ │ ├── icon-expand-hover.png
│ │ │ │ │ ├── infobar-icon-lock.png
│ │ │ │ │ ├── modactions_sticky.png
│ │ │ │ │ ├── modactions_unlock.png
│ │ │ │ │ ├── modactions_unmute.png
│ │ │ │ │ ├── quarantine-header.png
│ │ │ │ │ ├── reddit-embed-logo.png
│ │ │ │ │ ├── reddit.com.header.gif
│ │ │ │ │ ├── reddit.com.header.png
│ │ │ │ │ ├── search-mouseover.png
│ │ │ │ │ ├── share-to-facebook.png
│ │ │ │ │ ├── share-to-twitter.png
│ │ │ │ │ ├── snoo-upside-down.png
│ │ │ │ │ ├── spreddit_firefox.png
│ │ │ │ │ ├── sr-remove-button.png
│ │ │ │ │ ├── sr-type-icon-nsfw.png
│ │ │ │ │ ├── upvoted-arrow-bg.png
│ │ │ │ │ ├── widget_arrows_up.gif
│ │ │ │ │ ├── widget_arrows_up.png
│ │ │ │ │ ├── 600x314-placeholder.png
│ │ │ │ │ ├── alert_mouseover_2x.png
│ │ │ │ │ ├── blog-collapsed-hover.png
│ │ │ │ │ ├── blog-expanded-hover.png
│ │ │ │ │ ├── external-link-icon.png
│ │ │ │ │ ├── gradient-button-gray.png
│ │ │ │ │ ├── gradient-nub-hover.png
│ │ │ │ │ ├── icon-contract-hover.png
│ │ │ │ │ ├── icon-expand-hover_2x.png
│ │ │ │ │ ├── infobar-icon-lock_2x.png
│ │ │ │ │ ├── internal-link-icon.png
│ │ │ │ │ ├── mod-action-icon-add.png
│ │ │ │ │ ├── mod-action-icon-edit.png
│ │ │ │ │ ├── modactions_banuser.png
│ │ │ │ │ ├── modactions_editflair.png
│ │ │ │ │ ├── modactions_editrule.png
│ │ │ │ │ ├── modactions_marknsfw.png
│ │ │ │ │ ├── modactions_unbanuser.png
│ │ │ │ │ ├── modactions_unsticky.png
│ │ │ │ │ ├── reddit-button-play.gif
│ │ │ │ │ ├── reddit-button-play.png
│ │ │ │ │ ├── reddit-button-stop.gif
│ │ │ │ │ ├── reddit-embed-logo_2x.png
│ │ │ │ │ ├── reddit-is-down-brb.png
│ │ │ │ │ ├── reddit_moderationlog.png
│ │ │ │ │ ├── reddit_unmoderated.png
│ │ │ │ │ ├── redditheaderScience.png
│ │ │ │ │ ├── search-button-icon.png
│ │ │ │ │ ├── search-mouseover-x2.png
│ │ │ │ │ ├── serendipity!_firefox.png
│ │ │ │ │ ├── serendipity!_safari.png
│ │ │ │ │ ├── share-paper-airplane.png
│ │ │ │ │ ├── share-to-reddit-pm.png
│ │ │ │ │ ├── sidebar-grippy-hide.png
│ │ │ │ │ ├── sidebar-grippy-show.png
│ │ │ │ │ ├── sr-type-icon-banned.png
│ │ │ │ │ ├── sr-type-icon-nsfw_2x.png
│ │ │ │ │ ├── sr-type-icon-private.png
│ │ │ │ │ ├── vid-collapsed-hover.png
│ │ │ │ │ ├── vid-expanded-hover.png
│ │ │ │ │ ├── widget_arrows_down.gif
│ │ │ │ │ ├── widget_arrows_down.png
│ │ │ │ │ ├── action-icon-info-color.png
│ │ │ │ │ ├── base.reddit.com.header.png
│ │ │ │ │ ├── gradient-button-hover.png
│ │ │ │ │ ├── icon-contract-hover_2x.png
│ │ │ │ │ ├── infobar-icon-archived.png
│ │ │ │ │ ├── infobar-icon-banhammer.png
│ │ │ │ │ ├── mod-action-icon-add_2x.png
│ │ │ │ │ ├── mod-action-icon-cancel.png
│ │ │ │ │ ├── mod-action-icon-delete.png
│ │ │ │ │ ├── modactions_approvelink.png
│ │ │ │ │ ├── modactions_createrule.png
│ │ │ │ │ ├── modactions_deleterule.png
│ │ │ │ │ ├── modactions_distinguish.png
│ │ │ │ │ ├── modactions_removelink.png
│ │ │ │ │ ├── modactions_wikirevise.png
│ │ │ │ │ ├── sr-type-icon-approved.png
│ │ │ │ │ ├── sr-type-icon-banned_2x.png
│ │ │ │ │ ├── sr-type-icon-moderator.png
│ │ │ │ │ ├── action-icon-info-color_2x.png
│ │ │ │ │ ├── bg-button-neutral-pressed.png
│ │ │ │ │ ├── icon-circle-exclamation.png
│ │ │ │ │ ├── infobar-icon-archived_2x.png
│ │ │ │ │ ├── infobar-icon-banhammer_2x.png
│ │ │ │ │ ├── interstitial-image-admin.png
│ │ │ │ │ ├── interstitial-image-banned.png
│ │ │ │ │ ├── interstitial-image-locked.png
│ │ │ │ │ ├── interstitial-image-over18.png
│ │ │ │ │ ├── mod-action-icon-cancel_2x.png
│ │ │ │ │ ├── mod-action-icon-confirm.png
│ │ │ │ │ ├── mod-action-icon-delete_2x.png
│ │ │ │ │ ├── mod-action-icon-edit_2x.png
│ │ │ │ │ ├── modactions_addcontributor.png
│ │ │ │ │ ├── modactions_addmoderator.png
│ │ │ │ │ ├── modactions_approvecomment.png
│ │ │ │ │ ├── modactions_editsettings.png
│ │ │ │ │ ├── modactions_removecomment.png
│ │ │ │ │ ├── modactions_setcontestmode.png
│ │ │ │ │ ├── modactions_setpermissions.png
│ │ │ │ │ ├── modactions_wikipermlevel.png
│ │ │ │ │ ├── modtools-page-icon-rules.png
│ │ │ │ │ ├── sr-type-icon-approved_2x.png
│ │ │ │ │ ├── sr-type-icon-moderator_2x.png
│ │ │ │ │ ├── sr-type-icon-private_2x.png
│ │ │ │ │ ├── sr-type-icon-quarantined.png
│ │ │ │ │ ├── sr-type-icon-restricted.png
│ │ │ │ │ ├── bg-button-negative-pressed.png
│ │ │ │ │ ├── bg-button-neutral-unpressed.png
│ │ │ │ │ ├── bg-button-positive-pressed.png
│ │ │ │ │ ├── interstitial-image-archived.png
│ │ │ │ │ ├── interstitial-image-private.png
│ │ │ │ │ ├── mod-action-icon-confirm_2x.png
│ │ │ │ │ ├── mod-action-icon-edit-active.png
│ │ │ │ │ ├── modactions_removemoderator.png
│ │ │ │ │ ├── modactions_setsuggestedsort.png
│ │ │ │ │ ├── modactions_unsetcontestmode.png
│ │ │ │ │ ├── modtools-page-icon-rules_2x.png
│ │ │ │ │ ├── sr-type-icon-quarantined_2x.png
│ │ │ │ │ ├── sr-type-icon-restricted_2x.png
│ │ │ │ │ ├── bg-button-negative-unpressed.png
│ │ │ │ │ ├── bg-button-positive-unpressed.png
│ │ │ │ │ ├── interstitial-image-gold-only.png
│ │ │ │ │ ├── interstitial-image-quarantine.png
│ │ │ │ │ ├── mod-action-icon-delete-active.png
│ │ │ │ │ ├── mod-action-icon-edit-active_2x.png
│ │ │ │ │ ├── modactions_removecontributor.png
│ │ │ │ │ ├── interstitial-image-deleted-user.png
│ │ │ │ │ ├── mod-action-icon-delete-active_2x.png
│ │ │ │ │ ├── modactions_acceptmoderatorinvite.png
│ │ │ │ │ ├── opensearch.xml
│ │ │ │ │ ├── sureroute.html
│ │ │ │ │ └── flask.svg
│ │ │ │ ├── index.js
│ │ │ │ ├── components
│ │ │ │ │ ├── Loading.js
│ │ │ │ │ ├── Link.js
│ │ │ │ │ ├── NavTab.js
│ │ │ │ │ ├── SidebarAd.js
│ │ │ │ │ ├── Markdown.js
│ │ │ │ │ ├── AuthorLink.js
│ │ │ │ │ ├── CommentAreaTitle.js
│ │ │ │ │ ├── AccountActivityBox.js
│ │ │ │ │ ├── Dropdown.js
│ │ │ │ │ ├── Thing.js
│ │ │ │ │ ├── Expando.js
│ │ │ │ │ └── Header.js
│ │ │ │ └── util.js
│ │ │ └── proof-of-work
│ │ │ │ ├── index.js
│ │ │ │ └── pow
│ │ │ │ └── utils
│ │ │ │ └── common.js
│ │ ├── utils
│ │ │ ├── Spinner.js
│ │ │ ├── injectHook.js
│ │ │ ├── slugify.js
│ │ │ ├── locationKey.js
│ │ │ ├── quote.js
│ │ │ ├── ScrollToTop.js
│ │ │ ├── Timestamp.js
│ │ │ └── JavaScriptRequired.js
│ │ ├── Submission
│ │ │ └── index.js
│ │ ├── Voting
│ │ │ ├── index.js
│ │ │ └── pow.worker.js
│ │ ├── media
│ │ │ └── img
│ │ │ │ ├── notabug-logo.png
│ │ │ │ └── powered_by_reddit.png
│ │ ├── Comment
│ │ │ └── index.js
│ │ ├── Chat
│ │ │ ├── index.js
│ │ │ └── LoadingChatMsg.js
│ │ ├── Auth
│ │ │ ├── index.js
│ │ │ ├── Identicon.js
│ │ │ ├── UserIdLink.js
│ │ │ └── UserInfo.js
│ │ ├── Page
│ │ │ ├── index.js
│ │ │ ├── Topics.js
│ │ │ └── Header.js
│ │ └── static
│ │ │ ├── Reddit.js
│ │ │ └── index.js
│ ├── static
│ │ └── argon2
│ ├── CODE_OF_CONDUCT.md
│ ├── .babelrc
│ ├── .gitignore
│ └── README.md
├── nab-wire-validation
│ ├── src
│ │ └── index.ts
│ ├── README.md
│ ├── .prettierignore
│ ├── .gitignore
│ ├── .vscode
│ │ └── settings.json
│ ├── .npmignore
│ ├── tsconfig.module.json
│ ├── .github
│ │ ├── CONTRIBUTING.md
│ │ ├── PULL_REQUEST_TEMPLATE.md
│ │ └── ISSUE_TEMPLATE.md
│ ├── .editorconfig
│ └── tslint.json
├── client
│ ├── README.md
│ ├── .prettierignore
│ ├── .gitignore
│ ├── .npmignore
│ ├── src
│ │ ├── Lingua
│ │ │ ├── index.ts
│ │ │ └── utils.ts
│ │ ├── lib
│ │ │ └── number.spec.ts
│ │ ├── index.ts
│ │ ├── main.ts
│ │ └── adapters.ts
│ ├── tsconfig.module.json
│ ├── .github
│ │ ├── CONTRIBUTING.md
│ │ ├── PULL_REQUEST_TEMPLATE.md
│ │ └── ISSUE_TEMPLATE.md
│ ├── .editorconfig
│ └── tslint.json
└── peer
│ ├── types
│ ├── @notabug
│ │ ├── gun-suppressor.d.ts
│ │ └── gun-suppressor-sear.d.ts
│ └── @chaingun
│ │ └── scope.d.ts
│ ├── tslint.json
│ ├── src
│ ├── Thing
│ │ └── index.ts
│ ├── @notabug
│ │ └── peer.ts
│ ├── Listing
│ │ ├── ListingType
│ │ │ ├── SpaceListing.ts
│ │ │ ├── CommentedListing.ts
│ │ │ ├── CommentListing.ts
│ │ │ ├── InboxListing.ts
│ │ │ └── SpaceCommentListing.ts
│ │ └── Path.ts
│ └── Config.ts
│ ├── .gitignore
│ ├── README.md
│ ├── code-of-conduct.md
│ ├── .editorconfig
│ ├── tsconfig.json
│ └── .travis.yml
├── default.peers.yaml
├── lerna.json
├── .gitignore
├── .gitmodules
├── CODE_OF_CONDUCT.md
└── postinstall.js
/data/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/packages/indexer/.env:
--------------------------------------------------------------------------------
1 | ../../.env
--------------------------------------------------------------------------------
/packages/indexer/data:
--------------------------------------------------------------------------------
1 | ../../data/
--------------------------------------------------------------------------------
/packages/nab-server/.env:
--------------------------------------------------------------------------------
1 | ../../.env
--------------------------------------------------------------------------------
/packages/nab-server/data:
--------------------------------------------------------------------------------
1 | ../../data/
--------------------------------------------------------------------------------
/packages/saidit-ingest/.env:
--------------------------------------------------------------------------------
1 | ../../.env
--------------------------------------------------------------------------------
/default.peers.yaml:
--------------------------------------------------------------------------------
1 | - https://notabug.io
2 |
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/argon2.stub.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/packages/nab-server/htdocs:
--------------------------------------------------------------------------------
1 | ../notabug/htdocs/
--------------------------------------------------------------------------------
/packages/nab-server/peers.yaml:
--------------------------------------------------------------------------------
1 | ../../peers.yaml
--------------------------------------------------------------------------------
/packages/notabug/static/argon2:
--------------------------------------------------------------------------------
1 | ../../../node_modules/argon2-browser/dist/
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/css/components/mixins.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/packages/nab-wire-validation/src/index.ts:
--------------------------------------------------------------------------------
1 | export { Validation } from "./Validation"
--------------------------------------------------------------------------------
/packages/indexer/README.md:
--------------------------------------------------------------------------------
1 | # @notabug/nab-indexer
2 |
3 | Indexer for notabug.io
4 |
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/index.js:
--------------------------------------------------------------------------------
1 | export * from "./components";
2 |
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/css/components/mixins.css.map:
--------------------------------------------------------------------------------
1 | undefined
--------------------------------------------------------------------------------
/lerna.json:
--------------------------------------------------------------------------------
1 | {
2 | "packages": [
3 | "packages/*"
4 | ],
5 | "version": "0.88.2"
6 | }
7 |
--------------------------------------------------------------------------------
/packages/saidit-ingest/README.md:
--------------------------------------------------------------------------------
1 | # @notabug/saidit-ingest
2 |
3 | SaidIt ingest for notabug
4 |
--------------------------------------------------------------------------------
/packages/saidit-ingest/src/index.ts:
--------------------------------------------------------------------------------
1 | export { SaiditIngestStore } from './SaiditIngestStore'
2 |
--------------------------------------------------------------------------------
/packages/client/README.md:
--------------------------------------------------------------------------------
1 | # @notabug/client
2 |
3 | Shared client implementation for notabug.io
4 |
--------------------------------------------------------------------------------
/packages/indexer/src/index.ts:
--------------------------------------------------------------------------------
1 | import { startup } from './startup'
2 |
3 | export default startup
4 |
--------------------------------------------------------------------------------
/packages/peer/types/@notabug/gun-suppressor.d.ts:
--------------------------------------------------------------------------------
1 | export function createSuppressor(conf: any): any;
2 |
--------------------------------------------------------------------------------
/packages/peer/tslint.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": ["tslint-config-standard", "tslint-config-prettier"]
3 | }
4 |
--------------------------------------------------------------------------------
/packages/notabug/src/utils/Spinner.js:
--------------------------------------------------------------------------------
1 | import Spin from "react-spinkit";
2 |
3 | export const Spinner = Spin;
4 |
--------------------------------------------------------------------------------
/packages/client/.prettierignore:
--------------------------------------------------------------------------------
1 | # package.json is formatted by package managers, so we ignore it here
2 | package.json
--------------------------------------------------------------------------------
/packages/indexer/.prettierignore:
--------------------------------------------------------------------------------
1 | # package.json is formatted by package managers, so we ignore it here
2 | package.json
--------------------------------------------------------------------------------
/packages/nab-server/.prettierignore:
--------------------------------------------------------------------------------
1 | # package.json is formatted by package managers, so we ignore it here
2 | package.json
--------------------------------------------------------------------------------
/packages/nab-wire-validation/README.md:
--------------------------------------------------------------------------------
1 | # @notabug/nab-wire-validation
2 |
3 | Wire protocol validation for notabug.io
4 |
--------------------------------------------------------------------------------
/packages/saidit-ingest/.prettierignore:
--------------------------------------------------------------------------------
1 | # package.json is formatted by package managers, so we ignore it here
2 | package.json
--------------------------------------------------------------------------------
/packages/nab-wire-validation/.prettierignore:
--------------------------------------------------------------------------------
1 | # package.json is formatted by package managers, so we ignore it here
2 | package.json
--------------------------------------------------------------------------------
/packages/notabug/src/Submission/index.js:
--------------------------------------------------------------------------------
1 | export { Submission } from "./Submission";
2 | export { SubmissionForm } from "./Form";
3 |
--------------------------------------------------------------------------------
/packages/notabug/src/Voting/index.js:
--------------------------------------------------------------------------------
1 | export * from "./hooks";
2 | export { SidebarVotingStatus } from "./SidebarVotingStatus";
3 |
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/css/components/colors.css.map:
--------------------------------------------------------------------------------
1 | {"version":3,"sources":[],"names":[],"mappings":""}
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/css/components/variables.css.map:
--------------------------------------------------------------------------------
1 | {"version":3,"sources":[],"names":[],"mappings":""}
--------------------------------------------------------------------------------
/packages/notabug/src/utils/injectHook.js:
--------------------------------------------------------------------------------
1 | export const injectHook = customHook => fn => props => fn({ ...props, ...customHook(props) });
2 |
--------------------------------------------------------------------------------
/packages/notabug/src/media/img/notabug-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/media/img/notabug-logo.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/components/Loading.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 |
3 | export default () =>
Loading... ;
4 |
--------------------------------------------------------------------------------
/packages/peer/types/@notabug/gun-suppressor-sear.d.ts:
--------------------------------------------------------------------------------
1 | export const AUTH_SCHEMA: any;
2 | export function initAjv(conf?: any, gun?: any): any;
3 |
--------------------------------------------------------------------------------
/packages/notabug/src/media/img/powered_by_reddit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/media/img/powered_by_reddit.png
--------------------------------------------------------------------------------
/packages/peer/src/Thing/index.ts:
--------------------------------------------------------------------------------
1 | export { ThingSet } from './ThingSet';
2 | export { ThingDataNode } from './ThingDataNode';
3 | export { Thing } from './Thing';
4 |
--------------------------------------------------------------------------------
/packages/notabug/src/Comment/index.js:
--------------------------------------------------------------------------------
1 | export { Comment } from "./Comment";
2 | export { CommentForm } from "./Form";
3 | export { NestedListing } from "./NestedListing";
4 |
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/add.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/alert.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/alert.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/award.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/award.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/blank.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/blank.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/blued.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/blued.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/bluer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/bluer.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/cake.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/cake.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/check.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/check.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/close.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/css.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/css.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/eye.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/eye.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/find.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/find.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/house.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/house.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/icon.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/json.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/json.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/kill.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/kill.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/mail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/mail.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/map.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/map.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/nsfw.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/nsfw.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/nsfw2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/nsfw2.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/pixel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/pixel.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/rss.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/rss.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/world.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/world.png
--------------------------------------------------------------------------------
/packages/saidit-ingest/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | build
3 | test
4 | src/**.js
5 | .idea/*
6 |
7 | coverage
8 | .nyc_output
9 | *.log
10 |
11 | package-lock.json
--------------------------------------------------------------------------------
/packages/indexer/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | build
3 | test
4 | src/**.js
5 | .idea/*
6 |
7 | .env
8 | coverage
9 | .nyc_output
10 | *.log
11 |
12 | package-lock.json
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/aupgray.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/aupgray.gif
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/aupgray.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/aupgray.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/aupmod.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/aupmod.gif
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/aupmod.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/aupmod.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/cclogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/cclogo.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/close_x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/close_x.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/favicon.ico
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/like_ie.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/like_ie.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/modmail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/modmail.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/noimage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/noimage.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/nothing.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/nothing.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/online.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/online.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/pencil.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/pencil.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/report.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/report.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/save_ie.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/save_ie.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/search.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/shield.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/shield.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/spinner.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/spinner.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/stripe.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/stripe.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/wired_w.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/wired_w.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/util.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 |
3 | export const optional = (Comp, props = {}) => (Comp ? : null);
4 |
--------------------------------------------------------------------------------
/packages/client/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | build
3 | test
4 | src/**.js
5 | .idea/*
6 | .env
7 |
8 | coverage
9 | .nyc_output
10 | *.log
11 |
12 | package-lock.json
13 |
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/adowngray.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/adowngray.gif
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/adowngray.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/adowngray.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/adownmod.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/adownmod.gif
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/adownmod.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/adownmod.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/alert_2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/alert_2x.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/alien-head.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/alien-head.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/blog_head.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/blog_head.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/blog_snoo.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/blog_snoo.gif
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/blog_snoo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/blog_snoo.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/breakout.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/breakout.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/check_2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/check_2x.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/close_x_2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/close_x_2x.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/css_liked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/css_liked.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/css_login.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/css_login.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/css_saved.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/css_saved.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/css_submit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/css_submit.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/css_update.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/css_update.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/defaultapp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/defaultapp.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/dislike_ie.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/dislike_ie.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/droparrow.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/droparrow.gif
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/giftgold.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/giftgold.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/gold-coin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/gold-coin.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/gradient.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/gradient.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/icon-info.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/icon-info.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/icon-touch.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/icon-touch.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/littlehead.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/littlehead.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/mailgray.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/mailgray.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/reddit404a.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/reddit404a.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/reddit404b.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/reddit404b.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/reddit404c.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/reddit404c.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/reddit404d.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/reddit404d.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/reddit404e.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/reddit404e.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/reddit500.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/reddit500.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/reddit_ban.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/reddit_ban.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/reddit_ie.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/reddit_ie.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/rightarrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/rightarrow.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/search-x2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/search-x2.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/snoo-tray.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/snoo-tray.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/space-snoo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/space-snoo.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/spinner_2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/spinner_2x.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/spreddit1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/spreddit1.gif
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/spreddit10.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/spreddit10.gif
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/spreddit11.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/spreddit11.gif
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/spreddit12.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/spreddit12.gif
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/spreddit13.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/spreddit13.gif
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/spreddit14.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/spreddit14.gif
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/spreddit2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/spreddit2.gif
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/spreddit3.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/spreddit3.gif
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/spreddit4.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/spreddit4.gif
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/spreddit5.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/spreddit5.gif
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/spreddit6.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/spreddit6.gif
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/spreddit7.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/spreddit7.gif
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/spreddit8.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/spreddit8.gif
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/spreddit9.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/spreddit9.gif
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/throbber.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/throbber.gif
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/transpLOGO.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/transpLOGO.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/trending.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/trending.png
--------------------------------------------------------------------------------
/packages/nab-wire-validation/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | build
3 | test
4 | src/**.js
5 | .idea/*
6 |
7 | .env
8 | coverage
9 | .nyc_output
10 | *.log
11 |
12 | package-lock.json
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/addmoderator.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/addmoderator.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/alien-clippy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/alien-clippy.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/aupmod-large.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/aupmod-large.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/bestof_award.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/bestof_award.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/beta.reddit1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/beta.reddit1.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/beta.reddit2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/beta.reddit2.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/beta.reddit3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/beta.reddit3.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/beta.reddit4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/beta.reddit4.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/close-small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/close-small.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/compact/edit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/compact/edit.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/compact/hide.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/compact/hide.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/compact/save.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/compact/save.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/css_disliked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/css_disliked.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/gagged-alien.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/gagged-alien.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/gold/endcap.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/gold/endcap.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/goldmorelink.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/goldmorelink.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/gradient-nub.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/gradient-nub.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/green-check.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/green-check.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/icon-expand.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/icon-expand.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/icons/report.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/icons/report.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/like_firefox.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/like_firefox.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/like_safari.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/like_safari.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/modmailgray.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/modmailgray.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/next_organic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/next_organic.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/over18_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/over18_icon.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/pencil-gray.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/pencil-gray.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/prev_organic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/prev_organic.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/reddit_alien.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/reddit_alien.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/reddit_edit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/reddit_edit.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/reddit_flair.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/reddit_flair.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/reddit_mute.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/reddit_mute.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/reddit_rules.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/reddit_rules.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/reddit_spam.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/reddit_spam.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/save_firefox.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/save_firefox.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/save_safari.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/save_safari.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/search-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/search-icon.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/search-large.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/search-large.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/self_default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/self_default.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/spreddit_ie.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/spreddit_ie.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/submit-hope.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/submit-hope.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/throbber_v2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/throbber_v2.gif
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/vid-expanded.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/vid-expanded.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/youbrokeit1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/youbrokeit1.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/youbrokeit2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/youbrokeit2.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/youbrokeit3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/youbrokeit3.png
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | build
3 | test
4 | src/**.js
5 | .idea/*
6 |
7 | .env
8 | peers.yaml
9 | data
10 | coverage
11 | .nyc_output
12 | *.log
13 |
14 | package-lock.json
15 |
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/adowngray-large.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/adowngray-large.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/adownmod-large.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/adownmod-large.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/alert_mouseover.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/alert_mouseover.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/ambivote-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/ambivote-icon.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/aupgray-large.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/aupgray-large.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/bg-button-add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/bg-button-add.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/blog-collapsed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/blog-collapsed.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/blog-expanded.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/blog-expanded.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/button-normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/button-normal.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/button-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/button-pressed.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/clippy-bullet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/clippy-bullet.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/close_x_hover.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/close_x_hover.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/compact/context.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/compact/context.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/compact/domain.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/compact/domain.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/compact/email.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/compact/email.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/compact/modmail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/compact/modmail.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/compact/nomail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/compact/nomail.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/compact/options.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/compact/options.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/compact/parent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/compact/parent.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/compact/reply.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/compact/reply.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/compact/report.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/compact/report.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/compact/unhide.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/compact/unhide.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/compact/unread.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/compact/unread.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/compact/unsave.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/compact/unsave.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/compact/upvote.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/compact/upvote.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/continue-thread.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/continue-thread.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/create-a-reddit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/create-a-reddit.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/dislike_firefox.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/dislike_firefox.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/dislike_safari.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/dislike_safari.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/dorks-toolbar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/dorks-toolbar.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/droparrowgray.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/droparrowgray.gif
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/droparrowwhite.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/droparrowwhite.gif
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/gold/gold-snoo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/gold/gold-snoo.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/gold/snoo-head.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/gold/snoo-head.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/gold/tikkit-bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/gold/tikkit-bg.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/gradient-button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/gradient-button.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/help/tb-ss-help.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/help/tb-ss-help.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/help/tb-ss-left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/help/tb-ss-left.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/help/tb-ss-link.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/help/tb-ss-link.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/help/tb-ss-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/help/tb-ss-logo.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/icon-contract.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/icon-contract.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/icon-expand_2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/icon-expand_2x.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/modactions_lock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/modactions_lock.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/modactions_mute.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/modactions_mute.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/ask.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/ask.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/diy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/diy.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/page_white_copy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/page_white_copy.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/permalink-arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/permalink-arrow.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/reddit_automod.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/reddit_automod.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/reddit_edited.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/reddit_edited.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/reddit_firefox.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/reddit_firefox.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/reddit_gold-40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/reddit_gold-40.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/reddit_gold-70.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/reddit_gold-70.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/reddit_loading.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/reddit_loading.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/reddit_modqueue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/reddit_modqueue.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/reddit_reported.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/reddit_reported.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/reddit_safari.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/reddit_safari.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/reddit_traffic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/reddit_traffic.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/self_default2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/self_default2.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/serendipity!_ie.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/serendipity!_ie.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/share-to-email.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/share-to-email.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/share-to-tumblr.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/share-to-tumblr.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/spreddit_safari.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/spreddit_safari.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/sr-add-button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/sr-add-button.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/throbber_v2_2x.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/throbber_v2_2x.gif
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/vid-collapsed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/vid-collapsed.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/welcome-lines.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/welcome-lines.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/welcome-upvote.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/welcome-upvote.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/widget_arrows.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/widget_arrows.gif
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/widget_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/widget_arrows.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/xray-snoo-body.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/xray-snoo-body.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/xray-snoo-feet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/xray-snoo-feet.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/xray-snoo-head.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/xray-snoo-head.png
--------------------------------------------------------------------------------
/packages/peer/.gitignore:
--------------------------------------------------------------------------------
1 | dist
2 | node_modules
3 | coverage
4 | .nyc_output
5 | .DS_Store
6 | *.log
7 | .vscode
8 | .idea
9 | compiled
10 | .awcache
11 | .rpt2_cache
12 | docs
13 |
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/components/Link.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 |
3 | const Link = ({ Tag = "a", ...props }) => ;
4 |
5 | export default Link;
6 |
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/70x70-placeholder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/70x70-placeholder.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/bg-button-remove.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/bg-button-remove.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/close_x_hover_2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/close_x_hover_2x.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/compact/collapse.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/compact/collapse.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/compact/downvote.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/compact/downvote.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/compact/havemail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/compact/havemail.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/compact/permalink.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/compact/permalink.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/compact/selftext.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/compact/selftext.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/compact/throbber.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/compact/throbber.gif
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/css/components/animations.css.map:
--------------------------------------------------------------------------------
1 | {"version":3,"sources":["input"],"names":[],"mappings":"AAAA;EACI;IACI,WAAW,cAAX;;;AAIR;EACI;IACI,mBAAmB,cAAnB"}
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/gold/comment-gild.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/gold/comment-gild.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/gold/reddit-golds.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/gold/reddit-golds.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/gradient-nub-gray.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/gradient-nub-gray.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/help/tb-ss-close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/help/tb-ss-close.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/help/tb-ss-logout.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/help/tb-ss-logout.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/help/tb-ss-middle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/help/tb-ss-middle.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/help/tb-ss-right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/help/tb-ss-right.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/help/tb-ss-whole.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/help/tb-ss-whole.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/icon-circle-check.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/icon-circle-check.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/icon-contract_2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/icon-contract_2x.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/icon-expand-hover.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/icon-expand-hover.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/infobar-icon-lock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/infobar-icon-lock.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/modactions_sticky.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/modactions_sticky.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/modactions_unlock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/modactions_unlock.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/modactions_unmute.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/modactions_unmute.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/books.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/books.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/cars.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/cars.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/funny.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/funny.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/games.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/games.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/music.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/music.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/news.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/news.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/style.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/style.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/tech.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/tech.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/video.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/video.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/quarantine-header.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/quarantine-header.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/reddit-embed-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/reddit-embed-logo.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/reddit.com.header.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/reddit.com.header.gif
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/reddit.com.header.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/reddit.com.header.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/search-mouseover.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/search-mouseover.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/share-to-facebook.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/share-to-facebook.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/share-to-twitter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/share-to-twitter.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/snoo-upside-down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/snoo-upside-down.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/spreddit_firefox.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/spreddit_firefox.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/sr-remove-button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/sr-remove-button.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/sr-type-icon-nsfw.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/sr-type-icon-nsfw.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/upvoted-arrow-bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/upvoted-arrow-bg.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/widget_arrows_up.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/widget_arrows_up.gif
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/widget_arrows_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/widget_arrows_up.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/600x314-placeholder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/600x314-placeholder.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/alert_mouseover_2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/alert_mouseover_2x.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/blog-collapsed-hover.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/blog-collapsed-hover.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/blog-expanded-hover.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/blog-expanded-hover.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/compact/menu-options.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/compact/menu-options.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/compact/mobilesprite.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/compact/mobilesprite.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/compact/newmodmail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/compact/newmodmail.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/external-link-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/external-link-icon.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/gold/comment-gild-x2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/gold/comment-gild-x2.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/gold/creddits-snoo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/gold/creddits-snoo.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/gold/gold-laurel-bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/gold/gold-laurel-bg.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/gold/reddit-creddits.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/gold/reddit-creddits.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/gold/reddit-gilding.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/gold/reddit-gilding.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/gold/userpage-gild.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/gold/userpage-gild.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/gold/using-creddits.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/gold/using-creddits.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/gradient-button-gray.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/gradient-button-gray.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/gradient-nub-hover.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/gradient-nub-hover.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/help/tb-ss-comment.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/help/tb-ss-comment.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/help/tb-ss-scoreetc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/help/tb-ss-scoreetc.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/help/tb-ss-username.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/help/tb-ss-username.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/icon-contract-hover.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/icon-contract-hover.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/icon-expand-hover_2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/icon-expand-hover_2x.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/infobar-icon-lock_2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/infobar-icon-lock_2x.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/internal-link-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/internal-link-icon.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/mod-action-icon-add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/mod-action-icon-add.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/mod-action-icon-edit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/mod-action-icon-edit.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/modactions_banuser.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/modactions_banuser.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/modactions_editflair.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/modactions_editflair.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/modactions_editrule.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/modactions_editrule.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/modactions_marknsfw.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/modactions_marknsfw.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/modactions_unbanuser.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/modactions_unbanuser.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/modactions_unsticky.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/modactions_unsticky.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/business.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/business.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/comics.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/comics.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/grooming.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/grooming.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/health.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/health.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/military.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/military.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/science.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/science.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/shopping.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/shopping.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/sports.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/sports.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/travel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/travel.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/reddit-button-play.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/reddit-button-play.gif
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/reddit-button-play.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/reddit-button-play.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/reddit-button-stop.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/reddit-button-stop.gif
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/reddit-embed-logo_2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/reddit-embed-logo_2x.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/reddit-is-down-brb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/reddit-is-down-brb.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/reddit_moderationlog.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/reddit_moderationlog.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/reddit_unmoderated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/reddit_unmoderated.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/redditheaderScience.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/redditheaderScience.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/search-button-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/search-button-icon.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/search-mouseover-x2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/search-mouseover-x2.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/serendipity!_firefox.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/serendipity!_firefox.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/serendipity!_safari.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/serendipity!_safari.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/share-paper-airplane.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/share-paper-airplane.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/share-to-reddit-pm.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/share-to-reddit-pm.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/sidebar-grippy-hide.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/sidebar-grippy-hide.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/sidebar-grippy-show.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/sidebar-grippy-show.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/sr-type-icon-banned.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/sr-type-icon-banned.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/sr-type-icon-nsfw_2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/sr-type-icon-nsfw_2x.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/sr-type-icon-private.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/sr-type-icon-private.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/vid-collapsed-hover.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/vid-collapsed-hover.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/vid-expanded-hover.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/vid-expanded-hover.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/widget_arrows_down.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/widget_arrows_down.gif
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/widget_arrows_down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/widget_arrows_down.png
--------------------------------------------------------------------------------
/packages/indexer/nab-indexer.pm2.json:
--------------------------------------------------------------------------------
1 | {
2 | "apps": [
3 | {
4 | "name": "nab-indexer",
5 | "instances": 1,
6 | "script": "./build/main/main.js"
7 | }
8 | ]
9 | }
10 |
--------------------------------------------------------------------------------
/packages/nab-server/nab-server.pm2.json:
--------------------------------------------------------------------------------
1 | {
2 | "apps": [
3 | {
4 | "name": "nab-server",
5 | "instances": 1,
6 | "script": "./build/main/server.js"
7 | }
8 | ]
9 | }
10 |
--------------------------------------------------------------------------------
/packages/notabug/src/Chat/index.js:
--------------------------------------------------------------------------------
1 | export { Chat } from "./Chat";
2 | export { ChatMsg } from "./ChatMsg";
3 | export { ChatInput } from "./Input";
4 | export { LoadingChatMsg } from "./LoadingChatMsg";
5 |
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/action-icon-info-color.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/action-icon-info-color.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/base.reddit.com.header.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/base.reddit.com.header.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/compact/border-button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/compact/border-button.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/compact/mobilesprite2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/compact/mobilesprite2.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/compact/modmail-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/compact/modmail-active.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/compact/nomail-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/compact/nomail-active.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/compact/options-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/compact/options-active.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/compact/options_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/compact/options_icons.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/compact/upvote-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/compact/upvote-active.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/compact/youbrokereddit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/compact/youbrokereddit.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/gold/gold-insignia-big.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/gold/gold-insignia-big.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/gold/userpage-gild-x2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/gold/userpage-gild-x2.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/gold/using-creddits-x2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/gold/using-creddits-x2.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/gradient-button-hover.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/gradient-button-hover.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/help/tb-ss-serendipity.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/help/tb-ss-serendipity.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/icon-contract-hover_2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/icon-contract-hover_2x.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/infobar-icon-archived.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/infobar-icon-archived.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/infobar-icon-banhammer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/infobar-icon-banhammer.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/mod-action-icon-add_2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/mod-action-icon-add_2x.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/mod-action-icon-cancel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/mod-action-icon-cancel.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/mod-action-icon-delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/mod-action-icon-delete.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/modactions_approvelink.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/modactions_approvelink.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/modactions_createrule.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/modactions_createrule.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/modactions_deleterule.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/modactions_deleterule.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/modactions_distinguish.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/modactions_distinguish.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/modactions_removelink.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/modactions_removelink.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/modactions_wikirevise.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/modactions_wikirevise.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/philosophy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/philosophy.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/sr-type-icon-approved.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/sr-type-icon-approved.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/sr-type-icon-banned_2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/sr-type-icon-banned_2x.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/sr-type-icon-moderator.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/sr-type-icon-moderator.png
--------------------------------------------------------------------------------
/packages/peer/README.md:
--------------------------------------------------------------------------------
1 | Peer code for notabug.
2 |
3 | The types here are a WIP
4 |
5 | [built using alexjoverm/typescript-library-starter](https://github.com/alexjoverm/typescript-library-starter.git)
6 |
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/action-icon-info-color_2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/action-icon-info-color_2x.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/bg-button-neutral-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/bg-button-neutral-pressed.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/compact/border-button-red.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/compact/border-button-red.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/compact/downvote-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/compact/downvote-active.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/compact/havemail-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/compact/havemail-active.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/compact/newmodmail-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/compact/newmodmail-active.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/compact/reddit_startimg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/compact/reddit_startimg.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/compact/selftext-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/compact/selftext-active.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/gold/gold-only-upvote-mod.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/gold/gold-only-upvote-mod.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/gold/goldvertisement-gild.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/gold/goldvertisement-gild.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/gold/goldvertisement-gold.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/gold/goldvertisement-gold.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/gold/goldvertisement-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/gold/goldvertisement-logo.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/icon-circle-exclamation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/icon-circle-exclamation.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/infobar-icon-archived_2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/infobar-icon-archived_2x.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/infobar-icon-banhammer_2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/infobar-icon-banhammer_2x.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/interstitial-image-admin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/interstitial-image-admin.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/interstitial-image-banned.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/interstitial-image-banned.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/interstitial-image-locked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/interstitial-image-locked.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/interstitial-image-over18.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/interstitial-image-over18.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/mod-action-icon-cancel_2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/mod-action-icon-cancel_2x.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/mod-action-icon-confirm.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/mod-action-icon-confirm.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/mod-action-icon-delete_2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/mod-action-icon-delete_2x.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/mod-action-icon-edit_2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/mod-action-icon-edit_2x.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/modactions_addcontributor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/modactions_addcontributor.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/modactions_addmoderator.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/modactions_addmoderator.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/modactions_approvecomment.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/modactions_approvecomment.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/modactions_editsettings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/modactions_editsettings.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/modactions_removecomment.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/modactions_removecomment.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/modactions_setcontestmode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/modactions_setcontestmode.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/modactions_setpermissions.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/modactions_setpermissions.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/modactions_wikipermlevel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/modactions_wikipermlevel.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/modtools-page-icon-rules.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/modtools-page-icon-rules.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/cute_animals.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/cute_animals.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/entertainment.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/entertainment.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/life_advice.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/life_advice.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/models_pinup.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/models_pinup.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/sr-type-icon-approved_2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/sr-type-icon-approved_2x.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/sr-type-icon-moderator_2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/sr-type-icon-moderator_2x.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/sr-type-icon-private_2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/sr-type-icon-private_2x.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/sr-type-icon-quarantined.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/sr-type-icon-quarantined.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/sr-type-icon-restricted.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/sr-type-icon-restricted.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/bg-button-negative-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/bg-button-negative-pressed.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/bg-button-neutral-unpressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/bg-button-neutral-unpressed.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/bg-button-positive-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/bg-button-positive-pressed.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/compact/menu-options-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/compact/menu-options-active.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/gold/gold-only-downvote-mod.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/gold/gold-only-downvote-mod.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/interstitial-image-archived.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/interstitial-image-archived.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/interstitial-image-private.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/interstitial-image-private.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/mod-action-icon-confirm_2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/mod-action-icon-confirm_2x.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/mod-action-icon-edit-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/mod-action-icon-edit-active.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/modactions_removemoderator.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/modactions_removemoderator.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/modactions_setsuggestedsort.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/modactions_setsuggestedsort.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/modactions_unsetcontestmode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/modactions_unsetcontestmode.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/modtools-page-icon-rules_2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/modtools-page-icon-rules_2x.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/art_and_design.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/art_and_design.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/food_and_drink.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/food_and_drink.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/unusual_stories.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/unusual_stories.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/sr-type-icon-quarantined_2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/sr-type-icon-quarantined_2x.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/sr-type-icon-restricted_2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/sr-type-icon-restricted_2x.png
--------------------------------------------------------------------------------
/packages/saidit-ingest/saidit-ingest.pm2.json:
--------------------------------------------------------------------------------
1 | {
2 | "apps": [
3 | {
4 | "name": "saidit-ingest",
5 | "instances": 1,
6 | "script": "./build/main/main.js"
7 | }
8 | ]
9 | }
10 |
--------------------------------------------------------------------------------
/packages/indexer/.vscode/settings.json:
--------------------------------------------------------------------------------
1 | {
2 | "typescript.tsdk": "node_modules/typescript/lib"
3 | // "typescript.implementationsCodeLens.enabled": true
4 | // "typescript.referencesCodeLens.enabled": true
5 | }
6 |
--------------------------------------------------------------------------------
/packages/nab-server/.vscode/settings.json:
--------------------------------------------------------------------------------
1 | {
2 | "typescript.tsdk": "node_modules/typescript/lib"
3 | // "typescript.implementationsCodeLens.enabled": true
4 | // "typescript.referencesCodeLens.enabled": true
5 | }
6 |
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/bg-button-negative-unpressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/bg-button-negative-unpressed.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/bg-button-positive-unpressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/bg-button-positive-unpressed.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/compact/border-button-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/compact/border-button-active.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/gold/gold-only-mail-havemail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/gold/gold-only-mail-havemail.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/interstitial-image-gold-only.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/interstitial-image-gold-only.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/interstitial-image-quarantine.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/interstitial-image-quarantine.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/mod-action-icon-delete-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/mod-action-icon-delete-active.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/mod-action-icon-edit-active_2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/mod-action-icon-edit-active_2x.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/modactions_removecontributor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/modactions_removecontributor.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/pictures_and_gifs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/multi_icons/pictures_and_gifs.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/compact/border-button-red-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/compact/border-button-red-active.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/gold/gold-only-modmail-havemail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/gold/gold-only-modmail-havemail.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/interstitial-image-deleted-user.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/interstitial-image-deleted-user.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/mod-action-icon-delete-active_2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/mod-action-icon-delete-active_2x.png
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/modactions_acceptmoderatorinvite.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/modactions_acceptmoderatorinvite.png
--------------------------------------------------------------------------------
/packages/nab-server/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | build
3 | test
4 | src/**.js
5 | .idea/*
6 |
7 | htdocs
8 | coverage
9 | .nyc_output
10 | *.log
11 | core
12 | .env
13 | data
14 | peers.yaml
15 |
16 | package-lock.json
17 |
--------------------------------------------------------------------------------
/packages/nab-wire-validation/.vscode/settings.json:
--------------------------------------------------------------------------------
1 | {
2 | "typescript.tsdk": "node_modules/typescript/lib"
3 | // "typescript.implementationsCodeLens.enabled": true
4 | // "typescript.referencesCodeLens.enabled": true
5 | }
6 |
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/compact/reddit-apple-mobile-device.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/notabugio/notabug/HEAD/packages/notabug/src/vendor/snew-classic-ui/static/compact/reddit-apple-mobile-device.png
--------------------------------------------------------------------------------
/.gitmodules:
--------------------------------------------------------------------------------
1 | [submodule "chaingun"]
2 | path = chaingun
3 | url = git+ssh://git@github.com/chain-gun/chaingun.git
4 | [submodule "lingua-webca"]
5 | path = lingua-webca
6 | url = git+ssh://git@github.com/lingua-webca/lingua-webca
7 |
--------------------------------------------------------------------------------
/packages/notabug/src/utils/slugify.js:
--------------------------------------------------------------------------------
1 | const slugify = str => (str || "").toString().toLowerCase().trim()
2 | .replace(/[^\w\s-]/g, "")
3 | .replace(/[\s_-]+/g, "-")
4 | .replace(/^-+|-+$/g, "");
5 |
6 | export default slugify;
7 |
--------------------------------------------------------------------------------
/packages/indexer/src/config.ts:
--------------------------------------------------------------------------------
1 | export const LISTING_CACHE_SIZE =
2 | parseInt(process.env.NAB_LISTING_CACHE_SIZE, 10) || 25000
3 | export const THING_META_CACHE_SIZE =
4 | parseInt(process.env.NAB_THING_META_CACHE_SIZE, 10) || 25000
5 |
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/css/components/colors.css:
--------------------------------------------------------------------------------
1 | /*
2 | do not use these colors directly! create local aliases with descriptive names
3 | i.e.
4 |
5 | @my-background-color: @color-eggshell;
6 | */
7 |
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/css/components/variables.css:
--------------------------------------------------------------------------------
1 | /*
2 | do not use these colors directly! create local aliases with descriptive names
3 | i.e.
4 |
5 | @my-background-color: @color-eggshell;
6 | */
7 |
--------------------------------------------------------------------------------
/packages/client/.npmignore:
--------------------------------------------------------------------------------
1 | src
2 | test
3 | tsconfig.json
4 | tsconfig.module.json
5 | tslint.json
6 | .travis.yml
7 | .github
8 | .prettierignore
9 | .vscode
10 | build/docs
11 | **/*.spec.*
12 | coverage
13 | .nyc_output
14 | *.log
15 |
--------------------------------------------------------------------------------
/packages/indexer/.npmignore:
--------------------------------------------------------------------------------
1 | src
2 | test
3 | tsconfig.json
4 | tsconfig.module.json
5 | tslint.json
6 | .travis.yml
7 | .github
8 | .prettierignore
9 | .vscode
10 | build/docs
11 | **/*.spec.*
12 | coverage
13 | .nyc_output
14 | *.log
15 | .env
--------------------------------------------------------------------------------
/packages/notabug/src/Auth/index.js:
--------------------------------------------------------------------------------
1 | export * from "./UserInfo";
2 | export * from "./LoginSignup";
3 | export { AuthorLink } from "./AuthorLink";
4 | export { UserIdLink } from "./UserIdLink";
5 | export { SidebarUserSpaces } from "./SidebarUserSpaces";
6 |
--------------------------------------------------------------------------------
/packages/saidit-ingest/.npmignore:
--------------------------------------------------------------------------------
1 | src
2 | test
3 | tsconfig.json
4 | tsconfig.module.json
5 | tslint.json
6 | .travis.yml
7 | .github
8 | .prettierignore
9 | .vscode
10 | build/docs
11 | **/*.spec.*
12 | coverage
13 | .nyc_output
14 | *.log
15 |
--------------------------------------------------------------------------------
/packages/client/src/Lingua/index.ts:
--------------------------------------------------------------------------------
1 | import { createSpecificNabStore } from './API'
2 | import { createNabStore } from './metaStore'
3 |
4 | export const NotabugLinguaStore = {
5 | create: createNabStore,
6 | createSpecific: createSpecificNabStore
7 | }
8 |
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/proof-of-work/index.js:
--------------------------------------------------------------------------------
1 | "use strict";
2 |
3 | exports.utils = require("./pow/utils");
4 |
5 | exports.Bloom = require("./pow/bloom");
6 | exports.Solver = require("./pow/solver");
7 | exports.Verifier = require("./pow/verifier");
8 |
--------------------------------------------------------------------------------
/CODE_OF_CONDUCT.md:
--------------------------------------------------------------------------------
1 | # Code of Conduct
2 |
3 | ## Free Speech and Consideration
4 |
5 | Everyone has the right to communicate opinions and ideas without fear of censorship. Consideration shall be given to all constructive speech that is based in fact and reason.
6 |
--------------------------------------------------------------------------------
/packages/indexer/src/main.ts:
--------------------------------------------------------------------------------
1 | // tslint:disable: no-var-requires
2 | require('dotenv').config()
3 | import { createGraphAdapter } from '@chaingun/http-adapter'
4 | import { startup } from './startup'
5 |
6 | startup(createGraphAdapter('http://localhost:4444/gun'))
7 |
--------------------------------------------------------------------------------
/packages/nab-server/.npmignore:
--------------------------------------------------------------------------------
1 | src
2 | test
3 | tsconfig.json
4 | tsconfig.module.json
5 | tslint.json
6 | .travis.yml
7 | .github
8 | .prettierignore
9 | .vscode
10 | build/docs
11 | **/*.spec.*
12 | coverage
13 | .nyc_output
14 | *.log
15 | .env
16 | data
--------------------------------------------------------------------------------
/packages/nab-wire-validation/.npmignore:
--------------------------------------------------------------------------------
1 | src
2 | test
3 | tsconfig.json
4 | tsconfig.module.json
5 | tslint.json
6 | .travis.yml
7 | .github
8 | .prettierignore
9 | .vscode
10 | build/docs
11 | **/*.spec.*
12 | coverage
13 | .nyc_output
14 | *.log
15 | .env
--------------------------------------------------------------------------------
/packages/notabug/src/Page/index.js:
--------------------------------------------------------------------------------
1 | import { withRouter } from "react-router-dom";
2 | import { Page as PageBase } from "./Page";
3 | export { PageTemplate } from "./Template";
4 | export { PageFooter } from "./Footer";
5 | export const Page = withRouter(PageBase);
6 |
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/css/components/toggles.css.map:
--------------------------------------------------------------------------------
1 | {"version":3,"sources":["input"],"names":[],"mappings":"AAEI,SAAC;EACG,SAAS,MAAT;EACA,sBAAA;EACA,eAAA;EACA,mBAAA;;AAGJ,SAAC,iBAAiB;EACd,SAAS,MAAT;;AAIR;EACI,aAAA;;AAEA,iBAAC;EACG,cAAA"}
--------------------------------------------------------------------------------
/packages/client/tsconfig.module.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "./tsconfig",
3 | "compilerOptions": {
4 | "target": "esnext",
5 | "outDir": "build/module",
6 | "module": "esnext"
7 | },
8 | "exclude": [
9 | "node_modules/**"
10 | ]
11 | }
12 |
--------------------------------------------------------------------------------
/packages/indexer/tsconfig.module.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "./tsconfig",
3 | "compilerOptions": {
4 | "target": "esnext",
5 | "outDir": "build/module",
6 | "module": "esnext"
7 | },
8 | "exclude": [
9 | "node_modules/**"
10 | ]
11 | }
12 |
--------------------------------------------------------------------------------
/packages/nab-server/tsconfig.module.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "./tsconfig",
3 | "compilerOptions": {
4 | "target": "esnext",
5 | "outDir": "build/module",
6 | "module": "esnext"
7 | },
8 | "exclude": [
9 | "node_modules/**"
10 | ]
11 | }
12 |
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/css/components/animations.css:
--------------------------------------------------------------------------------
1 | @keyframes spin {
2 | to {
3 | transform: rotate(360deg);
4 | }
5 | }
6 | @-webkit-keyframes spin {
7 | to {
8 | -webkit-transform: rotate(360deg);
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/packages/saidit-ingest/tsconfig.module.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "./tsconfig",
3 | "compilerOptions": {
4 | "target": "esnext",
5 | "outDir": "build/module",
6 | "module": "esnext"
7 | },
8 | "exclude": [
9 | "node_modules/**"
10 | ]
11 | }
12 |
--------------------------------------------------------------------------------
/packages/nab-wire-validation/tsconfig.module.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "./tsconfig",
3 | "compilerOptions": {
4 | "target": "esnext",
5 | "outDir": "build/module",
6 | "module": "esnext"
7 | },
8 | "exclude": [
9 | "node_modules/**"
10 | ]
11 | }
12 |
--------------------------------------------------------------------------------
/packages/notabug/CODE_OF_CONDUCT.md:
--------------------------------------------------------------------------------
1 | # Code of Conduct
2 |
3 | ## Free Speech and Consideration
4 |
5 | Everyone has the right to communicate opinions and ideas without fear of censorship. Consideration shall be given to all constructive speech that is based in fact and reason.
6 |
--------------------------------------------------------------------------------
/packages/peer/code-of-conduct.md:
--------------------------------------------------------------------------------
1 | # Code of Conduct
2 |
3 | ## Free Speech and Consideration
4 |
5 | Everyone has the right to communicate opinions and ideas without fear of censorship. Consideration shall be given to all constructive speech that is based in fact and reason.
6 |
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/css/components/animations.less:
--------------------------------------------------------------------------------
1 | @keyframes spin {
2 | to {
3 | transform: rotate(360deg)
4 | }
5 | }
6 |
7 | @-webkit-keyframes spin {
8 | to {
9 | -webkit-transform: rotate(360deg)
10 | }
11 | }
--------------------------------------------------------------------------------
/packages/client/src/lib/number.spec.ts:
--------------------------------------------------------------------------------
1 | // tslint:disable:no-expression-statement
2 | import test from 'ava';
3 | import { double, power } from './number';
4 |
5 | test('double', t => {
6 | t.is(double(2), 4);
7 | });
8 |
9 | test('power', t => {
10 | t.is(power(2, 4), 16);
11 | });
12 |
--------------------------------------------------------------------------------
/packages/client/.github/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 | # Example Contributing Guidelines
2 |
3 | This is an example of GitHub's contributing guidelines file. Check out GitHub's [CONTRIBUTING.md help center article](https://help.github.com/articles/setting-guidelines-for-repository-contributors/) for more information.
4 |
--------------------------------------------------------------------------------
/packages/notabug/src/utils/locationKey.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { withRouter } from "react-router-dom";
3 |
4 | export const locationKey = Comp => withRouter(
5 | ({ location, ...props }) =>
6 | );
7 |
--------------------------------------------------------------------------------
/packages/peer/.editorconfig:
--------------------------------------------------------------------------------
1 | #root = true
2 |
3 | [*]
4 | indent_style = space
5 | end_of_line = lf
6 | charset = utf-8
7 | trim_trailing_whitespace = true
8 | insert_final_newline = true
9 | max_line_length = 100
10 | indent_size = 2
11 |
12 | [*.md]
13 | trim_trailing_whitespace = false
14 |
--------------------------------------------------------------------------------
/packages/indexer/.github/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 | # Example Contributing Guidelines
2 |
3 | This is an example of GitHub's contributing guidelines file. Check out GitHub's [CONTRIBUTING.md help center article](https://help.github.com/articles/setting-guidelines-for-repository-contributors/) for more information.
4 |
--------------------------------------------------------------------------------
/packages/nab-server/.github/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 | # Example Contributing Guidelines
2 |
3 | This is an example of GitHub's contributing guidelines file. Check out GitHub's [CONTRIBUTING.md help center article](https://help.github.com/articles/setting-guidelines-for-repository-contributors/) for more information.
4 |
--------------------------------------------------------------------------------
/packages/saidit-ingest/.github/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 | # Example Contributing Guidelines
2 |
3 | This is an example of GitHub's contributing guidelines file. Check out GitHub's [CONTRIBUTING.md help center article](https://help.github.com/articles/setting-guidelines-for-repository-contributors/) for more information.
4 |
--------------------------------------------------------------------------------
/packages/nab-wire-validation/.github/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 | # Example Contributing Guidelines
2 |
3 | This is an example of GitHub's contributing guidelines file. Check out GitHub's [CONTRIBUTING.md help center article](https://help.github.com/articles/setting-guidelines-for-repository-contributors/) for more information.
4 |
--------------------------------------------------------------------------------
/packages/notabug/src/utils/quote.js:
--------------------------------------------------------------------------------
1 | const quote = (text) => {
2 | if(text.length == 0)
3 | return text
4 |
5 | text = text
6 | .replace(/\n\s*\n/g, "\n") // condense newlines
7 | .replace(/\n(?!$)/g, "\n>") // quote all lines, no quote after last newline
8 | return ">" + text
9 | }
10 |
11 | export default quote
12 |
--------------------------------------------------------------------------------
/packages/notabug/src/utils/ScrollToTop.js:
--------------------------------------------------------------------------------
1 | import { useEffect } from "react";
2 | import { withRouter } from "react-router-dom";
3 |
4 | export const ScrollToTop = withRouter(({ location, children }) => {
5 | useEffect(
6 | () => {
7 | window.scrollTo(0, 0);
8 | },
9 | [location]
10 | );
11 | return children;
12 | });
13 |
--------------------------------------------------------------------------------
/packages/client/.editorconfig:
--------------------------------------------------------------------------------
1 | # http://editorconfig.org
2 | root = true
3 |
4 | [*]
5 | charset = utf-8
6 | end_of_line = lf
7 | indent_size = 2
8 | indent_style = space
9 | insert_final_newline = true
10 | max_line_length = 80
11 | trim_trailing_whitespace = true
12 |
13 | [*.md]
14 | max_line_length = 0
15 | trim_trailing_whitespace = false
16 |
--------------------------------------------------------------------------------
/packages/indexer/.editorconfig:
--------------------------------------------------------------------------------
1 | # http://editorconfig.org
2 | root = true
3 |
4 | [*]
5 | charset = utf-8
6 | end_of_line = lf
7 | indent_size = 2
8 | indent_style = space
9 | insert_final_newline = true
10 | max_line_length = 80
11 | trim_trailing_whitespace = true
12 |
13 | [*.md]
14 | max_line_length = 0
15 | trim_trailing_whitespace = false
16 |
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/components/NavTab.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import LinkComponent from "./Link";
3 |
4 | const NavTab = ({
5 | Link = LinkComponent,
6 | className,
7 | ...props
8 | }) => (
9 |
10 |
11 |
12 | );
13 |
14 | export default NavTab;
15 |
--------------------------------------------------------------------------------
/packages/nab-server/.editorconfig:
--------------------------------------------------------------------------------
1 | # http://editorconfig.org
2 | root = true
3 |
4 | [*]
5 | charset = utf-8
6 | end_of_line = lf
7 | indent_size = 2
8 | indent_style = space
9 | insert_final_newline = true
10 | max_line_length = 80
11 | trim_trailing_whitespace = true
12 |
13 | [*.md]
14 | max_line_length = 0
15 | trim_trailing_whitespace = false
16 |
--------------------------------------------------------------------------------
/packages/saidit-ingest/.editorconfig:
--------------------------------------------------------------------------------
1 | # http://editorconfig.org
2 | root = true
3 |
4 | [*]
5 | charset = utf-8
6 | end_of_line = lf
7 | indent_size = 2
8 | indent_style = space
9 | insert_final_newline = true
10 | max_line_length = 80
11 | trim_trailing_whitespace = true
12 |
13 | [*.md]
14 | max_line_length = 0
15 | trim_trailing_whitespace = false
16 |
--------------------------------------------------------------------------------
/packages/nab-wire-validation/.editorconfig:
--------------------------------------------------------------------------------
1 | # http://editorconfig.org
2 | root = true
3 |
4 | [*]
5 | charset = utf-8
6 | end_of_line = lf
7 | indent_size = 2
8 | indent_style = space
9 | insert_final_newline = true
10 | max_line_length = 80
11 | trim_trailing_whitespace = true
12 |
13 | [*.md]
14 | max_line_length = 0
15 | trim_trailing_whitespace = false
16 |
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/components/SidebarAd.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 |
3 | const SidebarAd = () => (
4 |
12 | );
13 |
14 | export default SidebarAd;
15 |
16 |
--------------------------------------------------------------------------------
/packages/client/.github/PULL_REQUEST_TEMPLATE.md:
--------------------------------------------------------------------------------
1 | * **What kind of change does this PR introduce?** (Bug fix, feature, docs update, ...)
2 |
3 |
4 |
5 | * **What is the current behavior?** (You can also link to an open issue here)
6 |
7 |
8 |
9 | * **What is the new behavior (if this is a feature change)?**
10 |
11 |
12 |
13 | * **Other information**:
14 |
--------------------------------------------------------------------------------
/packages/indexer/.github/PULL_REQUEST_TEMPLATE.md:
--------------------------------------------------------------------------------
1 | * **What kind of change does this PR introduce?** (Bug fix, feature, docs update, ...)
2 |
3 |
4 |
5 | * **What is the current behavior?** (You can also link to an open issue here)
6 |
7 |
8 |
9 | * **What is the new behavior (if this is a feature change)?**
10 |
11 |
12 |
13 | * **Other information**:
14 |
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/components/Markdown.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 |
3 | const Markdown = ({ html, className }) =>
4 | html ? (
5 |
9 | ) : null;
10 |
11 | export default Markdown;
12 |
13 |
--------------------------------------------------------------------------------
/packages/nab-server/.github/PULL_REQUEST_TEMPLATE.md:
--------------------------------------------------------------------------------
1 | * **What kind of change does this PR introduce?** (Bug fix, feature, docs update, ...)
2 |
3 |
4 |
5 | * **What is the current behavior?** (You can also link to an open issue here)
6 |
7 |
8 |
9 | * **What is the new behavior (if this is a feature change)?**
10 |
11 |
12 |
13 | * **Other information**:
14 |
--------------------------------------------------------------------------------
/packages/saidit-ingest/.github/PULL_REQUEST_TEMPLATE.md:
--------------------------------------------------------------------------------
1 | * **What kind of change does this PR introduce?** (Bug fix, feature, docs update, ...)
2 |
3 |
4 |
5 | * **What is the current behavior?** (You can also link to an open issue here)
6 |
7 |
8 |
9 | * **What is the new behavior (if this is a feature change)?**
10 |
11 |
12 |
13 | * **Other information**:
14 |
--------------------------------------------------------------------------------
/packages/nab-wire-validation/.github/PULL_REQUEST_TEMPLATE.md:
--------------------------------------------------------------------------------
1 | * **What kind of change does this PR introduce?** (Bug fix, feature, docs update, ...)
2 |
3 |
4 |
5 | * **What is the current behavior?** (You can also link to an open issue here)
6 |
7 |
8 |
9 | * **What is the new behavior (if this is a feature change)?**
10 |
11 |
12 |
13 | * **Other information**:
14 |
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/components/AuthorLink.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import LinkComponent from "./Link";
3 |
4 | const AuthorLink = ({
5 | className = "author may-blank",
6 | Link = LinkComponent,
7 | author
8 | }) => (
9 | {author}
10 | );
11 |
12 | export default AuthorLink;
13 |
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/css/components/alerts.less:
--------------------------------------------------------------------------------
1 | .c-alert {
2 | padding: 15px;
3 | margin: 8px 0 19px;
4 | border: 1px solid transparent;
5 | border-radius: 2px;
6 | }
7 |
8 | .c-alert-danger {
9 | background-color: @alert-danger-bg;
10 | border-color: @alert-danger-border;
11 | color: @alert-danger-color !important;
12 | }
13 |
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/components/CommentAreaTitle.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 |
3 | const CommentAreaTitle = ({ num_comments, commentsTitle }) => (
4 |
5 | {commentsTitle || `all ${num_comments ? num_comments : ""} comments`}
6 |
7 | );
8 |
9 | export default CommentAreaTitle;
10 |
--------------------------------------------------------------------------------
/packages/client/src/index.ts:
--------------------------------------------------------------------------------
1 | export * from '@notabug/peer'
2 | // tslint:disable-next-line: no-implicit-dependencies
3 | // export * from '@chaingun/sear';
4 | export * from '@chaingun/sea-client'
5 | export { NotabugClient } from './NotabugClient'
6 | export { NotabugLinguaStore } from './Lingua'
7 | export { NotabugScribeQueue } from './NotabugScribeQueue'
8 | export { createFederationAdapter } from './adapters'
9 |
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/css/components/toggles.css:
--------------------------------------------------------------------------------
1 | .c-toggle:after {
2 | content: ' [+]';
3 | font-family: monospace;
4 | font-size: 10px;
5 | vertical-align: 1px;
6 | }
7 | .c-toggle.c-toggle-toggled:after {
8 | content: ' [-]';
9 | }
10 | .c-toggle-content {
11 | display: none;
12 | }
13 | .c-toggle-content.c-toggle-content-toggled {
14 | display: block;
15 | }
16 |
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/css/components/image-upload.css.map:
--------------------------------------------------------------------------------
1 | {"version":3,"sources":["input"],"names":[],"mappings":"AAAA;EACE,kBAAA;EACA,MAAA;EACA,SAAA;EACA,OAAA;EACA,QAAA;EACA,cAAA;EACA,SAAA;EACA,UAAA;EACA,UAAA;EACA,WAAA;;AAEA,qBAAC;EACC,eAAA;;AAIJ;EACE,iBAAA;EACA,oBAAA;EACA,uBAAA;EACA,qBAAA;EACA,aAAA;EACA,gBAAA;EACA,YAAA;EACA,kBAAA;;AAGF;EACE,cAAA;EACA,oBAAA;;AAGF;EACE,cAAA;EACA,2BAAA;EACA,0BAAA"}
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/components/AccountActivityBox.js:
--------------------------------------------------------------------------------
1 | /* eslint-disable jsx-a11y/anchor-is-valid */
2 | import React from "react";
3 |
4 | const AccountActivityBox = () => (
5 |
12 | );
13 |
14 | export default AccountActivityBox;
15 |
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/opensearch.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | reddit search
4 | Search for content on reddit!
5 |
8 |
9 |
--------------------------------------------------------------------------------
/packages/client/.github/ISSUE_TEMPLATE.md:
--------------------------------------------------------------------------------
1 | * **I'm submitting a ...**
2 | [ ] bug report
3 | [ ] feature request
4 | [ ] question about the decisions made in the repository
5 | [ ] question about how to use this project
6 |
7 | * **Summary**
8 |
9 |
10 |
11 | * **Other information** (e.g. detailed explanation, stacktraces, related issues, suggestions how to fix, links for us to have context, eg. StackOverflow, personal fork, etc.)
12 |
--------------------------------------------------------------------------------
/packages/indexer/.github/ISSUE_TEMPLATE.md:
--------------------------------------------------------------------------------
1 | * **I'm submitting a ...**
2 | [ ] bug report
3 | [ ] feature request
4 | [ ] question about the decisions made in the repository
5 | [ ] question about how to use this project
6 |
7 | * **Summary**
8 |
9 |
10 |
11 | * **Other information** (e.g. detailed explanation, stacktraces, related issues, suggestions how to fix, links for us to have context, eg. StackOverflow, personal fork, etc.)
12 |
--------------------------------------------------------------------------------
/packages/notabug/src/Auth/Identicon.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import jdenticon from "jdenticon";
3 |
4 | export const Identicon = ({
5 | size,
6 | author,
7 | author_fullname
8 | }) => (
9 |
14 | );
15 |
--------------------------------------------------------------------------------
/packages/nab-server/.github/ISSUE_TEMPLATE.md:
--------------------------------------------------------------------------------
1 | * **I'm submitting a ...**
2 | [ ] bug report
3 | [ ] feature request
4 | [ ] question about the decisions made in the repository
5 | [ ] question about how to use this project
6 |
7 | * **Summary**
8 |
9 |
10 |
11 | * **Other information** (e.g. detailed explanation, stacktraces, related issues, suggestions how to fix, links for us to have context, eg. StackOverflow, personal fork, etc.)
12 |
--------------------------------------------------------------------------------
/packages/saidit-ingest/.github/ISSUE_TEMPLATE.md:
--------------------------------------------------------------------------------
1 | * **I'm submitting a ...**
2 | [ ] bug report
3 | [ ] feature request
4 | [ ] question about the decisions made in the repository
5 | [ ] question about how to use this project
6 |
7 | * **Summary**
8 |
9 |
10 |
11 | * **Other information** (e.g. detailed explanation, stacktraces, related issues, suggestions how to fix, links for us to have context, eg. StackOverflow, personal fork, etc.)
12 |
--------------------------------------------------------------------------------
/packages/notabug/src/Auth/UserIdLink.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { Query } from "@notabug/peer";
3 | import { useQuery } from "/utils";
4 | import { AuthorLink } from "./AuthorLink";
5 |
6 | export const UserIdLink = ({ userId }) => {
7 | const [userMeta] = useQuery(Query.userMeta, [userId]);
8 |
9 | if (!userId || !userMeta) return null;
10 | return ;
11 | };
12 |
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/css/components/close.less:
--------------------------------------------------------------------------------
1 | .c-close {
2 | display: block;
3 | width: 12px;
4 | height: 12px;
5 | .hdpi-bg-image(@1x: data-uri('../close_x.png'); @2x: data-uri('../close_x_2x.png'));
6 | background-size: 12px;
7 | background-position: center;
8 |
9 | &:hover {
10 | .hdpi-bg-image(@1x: data-uri('../close_x_hover.png'); @2x: data-uri('../close_x_hover_2x.png'));
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/packages/nab-wire-validation/.github/ISSUE_TEMPLATE.md:
--------------------------------------------------------------------------------
1 | * **I'm submitting a ...**
2 | [ ] bug report
3 | [ ] feature request
4 | [ ] question about the decisions made in the repository
5 | [ ] question about how to use this project
6 |
7 | * **Summary**
8 |
9 |
10 |
11 | * **Other information** (e.g. detailed explanation, stacktraces, related issues, suggestions how to fix, links for us to have context, eg. StackOverflow, personal fork, etc.)
12 |
--------------------------------------------------------------------------------
/packages/indexer/tslint.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": ["tslint:latest", "tslint-config-prettier", "tslint-immutable"],
3 | "rules": {
4 | "interface-name": [true, "never-prefix"],
5 | "no-implicit-dependencies": [true, "dev"],
6 |
7 | "object-literal-sort-keys": false,
8 |
9 | "no-var-keyword": true,
10 | "no-parameter-reassignment": true,
11 | "typedef": [true, "call-signature"],
12 |
13 | "no-method-signature": true
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/sureroute.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | sureroute test obect
4 |
5 | sureroute test object
6 | SureRoute for Performance chooses the fastest path to the origin to ensure that your site is continuously accessible and that uncacheable content is delivered to end users with optimal performance
7 |
8 |
9 |
--------------------------------------------------------------------------------
/packages/client/tslint.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": ["tslint:latest", "tslint-config-prettier", "tslint-immutable"],
3 | "rules": {
4 | "interface-name": [true, "never-prefix"],
5 | "no-implicit-dependencies": [true, "dev"],
6 |
7 | "no-var-keyword": true,
8 | "no-parameter-reassignment": true,
9 | "typedef": [true, "call-signature"],
10 |
11 | "readonly-keyword": true,
12 | "readonly-array": true,
13 | "no-method-signature": true
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/packages/notabug/src/Page/Topics.js:
--------------------------------------------------------------------------------
1 | export const HEADER_TOPICS = [
2 | "art",
3 | "ask",
4 | "books",
5 | "domains",
6 | "food",
7 | "funny",
8 | "gaming",
9 | "gifs",
10 | "history",
11 | "memes",
12 | "movies",
13 | "music",
14 | "news",
15 | "pics",
16 | "politics",
17 | "programming",
18 | "religion",
19 | "quotes",
20 | "science",
21 | "space",
22 | "technology",
23 | "travel",
24 | "tv",
25 | "videos",
26 | "whatever"
27 | ]
28 |
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/css/components/toggles.less:
--------------------------------------------------------------------------------
1 | .c-toggle {
2 |
3 | &:after {
4 | content: ' [+]';
5 | font-family: monospace;
6 | font-size: 10px;
7 | vertical-align: 1px;
8 | }
9 |
10 | &.c-toggle-toggled:after {
11 | content: ' [-]';
12 | }
13 | }
14 |
15 | .c-toggle-content {
16 | display: none;
17 |
18 | &.c-toggle-content-toggled {
19 | display: block;
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/postinstall.js:
--------------------------------------------------------------------------------
1 | const fs = require("fs");
2 |
3 | if (fs.existsSync("./.env")) {
4 | console.log(".env exists, not copying defaults");
5 | } else {
6 | fs.copyFileSync("./default.env", "./.env");
7 | console.log("copied default .env");
8 | }
9 |
10 | if (fs.existsSync("./peers.yaml")) {
11 | console.log("peers.yaml exists, not copying defaults");
12 | } else {
13 | fs.copyFileSync("./default.peers.yaml", "./peers.yaml");
14 | console.log("copied default peers.yaml");
15 | }
16 |
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/components/Dropdown.js:
--------------------------------------------------------------------------------
1 | import React, { Fragment } from "react";
2 |
3 | const Dropdown = ({
4 | value,
5 | isOpen,
6 | onOpen,
7 | children
8 | }) => (
9 |
10 |
11 | {value}
12 |
13 | {children}
14 |
15 | );
16 |
17 | export default Dropdown;
18 |
--------------------------------------------------------------------------------
/packages/notabug/src/utils/Timestamp.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import TimeAgo from "react-timeago";
3 |
4 | const Edited = ({ title, children }) => (
5 | *
6 | );
7 |
8 | export const Timestamp = React.memo(
9 | ({ created_utc, edited }) => {
10 | if (created_utc) return ;
11 | if (edited) return ;
12 | }
13 | );
14 |
--------------------------------------------------------------------------------
/packages/notabug/.babelrc:
--------------------------------------------------------------------------------
1 | {
2 | "presets": [
3 | [
4 | "@babel/preset-env",
5 | {
6 | "modules": false
7 | }
8 | ],
9 | "@babel/preset-react"
10 | ],
11 | "plugins": [
12 | "@babel/plugin-proposal-class-properties",
13 | [
14 | "@babel/plugin-transform-runtime",
15 | {
16 | "corejs": 2
17 | }
18 | ]
19 | ],
20 | "env": {
21 | "server": {
22 | "plugins": []
23 | },
24 | "client": {
25 | "plugins": []
26 | }
27 | }
28 | }
29 |
--------------------------------------------------------------------------------
/packages/notabug/src/Chat/LoadingChatMsg.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { Spinner } from "/utils/Spinner";
3 | import { ChatMsg } from "./ChatMsg";
4 |
5 | export const LoadingChatMsg = props => (
6 | (
9 |
15 | )}
16 | />
17 | );
18 |
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/proof-of-work/pow/utils/common.js:
--------------------------------------------------------------------------------
1 | "use strict";
2 |
3 | const assert = require("minimalistic-assert");
4 |
5 | exports.checkComplexity = function checkComplexity(hash, complexity) {
6 | assert(complexity < hash.length * 8, "Complexity is too high");
7 |
8 | var off = 0;
9 | var i;
10 |
11 | for (i = 0; i <= complexity - 8; i += 8, off++) {
12 | if (hash[off] !== 0)
13 | return false;
14 | }
15 |
16 | const mask = 0xff << (8 + i - complexity);
17 |
18 | return (hash[off] & mask) === 0;
19 | };
20 |
--------------------------------------------------------------------------------
/packages/peer/src/@notabug/peer.ts:
--------------------------------------------------------------------------------
1 | import { Peer } from '../Peer';
2 | export { Config } from '../Config';
3 | export { Constants } from '../Constants';
4 | export { CommentCommand } from '../CommentCommand';
5 | export { Listing, SpaceSpec } from '../Listing';
6 | // export { GunNode } from '../GunNode';
7 | export { Page } from '../Page';
8 | export { Peer } from '../Peer';
9 | export { Query } from '../Query';
10 | export { Schema } from '../Schema';
11 | export { Thing, ThingSet, ThingDataNode } from '../Thing';
12 |
13 | export default Peer.init;
14 |
--------------------------------------------------------------------------------
/packages/client/src/main.ts:
--------------------------------------------------------------------------------
1 | import { ChainGunLinguaStore } from '@lingua-webca/chaingun'
2 | import { HttpStore, store, webca } from '@lingua-webca/core'
3 | import { NotabugLinguaStore } from './Lingua'
4 | // import { NotabugScribeQueue } from './NotabugScribeQueue'
5 |
6 | // This is a WIP test/demo of lingua-webca does not do anything useful yet
7 |
8 | store.use('https://', HttpStore.store)
9 | store.use('http://', HttpStore.store)
10 | store.use('gun://', ChainGunLinguaStore.create())
11 | store.use('notabug://', NotabugLinguaStore.create(webca))
12 |
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/css/expando.css.map:
--------------------------------------------------------------------------------
1 | {"version":3,"sources":["input"],"names":[],"mappings":"AAAA,MAAO,OAAO;EACV,6BAAA;EACA,eAAA;EACA,YAAA;EACA,qBAAA;EACA,WAAA;;AAEA,MAPG,OAAO,gBAOT;EACG,sBAAsB,uBAAtB;;;AAGJ,MAXG,OAAO,gBAWT,SAAS;EACN,sBAAsB,6BAAtB;;;AAGJ,MAfG,OAAO,gBAeT;EACG,sBAAsB,qBAAtB;;;AAGJ,MAnBG,OAAO,gBAmBT,UAAU;EACP,sBAAsB,2BAAtB;;;AAGJ,wBACuC,yCACa;EAoBxD,MA7CO,OAAO;IA0BN,qBAAA;;EAEA,MA5BD,OAAO,gBA4BL;IACG,8CAAA;;;EAGJ,MAhCD,OAAO,gBAgCL,SAAS;IACN,oDAAA;;;EAGJ,MApCD,OAAO,gBAoCL;IACG,4CAAA;;;EAGJ,MAxCD,OAAO,gBAwCL,UAAU;IACP,kDAAA"}
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/css/components/components.less:
--------------------------------------------------------------------------------
1 | @import "animations.less";
2 | @import "variables.less";
3 | @import "mixins.less";
4 | @import "utils.less";
5 | @import "forms.less";
6 | @import "buttons.less";
7 | @import "tooltip.less";
8 | @import "form-states.less";
9 | @import "alerts.less";
10 | @import "strength-meter.less";
11 | @import "modal.less";
12 | @import "close.less";
13 | @import "toggles.less";
14 | @import "read-next.less";
15 | @import "infobar.less";
16 | @import "progress.less";
17 | @import "image-upload.less";
18 |
--------------------------------------------------------------------------------
/packages/nab-wire-validation/tslint.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": ["tslint:latest", "tslint-config-prettier", "tslint-immutable"],
3 | "rules": {
4 | "interface-name": [true, "never-prefix"],
5 | "no-implicit-dependencies": [true, "dev"],
6 |
7 | "no-var-keyword": true,
8 | "no-parameter-reassignment": true,
9 | "typedef": [true, "call-signature"],
10 |
11 | "readonly-keyword": true,
12 | "readonly-array": true,
13 | "no-let": true,
14 | "no-object-mutation": true,
15 | "no-delete": true,
16 | "no-method-signature": true
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/css/components/progress.less:
--------------------------------------------------------------------------------
1 | .c-progress {
2 | display: none;
3 | height: 2px;
4 | overflow: hidden;
5 | background-color: #f5f5f5;
6 | .box-shadow(~"inset 0 1px 2px rgba(0,0,0,.1)");
7 | position: relative;
8 | margin-top: -2px;
9 | }
10 |
11 | .c-progress-bar {
12 | float: left;
13 | width: 0;
14 | height: 100%;
15 | line-height: 2px;
16 | background-color: #337ab7;
17 | .box-shadow(~"inset 0 -1px 0 rgba(0,0,0,.15)");
18 | .transition-shorthand(width .6s ease);
19 | }
20 |
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/components/Thing.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import ThingLinkComponent from "./ThingLink";
3 | import ThingCommentComponent from "./ThingComment";
4 |
5 | const Thing = ({
6 | ThingLink = ThingLinkComponent,
7 | ThingComment = ThingCommentComponent,
8 | kind,
9 | data,
10 | rank,
11 | expanded,
12 | ...props
13 | }) => {
14 | const Component = ({ t3: ThingLink, t1: ThingComment })[kind];
15 |
16 | return Component ? : null;
17 | };
18 |
19 | export default Thing;
20 |
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/css/components/utils.less:
--------------------------------------------------------------------------------
1 | .c-hidden {
2 | display: none;
3 | }
4 |
5 | .c-clearfix {
6 | .clearfix();
7 | }
8 |
9 | .c-pull-right {
10 | float: right;
11 | }
12 |
13 | .c-pull-left {
14 | float: left;
15 | }
16 |
17 | .c-hide-text {
18 | text-indent: 100%;
19 | white-space: nowrap;
20 | overflow: hidden;
21 | }
22 |
23 | .c-hidden {
24 | display: none;
25 | }
26 |
27 | .fade {
28 | opacity: 0;
29 | .transition-shorthand(opacity .15s linear);
30 |
31 | &.in {
32 | opacity: 1;
33 | }
34 | }
35 |
--------------------------------------------------------------------------------
/packages/notabug/src/Page/Header.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { Link } from "/utils";
3 | import { UserInfo } from "/Auth";
4 | import { TopBar } from "/Page/TopBar";
5 |
6 | export const PageHeader = ({ children }) => (
7 |
20 | );
21 |
--------------------------------------------------------------------------------
/packages/peer/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "baseUrl": ".",
4 | "paths": { "*": ["types/*"] },
5 | "moduleResolution": "node",
6 | "target": "es5",
7 | "module": "es2015",
8 | "lib": ["es2015", "es2016", "es2017", "dom"],
9 | "strict": true,
10 | "sourceMap": true,
11 | "declaration": true,
12 | "allowSyntheticDefaultImports": true,
13 | "experimentalDecorators": true,
14 | "emitDecoratorMetadata": true,
15 | "declarationDir": "dist/types",
16 | "outDir": "dist/lib",
17 | "typeRoots": ["node_modules/@types"]
18 | },
19 | "include": ["src"]
20 | }
21 |
--------------------------------------------------------------------------------
/packages/peer/src/Listing/ListingType/SpaceListing.ts:
--------------------------------------------------------------------------------
1 | import { query } from '@chaingun/scope';
2 | import { Path } from '../Path';
3 | import { SpaceSpec } from '../SpaceSpec';
4 |
5 | const path = '/user/:authorId/spaces/:name/:sort';
6 |
7 | const getSource = query((scope, { authorId, name, sort }) =>
8 | SpaceSpec.getSource(scope, authorId, name, `sort ${sort}`)
9 | );
10 |
11 | const getSpec = query((scope, { authorId, name, sort }) =>
12 | SpaceSpec.getSpec(scope, authorId, name, `sort ${sort}`)
13 | );
14 |
15 | export const SpaceListing = Path.withRoute({
16 | path,
17 | getSource,
18 | getSpec
19 | });
20 |
--------------------------------------------------------------------------------
/packages/notabug/src/Voting/pow.worker.js:
--------------------------------------------------------------------------------
1 | import pow from "/vendor/proof-of-work";
2 |
3 | const solver = new pow.Solver();
4 |
5 | function toHexString(byteArray) {
6 | return Array.from(byteArray, function (byte) {
7 | return ("0" + (byte & 0xff).toString(16)).slice(-2);
8 | }).join("");
9 | }
10 |
11 | onmessage = async function (e) {
12 | try {
13 | const nonce = await solver.solve(e.data[1], e.data[0])
14 | if(nonce)
15 | postMessage([e.data[0], toHexString(nonce)]);
16 | else
17 | postMessage(null)
18 | } catch (e) {
19 | console.error(e.stack || e);
20 | throw e;
21 | }
22 | };
23 |
--------------------------------------------------------------------------------
/packages/client/src/Lingua/utils.ts:
--------------------------------------------------------------------------------
1 | import { GunNode, unpackNode } from '@chaingun/sea-client'
2 | import { Listing } from '@notabug/peer'
3 | import { always, ifElse, map, pipe, reduce, union } from 'ramda'
4 |
5 | export const listingNodeToIds = ifElse(
6 | x => !!x,
7 | pipe(
8 | unpackNode,
9 | Listing.ListingNode.ids
10 | ),
11 | always([])
12 | )
13 |
14 | export const listingNodesToIds = pipe<
15 | readonly GunNode[],
16 | ReadonlyArray,
17 | readonly string[]
18 | >(
19 | map(listingNodeToIds),
20 | reduce(union, [])
21 | )
22 |
--------------------------------------------------------------------------------
/packages/notabug/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 | /node_modules
3 | /.cache
4 | /server-build
5 | server-config.json
6 |
7 | # See https://help.github.com/ignore-files/ for more about ignoring files.
8 |
9 | # dependencies
10 | /node_modules
11 |
12 | # production
13 | /dist
14 | /lmdbdata
15 | /build
16 | /server-build
17 | /htdocs
18 | /server-config.json
19 | /data.json
20 | /data.json6
21 | /lmdbdata
22 | /logs
23 | /radata
24 | /radata*
25 |
26 | # misc
27 | .DS_Store
28 | .env
29 | .env.local
30 | .env.development.local
31 | .env.test.local
32 | .env.production.local
33 |
34 | npm-debug.log*
35 | yarn-debug.log*
36 | yarn-error.log*
37 | *.swp
38 | *.swo
39 |
--------------------------------------------------------------------------------
/packages/peer/types/@chaingun/scope.d.ts:
--------------------------------------------------------------------------------
1 | type T = any;
2 |
3 | export class GunScopePromise extends Promise {}
4 |
5 | export type Promise = GunScopePromise;
6 |
7 | export type resolve = (val: T) => GunScopePromise;
8 |
9 | export function query(
10 | fn: (scope: any, ...args: any) => T | GunScopePromise,
11 | name?: string
12 | ): (scope: any, ...args: any[]) => GunScopePromise;
13 |
14 | export function resolve(val: T): GunScopePromise;
15 |
16 | export function all(promises: PromiseLike[]): GunScopePromise;
17 |
18 | export type GunScope = any;
19 |
20 | export function scope(opts?: any): GunScope;
21 |
--------------------------------------------------------------------------------
/packages/saidit-ingest/tslint.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": ["tslint:latest", "tslint-config-prettier", "tslint-immutable"],
3 | "rules": {
4 | "interface-name": [true, "never-prefix"],
5 | "no-implicit-dependencies": [true, "dev"],
6 |
7 | "no-var-keyword": true,
8 | "no-parameter-reassignment": true,
9 | "typedef": [true, "call-signature"],
10 |
11 | "readonly-keyword": true,
12 | "readonly-array": true,
13 | "no-let": true,
14 | "no-object-mutation": true,
15 | "no-delete": true,
16 | "no-method-signature": true,
17 |
18 | "no-this": true,
19 | "no-class": true,
20 | "no-mixed-interface": true
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/packages/peer/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | cache:
3 | directories:
4 | - ~/.npm
5 | notifications:
6 | email: false
7 | node_js:
8 | - '10'
9 | - '11'
10 | - '8'
11 | - '6'
12 | script:
13 | - npm run test:prod && npm run build
14 | after_success:
15 | - npm run travis-deploy-once "npm run report-coverage"
16 | - if [ "$TRAVIS_BRANCH" = "master" -a "$TRAVIS_PULL_REQUEST" = "false" ]; then npm run travis-deploy-once "npm run deploy-docs"; fi
17 | - if [ "$TRAVIS_BRANCH" = "master" -a "$TRAVIS_PULL_REQUEST" = "false" ]; then npm run travis-deploy-once "npm run semantic-release"; fi
18 | branches:
19 | except:
20 | - /^v\d+\.\d+\.\d+$/
21 |
--------------------------------------------------------------------------------
/packages/peer/src/Listing/Path.ts:
--------------------------------------------------------------------------------
1 | import * as R from 'ramda';
2 | import Route from 'route-parser';
3 |
4 | const splitDomains = R.compose(
5 | R.sortBy(R.identity) as (i: any[]) => string[],
6 | R.filter(R.identity as (i: any) => boolean),
7 | R.map(R.trim),
8 | R.split('+'),
9 | R.toLower,
10 | R.defaultTo('') as (i: string | undefined) => string
11 | );
12 |
13 | const splitTopics = R.compose(
14 | R.ifElse(R.prop('length'), R.identity, R.always(['all'])),
15 | splitDomains
16 | ) as (topic: string) => string[];
17 |
18 | const withRoute = (obj: any) => R.assoc('route', new Route(obj.path), obj);
19 |
20 | export const Path = { splitDomains, splitTopics, withRoute };
21 |
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/components/Expando.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import MarkdownDefault from "./Markdown";
3 | import { optional } from "../util";
4 |
5 | const Expando = ({
6 | Markdown = MarkdownDefault,
7 | expanded,
8 | is_self,
9 | selftext: body,
10 | selftext_html: html
11 | }) => (
12 |
13 | {expanded ? (
14 | is_self && body ? (
15 |
18 | ) : null
19 | ) : null}
20 |
21 | );
22 |
23 | export default Expando;
24 |
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/css/modtools.less:
--------------------------------------------------------------------------------
1 | @import "components/variables.less";
2 | @import "components/mixins.less";
3 | @import "markdown.less";
4 |
5 | @import "mod-action-icons.less";
6 | @import "subreddit-rules.less";
7 |
8 | #this_is_a_hack__please_ignore {
9 | // lets me put this file in the SPRITED_STYLESHEETS section of the Makefile
10 | background-image: url(../reddit.com.header.png); /* SPRITE */
11 | }
12 |
13 | .modtools-page {
14 | & > div.content {
15 | font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
16 | margin: 0;
17 | margin-right: @reddit-sidebar-width;
18 | padding: 15px 20px;
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/flask.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/packages/peer/src/Config.ts:
--------------------------------------------------------------------------------
1 | import * as R from 'ramda';
2 | import { Constants } from './Constants';
3 |
4 | type UpdateFunction = (updates: any) => void;
5 | interface ConfigType {
6 | [idx: string]: string | number | UpdateFunction;
7 | tabulator: string;
8 | indexer: string;
9 | owner: string;
10 | oracleMaxStaleness: number;
11 | update: UpdateFunction;
12 | }
13 |
14 | export const Config: ConfigType = {
15 | tabulator: Constants.INDEXER,
16 | indexer: Constants.INDEXER,
17 | owner: Constants.INDEXER,
18 | oracleMaxStaleness: 1000 * 60 * 60,
19 | update: R.compose(
20 | R.map(([key, val]: [string, string]) => (Config[key] = val)),
21 | R.toPairs
22 | )
23 | };
24 |
--------------------------------------------------------------------------------
/packages/notabug/src/static/Reddit.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { Page } from "/Page";
3 |
4 | export const Reddit = ({ location: { pathname, search } }) => (
5 |
6 |
7 |
This isn't snew
8 |
9 | {"Yes they share some code, but you're looking for "}
10 |
11 | snew.notabug.io
12 |
13 |
14 |
15 | notabug does not rely on reddit's servers, api or content at all; it's
16 | its own network.
17 |
18 |
Only the open-source UI code from reddit is used.
19 |
20 |
21 | );
22 |
--------------------------------------------------------------------------------
/packages/peer/src/Listing/ListingType/CommentedListing.ts:
--------------------------------------------------------------------------------
1 | import { query } from '@chaingun/scope';
2 | import { Config } from '../../Config';
3 | import { Path } from '../Path';
4 | import { ListingSpec } from '../ListingSpec';
5 |
6 | const path = '/user/:authorId/commented/:sort';
7 |
8 | const getSource = query((scope, { authorId, sort }) =>
9 | ListingSpec.getSource(
10 | scope,
11 | Config.indexer,
12 | 'listing:commented',
13 | [`curator ${authorId}`, `sort ${sort}`].join('\n')
14 | )
15 | );
16 |
17 | const getSpec = query((scope, match) => getSource(scope, match).then(ListingSpec.fromSource));
18 |
19 | export const CommentedListing = Path.withRoute({ path, getSource, getSpec });
20 |
--------------------------------------------------------------------------------
/packages/notabug/src/static/index.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import Helmet from "react-helmet";
3 | import { WikiPageContent } from "/Wiki";
4 | import { PageTemplate, PageFooter } from "/Page";
5 | import { Config } from "@notabug/peer";
6 |
7 | export { Reddit } from "./Reddit";
8 | export { Banned } from "./Banned";
9 |
10 | export const StaticPage = ({
11 | match: {
12 | params: { name }
13 | }
14 | }) => (
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 | );
25 |
--------------------------------------------------------------------------------
/packages/peer/src/Listing/ListingType/CommentListing.ts:
--------------------------------------------------------------------------------
1 | import { query } from '@chaingun/scope';
2 | import { Config } from '../../Config';
3 | import { Path } from '../Path';
4 | import { ListingSpec } from '../ListingSpec';
5 |
6 | const path = '/things/:thingId/comments/:sort';
7 |
8 | const getSource = query((scope, { thingId, sort }) =>
9 | ListingSpec.getSource(
10 | scope,
11 | Config.indexer,
12 | 'listing:comments',
13 | [`op ${thingId}`, `sort ${sort}`].join('\n')
14 | )
15 | );
16 |
17 | const getSpec = query((scope, match) => getSource(scope, match).then(ListingSpec.fromSource));
18 |
19 | export const CommentListing = Path.withRoute({
20 | path,
21 | getSource,
22 | getSpec
23 | });
24 |
--------------------------------------------------------------------------------
/packages/notabug/src/utils/JavaScriptRequired.js:
--------------------------------------------------------------------------------
1 | import React, { Fragment } from "react";
2 | import { Markdown } from "./Markdown";
3 | import isNode from "detect-node";
4 |
5 | export const JavaScriptRequired = ({ silent, children }) => isNode ? silent ? null : (
6 |
7 |
20 |
21 | ) : {children || null} ;
22 |
--------------------------------------------------------------------------------
/packages/client/src/adapters.ts:
--------------------------------------------------------------------------------
1 | import {
2 | FederatedAdapterOpts,
3 | FederationAdapter
4 | } from '@chaingun/federation-adapter'
5 | import { createGraphAdapter as createHttpAdapter } from '@chaingun/http-adapter'
6 | import { GunGraphAdapter } from '@chaingun/sea-client'
7 |
8 | export function createFederationAdapter(
9 | internal: GunGraphAdapter,
10 | peerUrls: readonly string[],
11 | persist?: GunGraphAdapter,
12 | opts?: FederatedAdapterOpts
13 | ): GunGraphAdapter {
14 | const peers: Record = peerUrls.reduce((pm, url) => {
15 | return {
16 | ...pm,
17 | [url]: createHttpAdapter(`${url}/gun`)
18 | }
19 | }, {})
20 | const adapter = FederationAdapter.create(internal, peers, persist, opts)
21 |
22 | return adapter
23 | }
24 |
--------------------------------------------------------------------------------
/packages/peer/src/Listing/ListingType/InboxListing.ts:
--------------------------------------------------------------------------------
1 | import { query } from '@chaingun/scope';
2 | import { Config } from '../../Config';
3 | import { Path } from '../Path';
4 | import { ListingSpec } from '../ListingSpec';
5 |
6 | const path = '/user/:authorId/replies/:type/:sort';
7 |
8 | const getSource = query((scope, { authorId, type, sort = 'new' }) =>
9 | ListingSpec.getSource(
10 | scope,
11 | Config.indexer,
12 | 'listing:inbox',
13 | [`replies to author ${authorId}`, 'kind comment', `type ${type}`, `sort ${sort}`].join('\n')
14 | )
15 | );
16 |
17 | const getSpec = query((scope, match) => getSource(scope, match).then(ListingSpec.fromSource));
18 |
19 | export const InboxListing = Path.withRoute({
20 | path,
21 | getSource,
22 | getSpec
23 | });
24 |
--------------------------------------------------------------------------------
/packages/peer/src/Listing/ListingType/SpaceCommentListing.ts:
--------------------------------------------------------------------------------
1 | import { query } from '@chaingun/scope';
2 | import { Path } from '../Path';
3 | import { SpaceSpec } from '../SpaceSpec';
4 | import { ListingSpec } from '../ListingSpec';
5 |
6 | const path = '/user/:authorId/spaces/:name/comments/:thingId/:sort';
7 |
8 | const getSource = query((scope, { thingId, authorId, name, sort }) =>
9 | SpaceSpec.getSource(scope, authorId, name, [`op ${thingId}`, `sort ${sort}`].join('\n'))
10 | );
11 |
12 | const getSpec = query((scope, { thingId, authorId, name, sort }) =>
13 | SpaceSpec.getSpec(scope, authorId, name, [`op ${thingId}`, `sort ${sort}`].join('\n'))
14 | );
15 |
16 | export const SpaceCommentListing = Path.withRoute({
17 | path,
18 | getSource,
19 | getSpec
20 | });
21 |
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/components/Header.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import SrHeaderAreaComponent from "./SrHeaderArea";
3 | import HeaderBottomLeftComponent from "./HeaderBottomLeft";
4 | import UserInfoComponent from "./UserInfo";
5 | import { optional } from "../util";
6 |
7 | const Header = ({
8 | SrHeaderArea = SrHeaderAreaComponent,
9 | HeaderBottomLeft = HeaderBottomLeftComponent,
10 | UserInfo = UserInfoComponent,
11 | ...props
12 | }) => (
13 |
21 | );
22 |
23 | export default Header;
24 |
25 |
--------------------------------------------------------------------------------
/packages/notabug/src/Auth/UserInfo.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { UserInfo as SnewUserInfo } from "/vendor/snew-classic-ui";
3 | import { useNotabug } from "/NabContext";
4 | import { Link } from "/utils";
5 | import { AuthorLink } from "./AuthorLink";
6 |
7 | export const UserInfo = props => {
8 | const { me, onLogout } = useNotabug();
9 |
10 | return me ? (
11 |
19 | ) : (
20 |
25 | );
26 | };
27 |
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/css/components/image-upload.css:
--------------------------------------------------------------------------------
1 | .c-image-upload-input {
2 | position: absolute;
3 | top: 0;
4 | bottom: 0;
5 | left: 0;
6 | right: 0;
7 | display: block;
8 | margin: 0;
9 | opacity: 0;
10 | padding: 0;
11 | width: 100%;
12 | }
13 | .c-image-upload-input:hover {
14 | cursor: pointer;
15 | }
16 | .c-image-upload-preview-container {
17 | border-width: 2px;
18 | border-style: dashed;
19 | border-color: lightgray;
20 | display: inline-block;
21 | margin: 5px 0;
22 | overflow: hidden;
23 | padding: 5px;
24 | position: relative;
25 | }
26 | .c-image-upload-preview {
27 | display: block;
28 | margin: 0 !important;
29 | }
30 | .c-image-upload-btn {
31 | display: block;
32 | padding: 2px 8px !important;
33 | font-size: 10px !important;
34 | }
35 |
--------------------------------------------------------------------------------
/packages/notabug/README.md:
--------------------------------------------------------------------------------
1 | # Notabug UI
2 |
3 | This is a UI client for notabug built in React based on Reddit's open-source classic UI.
4 |
5 | > I think all censorship should be deplored. My position is that bits are **not a bug**.
6 | >
7 | > — Aaron Swartz (1986 - 2013)
8 |
9 | **notabug** is a p2p link aggregator app that is:
10 |
11 | - distributed: peers backup/serve content
12 | - anonymous: but don't trust it to be
13 | - psuedo-anonymous: users can create optional cryptographic identities
14 | - immutable: edits are not supported for anonymous content
15 | - mutable: edits are supported for authenticated content
16 | - PoW-based: **voting is slow/CPU heavy**
17 |
18 | ### UI Development
19 |
20 | yarn && yarn start
21 |
22 | notabug ui client will then be available on localhost:3333 talking to notabug.io directly
23 |
--------------------------------------------------------------------------------
/packages/notabug/src/vendor/snew-classic-ui/static/css/components/image-upload.less:
--------------------------------------------------------------------------------
1 | .c-image-upload-input {
2 | position: absolute;
3 | top: 0;
4 | bottom: 0;
5 | left: 0;
6 | right: 0;
7 | display: block;
8 | margin: 0;
9 | opacity: 0;
10 | padding: 0;
11 | width: 100%;
12 |
13 | &:hover {
14 | cursor: pointer;
15 | }
16 | }
17 |
18 | .c-image-upload-preview-container {
19 | border-width: 2px;
20 | border-style: dashed;
21 | border-color: lightgray;
22 | display: inline-block;
23 | margin: 5px 0;
24 | overflow: hidden;
25 | padding: 5px;
26 | position: relative;
27 | }
28 |
29 | .c-image-upload-preview {
30 | display: block;
31 | margin: 0 !important;
32 | }
33 |
34 | .c-image-upload-btn {
35 | display: block;
36 | padding: 2px 8px !important;
37 | font-size: 10px !important;;
38 | }
39 |
--------------------------------------------------------------------------------