├── .github └── workflows │ ├── build.yml │ └── format.yml ├── .gitignore ├── .prettierignore ├── Components ├── appwindow │ ├── index.js │ ├── renderer.js │ ├── searchbar.js │ └── workshops.js ├── meta │ └── index.js └── sidebar │ ├── card.js │ └── index.js ├── README.md ├── State ├── actions │ ├── actiontype.js │ └── index.js ├── reducers │ └── index.js └── store │ └── index.js ├── Theme └── theme.js ├── apppages ├── Anaconda │ └── README.md ├── AndroidStd │ └── README.md ├── Androidcourse │ └── README.md ├── Androidpdf │ └── README.md ├── Angular │ └── README.md ├── Arch │ └── README.md ├── Aromaticcomp │ └── README.md ├── Audacity │ └── README.md ├── Audrey │ └── README.md ├── Blender │ └── README.md ├── Bootstrap │ └── README.md ├── Bootstrappdf │ └── README.md ├── Calibre │ └── README.md ├── Chris │ └── README.md ├── Cosmologyuniverse │ └── README.md ├── Cplus │ └── README.md ├── Cpluspluspdf │ └── README.md ├── Csscourse │ └── README.md ├── Csspdf │ └── README.md ├── D3 │ └── README.md ├── Datasciencecourse │ └── README.md ├── Davinci │ └── README.md ├── Deeplearningcourse │ └── README.md ├── Denocourse │ └── README.md ├── Dscourse │ └── README.md ├── Dylan │ └── README.md ├── Elon │ └── README.md ├── Fedora │ └── README.md ├── Firebaseappcourse │ └── README.md ├── Gimp │ └── README.md ├── Gitcourse │ └── README.md ├── Golangcourse │ └── README.md ├── Guillermo │ └── README.md ├── HackIde │ └── README.md ├── Htmlcourse │ └── README.md ├── Htmlpdf │ └── README.md ├── Inkscape │ └── README.md ├── Iospdf │ └── README.md ├── Jack │ └── README.md ├── Java │ └── README.md ├── Javapdf │ └── README.md ├── Javascriptpdf │ └── README.md ├── Jquerypdf │ └── README.md ├── Jscourse │ └── README.md ├── Jsprojects │ └── README.md ├── Kali │ └── README.md ├── Limor │ └── README.md ├── LinearEq │ └── README.md ├── Linuxmint │ └── README.md ├── Macromolecules │ └── README.md ├── Nodejs │ └── README.md ├── Nodepdf │ └── README.md ├── Organicchem │ └── README.md ├── Paperjs │ └── README.md ├── Patrick │ └── README.md ├── Pencil2d │ └── README.md ├── Pentestingcourse │ └── README.md ├── Phaser │ └── README.md ├── Popperjs │ └── README.md ├── Python │ └── README.md ├── Pythoncourse │ └── README.md ├── Pythonpdf │ └── README.md ├── React │ └── README.md ├── Reactcourse │ └── README.md ├── Reactpdf │ └── README.md ├── Risetwp │ └── README.md ├── Rubyrailspdf │ └── README.md ├── Simone │ └── README.md ├── Sqlcourse │ └── README.md ├── Trignometry │ └── README.md ├── Ubuntu │ └── README.md ├── Unity │ └── README.md ├── Unityfpscourse │ └── README.md ├── Vscode │ └── README.md ├── Vue │ └── README.md ├── Vuecourse │ └── README.md ├── Vuepdf │ └── README.md ├── Wolfenstein │ └── README.md └── jQuery │ └── README.md ├── index.css ├── lib ├── Ama │ └── index.js ├── Books │ └── index.js ├── Games │ └── index.js ├── Graphics │ └── index.js ├── Home │ └── index.js ├── Javascript │ └── index.js ├── KhanAcademy │ └── index.js ├── Linux │ └── index.js ├── Music │ └── index.js ├── Productivity │ └── index.js ├── Programming │ └── index.js ├── Videos │ └── index.js ├── data │ ├── anaconda │ │ └── index.js │ ├── androidcourse │ │ └── index.js │ ├── androidpdf │ │ └── index.js │ ├── androidstudio │ │ └── index.js │ ├── angular │ │ └── index.js │ ├── arch │ │ └── index.js │ ├── aromaticcompoundsdata │ │ └── index.js │ ├── audacity │ │ └── index.js │ ├── audrey │ │ └── index.js │ ├── blender │ │ └── index.js │ ├── bootstrap │ │ └── index.js │ ├── bootstrappdf │ │ └── index.js │ ├── c++ │ │ └── index.js │ ├── calibrereader │ │ └── index.js │ ├── chris │ │ └── index.js │ ├── cosmouniversedata │ │ └── index.js │ ├── cpluspluspdf │ │ └── index.js │ ├── csscourse │ │ └── index.js │ ├── csspdf │ │ └── index.js │ ├── d3 │ │ └── index.js │ ├── data.js │ ├── datasciencecourse │ │ └── index.js │ ├── davinci │ │ └── index.js │ ├── deeplearningcourse │ │ └── index.js │ ├── denocourse │ │ └── index.js │ ├── dscourse │ │ └── index.js │ ├── dylan │ │ └── index.js │ ├── elonmusk │ │ └── index.js │ ├── fedora │ │ └── index.js │ ├── firebaseappcourse │ │ └── index.js │ ├── gimp │ │ └── index.js │ ├── gitcourse │ │ └── index.js │ ├── golangcoursedata │ │ └── index.js │ ├── guillermo │ │ └── index.js │ ├── hackide │ │ └── index.js │ ├── htmlcourse │ │ └── index.js │ ├── htmlpdf │ │ └── index.js │ ├── index.js │ ├── inkspace │ │ └── index.js │ ├── iospdf │ │ └── index.js │ ├── jack │ │ └── index.js │ ├── java │ │ └── index.js │ ├── javapdf │ │ └── index.js │ ├── javascriptpdf │ │ └── index.js │ ├── jquery │ │ └── index.js │ ├── jquerypdf │ │ └── index.js │ ├── js_crashcourse │ │ └── index.js │ ├── jsprojects │ │ └── index.js │ ├── kali │ │ └── index.js │ ├── limor │ │ └── index.js │ ├── lineareqdata │ │ └── index.js │ ├── linuxmint │ │ └── index.js │ ├── macromoleculesdata │ │ └── index.js │ ├── nodejs │ │ └── index.js │ ├── nodepdf │ │ └── index.js │ ├── organicchemdata │ │ └── index.js │ ├── paper │ │ └── index.js │ ├── patrick │ │ └── index.js │ ├── pencil2d │ │ └── index.js │ ├── pentestingcourse │ │ └── index.js │ ├── phaser │ │ └── index.js │ ├── popper │ │ └── index.js │ ├── python │ │ └── index.js │ ├── pythoncourse │ │ └── index.js │ ├── pythonpdf │ │ └── index.js │ ├── react │ │ └── index.js │ ├── reactcourse │ │ └── index.js │ ├── reactpdf │ │ └── index.js │ ├── risetwpdata │ │ └── index.js │ ├── rubyrailspdf │ │ └── index.js │ ├── simone │ │ └── index.js │ ├── sqlcourse │ │ └── index.js │ ├── trignometrydata │ │ └── index.js │ ├── ubuntu │ │ └── index.js │ ├── unity │ │ └── index.js │ ├── unityfpscourse │ │ └── index.js │ ├── vscode │ │ └── index.js │ ├── vue │ │ └── index.js │ ├── vuecourse │ │ └── index.js │ ├── vuepdf │ │ └── index.js │ └── wolfenstein │ │ └── index.js ├── maps │ ├── data.js │ └── mapper.js └── search │ └── index.js ├── next.config.js ├── package.json ├── pages ├── _app.js ├── app │ └── [slug].js └── index.js ├── public ├── appicons │ ├── anaconda.png │ ├── android.png │ ├── angular.png │ ├── arch.png │ ├── audacity.png │ ├── biology.png │ ├── blender.png │ ├── blenderlogo.png │ ├── book.png │ ├── bootstrap.png │ ├── c++.png │ ├── calibre.png │ ├── chemistry.png │ ├── css.png │ ├── d3.png │ ├── davinci.png │ ├── deno.png │ ├── ds.png │ ├── fedora.png │ ├── firebase.png │ ├── freecodecamp.png │ ├── gimplogo.png │ ├── git.png │ ├── golang.png │ ├── hacklogo.jpg │ ├── history.png │ ├── html.png │ ├── inkscape.png │ ├── ios.png │ ├── iosalternate.png │ ├── java.png │ ├── jquery.png │ ├── js.png │ ├── kali.png │ ├── linuxmint.png │ ├── maths.png │ ├── nodejs.png │ ├── pencil2d.png │ ├── popper.png │ ├── python.png │ ├── pytorch.png │ ├── react.png │ ├── rubyrails.png │ ├── space copy.jpg │ ├── space.jpg │ ├── space.png │ ├── sql.png │ ├── ubuntu.png │ ├── unity.png │ ├── universe copy.png │ ├── universe.png │ ├── video.png │ ├── vscode.png │ ├── vue.png │ └── wolfenstein.png ├── asset1.png ├── asset2.png ├── asset3.png ├── favicons │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── mstile-150x150.png │ ├── safari-pinned-tab.svg │ └── site.webmanifest ├── files │ ├── anaconda.zip │ ├── androidcourse.zip │ ├── androidpdf.zip │ ├── angular.zip │ ├── arch.zip │ ├── aromaticcompounds.zip │ ├── audacity.zip │ ├── audrey.zip │ ├── blender.zip │ ├── bootstrap.zip │ ├── bootstrappdf.zip │ ├── c++.zip │ ├── calibre.zip │ ├── chris.zip │ ├── cosmology_universe.zip │ ├── cpluspdf.zip │ ├── csscourse.zip │ ├── csspdf.zip │ ├── d3.zip │ ├── datasciencecourse.zip │ ├── davinci.zip │ ├── deeplearningcourse.zip │ ├── denocourse.zip │ ├── dscourse.zip │ ├── dylan.zip │ ├── editor.zip │ ├── elon.zip │ ├── fedora.zip │ ├── firebaseapp.zip │ ├── gimp.zip │ ├── gitcourse.zip │ ├── golangcourse.zip │ ├── guillermo.zip │ ├── htmlcourse.zip │ ├── htmlpdf.zip │ ├── inkspace.zip │ ├── iospdf.zip │ ├── jack.zip │ ├── java.zip │ ├── javapdf.zip │ ├── javascriptpdf.zip │ ├── jquery.zip │ ├── jquerypdf.zip │ ├── jsprojectscourse.zip │ ├── kali.zip │ ├── limor.zip │ ├── linearequations.zip │ ├── linuxmint.zip │ ├── macromolecules.zip │ ├── nodejs.zip │ ├── nodepdf.zip │ ├── organicchem.zip │ ├── paper.zip │ ├── patrick.zip │ ├── pencil2d.zip │ ├── pentestingcourse.zip │ ├── phaser.zip │ ├── popper.zip │ ├── python.zip │ ├── pythonpdf.zip │ ├── react.zip │ ├── reactcourse.zip │ ├── reactpdf.zip │ ├── risetwp.zip │ ├── rubyrailspdf.zip │ ├── simone.zip │ ├── sqlcourse.zip │ ├── trignometry.zip │ ├── ubuntu.zip │ ├── unity.zip │ ├── unityfpscourse.zip │ ├── video.zip │ ├── vscode.zip │ ├── vue.zip │ ├── vuecourse.zip │ ├── vuepdf.zip │ └── wolfenstein.zip ├── hackclublogo.svg ├── icons │ ├── books.png │ ├── colorpallete.png │ ├── gamingconsole.png │ ├── guitar.png │ ├── hacklogo.jpg │ ├── hacklogo.png │ ├── hacklogorounded.png │ ├── homevar.png │ ├── javascript.png │ ├── khanacademy.png │ ├── linux.png │ ├── productivity.png │ ├── programming.png │ ├── videos.png │ └── workshops.png ├── poster.gif ├── readme │ ├── contactus.webp │ ├── gimpss.png │ ├── help.webp │ ├── how.webp │ ├── impressive.webp │ ├── mainss.png │ ├── treasure.webp │ ├── want.gif │ └── want.webp ├── screenshots │ ├── Androidcourse │ │ ├── ss1.png │ │ └── ss2.png │ ├── Aromaticcomp │ │ └── ss1.png │ ├── Audacity │ │ ├── audacityss1.png │ │ └── audacityss2.png │ ├── Audrey │ │ ├── ss1.png │ │ └── ss1.webp │ ├── Blender │ │ ├── blenderss1.png │ │ └── blenderss2.png │ ├── Calibre │ │ ├── calibress1.png │ │ └── calibress2.png │ ├── Chris │ │ ├── ss1.jpeg │ │ └── ss1.webp │ ├── Cosmouni │ │ └── ss1.png │ ├── Csscourse │ │ ├── ss1.png │ │ └── ss2.png │ ├── Datasciencecourse │ │ └── ss1.png │ ├── Davinci │ │ ├── davinciss1.jpg │ │ └── davinciss2.jpg │ ├── Deeplearningcourse │ │ └── ss1.png │ ├── Denocourse │ │ └── ss1.png │ ├── Dscourse │ │ ├── ss1.png │ │ └── ss2.png │ ├── Dylan │ │ ├── ss1.jpg │ │ └── ss1.png │ ├── Elon │ │ ├── ss1.jpg │ │ └── ss1.png │ ├── Firebaseapp │ │ └── ss1.png │ ├── Gimp │ │ ├── gimpss1.jpg │ │ └── gimpss2.jpg │ ├── Gitcourse │ │ ├── githubss1.png │ │ └── githubss2.png │ ├── Golangcourse │ │ └── ss1.png │ ├── Guillermo │ │ ├── ss1.png │ │ └── ss1.webp │ ├── Hackide │ │ ├── hackidess1.gif │ │ ├── hackidess1.png │ │ ├── hackidess2.gif │ │ └── hackidess2.png │ ├── Htmlcourse │ │ ├── ss1.png │ │ └── ss2.png │ ├── Inkscape │ │ ├── inkscapess1.png │ │ └── inkscapess2.png │ ├── Jack │ │ ├── ss1.png │ │ └── ss1.webp │ ├── Jscrashcourse │ │ ├── jscrashcoursess1.png │ │ └── jscrashcoursess2.png │ ├── Jsprojects │ │ └── ss1.png │ ├── Limor │ │ ├── ss1.png │ │ └── ss1.webp │ ├── Linear │ │ └── ss1.png │ ├── Macromolecules │ │ └── ss1.png │ ├── Organicchem │ │ └── ss1.png │ ├── Patrick │ │ ├── ss1.jpg │ │ └── ss1.png │ ├── Pencil2d │ │ ├── ss1.png │ │ └── ss2.jpg │ ├── Pentestingcourse │ │ ├── ss1.png │ │ └── ss2.png │ ├── Pythoncourse │ │ ├── pythoncoursess1.png │ │ └── pythoncoursess2.png │ ├── Reactcourse │ │ ├── ss1.png │ │ └── ss2.png │ ├── Risetwp │ │ └── ss1.png │ ├── Simone │ │ ├── ss1.jpeg │ │ └── ss1.webp │ ├── Sqlcourse │ │ ├── ss1.png │ │ └── ss2.png │ ├── Trignometry │ │ └── ss1.png │ ├── Unity │ │ ├── ss1.png │ │ └── ss2.png │ ├── Unityfpscourse │ │ ├── ss1.png │ │ └── ss2.png │ ├── Vscode │ │ ├── vscodess1.png │ │ └── vscodess2.png │ ├── Vuecourse │ │ ├── ss1.png │ │ └── ss2.png │ └── Wolfenstein │ │ ├── wolfensteinss1.png │ │ └── wolfensteinss2.png ├── starblank.png └── starfilled.png ├── server.js └── yarn.lock /.github/workflows/build.yml: -------------------------------------------------------------------------------- 1 | name: build 2 | 3 | on: 4 | - push 5 | - pull_request 6 | 7 | jobs: 8 | build: 9 | runs-on: ubuntu-latest 10 | steps: 11 | - uses: actions/checkout@v2 12 | - uses: actions/setup-node@v1 13 | - run: yarn install 14 | - run: yarn run build 15 | -------------------------------------------------------------------------------- /.github/workflows/format.yml: -------------------------------------------------------------------------------- 1 | name: format 2 | 3 | on: 4 | - push 5 | - pull_request 6 | 7 | jobs: 8 | prettier: 9 | runs-on: ubuntu-latest 10 | steps: 11 | - uses: actions/checkout@v2 12 | - uses: actions/setup-node@v1 13 | - run: yarn install 14 | - run: yarn run checkFormat 15 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # next.js 12 | /.next/ 13 | /out/ 14 | 15 | # production 16 | /build 17 | 18 | # misc 19 | .DS_Store 20 | 21 | # debug 22 | npm-debug.log* 23 | yarn-debug.log* 24 | yarn-error.log* 25 | 26 | # local env files 27 | .env.local 28 | .env.development.local 29 | .env.test.local 30 | .env.production.local 31 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .next 2 | -------------------------------------------------------------------------------- /Components/appwindow/renderer.js: -------------------------------------------------------------------------------- 1 | /**@jsx jsx*/ 2 | import { jsx, Grid } from 'theme-ui' 3 | import { AppCard } from './index' 4 | 5 | export default ({ data, activetab }) => { 6 | const keyinitial = activetab 7 | 8 | return ( 9 | 17 | {data.data.map((ele, index) => ( 18 | 25 | ))} 26 | 27 | ) 28 | } 29 | -------------------------------------------------------------------------------- /Components/appwindow/searchbar.js: -------------------------------------------------------------------------------- 1 | /**@jsx jsx*/ 2 | import { jsx, Input, Flex, Box } from 'theme-ui' 3 | import Icon from '@hackclub/icons' 4 | export default ({ onChange }) => ( 5 | 12 | { 16 | onChange( 17 | document ? document.getElementsByClassName('search')[0].value : null 18 | ) 19 | }} 20 | sx={{ 21 | display: 'inline-block', 22 | width: [300], 23 | border: 'none', 24 | pl: 4, 25 | py: 3, 26 | borderRadius: [5], 27 | }} 28 | /> 29 | 34 | 35 | ) 36 | -------------------------------------------------------------------------------- /Components/appwindow/workshops.js: -------------------------------------------------------------------------------- 1 | /**@jsx jsx*/ 2 | import { jsx, Button } from "theme-ui"; 3 | 4 | export default () => ( 5 |
14 |
{ 35 | window.open("https://workshops.hackclub.com/"); 36 | }} 37 | > 38 |

{`Launch Workshops >`}

39 |
40 |
41 | ); 42 | -------------------------------------------------------------------------------- /Components/meta/index.js: -------------------------------------------------------------------------------- 1 | import Head from 'next/head' 2 | 3 | export default () => ( 4 | 5 | 10 | 16 | 22 | 23 | 28 | 29 | 30 | Hack Store- We believe Internet is Everyone's right 31 | 32 | 33 | 34 | 35 | 39 | 40 | 44 | 48 | 51 | 55 | 59 | 63 | 67 | 71 | 72 | ) 73 | -------------------------------------------------------------------------------- /Components/sidebar/card.js: -------------------------------------------------------------------------------- 1 | /**@jsx jsx*/ 2 | import { jsx } from "theme-ui"; 3 | import store from "../../State/store/index"; 4 | import { activetabchanged } from "../../State/actions/index"; 5 | 6 | export default ({ imgsrc, section }) => ( 7 |
{ 18 | store.dispatch(activetabchanged(section)); 19 | }} 20 | > 21 |
22 | 23 |
{" "} 24 |

{section}

25 |
26 | ); 27 | -------------------------------------------------------------------------------- /Components/sidebar/index.js: -------------------------------------------------------------------------------- 1 | /**@jsx jsx*/ 2 | 3 | import { jsx } from 'theme-ui' 4 | import Card from './card' 5 | 6 | export default ({ imgsrc, section }) => ( 7 |
19 | {' '} 20 |

28 | Hack Store 29 |

30 | {carddata.map((ele) => ( 31 | 32 | ))} 33 |
34 | ) 35 | 36 | export const carddata = [ 37 | { imgsrc: 'icons/homevar.png', section: 'Home' }, 38 | { imgsrc: 'icons/productivity.png', section: 'Productivity' }, 39 | { imgsrc: 'icons/guitar.png', section: 'Music' }, 40 | { imgsrc: 'icons/programming.png', section: 'Programming' }, 41 | { imgsrc: 'icons/colorpallete.png', section: 'Graphics' }, 42 | { imgsrc: 'icons/linux.png', section: 'Linux' }, 43 | { imgsrc: 'icons/gamingconsole.png', section: 'Games' }, 44 | { imgsrc: 'icons/hacklogorounded.png', section: 'AMA' }, 45 | { imgsrc: 'icons/books.png', section: 'Books' }, 46 | { imgsrc: 'icons/videos.png', section: 'Videos' }, 47 | { imgsrc: 'icons/javascript.png', section: 'Javascript' }, 48 | { imgsrc: 'icons/khanacademy.png', section: 'Khan Academy' }, 49 | { imgsrc: 'icons/workshops.png', section: 'Workshops' }, 50 | ] 51 | -------------------------------------------------------------------------------- /State/actions/actiontype.js: -------------------------------------------------------------------------------- 1 | export const activetab = "activetab"; 2 | -------------------------------------------------------------------------------- /State/actions/index.js: -------------------------------------------------------------------------------- 1 | import { activetab } from "./actiontype"; 2 | 3 | export const activetabchanged = (activeTab) => ({ 4 | type: activetab, 5 | activetab: activeTab, 6 | }); 7 | -------------------------------------------------------------------------------- /State/reducers/index.js: -------------------------------------------------------------------------------- 1 | import { combineReducers } from "redux"; 2 | 3 | import { activetab } from "../actions/actiontype"; 4 | 5 | function activetabreducer(state = "Home", action) { 6 | if (action.type == activetab) { 7 | return action.activetab; 8 | } 9 | return state; 10 | } 11 | 12 | export default combineReducers({ 13 | activetab: activetabreducer, 14 | }); 15 | -------------------------------------------------------------------------------- /State/store/index.js: -------------------------------------------------------------------------------- 1 | import { composeWithDevTools } from "redux-devtools-extension"; 2 | import { createStore, applyMiddleware } from "redux"; 3 | import rootReducer from "../reducers/index"; 4 | import thunk from "redux-thunk"; 5 | //We should never mutate the state directly 6 | 7 | const middlewares = [thunk]; 8 | const middlewareEnhancer = applyMiddleware(...middlewares); 9 | 10 | const enhancers = [middlewareEnhancer]; 11 | const composedEnhancers = composeWithDevTools(...enhancers); 12 | 13 | const store = createStore(rootReducer, composedEnhancers); 14 | 15 | export default store; 16 | -------------------------------------------------------------------------------- /apppages/Anaconda/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Anaconda 3 | img: '/appicons/anaconda.png' 4 | ratings: 4 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/9zkPtRELKM.zip' 6 | --- 7 | 8 | Anaconda is a free and open-source distribution of the Python and R programming languages for scientific computing, that aims to simplify package management and deployment. The distribution includes data-science packages suitable for Windows, Linux, and macOS 9 | -------------------------------------------------------------------------------- /apppages/AndroidStd/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Android Studio 3 | img: '/appicons/android.png' 4 | ratings: 4 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/fNCq0MkrQ8.zip' 6 | --- 7 | 8 | Android Studio is the official integrated development environment for Google's Android operating system, built on JetBrains' IntelliJ IDEA software and designed specifically for Android development. 9 | 10 | ![ss1](https://cloud-7cg92trbj.vercel.app/0image.png) 11 | Android Studio was announced on May 16, 2013 at the Google I/O conference. It was in early access preview stage starting from version 0.1 in May 2013, then entered beta stage starting from version 0.8 which was released in June 2014.[11] The first stable build was released in December 2014, starting from version 1.0.[12] 12 | 13 | On May 7, 2019, Kotlin replaced Java as Google's preferred language for Android app development.[13] Java is still supported, as is C++.[14] 14 | 15 | ![ss2](https://cloud-bibkveb3a.vercel.app/0image.png) 16 | -------------------------------------------------------------------------------- /apppages/Androidcourse/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Android course 3 | img: '/appicons/android.png' 4 | ratings: 5 5 | download: '../files/androidcourse.zip' 6 | tags: 'course,android development,freecodecamp' 7 | link: 'https://storage.googleapis.com/file-in.appspot.com/files/H_jr6dPpSc.zip' 8 | --- 9 | 10 | Learn how to develop an android app from scratch in this full course for beginners. No prior programming experience required! 11 | 12 | image 13 | 14 | ## Why learn Android 15 | 16 | Android is an open source and Linux-based operating system for mobile devices such as smartphones and tablet computers. Android was developed by the Open Handset Alliance, led by Google, and other companies. This tutorial will teach you basic Android programming and will also take you through some advance concepts related to Android application development. 17 | 18 | image 19 | -------------------------------------------------------------------------------- /apppages/Androidpdf/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Android Development Ebook 3 | img: '/appicons/android.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/d-bjgjEHnY.zip' 6 | tags: 'ebook,guide,Android' 7 | --- 8 | 9 | This is an ebook on HTML provided by https://riptutorial.com/ 10 | 11 | ## What is Android ? 12 | 13 | Android is a mobile operating system based on a modified version of the Linux kernel and other open source software, designed primarily for touchscreen mobile devices such as smartphones and tablets. 14 | 15 | ## About 16 | 17 | It is an unofficial and free Android Development ebook created for educational purposes. All the content is 18 | extracted from Stack Overflow Documentation, which is written by many hardworking individuals at 19 | Stack Overflow. It is neither affiliated with Stack Overflow nor official Android. 20 | The content is released under Creative Commons BY-SA, and the list of contributors to each 21 | chapter are provided in the credits section at the end of this book. Images may be copyright of 22 | their respective owners unless otherwise specified. All trademarks and registered trademarks are 23 | the property of their respective company owners. 24 | 25 | Use the content presented in this book at your own risk; it is not guaranteed to be correct nor 26 | accurate, please send your feedback and corrections to **info@zzzprojects.com** 27 | -------------------------------------------------------------------------------- /apppages/Angular/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Angular 3 | img: '/appicons/angular.png' 4 | ratings: 4 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/s6quNy18uO.zip' 6 | --- 7 | 8 | AngularJS is a very powerful JavaScript Framework. It is used in Single Page Application (SPA) projects. It extends HTML DOM with additional attributes and makes it more responsive to user actions. AngularJS is open source, completely free, and used by thousands of developers around the world. It is licensed under the Apache license version 2.0. 9 | 10 | ## Core Features 11 | 12 | The core features of AngularJS are as follows − 13 | 14 | - **Data-binding** − It is the automatic synchronization of data between model and view components. 15 | 16 | - **Scope** − These are objects that refer to the model. They act as a glue between controller and view. 17 | 18 | - **Controller** − These are JavaScript functions bound to a particular scope. 19 | 20 | - **Services** − AngularJS comes with several built-in services such as \$http to make a XMLHttpRequests. These are singleton objects which are instantiated only once in app. 21 | 22 | - **Filters** − These select a subset of items from an array and returns a new array. 23 | 24 | - **Directives** − Directives are markers on DOM elements such as elements, attributes, css, and more. These can be used to create custom HTML tags that serve as new, custom widgets. AngularJS has built-in directives such as ngBind, ngModel, etc. 25 | 26 | - **Templates** − These are the rendered view with information from the controller and model. These can be a single file (such as index.html) or multiple views in one page using partials. 27 | 28 | ## Routing − It is concept of switching views. 29 | 30 | - **Model View Whatever** − MVW is a design pattern for dividing an application into different parts called Model, View, and Controller, each with distinct responsibilities. AngularJS does not implement MVC in the traditional sense, but rather something closer to MVVM (Model-View-ViewModel). The Angular JS team refers it humorously as Model View Whatever. 31 | 32 | - **Deep Linking** − Deep linking allows to encode the state of application in the URL so that it can be bookmarked. The application can then be restored from the URL to the same state. 33 | 34 | - **Dependency Injection** − AngularJS has a built-in dependency injection subsystem that helps the developer to create, understand, and test the applications easily. 35 | -------------------------------------------------------------------------------- /apppages/Arch/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Arch Linux 3 | img: '/appicons/arch.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/qdRPGMH6Kn.zip' 6 | --- 7 | 8 | Arch Linux is a Linux distribution for computers with x86-64 processors. Arch Linux adheres to five principles: simplicity, modernity, pragmatism, user centrality and versatility. 9 | -------------------------------------------------------------------------------- /apppages/Aromaticcomp/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Armoatic Compounds 3 | img: '/appicons/chemistry.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/nZFqfqVqXZ.zip' 6 | tags: 'Armoatic Compounds,Chemistry' 7 | --- 8 | 9 | ## What is Khan Academy ? 10 | 11 | Khan Academy is an American non-profit educational organization created in 2008 by Salman Khan, with the goal of creating a set of online tools that help educate students. The organization produces short lessons in the form of videos. 12 | 13 | ## What is in this? 14 | 15 | Organic Chemistry on Khan Academy: Carbon can form covalent bonds with itself and other elements to create a mind-boggling array of structures. In organic chemistry, we will learn about the reactions chemists use to synthesize crazy carbon based structures, as well as the analytical methods to characterize them. We will also think about how those reactions are occurring on a molecular level with reaction mechanisms. Simply put, organic chemistry is like building with molecular Legos. Let's make some beautiful organic molecules! 16 | 17 | image 18 | -------------------------------------------------------------------------------- /apppages/Audacity/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Audacity 3 | img: '/appicons/audacity.png' 4 | ratings: 3 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/R_54XnQ3wx.zip' 6 | tags: 'audio,music,productivity,editing' 7 | --- 8 | 9 | Audacity is an easy-to-use, multi-track audio editor and recorder for Windows, macOS, GNU/Linux and other operating systems. 10 | 11 | image 12 | 13 | - Record live audio. 14 | - Record computer playback on any Windows Vista or later machine. 15 | - Convert tapes and records into digital recordings or CDs. 16 | - Edit WAV, AIFF, FLAC, MP2, MP3, Ogg Vorbis sound files. 17 | - AC3, M4A/M4R (AAC), WMA, Opus and other formats supported using optional libraries. 18 | - Cut, copy, splice or mix sounds together. 19 | - Numerous effects including change the speed or pitch of a recording. 20 | - Write your own plug-in effects with Nyquist. 21 | \*\* And more! See the complete list of features. 22 | 23 | image 24 | -------------------------------------------------------------------------------- /apppages/Audrey/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Audrey Tang's AMA 3 | img: '/appicons/video.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/fJV5LjvHkb.zip' 6 | tags: 'Hack Club,Audrey Tang,AMA' 7 | --- 8 | 9 | # Watch Hack Club's interaction with Audrey Tang! 10 | 11 | image 12 | -------------------------------------------------------------------------------- /apppages/Blender/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Blender 3 | img: '/appicons/blenderlogo.png' 4 | ratings: 3 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/7TDX3wzNTl.zip' 6 | tags: '3d,graphics,design' 7 | --- 8 | 9 | Blender is the free and open source 3D creation suite. It supports the entirety of the 3D pipeline—modeling, rigging, animation, simulation, rendering, compositing and motion tracking, even video editing and game creation. Advanced users employ Blender’s API for Python scripting to customize the application and write specialized tools; often these are included in Blender’s future releases. Blender is well suited to individuals and small studios who benefit from its unified pipeline and responsive development process. Examples from many Blender-based projects are available in the showcase. 10 | 11 | image 12 | 13 | Blender is cross-platform and runs equally well on Linux, Windows, and Macintosh computers. Its interface uses OpenGL to provide a consistent experience. To confirm specific compatibility, the list of supported platforms indicates those regularly tested by the development team. 14 | 15 | image 16 | -------------------------------------------------------------------------------- /apppages/Bootstrap/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bootstrap 3 | img: '/appicons/bootstrap.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/-XCxyjjGRn.zip' 6 | --- 7 | 8 | Twitter Bootstrap is the most popular front end framework in the recent time. It is sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development. It uses HTML, CSS and Javascript. This tutorial will teach you the basics of Bootstrap Framework using which you can create web projects with ease. The tutorial is divided into sections such as Bootstrap Basic Structure, Bootstrap CSS, Bootstrap Layout Components and Bootstrap Plugins. Each of these sections contain related topics with simple and useful examples. 9 | 10 | ## Why to Learn Bootstrap? 11 | 12 | - Mobile first approach − Bootstrap 3, framework consists of Mobile first styles throughout the entire library instead them of in separate files. 13 | 14 | - Browser Support − It is supported by all popular browsers. 15 | 16 | * Easy to get started − With just the knowledge of HTML and CSS anyone can get started with Bootstrap. Also the Bootstrap official site has a good documentation. 17 | 18 | * Responsive design − Bootstrap's responsive CSS adjusts to Desktops, Tablets and Mobiles. More about the responsive design is in the chapter Bootstrap Responsive Design. 19 | 20 | - Provides a clean and uniform solution for building an interface for developers. 21 | 22 | - It contains beautiful and functional built-in components which are easy to customize. 23 | 24 | - It also provides web based customization. 25 | 26 | **And best of all it is an open source.** 27 | -------------------------------------------------------------------------------- /apppages/Bootstrappdf/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bootstrap Ebook 3 | img: '/appicons/bootstrap.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/vsJksf6mT4.zip' 6 | tags: 'ebook,guide,Bootstrap' 7 | --- 8 | 9 | This is an ebook on Bootstrap provided by https://riptutorial.com/ 10 | 11 | ## What is Bootstrap ? 12 | 13 | Bootstrap is a free and open-source CSS framework directed at responsive, mobile-first front-end web development. It contains CSS- and JavaScript-based design templates for typography, forms, buttons, navigation, and other interface components. 14 | 15 | ## About 16 | 17 | It is an unofficial and free C++ ebook created for educational purposes. All the content is 18 | extracted from Stack Overflow Documentation, which is written by many hardworking individuals at 19 | Stack Overflow. It is neither affiliated with Stack Overflow nor official Bootstrap. 20 | The content is released under Creative Commons BY-SA, and the list of contributors to each 21 | chapter are provided in the credits section at the end of this book. Images may be copyright of 22 | their respective owners unless otherwise specified. All trademarks and registered trademarks are 23 | the property of their respective company owners. 24 | 25 | Use the content presented in this book at your own risk; it is not guaranteed to be correct nor 26 | accurate, please send your feedback and corrections to **info@zzzprojects.com** 27 | -------------------------------------------------------------------------------- /apppages/Calibre/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Calibre Reader 3 | img: '/appicons/calibre.png' 4 | ratings: 4 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/aktapm6ZoS.zip' 6 | tags: 'reader,ebooks,learning' 7 | --- 8 | 9 | Calibre is a powerful and easy to use e-book manager. Users say it’s outstanding and a must-have. It’ll allow you to do nearly everything and it takes things a step beyond normal e-book software. It’s also completely free and open source and great for both casual users and computer experts. 10 | 11 | image 12 | 13 | - Save time on managing your e-book collection 14 | - Use it everywhere and with anything 15 | - Comprehensive e-book viewer 16 | - Download news/magazines from the web 17 | - Share and backup your library easily 18 | - Edit the books in your collection 19 | - Satisfy every e-book need and get support 20 | 21 | image 22 | -------------------------------------------------------------------------------- /apppages/Chris/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Chris Cox's AMA 3 | img: '/appicons/video.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/bYMjBCS09N.zip' 6 | tags: 'Hack Club,Chris Cox,AMA' 7 | --- 8 | 9 | # Watch Hack Club's interaction with Chris Cox! 10 | 11 | image 12 | -------------------------------------------------------------------------------- /apppages/Cosmologyuniverse/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Quasars | Stars, black holes and galaxies 3 | img: '/appicons/space.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/iPMQyuOLD6.zip' 6 | tags: 'Cosmology,Astronomy,Space' 7 | --- 8 | 9 | ## What is Khan Academy ? 10 | 11 | Khan Academy is an American non-profit educational organization created in 2008 by Salman Khan, with the goal of creating a set of online tools that help educate students. The organization produces short lessons in the form of videos. 12 | 13 | ## What is in this course? 14 | 15 | The Earth is huge, but it is tiny compared to the Sun (which is super huge). But the Sun is tiny compared to the solar system which is tiny compared to the distance to the next star. Oh, did we mention that there are over 100 billion stars in our galaxy (which is about 100,000 light years in diameter) which is one of hundreds of billions of galaxies in just the observable universe (which might be infinite for all we know). Don't feel small. We find it liberating. Your everyday human stresses are nothing compared to this enormity that we are a part of. Enjoy the fact that we get to be part of this vastness! 16 | 17 | image 18 | -------------------------------------------------------------------------------- /apppages/Cplus/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: C++ 3 | img: '/appicons/c++.png' 4 | ratings: 3 5 | download: '../files/c++.zip' 6 | tags: 'C++,programming,os' 7 | --- 8 | 9 | C++ is a middle-level programming language developed by Bjarne Stroustrup starting in 1979 at Bell Labs. C++ runs on a variety of platforms, such as Windows, Mac OS, and the various versions of UNIX. This C++ tutorial adopts a simple and practical approach to describe the concepts of C++ for beginners to advanded software engineers. 10 | 11 | C++ is a superset of C, and that virtually any legal C program is a legal C++ program. 12 | 13 | ## Why to Learn C++ 14 | 15 | C++ is a MUST for students and working professionals to become a great Software Engineer. I will list down some of the key advantages of learning C++: 16 | 17 | - C++ is very close to hardware, so you get a chance to work at a low level which gives you lot of control in terms of memory management, better performance and finally a robust software development. 18 | 19 | - C++ programming gives you a clear understanding about Object Oriented Programming. You will understand low level implementation of polymorphism when you will implement virtual tables and virtual table pointers, or dynamic type identification. 20 | 21 | - C++ is one of the every green programming languages and loved by millions of software developers. If you are a great C++ programmer then you will never sit without work and more importantly you will get highly paid for your work. 22 | 23 | - C++ is the most widely used programming languages in application and system programming. So you can choose your area of interest of software development. 24 | 25 | - C++ really teaches you the difference between compiler, linker and loader, different data types, storage classes, variable types their scopes etc. 26 | 27 | There are 1000s of good reasons to learn C++ Programming. But one thing for sure, to learn any programming language, not only C++, you just need to code, and code and finally code until you become expert. 28 | -------------------------------------------------------------------------------- /apppages/Cpluspluspdf/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: C++ Ebook 3 | img: '/appicons/c++.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/YLVf7gKLpO.zip' 6 | tags: 'ebook,guide,C++' 7 | --- 8 | 9 | This is an ebook on C++ provided by https://riptutorial.com/ 10 | 11 | ## What is C++ ? 12 | 13 | The C++ programming language was initially standardized in 1998 as ISO/IEC 14882:1998, which was then amended by the C++03, C++11 and C++14 standards. The current C++17 standard supersedes these with new features and an enlarged standard library. 14 | 15 | ## About 16 | 17 | It is an unofficial and free C++ ebook created for educational purposes. All the content is 18 | extracted from Stack Overflow Documentation, which is written by many hardworking individuals at 19 | Stack Overflow. It is neither affiliated with Stack Overflow nor official C++. 20 | The content is released under Creative Commons BY-SA, and the list of contributors to each 21 | chapter are provided in the credits section at the end of this book. Images may be copyright of 22 | their respective owners unless otherwise specified. All trademarks and registered trademarks are 23 | the property of their respective company owners. 24 | 25 | Use the content presented in this book at your own risk; it is not guaranteed to be correct nor 26 | accurate, please send your feedback and corrections to **info@zzzprojects.com** 27 | -------------------------------------------------------------------------------- /apppages/Csscourse/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: CSS course 3 | img: '/appicons/css.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/bJawPoFXzw.zip' 6 | tags: 'course,CSS,web,freecodecamp' 7 | link: 'https://www.youtube.com/watch?v=1Rs2ND1ryYc' 8 | --- 9 | 10 | Learn CSS in this full course for beginners. CSS, or Cascading Style Sheet, is responsible for the styling and looks of a website. 11 | 12 | image 13 | 14 | ## Why learn CSS 15 | 16 | Cascading Style Sheets, fondly referred to as CSS, is a simple design language intended to simplify the process of making web pages presentable. 17 | 18 | CSS is a MUST for students and working professionals to become a great Software Engineer specially when they are working in Web Development Domain. I will list down some of the key advantages of learning CSS: 19 | 20 | - Create Stunning Web site - CSS handles the look and feel part of a web page. Using CSS, you can control the color of the text, the style of fonts, the spacing between paragraphs, how columns are sized and laid out, what background images or colors are used, layout designs,variations in display for different devices and screen sizes as well as a variety of other effects. 21 | 22 | - Become a web designer - If you want to start a carrer as a professional web designer, HTML and CSS designing is a must skill. 23 | 24 | - Control web - CSS is easy to learn and understand but it provides powerful control over the presentation of an HTML document. Most commonly, CSS is combined with the markup languages HTML or XHTML. 25 | 26 | - Learn other languages - Once you understands the basic of HTML and CSS then other related technologies like javascript, php, or angular are become easier to understand. 27 | 28 | image 29 | -------------------------------------------------------------------------------- /apppages/Csspdf/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: CSS Ebook 3 | img: '/appicons/css.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/QjGb-aoD19.zip' 6 | tags: 'ebook,guide,CSS' 7 | --- 8 | 9 | This is an ebook on HTML provided by https://riptutorial.com/ 10 | 11 | ## What is CSS ? 12 | 13 | Cascading Style Sheets (CSS) is a style sheet language used for describing the presentation of a document written in a markup language like HTML. CSS is a cornerstone technology of the World Wide Web, alongside HTML and JavaScript. 14 | 15 | ## About 16 | 17 | It is an unofficial and free CSS ebook created for educational purposes. All the content is 18 | extracted from Stack Overflow Documentation, which is written by many hardworking individuals at 19 | Stack Overflow. It is neither affiliated with Stack Overflow nor official CSS. 20 | The content is released under Creative Commons BY-SA, and the list of contributors to each 21 | chapter are provided in the credits section at the end of this book. Images may be copyright of 22 | their respective owners unless otherwise specified. All trademarks and registered trademarks are 23 | the property of their respective company owners. 24 | 25 | Use the content presented in this book at your own risk; it is not guaranteed to be correct nor 26 | accurate, please send your feedback and corrections to **info@zzzprojects.com** 27 | -------------------------------------------------------------------------------- /apppages/D3/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: D3 3 | img: '/appicons/d3.png' 4 | ratings: 4 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/y9_jcWiY8b.zip' 6 | --- 7 | 8 | **Data visualization** is the presentation of data in a pictorial or graphical format. The primary goal of data visualization is to communicate information clearly and efficiently via statistical graphics, plots and information graphics. 9 | 10 | Data visualization helps us to communicate our insights quickly and effectively. Any type of data, which is represented by a visualization allows users to compare the data, generate analytic reports, understand patterns and thus helps them to take the decision. Data visualizations can be interactive, so that users analyze specific data in the chart. Well, Data visualizations can be developed and integrated in regular websites and even mobile applications using different JavaScript frameworks. 11 | 12 | ## What is D3.js? 13 | 14 | D3.js is a JavaScript library used to create interactive visualizations in the browser. The D3.js library allows us to manipulate elements of a webpage in the context of a data set. These elements can be HTML, SVG, or Canvas elements and can be introduced, removed, or edited according to the contents of the data set. It is a library for manipulating the DOM objects. D3.js can be a valuable aid in data exploration, it gives you control over your data's representation and lets you add interactivity. 15 | 16 | ## Why Do We Need D3.js? 17 | 18 | D3.js is one of the premier framework when compare to other libraries. This is because it works on the web and its data visualizations are par excellence. Another reason it has worked so well is owing to its flexibility. Since it works seamlessly with the existing web technologies and can manipulate any part of the document object model, it is as flexible as the Client Side Web Technology Stack (HTML, CSS, and SVG). It has a great community support and is easier to learn. 19 | 20 | ## D3.js Features 21 | 22 | D3.js is one of the best data visualization framework and it can be used to generate simple as well as complex visualizations along with user interaction and transition effects. Some of its salient features are listed below − 23 | 24 | - Extremely flexible. 25 | - Easy to use and fast. 26 | - Supports large datasets. 27 | - Declarative programming. 28 | - Code reusability. 29 | - Has wide variety of curve generating functions. 30 | - Associates data to an element or group of elements in the html page. 31 | 32 | ## D3.js Benefits 33 | 34 | D3.js is an open source project and works without any plugin. It requires very less code and comes up with the following benefits − 35 | 36 | - Great data visualization. 37 | 38 | * It is modular. You can download a small piece of D3.js, which you want to use. No need to load the whole library every time. 39 | 40 | - Easy to build a charting component. 41 | 42 | * DOM manipulation. 43 | -------------------------------------------------------------------------------- /apppages/Datasciencecourse/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Python for Data Science - Course for Beginners (Learn Python, Pandas, NumPy, Matplotlib) 3 | img: '/appicons/python.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/FkaA6HeIou.zip' 6 | tags: 'course,data science,freecodecamp' 7 | link: 'https://www.youtube.com/watch?v=LHBE6Q9XlzI' 8 | --- 9 | 10 | This Python data science course will take you from knowing nothing about Python to coding and analyzing data with Python using tools like Pandas, NumPy, and Matplotlib. 11 | 12 | This is a hands-on course and you will practice everything you learn step-by-step. 13 | 14 | image 15 | -------------------------------------------------------------------------------- /apppages/Davinci/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: DaVinci Resolve 3 | img: '/appicons/davinci.png' 4 | ratings: 5 5 | tags: 'video editing,graphics,color grading' 6 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/u9rjU9Bnxo.zip' 7 | --- 8 | 9 | DaVinci Resolve 16 is the world’s only solution that combines professional 8K editing, color correction, visual effects and audio post production all in one software tool! You can instantly move between editing, color, effects, and audio with a single click. DaVinci Resolve Studio is also the only solution designed for multi user collaboration so editors, assistants, colorists, VFX artists and sound designers can all work live on the same project at the same time! Whether you’re an individual artist, or part of a large collaborative team, it’s easy to see why DaVinci Resolve is the standard for high end post production and finishing on more Hollywood feature films, television shows and commercials than any other software. 10 | 11 | image 12 | 13 | ## What is color grading 14 | 15 | Color grading is the process of improving the appearance of an image for presentation in different environments on different devices. Various attributes of an image such as contrast, color, saturation, detail, black level, and white point may be enhanced whether for motion pictures, videos, or still images. Color grading and color correction are often used synonymously as terms for this process and can include the generation of artistic color effects through creative blending and compositing of different images. Color grading is generally now performed in a digital process either in a controlled environment such as a color suite, or in any location where a computer can be used in dim lighting 16 | 17 | image 18 | -------------------------------------------------------------------------------- /apppages/Deeplearningcourse/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: PyTorch for Deep Learning - Full Course / Tutorial 3 | img: '/appicons/pytorch.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/8ueOvSMJhz.zip' 6 | tags: 'course,deep learning,freecodecamp' 7 | link: 'https://www.youtube.com/watch?v=GIsg-ZUy0MY' 8 | --- 9 | 10 | In this course, you will learn how to build deep learning models with PyTorch and Python. The course makes PyTorch a bit more approachable for people starting out with deep learning and neural networks. 11 | 12 | image 13 | -------------------------------------------------------------------------------- /apppages/Denocourse/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Deno course 3 | img: '/appicons/android.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/LyHlccJKCT.zip' 6 | tags: 'course,deno,freecodecamp' 7 | link: 'https://www.youtube.com/watch?v=TQUy8ENesGY' 8 | --- 9 | 10 | Learn how to use Deno in this complete course. Deno is a Node.js alternative created by the same person who created Node.js. In this tutorial course, you will learn how to build real apps with Deno. You will also learn the basics of the Typescript. You will see how to use Deno to build a survey app with a REST API using MongoDB. 11 | 12 | image 13 | -------------------------------------------------------------------------------- /apppages/Dscourse/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Data structure course 3 | img: '/appicons/ds.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/HwSs5tWvjW.zip' 6 | tags: 'course,data structure,freecodecamp' 7 | link: 'https://www.youtube.com/watch?v=RBSGKlAvoiM' 8 | --- 9 | 10 | Learn and master the most common data structures in this full course from Google engineer William Fiset. This course teaches data structures to beginners using high quality animations to represent the data structures visually. 11 | 12 | You will learn how to code various data structures together with simple to follow step-by-step instructions. Every data structure presented will be accompanied by some working source code (in Java) to solidify your understanding. 13 | 14 | image 15 | 16 | ## Why learn Data structure 17 | 18 | As applications are getting complex and data rich, there are three common problems that applications face now-a-days. 19 | 20 | - Data Search − Consider an inventory of 1 million(106) items of a store. If the application is to search an item, it has to search an item in 1 million(106) items every time slowing down the search. As data grows, search will become slower. 21 | 22 | - Processor speed − Processor speed although being very high, falls limited if the data grows to billion records. 23 | 24 | - Multiple requests − As thousands of users can search data simultaneously on a web server, even the fast server fails while searching the data. 25 | 26 | To solve the above-mentioned problems, data structures come to rescue. Data can be organized in a data structure in such a way that all items may not be required to be searched, and the required data can be searched almost instantly. 27 | 28 | image 29 | -------------------------------------------------------------------------------- /apppages/Dylan/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Dylan Field's AMA 3 | img: '/appicons/video.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/VSqj2q-4PR.zip' 6 | tags: 'Hack Club,Dylan Field,AMA' 7 | --- 8 | 9 | # Watch Hack Club's interaction with Dylan Field! 10 | 11 | image 12 | -------------------------------------------------------------------------------- /apppages/Elon/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Elon Musk's AMA 3 | img: '/appicons/video.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/hmp9l6lFlm.zip' 6 | tags: 'Hack Club,Elon Musk,AMA' 7 | --- 8 | 9 | # Watch Hack Club's interaction with Elon Musk! 10 | 11 | image 12 | -------------------------------------------------------------------------------- /apppages/Fedora/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Fedora 3 | img: '/appicons/fedora.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/WctR7fouea.zip' 6 | --- 7 | 8 | Fedora is a Linux distribution developed by the community-supported Fedora Project which is sponsored primarily by Red Hat, a subsidiary of IBM, with additional support from other companies. 9 | -------------------------------------------------------------------------------- /apppages/Firebaseappcourse/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Full Stack React & Firebase Tutorial - Build a social media app 3 | img: '/appicons/fireabase.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/f1k1yn4SOQ.zip' 6 | tags: 'course,react,firebase,freecodecamp' 7 | link: 'https://www.youtube.com/watch?v=m_u6P5k0vP0' 8 | --- 9 | 10 | In this full tutorial course, you will learn how to create a full stack, fully-featured social media application using React, Firebase, Redux, Express, and Material-UI. 11 | 12 | This intermediate tutorial covers things such as creating a backend REST API server with Node.js and Express, user login and authentication, image uploads, notifications, cloud functions, deploying to Firebase, and much more. 13 | 14 | image 15 | -------------------------------------------------------------------------------- /apppages/Gimp/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Gimp (GNU Image Manipulation Program) 3 | img: '/appicons/gimplogo.png' 4 | ratings: 4 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/PwzTo9LdQO.zip' 6 | tags: 'productivity,graphics,editing,image manipulation' 7 | --- 8 | 9 | Whether you are a graphic designer, photographer, illustrator, or scientist, GIMP provides you with sophisticated tools to get your job done. You can further enhance your productivity with GIMP thanks to many customization options and 3rd party plugins. 10 | 11 | image 12 | 13 | GIMP is an advanced picture editor. You can use it to edit, enhance, and retouch photos and scans, create drawings, and make your own images. It has a large collection of professional-level editing tools and filters, similar to the ones you might find in Photoshop. Numerous fine-control settings and features like layers, paths, masks, and scripting give you total control over your images. 14 | 15 | image 16 | -------------------------------------------------------------------------------- /apppages/Gitcourse/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Git and Github crash course 3 | img: '/appicons/git.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/U61xv8dKt-.zip' 6 | tags: 'crash course,git,github,freecodecamp' 7 | link: 'https://www.youtube.com/watch?v=RGOj5yH7evk' 8 | --- 9 | 10 | Learn about Git and GitHub in this tutorial. These are important tools for all developers to understand. Git and GitHub make it easier to manage different software versions and make it easier for multiple people to work on the same software project. 11 | 12 | image 13 | 14 | ## Why learn git and github 15 | 16 | Git is the most commonly used version control system. Git tracks the changes you make to files, so you have a record of what has been done, and you can revert to specific versions should you ever need to. Git also makes collaboration easier, allowing changes by multiple people to all be merged into one source. 17 | 18 | image 19 | -------------------------------------------------------------------------------- /apppages/Golangcourse/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Golang course 3 | img: '/appicons/golang.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/lrAFjH1w43.zip' 6 | tags: 'course,go lang,freecodecamp' 7 | link: 'https://www.youtube.com/watch?v=YS4e4q9oBaU' 8 | --- 9 | 10 | Learn the Go programming language (Golang) in this step-by-step tutorial course for beginners. Go is an open source programming language designed at Google that makes it easy to build simple, reliable, and efficient software. 11 | 12 | image 13 | -------------------------------------------------------------------------------- /apppages/Guillermo/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Guillermo Rauch's AMA 3 | img: '/appicons/video.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/uMmcifVGiP.zip' 6 | tags: 'Hack Club,Guillermo Rauch,AMA' 7 | --- 8 | 9 | # Watch Hack Club's interaction with Guillermo Rauch! 10 | 11 | image 12 | -------------------------------------------------------------------------------- /apppages/HackIde/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: HackIde 3 | img: "/appicons/hacklogo.jpg" 4 | ratings: 5 5 | download: "../files/editor.zip" 6 | --- 7 | 8 | HackIde is an editor which works totally offline and is platform-independent, the software runs on web browsers and is good to go editor for someone who is new to programming and wants to make simple websites really quick. It supports snippets, autocomplete, and live running your code. You can save your work in the Ide and can open your project from where you left it. 9 | 10 | image 11 | 12 | ## Features 13 | 14 | The editor comes with the following features: 15 | 16 | - **Snippets** − The editor comes with a lot of helpful snippets to help speed your work. 17 | 18 | - **Autocomplete** − The editor autocompletes your code in lots of places and helps you in maintaining speed and accuracy. 19 | 20 | - **Saving** − The editor allows you to save your work completely offline and allows to start your work from where you left. 21 | 22 | - **Autorun** − The editor comes with autorun capabilities which allows you to run your code in realtime without you needing to run it manually. 23 | 24 | - **Images** − The editor allows you to import images manually and the images are too autosaved so that you can use them when you want. 25 | 26 | - **Download** − The editor allows you to download your code into a zip file in a organized manner so that you can have what you build in a seperate isolated folder. 27 | 28 | - **Open in new tab** − The editor allows you to open your code in a new tab to let you see how your project looks on a full height/width webpage. 29 | 30 | image 31 | -------------------------------------------------------------------------------- /apppages/Htmlcourse/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: HTML course 3 | img: '/appicons/html.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/XiMSBcLEpz.zip' 6 | tags: 'course,HTML,freecodecamp' 7 | link: 'https://www.youtube.com/watch?v=pQN-pnXPaVg' 8 | --- 9 | 10 | Learn the basics of HTML5 and web development in this awesome course for beginners. 11 | 12 | image 13 | 14 | ## Why learn HTML 15 | 16 | Originally, HTML was developed with the intent of defining the structure of documents like headings, paragraphs, lists, and so forth to facilitate the sharing of scientific information between researchers. Now, HTML is being widely used to format web pages with the help of different tags available in HTML language. 17 | 18 | HTML is a MUST for students and working professionals to become a great Software Engineer specially when they are working in Web Development Domain. I will list down some of the key advantages of learning HTML: 19 | 20 | - Create Web site - You can create a website or customize an existing web template if you know HTML well. 21 | 22 | -Become a web designer - If you want to start a carrer as a professional web designer, HTML and CSS designing is a must skill. 23 | 24 | - Understand web - If you want to optimize your website, to boost its speed and performance, it is good to know HTML to yield best results. 25 | 26 | - Learn other languages - Once you understands the basic of HTML then other related technologies like javascript, php, or angular are become easier to understand. 27 | 28 | image 29 | -------------------------------------------------------------------------------- /apppages/Htmlpdf/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: HTML Ebook 3 | img: '/appicons/html.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/dWr60RQL14.zip' 6 | tags: 'ebook,guide,HTML' 7 | --- 8 | 9 | This is an ebook on HTML provided by https://riptutorial.com/ 10 | 11 | ## What is HTML ? 12 | 13 | - HTML stands for Hyper Text Markup Language 14 | - HTML is the standard markup language for creating Web pages 15 | - HTML describes the structure of a Web page 16 | - HTML consists of a series of elements 17 | - HTML elements tell the browser how to display the content 18 | - HTML elements label pieces of content such as "this is a heading", "this is a paragraph", "this is a link", etc. 19 | 20 | ## About 21 | 22 | It is an unofficial and free HTML ebook created for educational purposes. All the content is 23 | extracted from Stack Overflow Documentation, which is written by many hardworking individuals at 24 | Stack Overflow. It is neither affiliated with Stack Overflow nor official HTML. 25 | The content is released under Creative Commons BY-SA, and the list of contributors to each 26 | chapter are provided in the credits section at the end of this book. Images may be copyright of 27 | their respective owners unless otherwise specified. All trademarks and registered trademarks are 28 | the property of their respective company owners. 29 | 30 | Use the content presented in this book at your own risk; it is not guaranteed to be correct nor 31 | accurate, please send your feedback and corrections to **info@zzzprojects.com** 32 | -------------------------------------------------------------------------------- /apppages/Inkscape/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Inkspace 3 | img: '/appicons/inkscape.png' 4 | ratings: 4 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/PuXnGCy3RX.zip' 6 | tags: 'illustration,graphics, prodcutivity ' 7 | --- 8 | 9 | Inkscape is a Free and open source vector graphics editor for GNU/Linux, Windows and MacOS X. It offers a rich set of features and is widely used for both artistic and technical illustrations such as cartoons, clip art, logos, typography, diagramming and flowcharting. It uses vector graphics to allow for sharp printouts and renderings at unlimited resolution and is not bound to a fixed number of pixels like raster graphics. Inkscape uses the standardized SVG file format as its main format, which is supported by many other applications including web browsers. 10 | 11 | image 12 | 13 | It can import and export various file formats, including SVG, AI, EPS, PDF, PS and PNG. It has a comprehensive feature set, a simple interface, multi-lingual support and is designed to be extensible; users can customize Inkscape's functionality with add-ons. 14 | 15 | image 16 | -------------------------------------------------------------------------------- /apppages/Iospdf/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: iOS Development Ebook 3 | img: '/appicons/ios.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/dSnIFYapHo.zip' 6 | tags: 'ebook,guide,iOS' 7 | --- 8 | 9 | This is an ebook on iOS Developement provided by https://riptutorial.com/ 10 | 11 | ## What is iOS ? 12 | 13 | iOS is a mobile operating system created and developed by Apple Inc. exclusively for its hardware. It is the operating system that powers many of the company's mobile devices, including the iPhone and iPod Touch; it also powered the iPad until the introduction of iPadOS in 2019. 14 | 15 | ## About 16 | 17 | It is an unofficial and free iOS Development ebook created for educational purposes. All the content is 18 | extracted from Stack Overflow Documentation, which is written by many hardworking individuals at 19 | Stack Overflow. It is neither affiliated with Stack Overflow nor official iOS. 20 | The content is released under Creative Commons BY-SA, and the list of contributors to each 21 | chapter are provided in the credits section at the end of this book. Images may be copyright of 22 | their respective owners unless otherwise specified. All trademarks and registered trademarks are 23 | the property of their respective company owners. 24 | 25 | Use the content presented in this book at your own risk; it is not guaranteed to be correct nor 26 | accurate, please send your feedback and corrections to **info@zzzprojects.com** 27 | -------------------------------------------------------------------------------- /apppages/Jack/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Jack Conte's AMA 3 | img: '/appicons/video.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/4cM98AWaTF.zip' 6 | tags: 'Hack Club,Jack Conte,AMA' 7 | --- 8 | 9 | # Watch Hack Club's interaction with Jack Conte! 10 | 11 | image 12 | -------------------------------------------------------------------------------- /apppages/Java/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Java 3 | img: '/appicons/java.png' 4 | ratings: 4 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/_lCdNBS77s.zip' 6 | tags: 'programming,jdk,development' 7 | --- 8 | 9 | Java is a high-level programming language originally developed by Sun Microsystems and released in 1995. Java runs on a variety of platforms, such as Windows, Mac OS, and the various versions of UNIX. This tutorial gives a complete understanding of Java. This reference will take you through simple and practical approaches while learning Java Programming language. 10 | 11 | ## Why to Learn java Programming? 12 | 13 | Java is a MUST for students and working professionals to become a great Software Engineer specially when they are working in Software Development Domain. I will list down some of the key advantages of learning Java Programming: 14 | 15 | - **Object Oriented** − In Java, everything is an Object. Java can be easily extended since it is based on the Object model. 16 | 17 | * **Platform Independent** − Unlike many other programming languages including C and C++, when Java is compiled, it is not compiled into platform specific machine, rather into platform independent byte code. This byte code is distributed over the web and interpreted by the Virtual Machine (JVM) on whichever platform it is being run on. 18 | 19 | - **Simple** − Java is designed to be easy to learn. If you understand the basic concept of OOP Java, it would be easy to master. 20 | 21 | - **Secure** − With Java's secure feature it enables to develop virus-free, tamper-free systems. Authentication techniques are based on public-key encryption. 22 | 23 | - **Architecture-neutral** − Java compiler generates an architecture-neutral object file format, which makes the compiled code executable on many processors, with the presence of Java runtime system. 24 | 25 | - **Portable** − Being architecture-neutral and having no implementation dependent aspects of the specification makes Java portable. Compiler in Java is written in ANSI C with a clean portability boundary, which is a POSIX subset. 26 | 27 | - **Robust** − Java makes an effort to eliminate error prone situations by emphasizing mainly on compile time error checking and runtime checking. 28 | -------------------------------------------------------------------------------- /apppages/Javapdf/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Java Ebook 3 | img: '/appicons/java.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/j3Xl3x4v2L.zip' 6 | tags: 'ebook,guide,Java' 7 | --- 8 | 9 | This is an ebook on Java provided by https://riptutorial.com/ 10 | 11 | ## What is Java ? 12 | 13 | Java is a high-level programming language originally developed by Sun Microsystems and released in 1995. Java runs on a variety of platforms, such as Windows, Mac OS, and the various versions of UNIX. This tutorial gives a complete understanding of Java. This reference will take you through simple and practical approaches while learning Java Programming language. 14 | 15 | ## About 16 | 17 | It is an unofficial and free Java ebook created for educational purposes. All the content is 18 | extracted from Stack Overflow Documentation, which is written by many hardworking individuals at 19 | Stack Overflow. It is neither affiliated with Stack Overflow nor official Java. 20 | The content is released under Creative Commons BY-SA, and the list of contributors to each 21 | chapter are provided in the credits section at the end of this book. Images may be copyright of 22 | their respective owners unless otherwise specified. All trademarks and registered trademarks are 23 | the property of their respective company owners. 24 | 25 | Use the content presented in this book at your own risk; it is not guaranteed to be correct nor 26 | accurate, please send your feedback and corrections to **info@zzzprojects.com** 27 | -------------------------------------------------------------------------------- /apppages/Javascriptpdf/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Javascript Ebook 3 | img: '/appicons/js.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/j77bQyjWgS.zip' 6 | tags: 'ebook,guide,HTML' 7 | --- 8 | 9 | This is an ebook on Javascript provided by https://riptutorial.com/ 10 | 11 | ## What is Javascript ? 12 | 13 | JavaScript (JS) is a lightweight, interpreted, or just-in-time compiled programming language with first-class functions. While it is most well-known as the scripting language for Web pages, many non-browser environments also use it, such as Node.js, Apache CouchDB and Adobe Acrobat. JavaScript is a prototype-based, multi-paradigm, single-threaded, dynamic language, supporting object-oriented, imperative, and declarative (e.g. functional programming) styles. 14 | 15 | ## About 16 | 17 | It is an unofficial and free Javascript ebook created for educational purposes. All the content is 18 | extracted from Stack Overflow Documentation, which is written by many hardworking individuals at 19 | Stack Overflow. It is neither affiliated with Stack Overflow nor official Javascript. 20 | The content is released under Creative Commons BY-SA, and the list of contributors to each 21 | chapter are provided in the credits section at the end of this book. Images may be copyright of 22 | their respective owners unless otherwise specified. All trademarks and registered trademarks are 23 | the property of their respective company owners. 24 | 25 | Use the content presented in this book at your own risk; it is not guaranteed to be correct nor 26 | accurate, please send your feedback and corrections to **info@zzzprojects.com** 27 | -------------------------------------------------------------------------------- /apppages/Jquerypdf/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: jQuery Ebook 3 | img: '/appicons/js.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/JM2arO5FyB.zip' 6 | tags: 'ebook,guide,jQuery' 7 | --- 8 | 9 | This is an ebook on Nodejs Developement provided by https://riptutorial.com/ 10 | 11 | ## What is jQuery ? 12 | 13 | jQuery is a JavaScript library designed to simplify HTML DOM tree traversal and manipulation, as well as event handling, CSS animation, and Ajax. It is free, open-source software using the permissive MIT License. As of May 2019, jQuery is used by 73% of the 10 million most popular websites 14 | 15 | ## About 16 | 17 | It is an unofficial and free Nodejs Development ebook created for educational purposes. All the content is 18 | extracted from Stack Overflow Documentation, which is written by many hardworking individuals at 19 | Stack Overflow. It is neither affiliated with Stack Overflow nor official jQuery. 20 | The content is released under Creative Commons BY-SA, and the list of contributors to each 21 | chapter are provided in the credits section at the end of this book. Images may be copyright of 22 | their respective owners unless otherwise specified. All trademarks and registered trademarks are 23 | the property of their respective company owners. 24 | 25 | Use the content presented in this book at your own risk; it is not guaranteed to be correct nor 26 | accurate, please send your feedback and corrections to **info@zzzprojects.com** 27 | -------------------------------------------------------------------------------- /apppages/Jscourse/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Javascript crash course 3 | img: '/appicons/js.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/hGZZQtO6xZ.zip' 6 | tags: 'crash course,javascript,freecodecamp' 7 | --- 8 | 9 | This course will give you a full introduction into all of the core concepts in python. Follow along with the videos and you'll be a python programmer in no time! 10 | 11 | image 12 | 13 | ## Why learn javascript 14 | 15 | JavaScript has become an essential web technology along with HTML and CSS, as most browsers implement JavaScript. Thus, You must learn JavaScript if you want to get into web development, and you must learn it well if you're planning on being a front-end developer or on using JavaScript for backend development. 16 | 17 | image 18 | -------------------------------------------------------------------------------- /apppages/Jsprojects/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Build 15 JavaScript Projects - Vanilla JavaScript Course 3 | img: '/appicons/js.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/kjDh78-tyB.zip' 6 | tags: 'course,js courses,freecodecamp' 7 | link: 'https://www.youtube.com/watch?v=3PHXvlpOkf4' 8 | --- 9 | 10 | Sharpen your JavaScript skills by building 15 projects using plain JavaScript without frameworks. In this tutorial course, you will be taught step-by-step how to build JavaScript projects. 11 | 12 | image 13 | -------------------------------------------------------------------------------- /apppages/Kali/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Kali Linux 3 | img: '/appicons/kali.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/BYeeNCA9JB.zip' 6 | --- 7 | 8 | Kali Linux is a Debian-derived Linux distribution designed for digital forensics and penetration testing. It is maintained and funded by Offensive Security. 9 | -------------------------------------------------------------------------------- /apppages/Limor/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Limor Fried's AMA 3 | img: '/appicons/video.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/UfVR-w6SRN.zip' 6 | tags: 'Hack Club,Limor Fried,AMA' 7 | --- 8 | 9 | # Watch Hack Club's interaction with Limor Fried! 10 | 11 | image 12 | -------------------------------------------------------------------------------- /apppages/LinearEq/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Systems of linear equations 3 | img: '/appicons/maths.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/4CFfs0Q6qY.zip' 6 | tags: 'Linear Equations,Maths' 7 | --- 8 | 9 | ## What is Khan Academy ? 10 | 11 | Khan Academy is an American non-profit educational organization created in 2008 by Salman Khan, with the goal of creating a set of online tools that help educate students. The organization produces short lessons in the form of videos. 12 | 13 | ## What are Linear Equations? 14 | 15 | In mathematics, a linear equation is an equation that may be put in the form where are the variables, and are the coefficients, which are often real numbers. The coefficients may be considered as parameters of the equation, and may be arbitrary expressions, provided they do not contain any of the variables. 16 | 17 | image 18 | -------------------------------------------------------------------------------- /apppages/Linuxmint/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Linux Mint 3 | img: '/appicons/linuxmint.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/QkTaxyUFED.zip' 6 | --- 7 | 8 | Linux Mint is a community-driven Linux distribution based on Ubuntu or Debian. Linux Mint comes bundled with a variety of free and open-source applications and can provide full out-of-the-box multimedia support for those who choose to include some proprietary software, such as multimedia codecs. 9 | -------------------------------------------------------------------------------- /apppages/Macromolecules/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Macromolecules 3 | img: '/appicons/biology.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/74KXc18qZu.zip' 6 | tags: 'Macromolecules,Biology' 7 | --- 8 | 9 | ## What is Khan Academy ? 10 | 11 | Khan Academy is an American non-profit educational organization created in 2008 by Salman Khan, with the goal of creating a set of online tools that help educate students. The organization produces short lessons in the form of videos. 12 | 13 | ## What is in this? 14 | 15 | Biology on Khan Academy: Life is beautiful! From atoms to cells, from genes to proteins, from populations to ecosystems, biology is the study of the fascinating and intricate systems that make life possible. Dive in to learn more about the many branches of biology and why they are exciting and important. Covers topics seen in a high school or first-year college biology course. 16 | 17 | image 18 | -------------------------------------------------------------------------------- /apppages/Nodejs/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Nodejs 3 | img: '/appicons/nodejs.png' 4 | ratings: 4 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/sFGcxbxgxR.zip' 6 | tags: 'backend,programming,server side' 7 | --- 8 | 9 | Node.js is a very powerful JavaScript-based platform built on Google Chrome's JavaScript V8 Engine. It is used to develop I/O intensive web applications like video streaming sites, single-page applications, and other web applications. Node.js is open source, completely free, and used by thousands of developers around the world. 10 | 11 | ## Features of Node.js 12 | 13 | Following are some of the important features that make Node.js the first choice of software architects. 14 | 15 | - Asynchronous and Event Driven − All APIs of Node.js library are asynchronous, that is, non-blocking. It essentially means a Node.js based server never waits for an API to return data. The server moves to the next API after calling it and a notification mechanism of Events of Node.js helps the server to get a response from the previous API call. 16 | 17 | * Very Fast − Being built on Google Chrome's V8 JavaScript Engine, Node.js library is very fast in code execution. 18 | 19 | * Single Threaded but Highly Scalable − Node.js uses a single threaded model with event looping. Event mechanism helps the server to respond in a non-blocking way and makes the server highly scalable as opposed to traditional servers which create limited threads to handle requests. Node.js uses a single threaded program and the same program can provide service to a much larger number of requests than traditional servers like Apache HTTP Server. 20 | 21 | * No Buffering − Node.js applications never buffer any data. These applications simply output the data in chunks. 22 | 23 | - License − Node.js is released under the MIT license. 24 | 25 | * Where to Use Node.js? 26 | 27 | Following are the areas where Node.js is proving itself as a perfect technology partner. 28 | 29 | - I/O bound Applications 30 | - Data Streaming Applications 31 | - Data Intensive Real-time Applications (DIRT) 32 | - JSON APIs based Applications 33 | - Single Page Applications 34 | -------------------------------------------------------------------------------- /apppages/Nodepdf/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Nodejs Development Ebook 3 | img: '/appicons/nodejs.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/jLycjWTiaT.zip' 6 | tags: 'ebook,guide,Nodejs' 7 | --- 8 | 9 | This is an ebook on Nodejs Developement provided by https://riptutorial.com/ 10 | 11 | ## What is Nodejs ? 12 | 13 | Node.js is a very powerful JavaScript-based platform built on Google Chrome's JavaScript V8 Engine. It is used to develop I/O intensive web applications like video streaming sites, single-page applications, and other web applications. Node.js is open source, completely free, and used by thousands of developers around the world. 14 | 15 | ## About 16 | 17 | It is an unofficial and free Nodejs Development ebook created for educational purposes. All the content is 18 | extracted from Stack Overflow Documentation, which is written by many hardworking individuals at 19 | Stack Overflow. It is neither affiliated with Stack Overflow nor official Nodejs. 20 | The content is released under Creative Commons BY-SA, and the list of contributors to each 21 | chapter are provided in the credits section at the end of this book. Images may be copyright of 22 | their respective owners unless otherwise specified. All trademarks and registered trademarks are 23 | the property of their respective company owners. 24 | 25 | Use the content presented in this book at your own risk; it is not guaranteed to be correct nor 26 | accurate, please send your feedback and corrections to **info@zzzprojects.com** 27 | -------------------------------------------------------------------------------- /apppages/Organicchem/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Organic Chemistry 3 | img: '/appicons/chemistry.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/z0JaThHuKK.zip' 6 | tags: 'Organic Chemistry,Chemistry' 7 | --- 8 | 9 | ## What is Khan Academy ? 10 | 11 | Khan Academy is an American non-profit educational organization created in 2008 by Salman Khan, with the goal of creating a set of online tools that help educate students. The organization produces short lessons in the form of videos. 12 | 13 | ## What is Organic Chemistry? 14 | 15 | Organic Chemistry on Khan Academy: Carbon can form covalent bonds with itself and other elements to create a mind-boggling array of structures. In organic chemistry, we will learn about the reactions chemists use to synthesize crazy carbon based structures, as well as the analytical methods to characterize them. We will also think about how those reactions are occurring on a molecular level with reaction mechanisms. Simply put, organic chemistry is like building with molecular Legos. Let's make some beautiful organic molecules! 16 | 17 | image 18 | -------------------------------------------------------------------------------- /apppages/Paperjs/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Paperjs 3 | img: '/appicons/js.png' 4 | ratings: 4 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/S1cm7ZYbhM.zip' 6 | --- 7 | 8 | Paper.js is an open source vector graphics scripting framework that runs on top of the HTML5 Canvas. It offers a clean Scene Graph / Document Object Model and a lot of powerful functionality to create and work with vector graphics and bezier curves, all neatly wrapped up in a well designed, consistent and clean programming interface. 9 | 10 | ## Overview 11 | 12 | Paper.js is not simply a wrapper around the Canvas, it offers much more: 13 | 14 | - A Scene Graph / Document Object Model for vector graphics: Work with nested layers, groups, paths, compound paths, rasters, symbols etc. 15 | 16 | - The handling and drawing of these graphic items is automatic and optimised, allowing you to construct or modify your items and styles and leave the drawing commands to Paper.js. 17 | 18 | - A well designed and battle hardened Application Programming Interface (API). 19 | 20 | * PaperScript, a simple extension of JavaScript, allowing the scoped execution of scripts without polluting the global scope, the execution of multiple scripts per page in their separate sand-boxed scopes while sharing the library code, and adding support for operator overloading to any object. 21 | 22 | - There is a good reason for the word Vector in Vector Graphics. Paper.js treats Vector Mathematics as a first class citizen by making working with vectors and geometries as simple as possible through its core types such as Point, Size and Rectangle. The manipulation of Point and Size objects is further simplified in 23 | 24 | * PaperScript, where direct math operations using normal operator syntax are possible on such objects as if they were plain numbers. 25 | 26 | * Construct paths and manipulate their curves and segments in very convenient and fine-grained ways. 27 | 28 | - Inspect and manipulate the precise bounding box of any item, supporting complicated stroke styles with different stroke ends and miter limits. 29 | 30 | - Smoothen curves, and simplify path segments by fitting curves through points. 31 | -------------------------------------------------------------------------------- /apppages/Patrick/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Patrick Collison's AMA 3 | img: '/appicons/video.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/7BS1_dGfXc.zip' 6 | tags: 'Hack Club,Patrick Collison,AMA' 7 | --- 8 | 9 | # Watch Hack Club's interaction with Patrick Collison! 10 | 11 | image 12 | -------------------------------------------------------------------------------- /apppages/Pencil2d/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Pencil2d 3 | img: '/appicons/pencil2d.png' 4 | ratings: 4 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/eTcH9tqyNv.zip' 6 | tags: 'graphics,animation,Pencil2d' 7 | --- 8 | 9 | Pencil2D is a 2D animation software that runs on Microsoft Windows, OS X and Unix-like operating systems. It is open-source software, released under the GNU General Public License and uses the Qt framework. It is used for making cartoons using traditional techniques, managing vector and bitmap drawing 10 | 11 | image 12 | 13 | ## History 14 | 15 | The original version of the software was formerly called it's Pencil, created by Pascal Naidon and Patrick Corrieri in 2006, but was abandoned and discontinued in 2009. After the original authors abandoned the project, forks allowed it to continue. It was used in 2013 by the authors of the Morevna Project, a cartoon project under a free license. 16 | 17 | The project then continues on the pencil2D.org site. in spring 2019, changes are made to the organization of updates, with the deletion of the CR, not used and more regular updates whose version numbers are even with patches, and more occasionally, odd versions adding features. The goal is to quickly fix bugs as soon as they appear, rather than letting them accumulate, and to offer stability fixes more quickly. It starts with version 0.6.4, released in May 2019. The developers are also setting up a project upload page in order to establish a library of tests for debugging and validity tests. 18 | 19 | image 20 | -------------------------------------------------------------------------------- /apppages/Pentestingcourse/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Pentesting Course 3 | img: '/appicons/kali.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/e03Pec85ly.zip' 6 | tags: 'course,Pentesting,freecodecamp' 7 | link: 'https://www.youtube.com/watch?v=3Kq1MIfTWCE' 8 | --- 9 | 10 | Learn network penetration testing / ethical hacking in this full tutorial course for beginners. This course teaches everything you need to know to get started with ethical hacking and penetration testing. You will learn the practical skills necessary to work in the field. Throughout the course, we will develop our own Active Directory lab in Windows, make it vulnerable, hack it, and patch it. We'll cover the red and blue sides. We'll also cover some of the boring stuff like report writing :). 11 | 12 | image 13 | 14 | ## What is Pentesting 15 | 16 | A penetration test, colloquially known as a pen test, pentest or ethical hacking, is an authorized simulated cyberattack on a computer system, performed to evaluate the security of the system. Not to be confused with a vulnerability assessment. 17 | 18 | image 19 | -------------------------------------------------------------------------------- /apppages/Phaser/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Phaser 3 | img: '/appicons/js.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/EBS64eg1pr.zip' 6 | --- 7 | 8 | **Phaser** is a free software 2D game framework for making HTML5 games for desktop and mobile.It is developed by Photon Storm. 9 | 10 | Phaser uses both a Canvas and WebGL renderer internally and can automatically swap between them based on browser support.This allows for fast rendering across desktop and mobile. It uses the Pixi.js library for rendering. 11 | 12 | Games can be compiled to iOS, Android and native desktop apps via 3rd party tools like Apache Cordova and phonegap. 13 | 14 | Whilst you can wrap your game into a native app using tools such as Cordova and Phonegap the game itself is never compiled._The 'game' is simply run as JavaScript in a bundled browser._ This means performance is nothing like a native compiled app. 15 | 16 | ## Why Learn Phaser? 17 | 18 | Phaser is the biggest HTML5 game development framework on the market. It has been used for browser games, mobile games, and desktop games. Learn how to use this library to make games for yourself! 19 | -------------------------------------------------------------------------------- /apppages/Popperjs/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Popperjs 3 | img: '/appicons/popper.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/VLzKYtaQnd.zip' 6 | --- 7 | 8 | Popper.js is a positioning engine, its purpose is to calculate the position of an element to make it possible to position it near a given reference element. 9 | 10 | The engine is completely modular and most of its features are implemented as modifiers (similar to middlewares or plugins). 11 | The whole code base is written in ES2015 and its features are automatically tested on real browsers thanks to SauceLabs and TravisCI. 12 | 13 | Popper.js has zero dependencies. No jQuery, no LoDash, nothing. 14 | It's used by big companies like Twitter in Bootstrap v4, Microsoft in WebClipper and Atlassian in AtlasKit. 15 | -------------------------------------------------------------------------------- /apppages/Python/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Python 3 | img: '/appicons/python.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/9x7MmVyOgO.zip' 6 | tags: 'programming,development,AI,scripting' 7 | --- 8 | 9 | Python is a general-purpose interpreted, interactive, object-oriented, and high-level programming language. It was created by Guido van Rossum during 1985- 1990. Like Perl, Python source code is also available under the GNU General Public License (GPL). This tutorial gives enough understanding on Python programming language. 10 | 11 | ## Why to Learn Python? 12 | 13 | Python is a high-level, interpreted, interactive and object-oriented scripting language. Python is designed to be highly readable. It uses English keywords frequently where as other languages use punctuation, and it has fewer syntactical constructions than other languages. 14 | 15 | Python is a MUST for students and working professionals to become a great Software Engineer specially when they are working in Web Development Domain. I will list down some of the key advantages of learning Python: 16 | 17 | - Python is Interpreted − Python is processed at runtime by the interpreter. You do not need to compile your program before executing it. This is similar to PERL and PHP. 18 | 19 | - Python is Interactive − You can actually sit at a Python prompt and interact with the interpreter directly to write your programs. 20 | 21 | - Python is Object-Oriented − Python supports Object-Oriented style or technique of programming that encapsulates code within objects. 22 | 23 | - Python is a Beginner's Language − Python is a great language for the beginner-level programmers and supports the development of a wide range of applications from simple text processing to WWW browsers to games. 24 | -------------------------------------------------------------------------------- /apppages/Pythoncourse/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Learn Python - Full Course for Beginners 3 | img: '/appicons/python.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/5wrHJCJfec.zip' 6 | tags: 'crash course,python,freecodecamp' 7 | --- 8 | 9 | This course will give you a full introduction into all of the core concepts in python. Follow along with the videos and you'll be a python programmer in no time! 10 | 11 | image 12 | 13 | ## Why learn Python 14 | 15 | Python is one of the most loved programming languages by developers, data scientists, software engineers, and even hackers because of its versatility, flexibility, and object-oriented features. ... Although it's a high-level language and can do complex tasks, Python is easy to learn and has a clean syntax. 16 | 17 | image 18 | -------------------------------------------------------------------------------- /apppages/Pythonpdf/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Python Ebook 3 | img: '/appicons/python.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/6nNJNgyayg.zip' 6 | tags: 'ebook,guide,Python' 7 | --- 8 | 9 | This is an ebook on Python provided by https://riptutorial.com/ 10 | 11 | ## What is Python ? 12 | 13 | Python is a high-level, interpreted, interactive and object-oriented scripting language. Python is designed to be highly readable. It uses English keywords frequently where as other languages use punctuation, and it has fewer syntactical constructions than other languages. 14 | 15 | Python is a MUST for students and working professionals to become a great Software Engineer specially when they are working in Web Development Domain. 16 | 17 | ## About 18 | 19 | It is an unofficial and free Python ebook created for educational purposes. All the content is 20 | extracted from Stack Overflow Documentation, which is written by many hardworking individuals at 21 | Stack Overflow. It is neither affiliated with Stack Overflow nor official Python. 22 | The content is released under Creative Commons BY-SA, and the list of contributors to each 23 | chapter are provided in the credits section at the end of this book. Images may be copyright of 24 | their respective owners unless otherwise specified. All trademarks and registered trademarks are 25 | the property of their respective company owners. 26 | 27 | Use the content presented in this book at your own risk; it is not guaranteed to be correct nor 28 | accurate, please send your feedback and corrections to **info@zzzprojects.com** 29 | -------------------------------------------------------------------------------- /apppages/React/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: React 3 | img: '/appicons/react.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/EDFVLqYAfG.zip' 6 | --- 7 | 8 | ReactJS is JavaScript library used for building reusable UI components. According to React official documentation, following is the definition − 9 | 10 | React is a library for building composable user interfaces. It encourages the creation of reusable UI components, which present data that changes over time. Lots of people use React as the V in MVC. React abstracts away the DOM from you, offering a simpler programming model and better performance. React can also render on the server using Node, and it can power native apps using React Native. React implements one-way reactive data flow, which reduces the boilerplate and is easier to reason about than traditional data binding. 11 | 12 | ## React Features 13 | 14 | - JSX − JSX is JavaScript syntax extension. It isn't necessary to use JSX in React development, but it is recommended. 15 | 16 | - Components − React is all about components. You need to think of everything as a component. This will help you maintain the code when working on larger scale projects. 17 | 18 | - Unidirectional data flow and Flux − React implements one-way data flow which makes it easy to reason about your app. Flux is a pattern that helps keeping your data unidirectional. 19 | 20 | - License − React is licensed under the Facebook Inc. Documentation is licensed under CC BY 4.0. 21 | 22 | ## React Advantages 23 | 24 | - Uses virtual DOM which is a JavaScript object. This will improve apps performance, since JavaScript virtual DOM is faster than the regular DOM. 25 | 26 | - Can be used on client and server side as well as with other frameworks. 27 | 28 | - Component and data patterns improve readability, which helps to maintain larger apps. 29 | 30 | ## React Limitations 31 | 32 | - Covers only the view layer of the app, hence you still need to choose other technologies to get a complete tooling set for development. 33 | 34 | - Uses inline templating and JSX, which might seem awkward to some developers. 35 | -------------------------------------------------------------------------------- /apppages/Reactcourse/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: React course 3 | img: '/appicons/react.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/q6Mb5Hui0h.zip' 6 | tags: 'course,react,web,freecodecamp' 7 | link: 'https://www.youtube.com/watch?v=DLX62G4lc44' 8 | --- 9 | 10 | React.js is a JavaScript library for building dynamic web applications. Upon completion of this course, you'll know everything you need in order to build web applications in React. 11 | 12 | image 13 | 14 | ## Why learn React 15 | 16 | ReactJS is JavaScript library used for building reusable UI components. According to React official documentation, following is the definition − 17 | 18 | React is a library for building composable user interfaces. It encourages the creation of reusable UI components, which present data that changes over time. Lots of people use React as the V in MVC. React abstracts away the DOM from you, offering a simpler programming model and better performance. React can also render on the server using Node, and it can power native apps using React Native. React implements one-way reactive data flow, which reduces the boilerplate and is easier to reason about than traditional data binding. 19 | 20 | image 21 | -------------------------------------------------------------------------------- /apppages/Reactpdf/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: React Ebook 3 | img: '/appicons/react.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/b9VD8CXbbj.zip' 6 | tags: 'ebook,guide,react' 7 | --- 8 | 9 | This is an ebook on react js provided by https://riptutorial.com/ 10 | 11 | ## What is react ? 12 | 13 | ReactJS is JavaScript library used for building reusable UI components. According to React official documentation, following is the definition − 14 | 15 | React is a library for building composable user interfaces. It encourages the creation of reusable UI components, which present data that changes over time. Lots of people use React as the V in MVC. React abstracts away the DOM from you, offering a simpler programming model and better performance. React can also render on the server using Node, and it can power native apps using React Native. React implements one-way reactive data flow, which reduces the boilerplate and is easier to reason about than traditional data binding. 16 | 17 | ## About 18 | 19 | It is an unofficial and free React ebook created for educational purposes. All the content is extracted from Stack Overflow Documentation, which is written by many hardworking individuals at Stack Overflow. It is neither affiliated with Stack Overflow nor official React.The content is released under Creative Commons BY-SA, and the list of contributors to each chapter are provided in the credits section at the end of this book. 20 | 21 | Images may be copyright of their respective owners unless otherwise specified. All trademarks and registered trademarks are the property of their respective company owners.Use the content presented in this book at your own risk; it is not guaranteed to be correct nor accurate, please send your feedback and corrections to **info@zzzprojects.com** 22 | -------------------------------------------------------------------------------- /apppages/Risetwp/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Rise to world power (1890-1945) 3 | img: '/appicons/history.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/W9dwexcuoW.zip' 6 | tags: 'US History,History' 7 | --- 8 | 9 | ## What is Khan Academy ? 10 | 11 | Khan Academy is an American non-profit educational organization created in 2008 by Salman Khan, with the goal of creating a set of online tools that help educate students. The organization produces short lessons in the form of videos. 12 | 13 | ## What is in the course? 14 | 15 | From the earliest civilizations to the modern world, geography, religion, trade, and politics have bound peoples and nations together — and torn them apart. Take a journey through time and space and discover the fascinating history behind the complex world we inhabit today. 16 | 17 | image 18 | -------------------------------------------------------------------------------- /apppages/Rubyrailspdf/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Ruby On Rails Ebook 3 | img: '/appicons/rubyrails.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/o8aWeZl2XU.zip' 6 | tags: 'ebook,guide,Ruby On Rails' 7 | --- 8 | 9 | This is an ebook on Ruby On Rails Developement provided by https://riptutorial.com/ 10 | 11 | ## What is Ruby On Rails ? 12 | 13 | Ruby on Rails, or Rails, is a server-side web application framework written in Ruby under the MIT License. Rails is a model–view–controller framework, providing default structures for a database, a web service, and web pages. 14 | 15 | ## About 16 | 17 | It is an unofficial and free iOS Development ebook created for educational purposes. All the content is 18 | extracted from Stack Overflow Documentation, which is written by many hardworking individuals at 19 | Stack Overflow. It is neither affiliated with Stack Overflow nor official Ruby On Rails. 20 | The content is released under Creative Commons BY-SA, and the list of contributors to each 21 | chapter are provided in the credits section at the end of this book. Images may be copyright of 22 | their respective owners unless otherwise specified. All trademarks and registered trademarks are 23 | the property of their respective company owners. 24 | 25 | Use the content presented in this book at your own risk; it is not guaranteed to be correct nor 26 | accurate, please send your feedback and corrections to **info@zzzprojects.com** 27 | -------------------------------------------------------------------------------- /apppages/Simone/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Simone Giertz's AMA 3 | img: '/appicons/video.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/GZB2TASnN5.zip' 6 | tags: 'Hack Club,Simone Giertz,AMA' 7 | --- 8 | 9 | # Watch Hack Club's interaction with Simone Giertz! 10 | 11 | image 12 | -------------------------------------------------------------------------------- /apppages/Sqlcourse/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Sql course 3 | img: '/appicons/sql.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/W66vgwGAzw.zip' 6 | tags: 'course,Sql, development,freecodecamp' 7 | link: 'https://www.youtube.com/watch?v=HXV3zeQKqGY&t=9255s' 8 | --- 9 | 10 | In this course, we'll be looking at database management basics and SQL using the MySQL RDBMS. The course is designed for beginners to SQL and database management systems, and will introduce common database management topics. 11 | 12 | Throughout the course we'll be looking at various topics including schema design, basic C.R.U.D operations, aggregation, nested queries, joins, keys and much more. 13 | 14 | image 15 | 16 | ## Why learn Sql 17 | 18 | SQL is Structured Query Language, which is a computer language for storing, manipulating and retrieving data stored in a relational database. 19 | 20 | SQL is the standard language for Relational Database System. All the Relational Database Management Systems (RDMS) like MySQL, MS Access, Oracle, Sybase, Informix, Postgres and SQL Server use SQL as their standard database language. 21 | 22 | Also, they are using different dialects, such as − 23 | 24 | - MS SQL Server using T-SQL, 25 | - Oracle using PL/SQL, 26 | - MS Access version of SQL is called JET SQL (native format) etc. 27 | 28 | image 29 | -------------------------------------------------------------------------------- /apppages/Trignometry/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Trignometry 3 | img: '/appicons/maths.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/MrsOXPjwv2.zip' 6 | tags: 'Trignometry,Maths' 7 | --- 8 | 9 | ## What is Khan Academy ? 10 | 11 | Khan Academy is an American non-profit educational organization created in 2008 by Salman Khan, with the goal of creating a set of online tools that help educate students. The organization produces short lessons in the form of videos. 12 | 13 | ## What is trignometry? 14 | 15 | Big, fancy word, right? Don't be fooled. Looking at the prefix, tri-, you could probably assume that trigonometry ("trig" as it's sometimes called) has something to do with triangles. You would be right! Trig is the study of the properties of triangles. Why is it important? It's used in measuring precise distances, particularly in industries like satellite systems and sciences like astronomy. It's not only space, however. Trig is present in architecture and music, too. Now you may wonder...how is knowing the measurement and properties of triangles relevant to music?? THAT is a great question. Maybe you'll learn the answer from us in these tutorials! 16 | 17 | image 18 | -------------------------------------------------------------------------------- /apppages/Ubuntu/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Ubuntu 3 | img: '/appicons/ubuntu.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/v2iharOsef.zip' 6 | --- 7 | 8 | Ubuntu is a Linux distribution based on Debian mostly composed of free and open-source software. Ubuntu is officially released in three editions: Desktop, Server, and Core for Internet of things devices and robots. All the editions can run on the computer alone, or in a virtual machine 9 | -------------------------------------------------------------------------------- /apppages/Unity/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Unity 3 | img: '/appicons/unity.png' 4 | ratings: 5, 5 | tags: 'game development,unity,3d' 6 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/YeFu_4BmXb.zip' 7 | --- 8 | 9 | Unity is a cross-platform game engine initially released by Unity Technologies, in 2005. The focus of Unity lies in the development of both 2D and 3D games and interactive content. Unity now supports over 20 different target platforms for deploying, while its most popular platforms are the PC, Android and iOS systems. 10 | 11 | image 12 | 13 | ## Features of Unity 3D 14 | 15 | Here is a list of some of the numerous features of Unity from the technical point of view. These are: 16 | 17 | - Creating and Destroying GameObjects 18 | - Access the Components 19 | - Events for GameObject 20 | - Dealing with Vector Variables and Timing Variables 21 | - Physics Oriented Events 22 | - Coroutine and Return Types 23 | 24 | image 25 | -------------------------------------------------------------------------------- /apppages/Unityfpscourse/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Unity FPS Survival Game Tutorial - First Person Shooter Game Dev 3 | img: '/appicons/unity.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/eFkGdpLJ2K.zip' 6 | tags: 'course,Unity,game development,freecodecamp' 7 | link: 'https://www.youtube.com/watch?v=Sqb-Ue7wpsI' 8 | --- 9 | 10 | Learn how to make a first-person shooter in Unity. Making a FPS in Unity is easy for beginners. This 8-hour tutorial covers everything you need to know to make a basic first person shooter game. 11 | 12 | image 13 | 14 | ## Why learn Unity 15 | 16 | Unity is a cross-platform game engine initially released by Unity Technologies, in 2005. The focus of Unity lies in the development of both 2D and 3D games and interactive content. Unity now supports over 20 different target platforms for deploying, while its most popular platforms are the PC, Android and iOS systems. 17 | 18 | image 19 | -------------------------------------------------------------------------------- /apppages/Vscode/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Vscode 3 | img: '/appicons/vscode.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/-NNMyV4mGb.zip' 6 | tags: 'programming,code editor' 7 | --- 8 | 9 | Visual Studio Code is a free source-code editor made by Microsoft for Windows, Linux and macOS. Features include support for debugging, syntax highlighting, intelligent code completion, snippets, code refactoring, and embedded Git. 10 | 11 | image 12 | 13 | ## Why Visual Studio Code? 14 | 15 | Visual Studio Code combines the simplicity of a source code editor with powerful developer tooling, like IntelliSense code completion and debugging. 16 | 17 | First and foremost, it is an editor that gets out of your way. The delightfully frictionless edit-build-debug cycle means less time fiddling with your environment, and more time executing on your ideas. 18 | 19 | ## Built with love for the Web 20 | 21 | VS Code includes enriched built-in support for Node.js development with JavaScript and TypeScript, powered by the same underlying technologies that drive Visual Studio. VS Code also includes great tooling for web technologies such as JSX/React, HTML, CSS, SCSS, Less, and JSON. 22 | 23 | image 24 | -------------------------------------------------------------------------------- /apppages/Vuecourse/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Vue course 3 | img: '/appicons/vue.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/91MI9NXF2y.zip' 6 | tags: 'course,vue,web,freecodecamp' 7 | link: 'https://www.youtube.com/watch?v=4deVCNJq3qc' 8 | --- 9 | 10 | Learn to use Vue.js in this full tutorial course for beginners. Vue.js is an open-source JavaScript framework for building user interfaces and single-page applications. 11 | 12 | image 13 | 14 | ## Why learn Vue 15 | 16 | VueJS is an open source progressive JavaScript framework used to develop interactive web interfaces. It is one of the famous frameworks used to simplify web development. VueJS focusses on the view layer. It can be easily integrated into big projects for front-end development without any issues. 17 | 18 | The installation for VueJS is very easy to start with. Any developer can easily understand and build interactive web interfaces in a matter of time. VueJS is created by Evan You, an ex-employee from Google. The first version of VueJS was released in Feb 2014. It recently has clocked to 64,828 stars on GitHub, making it very popular. 19 | 20 | image 21 | -------------------------------------------------------------------------------- /apppages/Vuepdf/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Vue Ebook 3 | img: '/appicons/vue.png' 4 | ratings: 5 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/bSDHi_YYiQ.zip' 6 | tags: 'ebook,guide,Vue js' 7 | --- 8 | 9 | This is an ebook on Vue js provided by https://riptutorial.com/ 10 | 11 | ## What is Vue ? 12 | 13 | Cascading Style Sheets (CSS) is a style sheet language used for describing the presentation of a document written in a markup language like HTML. CSS is a cornerstone technology of the World Wide Web, alongside HTML and JavaScript. 14 | 15 | ## About 16 | 17 | It is an unofficial and free CSS ebook created for educational purposes. All the content is 18 | extracted from Stack Overflow Documentation, which is written by many hardworking individuals at 19 | Stack Overflow. It is neither affiliated with Stack Overflow nor official Vue. 20 | The content is released under Creative Commons BY-SA, and the list of contributors to each 21 | chapter are provided in the credits section at the end of this book. Images may be copyright of 22 | their respective owners unless otherwise specified. All trademarks and registered trademarks are 23 | the property of their respective company owners. 24 | 25 | Use the content presented in this book at your own risk; it is not guaranteed to be correct nor 26 | accurate, please send your feedback and corrections to **info@zzzprojects.com** 27 | -------------------------------------------------------------------------------- /apppages/Wolfenstein/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Wolfenstein 3 | img: '/appicons/wolfenstein.png' 4 | ratings: 4 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/OtTdyp5pqX.zip' 6 | tags: 'games,entertainment,learning' 7 | --- 8 | 9 | Wolfenstein: Enemy Territory is a downloadable, free-to-play multiplayer game in which players wage war as Axis or Allies in team-based combat. It’s a team game; you will win or fall along with your comrades. The only way to complete the objectives that lead to victory is by cooperation, with each player covering their teammates and using their class special abilities in concert with the others. 10 | 11 | image 12 | 13 | Featuring multiplayer support for up to 32 players, Wolfenstein: Enemy Territory is the ultimate test of communication and teamwork on the battlefield. Players join the fray as one of five distinct character classes each with unique combat abilities. Each Axis or Allies team can divide itself into smaller fire teams for quick and easy communication using an intuitive messaging system and dynamic command map of the entire battlefield. 14 | 15 | image 16 | -------------------------------------------------------------------------------- /apppages/jQuery/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: jQuery 3 | img: '/appicons/js.png' 4 | ratings: 4 5 | download: 'https://storage.googleapis.com/file-in.appspot.com/files/RS11azidAY.zip' 6 | --- 7 | 8 | jQuery is a JavaScript library designed to simplify HTML DOM tree traversal and manipulation, as well as event handling, CSS animation, and Ajax. It is free, open-source software using the permissive MIT License. As of May 2019, jQuery is used by 73% of the 10 million most popular websites. 9 | 10 | ## Why jQuery? 11 | 12 | There are lots of other JavaScript libraries out there, but jQuery is probably the most popular, and also the most extendable. 13 | 14 | Many of the biggest companies on the Web use jQuery, such as: 15 | 16 | - Google 17 | - Microsoft 18 | - IBM 19 | - Netflix 20 | 21 | ## Will jQuery work in all browsers? 22 | 23 | The jQuery team knows all about cross-browser issues, and they have written this knowledge into the jQuery library. jQuery will run exactly the same in all major browsers. 24 | -------------------------------------------------------------------------------- /lib/Ama/index.js: -------------------------------------------------------------------------------- 1 | import data from "../data/index"; 2 | 3 | export default [ 4 | data("elonama"), 5 | data("dylanama"), 6 | data("patrickama"), 7 | data("guillermoama"), 8 | data("limorama"), 9 | data("simoneama"), 10 | data("audreyama"), 11 | data("jackama"), 12 | data("chrisama"), 13 | ]; 14 | -------------------------------------------------------------------------------- /lib/Books/index.js: -------------------------------------------------------------------------------- 1 | import data from "../data/index"; 2 | 3 | export default [ 4 | data("reactpdf"), 5 | data("htmlpdf"), 6 | data("javascriptpdf"), 7 | data("csspdfdata"), 8 | data("androidpdf"), 9 | data("iospdf"), 10 | data("cpluspluspdf"), 11 | data("pythonpdf"), 12 | data("javapdf"), 13 | data("nodejspdf"), 14 | data("vuepdf"), 15 | data("bootstrappdf"), 16 | data("jquerypdf"), 17 | data("rubyrailspdf"), 18 | ]; 19 | -------------------------------------------------------------------------------- /lib/Games/index.js: -------------------------------------------------------------------------------- 1 | import data from "../data/index"; 2 | 3 | export default [data("wolfenstein")]; 4 | -------------------------------------------------------------------------------- /lib/Graphics/index.js: -------------------------------------------------------------------------------- 1 | import data from "../data/index"; 2 | 3 | export default [ 4 | data("gimp"), 5 | data("inkscape"), 6 | data("blender"), 7 | data("davinci"), 8 | data("pencil2d"), 9 | ]; 10 | -------------------------------------------------------------------------------- /lib/Home/index.js: -------------------------------------------------------------------------------- 1 | import data from "../data/index"; 2 | 3 | export default [ 4 | data("gimp"), 5 | data("inkscape"), 6 | data("hackide"), 7 | data("audacity"), 8 | data("wolfenstein"), 9 | data("blender"), 10 | data("unity"), 11 | data("calibre"), 12 | data("vscode"), 13 | data("davinci"), 14 | data("pencil2d"), 15 | data("anaconda"), 16 | data('androidstudio') 17 | ]; 18 | -------------------------------------------------------------------------------- /lib/Javascript/index.js: -------------------------------------------------------------------------------- 1 | import data from '../data/index' 2 | 3 | export default [ 4 | data('jquery'), 5 | data('react'), 6 | data('vue'), 7 | data('angular'), 8 | data('paper'), 9 | data('d3'), 10 | data('phaser'), 11 | data('bootstrap'), 12 | data('popperjs') 13 | ] 14 | -------------------------------------------------------------------------------- /lib/KhanAcademy/index.js: -------------------------------------------------------------------------------- 1 | import data from '../data/index' 2 | 3 | export default [ 4 | data('trignometry'), 5 | data('risetwp'), 6 | data('cosmouni'), 7 | data('aromaticcomp'), 8 | data('macromolecules'), 9 | data('organicchem'), 10 | data('lineareq'), 11 | ] 12 | -------------------------------------------------------------------------------- /lib/Linux/index.js: -------------------------------------------------------------------------------- 1 | import data from "../data/index"; 2 | 3 | export default [ 4 | data("ubuntu"), 5 | data("fedora"), 6 | data("linuxmint"), 7 | data("kali"), 8 | data("arch"), 9 | ]; 10 | -------------------------------------------------------------------------------- /lib/Music/index.js: -------------------------------------------------------------------------------- 1 | import data from "../data/index"; 2 | 3 | export default [data("audacity")]; 4 | -------------------------------------------------------------------------------- /lib/Productivity/index.js: -------------------------------------------------------------------------------- 1 | import data from "../data/index"; 2 | 3 | export default [data("gimp"), data("inkscape"), data("audacity")]; 4 | -------------------------------------------------------------------------------- /lib/Programming/index.js: -------------------------------------------------------------------------------- 1 | import data from "../data/index"; 2 | 3 | export default [ 4 | data("nodejs"), 5 | data("python"), 6 | data("vscode"), 7 | data("unity"), 8 | data("hackide"), 9 | data("java"), 10 | data("anaconda"), 11 | ]; 12 | -------------------------------------------------------------------------------- /lib/Videos/index.js: -------------------------------------------------------------------------------- 1 | import data from "../data/index"; 2 | 3 | export default [ 4 | data("jscrashcourse"), 5 | data("htmlcourse"), 6 | data("csscourse"), 7 | data("pythoncourse"), 8 | data("gitcourse"), 9 | data("androidcourse"), 10 | data("reactcourse"), 11 | data("vuecourse"), 12 | data("sqlcourse"), 13 | data("dscourse"), 14 | data("unityfpscourse"), 15 | data("pentestingcourse"), 16 | data("denocourse"), 17 | data("firebaseappcourse"), 18 | data("datasciencecourse"), 19 | data("deeplearningcourse"), 20 | data("jsprojects"), 21 | data("golangcourse"), 22 | ]; 23 | -------------------------------------------------------------------------------- /lib/data/anaconda/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/anaconda.png", 3 | appname: "Anaconda", 4 | ratings: 4, 5 | }; 6 | -------------------------------------------------------------------------------- /lib/data/androidcourse/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/android.png", 3 | appname: "Android course", 4 | ratings: 5, 5 | target: "Androidcourse", 6 | }; 7 | -------------------------------------------------------------------------------- /lib/data/androidpdf/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/android.png", 3 | appname: "Android Ebook", 4 | ratings: 5, 5 | target: "Androidpdf", 6 | }; 7 | -------------------------------------------------------------------------------- /lib/data/androidstudio/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/android.png", 3 | appname: "Android Studio", 4 | ratings: 5, 5 | target:'AndroidStd' 6 | }; 7 | -------------------------------------------------------------------------------- /lib/data/angular/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/angular.png", 3 | appname: "Angular", 4 | ratings: 4, 5 | }; 6 | -------------------------------------------------------------------------------- /lib/data/arch/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/arch.png", 3 | appname: "Arch Linux", 4 | ratings: 5, 5 | }; 6 | -------------------------------------------------------------------------------- /lib/data/aromaticcompoundsdata/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: 'appicons/chemistry.png', 3 | appname: `Armoatic Compounds`, 4 | ratings: 5, 5 | target: 'Aromaticcomp', 6 | } 7 | -------------------------------------------------------------------------------- /lib/data/audacity/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/audacity.png", 3 | appname: "Audacity", 4 | ratings: 3, 5 | }; 6 | -------------------------------------------------------------------------------- /lib/data/audrey/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/video.png", 3 | appname: `Audrey Tang's AMA`, 4 | ratings: 5, 5 | }; 6 | -------------------------------------------------------------------------------- /lib/data/blender/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/blenderlogo.png", 3 | appname: "Blender", 4 | ratings: 3, 5 | }; 6 | -------------------------------------------------------------------------------- /lib/data/bootstrap/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/bootstrap.png", 3 | appname: "Bootstrap", 4 | ratings: 5, 5 | }; 6 | -------------------------------------------------------------------------------- /lib/data/bootstrappdf/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/bootstrap.png", 3 | appname: "Bootstrap Ebook", 4 | ratings: 5, 5 | target: "Bootstrappdf", 6 | }; 7 | -------------------------------------------------------------------------------- /lib/data/c++/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/c++.png", 3 | appname: "C++", 4 | ratings: 4, 5 | }; 6 | -------------------------------------------------------------------------------- /lib/data/calibrereader/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/calibre.png", 3 | appname: "Calibre Reader", 4 | ratings: 4, 5 | }; 6 | -------------------------------------------------------------------------------- /lib/data/chris/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/video.png", 3 | appname: `Chris Cox's AMA`, 4 | ratings: 5, 5 | }; 6 | -------------------------------------------------------------------------------- /lib/data/cosmouniversedata/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: 'appicons/space.png', 3 | appname: `Quasars:Stars, black holes and galaxies`, 4 | ratings: 5, 5 | target: 'Cosmologyuniverse' 6 | } 7 | -------------------------------------------------------------------------------- /lib/data/cpluspluspdf/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/c++.png", 3 | appname: "C++ Ebook", 4 | ratings: 5, 5 | target: "Cpluspluspdf", 6 | }; 7 | -------------------------------------------------------------------------------- /lib/data/csscourse/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/css.png", 3 | appname: "CSS course", 4 | ratings: 5, 5 | target: "Csscourse", 6 | }; 7 | -------------------------------------------------------------------------------- /lib/data/csspdf/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/css.png", 3 | appname: "CSS Ebook", 4 | ratings: 5, 5 | target: "Csspdf", 6 | }; 7 | -------------------------------------------------------------------------------- /lib/data/d3/index.js: -------------------------------------------------------------------------------- 1 | export default { imgsrc: "appicons/d3.png", appname: "D3", ratings: 4 }; 2 | -------------------------------------------------------------------------------- /lib/data/datasciencecourse/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/python.png", 3 | appname: 4 | "Python for Data Science - Course for Beginners (Learn Python, Pandas, NumPy, Matplotlib)", 5 | ratings: 5, 6 | target: "Datasciencecourse", 7 | }; 8 | -------------------------------------------------------------------------------- /lib/data/davinci/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/davinci.png", 3 | appname: "DaVinci Resolve", 4 | ratings: 5, 5 | target: "Davinci", 6 | }; 7 | -------------------------------------------------------------------------------- /lib/data/deeplearningcourse/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/pytorch.png", 3 | appname: "PyTorch for Deep Learning - Full Course / Tutorial", 4 | ratings: 5, 5 | target: "Deeplearningcourse", 6 | }; 7 | -------------------------------------------------------------------------------- /lib/data/denocourse/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/deno.png", 3 | appname: "Deno course", 4 | ratings: 5, 5 | target: "Denocourse", 6 | }; 7 | -------------------------------------------------------------------------------- /lib/data/dscourse/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/ds.png", 3 | appname: "Data structure course", 4 | ratings: 5, 5 | target: "Dscourse", 6 | }; 7 | -------------------------------------------------------------------------------- /lib/data/dylan/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/video.png", 3 | appname: `Dylan Field's AMA`, 4 | ratings: 5, 5 | }; 6 | -------------------------------------------------------------------------------- /lib/data/elonmusk/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/video.png", 3 | appname: `Elon Musk's AMA`, 4 | ratings: 5, 5 | }; 6 | -------------------------------------------------------------------------------- /lib/data/fedora/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/fedora.png", 3 | appname: "Fedora", 4 | ratings: 5, 5 | }; 6 | -------------------------------------------------------------------------------- /lib/data/firebaseappcourse/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/firebase.png", 3 | appname: "Full Stack React & Firebase Tutorial - Build a social media app", 4 | ratings: 5, 5 | target: "Firebaseappcourse", 6 | }; 7 | -------------------------------------------------------------------------------- /lib/data/gimp/index.js: -------------------------------------------------------------------------------- 1 | export default { imgsrc: "appicons/gimplogo.png", appname: "Gimp", ratings: 4 }; 2 | -------------------------------------------------------------------------------- /lib/data/gitcourse/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/git.png", 3 | appname: "Git and Github crash course", 4 | ratings: 5, 5 | target: "Gitcourse", 6 | }; 7 | -------------------------------------------------------------------------------- /lib/data/golangcoursedata/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/golang.png", 3 | appname: "Golang course", 4 | ratings: 5, 5 | target: "Golangcourse", 6 | }; 7 | -------------------------------------------------------------------------------- /lib/data/guillermo/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/video.png", 3 | appname: `Guillermo Rauch's AMA`, 4 | ratings: 5, 5 | }; 6 | -------------------------------------------------------------------------------- /lib/data/hackide/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/hacklogo.jpg", 3 | appname: "HackIde", 4 | ratings: 5, 5 | }; 6 | -------------------------------------------------------------------------------- /lib/data/htmlcourse/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/html.png", 3 | appname: "HTML course", 4 | ratings: 5, 5 | target: "Htmlcourse", 6 | }; 7 | -------------------------------------------------------------------------------- /lib/data/htmlpdf/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/html.png", 3 | appname: "HTML Ebook", 4 | ratings: 5, 5 | target: "Htmlpdf", 6 | }; 7 | -------------------------------------------------------------------------------- /lib/data/index.js: -------------------------------------------------------------------------------- 1 | import map from "./data"; 2 | 3 | export default (application) => map.get(application); 4 | -------------------------------------------------------------------------------- /lib/data/inkspace/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/inkscape.png", 3 | appname: "Inkscape", 4 | ratings: 4, 5 | }; 6 | -------------------------------------------------------------------------------- /lib/data/iospdf/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/ios.png", 3 | appname: "iOS Ebook", 4 | ratings: 5, 5 | target: "Iospdf", 6 | }; 7 | -------------------------------------------------------------------------------- /lib/data/jack/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/video.png", 3 | appname: `Jack Conte's AMA`, 4 | ratings: 5, 5 | }; 6 | -------------------------------------------------------------------------------- /lib/data/java/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/java.png", 3 | appname: "Java", 4 | ratings: 4, 5 | }; 6 | -------------------------------------------------------------------------------- /lib/data/javapdf/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/java.png", 3 | appname: "Java Ebook", 4 | ratings: 5, 5 | target: "Javapdf", 6 | }; 7 | -------------------------------------------------------------------------------- /lib/data/javascriptpdf/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/js.png", 3 | appname: "Javascript Ebook", 4 | ratings: 5, 5 | target: "Javascriptpdf", 6 | }; 7 | -------------------------------------------------------------------------------- /lib/data/jquery/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/js.png", 3 | appname: "jQuery", 4 | ratings: 4, 5 | }; 6 | -------------------------------------------------------------------------------- /lib/data/jquerypdf/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/js.png", 3 | appname: "jQuery Ebook", 4 | ratings: 5, 5 | target: "Jquerypdf", 6 | }; 7 | -------------------------------------------------------------------------------- /lib/data/js_crashcourse/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/js.png", 3 | appname: "Js crash course", 4 | ratings: 5, 5 | target: "Jscourse", 6 | }; 7 | -------------------------------------------------------------------------------- /lib/data/jsprojects/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/js.png", 3 | appname: "Build 15 JavaScript Projects - Vanilla JavaScript Course", 4 | ratings: 5, 5 | target: "Jsprojects", 6 | }; 7 | -------------------------------------------------------------------------------- /lib/data/kali/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/kali.png", 3 | appname: "Kali Linux", 4 | ratings: 5, 5 | }; 6 | -------------------------------------------------------------------------------- /lib/data/limor/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/video.png", 3 | appname: `Limor Fried's AMA`, 4 | ratings: 5, 5 | }; 6 | -------------------------------------------------------------------------------- /lib/data/lineareqdata/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: 'appicons/maths.png', 3 | appname: `Systems of linear equations`, 4 | ratings: 5, 5 | target: 'LinearEq' 6 | } 7 | -------------------------------------------------------------------------------- /lib/data/linuxmint/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/linuxmint.png", 3 | appname: "Linux Mint", 4 | ratings: 5, 5 | target: "Linuxmint", 6 | }; 7 | -------------------------------------------------------------------------------- /lib/data/macromoleculesdata/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: 'appicons/biology.png', 3 | appname: `Macromolecules`, 4 | ratings: 5, 5 | target: 'Macromolecules', 6 | } 7 | -------------------------------------------------------------------------------- /lib/data/nodejs/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/nodejs.png", 3 | appname: "Nodejs", 4 | ratings: 4, 5 | }; 6 | -------------------------------------------------------------------------------- /lib/data/nodepdf/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/nodejs.png", 3 | appname: "Nodejs Ebook", 4 | ratings: 5, 5 | target: "Nodepdf", 6 | }; 7 | -------------------------------------------------------------------------------- /lib/data/organicchemdata/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: 'appicons/chemistry.png', 3 | appname: `Oragnic Chemistry`, 4 | ratings: 5, 5 | target: 'Organicchem', 6 | } 7 | -------------------------------------------------------------------------------- /lib/data/paper/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/js.png", 3 | appname: "Paperjs", 4 | ratings: 4, 5 | }; 6 | -------------------------------------------------------------------------------- /lib/data/patrick/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/video.png", 3 | appname: `Patrick Collison's AMA`, 4 | ratings: 5, 5 | }; 6 | -------------------------------------------------------------------------------- /lib/data/pencil2d/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/pencil2d.png", 3 | appname: "Pencil2d", 4 | ratings: 4, 5 | }; 6 | -------------------------------------------------------------------------------- /lib/data/pentestingcourse/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/kali.png", 3 | appname: "Pentesting Course", 4 | ratings: 5, 5 | target: "Pentestingcourse", 6 | }; 7 | -------------------------------------------------------------------------------- /lib/data/phaser/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/js.png", 3 | appname: "Phaser", 4 | ratings: 5, 5 | }; 6 | -------------------------------------------------------------------------------- /lib/data/popper/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/popper.png", 3 | appname: "Popperjs", 4 | ratings: 5, 5 | }; 6 | -------------------------------------------------------------------------------- /lib/data/python/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/python.png", 3 | appname: "Python", 4 | ratings: 5, 5 | }; 6 | -------------------------------------------------------------------------------- /lib/data/pythoncourse/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/python.png", 3 | appname: "Python course", 4 | ratings: 5, 5 | target: "Pythoncourse", 6 | }; 7 | -------------------------------------------------------------------------------- /lib/data/pythonpdf/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/python.png", 3 | appname: "Python Ebook", 4 | ratings: 5, 5 | target: "Pythonpdf", 6 | }; 7 | -------------------------------------------------------------------------------- /lib/data/react/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/react.png", 3 | appname: "React", 4 | ratings: 5, 5 | }; 6 | -------------------------------------------------------------------------------- /lib/data/reactcourse/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/react.png", 3 | appname: "React course", 4 | ratings: 5, 5 | target: "Reactcourse", 6 | }; 7 | -------------------------------------------------------------------------------- /lib/data/reactpdf/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/react.png", 3 | appname: "React Ebook", 4 | ratings: 5, 5 | target: "Reactpdf", 6 | }; 7 | -------------------------------------------------------------------------------- /lib/data/risetwpdata/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: 'appicons/history.png', 3 | appname: `Rise to world power (1890-1945),US History`, 4 | ratings: 5, 5 | target: 'Risetwp' 6 | } 7 | -------------------------------------------------------------------------------- /lib/data/rubyrailspdf/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/rubyrails.png", 3 | appname: "Ruby On Rails Ebook", 4 | ratings: 5, 5 | target: "Rubyrailspdf", 6 | }; 7 | -------------------------------------------------------------------------------- /lib/data/simone/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/video.png", 3 | appname: `Simone Giertz's AMA`, 4 | ratings: 5, 5 | }; 6 | -------------------------------------------------------------------------------- /lib/data/sqlcourse/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/sql.png", 3 | appname: "SQL course", 4 | ratings: 5, 5 | target: "Sqlcourse", 6 | }; 7 | -------------------------------------------------------------------------------- /lib/data/trignometrydata/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: 'appicons/maths.png', 3 | appname: `Trignometry`, 4 | ratings: 5 5 | } 6 | -------------------------------------------------------------------------------- /lib/data/ubuntu/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/ubuntu.png", 3 | appname: "Ubuntu", 4 | ratings: 5, 5 | }; 6 | -------------------------------------------------------------------------------- /lib/data/unity/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/unity.png", 3 | appname: "Unity", 4 | ratings: 5, 5 | target: "Unity", 6 | }; 7 | -------------------------------------------------------------------------------- /lib/data/unityfpscourse/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/unity.png", 3 | appname: "Unity FPS Survival Game Tutorial - First Person Shooter Game Dev", 4 | ratings: 5, 5 | target: "Unityfpscourse", 6 | }; 7 | -------------------------------------------------------------------------------- /lib/data/vscode/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/vscode.png", 3 | appname: "Vscode", 4 | ratings: 5, 5 | }; 6 | -------------------------------------------------------------------------------- /lib/data/vue/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/vue.png", 3 | appname: "Vue", 4 | ratings: 5, 5 | }; 6 | -------------------------------------------------------------------------------- /lib/data/vuecourse/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/vue.png", 3 | appname: "Vue course", 4 | ratings: 5, 5 | target: "Vuecourse", 6 | }; 7 | -------------------------------------------------------------------------------- /lib/data/vuepdf/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/vue.png", 3 | appname: "Vue Ebook", 4 | ratings: 5, 5 | target: "Vuepdf", 6 | }; 7 | -------------------------------------------------------------------------------- /lib/data/wolfenstein/index.js: -------------------------------------------------------------------------------- 1 | export default { 2 | imgsrc: "appicons/wolfenstein.png", 3 | appname: "Wolfenstein", 4 | ratings: 4, 5 | }; 6 | -------------------------------------------------------------------------------- /lib/maps/data.js: -------------------------------------------------------------------------------- 1 | import homedata from '../Home/index' 2 | import productivitydata from '../Productivity/index' 3 | import musicdata from '../Music/index' 4 | import graphicsdata from '../Graphics/index' 5 | import gamesdata from '../Games/index' 6 | import booksdata from '../Books/index' 7 | import javascriptdata from '../Javascript/index' 8 | import programmingdata from '../Programming/index' 9 | import videodata from '../Videos/index' 10 | import amadata from '../Ama/index' 11 | import linuxdata from '../Linux/index' 12 | import khanacademydata from '../KhanAcademy/index' 13 | 14 | const map = new Map() 15 | 16 | map.set('Home', { 17 | imgsrc: 'icons/homevar.png', 18 | text: 'home of most awesome applications', 19 | data: homedata, 20 | keyinitial: 'home', 21 | }) 22 | 23 | map.set('Productivity', { 24 | imgsrc: 'icons/productivity.png', 25 | text: 'applications to boost your productivity', 26 | data: productivitydata, 27 | keyinitial: 'productivity', 28 | }) 29 | 30 | map.set('Music', { 31 | imgsrc: 'icons/guitar.png', 32 | text: 'applications to discover the musician inside you', 33 | data: musicdata, 34 | keyinitial: 'music', 35 | }) 36 | 37 | map.set('Graphics', { 38 | imgsrc: 'icons/colorpallete.png', 39 | text: 'create great grahics with these applications', 40 | data: graphicsdata, 41 | keyinitial: 'graphics', 42 | }) 43 | 44 | map.set('Games', { 45 | imgsrc: 'icons/gamingconsole.png', 46 | text: 'games which makes you happy', 47 | data: gamesdata, 48 | keyinitial: 'games', 49 | }) 50 | 51 | map.set('Books', { 52 | imgsrc: 'icons/books.png', 53 | text: 'books to boost your knowledge', 54 | data: booksdata, 55 | keyinitial: 'books', 56 | }) 57 | 58 | map.set('Workshops', { 59 | imgsrc: 'icons/workshops.png', 60 | text: `Hack Club's Workshop for learning and fun`, 61 | data: javascriptdata, 62 | keyinitial: 'workshops', 63 | }) 64 | 65 | map.set('Programming', { 66 | imgsrc: 'icons/programming.png', 67 | text: `softwares for your programmer journey`, 68 | data: programmingdata, 69 | keyinitial: 'programming', 70 | }) 71 | 72 | map.set('AMA', { 73 | imgsrc: 'icons/hacklogorounded.png', 74 | text: `Hack Club's AMA for learning and fun`, 75 | data: amadata, 76 | keyinitial: 'ama', 77 | }) 78 | 79 | map.set('Linux', { 80 | imgsrc: 'icons/linux.png', 81 | text: `Some awesome linux distros for you`, 82 | data: linuxdata, 83 | keyinitial: 'linux', 84 | }) 85 | 86 | map.set('Javascript', { 87 | imgsrc: 'icons/javascript.png', 88 | text: 'Javascript libraries for making projects', 89 | data: javascriptdata, 90 | keyinitial: 'javascript', 91 | }) 92 | 93 | map.set('Videos', { 94 | imgsrc: 'icons/videos.png', 95 | text: `Video tutorials to upskill yourselves`, 96 | data: videodata, 97 | keyinitial: 'video', 98 | }) 99 | 100 | map.set('Khan Academy', { 101 | imgsrc: 'icons/khanacademy.png', 102 | text: `Awesome khan academy videos just for you`, 103 | data: khanacademydata, 104 | keyinitial: 'khanacademy', 105 | }) 106 | 107 | export default map 108 | -------------------------------------------------------------------------------- /lib/maps/mapper.js: -------------------------------------------------------------------------------- 1 | import map from './data' 2 | 3 | export default (activetab) => map.get(activetab) 4 | -------------------------------------------------------------------------------- /lib/search/index.js: -------------------------------------------------------------------------------- 1 | import mapper from '../maps/mapper' 2 | import { carddata } from '../../Components/sidebar/index' 3 | import * as _ from 'ramda' 4 | 5 | const data = _.reduce((acc, ele) => { 6 | const data = mapper(ele.section) 7 | return _.concat(data.data, acc) 8 | }, [])(carddata) 9 | 10 | const filtereddata = _.uniq(data) 11 | 12 | export default (value, setdata, activetab) => { 13 | const isEmpty = _.isEmpty(value) 14 | 15 | const data = isEmpty 16 | ? mapper(activetab).data 17 | : _.filter((ele) => _.includes(_.toLower(value), _.toLower(ele.appname)))( 18 | filtereddata 19 | ) 20 | 21 | setdata({ data }) 22 | 23 | //console.log('searched data is', data) 24 | } 25 | -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | webpack: function (config) { 3 | config.module.rules.push({ 4 | test: /\.md$/, 5 | use: 'raw-loader', 6 | }) 7 | return config 8 | }, 9 | } 10 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hackstore", 3 | "version": "0.1.0", 4 | "private": true, 5 | "author": { 6 | "name": "Harsh Bajpai", 7 | "email": "harsh@hackclub.com" 8 | }, 9 | "scripts": { 10 | "dev": "next dev", 11 | "build": "next build", 12 | "start": "next start", 13 | "format": "prettier --write .", 14 | "checkFormat": "prettier --check ." 15 | }, 16 | "dependencies": { 17 | "@hackclub/icons": "^0.0.5", 18 | "@hackclub/meta": "^1.0.0", 19 | "@hackclub/theme": "^0.1.1", 20 | "@material-ui/core": "^4.11.0", 21 | "@material-ui/icons": "^4.9.1", 22 | "@zeit/next-mdx": "^1.2.0", 23 | "express": "^4.17.1", 24 | "gray-matter": "^4.0.2", 25 | "lodash": "^4.17.21", 26 | "markdown-yaml-metadata-parser": "^2.0.5", 27 | "material-ui-search-bar": "^1.0.0", 28 | "next": "9.4.4", 29 | "ramda": "^0.27.1", 30 | "raw-loader": "^4.0.1", 31 | "react": "16.13.1", 32 | "react-dom": "16.13.1", 33 | "react-markdown": "^4.3.1", 34 | "react-redux": "^7.2.0", 35 | "react-search-field": "^1.1.0", 36 | "redux": "^4.0.5", 37 | "redux-devtools-extension": "^2.13.8", 38 | "redux-thunk": "^2.3.0", 39 | "simplebar-react": "^2.2.1", 40 | "theme-ui": "^0.3.1" 41 | }, 42 | "devDependencies": { 43 | "prettier": "2.0.5" 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /pages/_app.js: -------------------------------------------------------------------------------- 1 | import * as React from 'react' 2 | import NextApp from 'next/app' 3 | import Head from 'next/head' 4 | 5 | //import Meta from '@hackclub/meta' 6 | import Meta from '../Components/meta/index' 7 | import '@hackclub/theme/fonts/reg-bold.css' 8 | import theme from '../Theme/theme' 9 | import { ThemeProvider } from 'theme-ui' 10 | import '../index.css' 11 | /**index.css contains normalize.css for consistency across multiple browser and also has some global css (in the end of file) */ 12 | 13 | import { Provider } from 'react-redux' 14 | import store from '../State/store/index' 15 | 16 | export default class App extends NextApp { 17 | render() { 18 | const { Component, pageProps } = this.props 19 | return ( 20 | 21 | 22 | 23 | 24 | 25 | 26 | ) 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- 1 | /**@jsx jsx*/ 2 | import { jsx } from "theme-ui"; 3 | import Sidebar from "../Components/sidebar/index"; 4 | import Appwindow from "../Components/appwindow/index"; 5 | 6 | export default () => ( 7 |
16 | 17 | 18 |
19 | ); 20 | -------------------------------------------------------------------------------- /public/appicons/anaconda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/anaconda.png -------------------------------------------------------------------------------- /public/appicons/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/android.png -------------------------------------------------------------------------------- /public/appicons/angular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/angular.png -------------------------------------------------------------------------------- /public/appicons/arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/arch.png -------------------------------------------------------------------------------- /public/appicons/audacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/audacity.png -------------------------------------------------------------------------------- /public/appicons/biology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/biology.png -------------------------------------------------------------------------------- /public/appicons/blender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/blender.png -------------------------------------------------------------------------------- /public/appicons/blenderlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/blenderlogo.png -------------------------------------------------------------------------------- /public/appicons/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/book.png -------------------------------------------------------------------------------- /public/appicons/bootstrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/bootstrap.png -------------------------------------------------------------------------------- /public/appicons/c++.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/c++.png -------------------------------------------------------------------------------- /public/appicons/calibre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/calibre.png -------------------------------------------------------------------------------- /public/appicons/chemistry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/chemistry.png -------------------------------------------------------------------------------- /public/appicons/css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/css.png -------------------------------------------------------------------------------- /public/appicons/d3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/d3.png -------------------------------------------------------------------------------- /public/appicons/davinci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/davinci.png -------------------------------------------------------------------------------- /public/appicons/deno.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/deno.png -------------------------------------------------------------------------------- /public/appicons/ds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/ds.png -------------------------------------------------------------------------------- /public/appicons/fedora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/fedora.png -------------------------------------------------------------------------------- /public/appicons/firebase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/firebase.png -------------------------------------------------------------------------------- /public/appicons/freecodecamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/freecodecamp.png -------------------------------------------------------------------------------- /public/appicons/gimplogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/gimplogo.png -------------------------------------------------------------------------------- /public/appicons/git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/git.png -------------------------------------------------------------------------------- /public/appicons/golang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/golang.png -------------------------------------------------------------------------------- /public/appicons/hacklogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/hacklogo.jpg -------------------------------------------------------------------------------- /public/appicons/history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/history.png -------------------------------------------------------------------------------- /public/appicons/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/html.png -------------------------------------------------------------------------------- /public/appicons/inkscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/inkscape.png -------------------------------------------------------------------------------- /public/appicons/ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/ios.png -------------------------------------------------------------------------------- /public/appicons/iosalternate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/iosalternate.png -------------------------------------------------------------------------------- /public/appicons/java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/java.png -------------------------------------------------------------------------------- /public/appicons/jquery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/jquery.png -------------------------------------------------------------------------------- /public/appicons/js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/js.png -------------------------------------------------------------------------------- /public/appicons/kali.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/kali.png -------------------------------------------------------------------------------- /public/appicons/linuxmint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/linuxmint.png -------------------------------------------------------------------------------- /public/appicons/maths.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/maths.png -------------------------------------------------------------------------------- /public/appicons/nodejs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/nodejs.png -------------------------------------------------------------------------------- /public/appicons/pencil2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/pencil2d.png -------------------------------------------------------------------------------- /public/appicons/popper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/popper.png -------------------------------------------------------------------------------- /public/appicons/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/python.png -------------------------------------------------------------------------------- /public/appicons/pytorch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/pytorch.png -------------------------------------------------------------------------------- /public/appicons/react.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/react.png -------------------------------------------------------------------------------- /public/appicons/rubyrails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/rubyrails.png -------------------------------------------------------------------------------- /public/appicons/space copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/space copy.jpg -------------------------------------------------------------------------------- /public/appicons/space.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/space.jpg -------------------------------------------------------------------------------- /public/appicons/space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/space.png -------------------------------------------------------------------------------- /public/appicons/sql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/sql.png -------------------------------------------------------------------------------- /public/appicons/ubuntu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/ubuntu.png -------------------------------------------------------------------------------- /public/appicons/unity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/unity.png -------------------------------------------------------------------------------- /public/appicons/universe copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/universe copy.png -------------------------------------------------------------------------------- /public/appicons/universe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/universe.png -------------------------------------------------------------------------------- /public/appicons/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/video.png -------------------------------------------------------------------------------- /public/appicons/vscode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/vscode.png -------------------------------------------------------------------------------- /public/appicons/vue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/vue.png -------------------------------------------------------------------------------- /public/appicons/wolfenstein.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/appicons/wolfenstein.png -------------------------------------------------------------------------------- /public/asset1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/asset1.png -------------------------------------------------------------------------------- /public/asset2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/asset2.png -------------------------------------------------------------------------------- /public/asset3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/asset3.png -------------------------------------------------------------------------------- /public/favicons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/favicons/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/favicons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/favicons/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicons/browserconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | #da532c 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /public/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/favicons/favicon.ico -------------------------------------------------------------------------------- /public/favicons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/favicons/mstile-150x150.png -------------------------------------------------------------------------------- /public/favicons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | Created by potrace 1.11, written by Peter Selinger 2001-2013 9 | 10 | 12 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /public/favicons/site.webmanifest: -------------------------------------------------------------------------------- 1 | { 2 | "name": "", 3 | "short_name": "", 4 | "icons": [ 5 | { 6 | "src": "/android-chrome-192x192.png", 7 | "sizes": "192x192", 8 | "type": "image/png" 9 | }, 10 | { 11 | "src": "/android-chrome-512x512.png", 12 | "sizes": "512x512", 13 | "type": "image/png" 14 | } 15 | ], 16 | "theme_color": "#ffffff", 17 | "background_color": "#ffffff", 18 | "display": "standalone" 19 | } 20 | -------------------------------------------------------------------------------- /public/files/anaconda.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/anaconda.zip -------------------------------------------------------------------------------- /public/files/androidcourse.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/androidcourse.zip -------------------------------------------------------------------------------- /public/files/androidpdf.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/androidpdf.zip -------------------------------------------------------------------------------- /public/files/angular.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/angular.zip -------------------------------------------------------------------------------- /public/files/arch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/arch.zip -------------------------------------------------------------------------------- /public/files/aromaticcompounds.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/aromaticcompounds.zip -------------------------------------------------------------------------------- /public/files/audacity.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/audacity.zip -------------------------------------------------------------------------------- /public/files/audrey.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/audrey.zip -------------------------------------------------------------------------------- /public/files/blender.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/blender.zip -------------------------------------------------------------------------------- /public/files/bootstrap.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/bootstrap.zip -------------------------------------------------------------------------------- /public/files/bootstrappdf.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/bootstrappdf.zip -------------------------------------------------------------------------------- /public/files/c++.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/c++.zip -------------------------------------------------------------------------------- /public/files/calibre.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/calibre.zip -------------------------------------------------------------------------------- /public/files/chris.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/chris.zip -------------------------------------------------------------------------------- /public/files/cosmology_universe.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/cosmology_universe.zip -------------------------------------------------------------------------------- /public/files/cpluspdf.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/cpluspdf.zip -------------------------------------------------------------------------------- /public/files/csscourse.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/csscourse.zip -------------------------------------------------------------------------------- /public/files/csspdf.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/csspdf.zip -------------------------------------------------------------------------------- /public/files/d3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/d3.zip -------------------------------------------------------------------------------- /public/files/datasciencecourse.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/datasciencecourse.zip -------------------------------------------------------------------------------- /public/files/davinci.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/davinci.zip -------------------------------------------------------------------------------- /public/files/deeplearningcourse.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/deeplearningcourse.zip -------------------------------------------------------------------------------- /public/files/denocourse.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/denocourse.zip -------------------------------------------------------------------------------- /public/files/dscourse.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/dscourse.zip -------------------------------------------------------------------------------- /public/files/dylan.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/dylan.zip -------------------------------------------------------------------------------- /public/files/editor.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/editor.zip -------------------------------------------------------------------------------- /public/files/elon.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/elon.zip -------------------------------------------------------------------------------- /public/files/fedora.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/fedora.zip -------------------------------------------------------------------------------- /public/files/firebaseapp.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/firebaseapp.zip -------------------------------------------------------------------------------- /public/files/gimp.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/gimp.zip -------------------------------------------------------------------------------- /public/files/gitcourse.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/gitcourse.zip -------------------------------------------------------------------------------- /public/files/golangcourse.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/golangcourse.zip -------------------------------------------------------------------------------- /public/files/guillermo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/guillermo.zip -------------------------------------------------------------------------------- /public/files/htmlcourse.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/htmlcourse.zip -------------------------------------------------------------------------------- /public/files/htmlpdf.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/htmlpdf.zip -------------------------------------------------------------------------------- /public/files/inkspace.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/inkspace.zip -------------------------------------------------------------------------------- /public/files/iospdf.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/iospdf.zip -------------------------------------------------------------------------------- /public/files/jack.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/jack.zip -------------------------------------------------------------------------------- /public/files/java.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/java.zip -------------------------------------------------------------------------------- /public/files/javapdf.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/javapdf.zip -------------------------------------------------------------------------------- /public/files/javascriptpdf.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/javascriptpdf.zip -------------------------------------------------------------------------------- /public/files/jquery.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/jquery.zip -------------------------------------------------------------------------------- /public/files/jquerypdf.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/jquerypdf.zip -------------------------------------------------------------------------------- /public/files/jsprojectscourse.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/jsprojectscourse.zip -------------------------------------------------------------------------------- /public/files/kali.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/kali.zip -------------------------------------------------------------------------------- /public/files/limor.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/limor.zip -------------------------------------------------------------------------------- /public/files/linearequations.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/linearequations.zip -------------------------------------------------------------------------------- /public/files/linuxmint.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/linuxmint.zip -------------------------------------------------------------------------------- /public/files/macromolecules.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/macromolecules.zip -------------------------------------------------------------------------------- /public/files/nodejs.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/nodejs.zip -------------------------------------------------------------------------------- /public/files/nodepdf.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/nodepdf.zip -------------------------------------------------------------------------------- /public/files/organicchem.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/organicchem.zip -------------------------------------------------------------------------------- /public/files/paper.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/paper.zip -------------------------------------------------------------------------------- /public/files/patrick.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/patrick.zip -------------------------------------------------------------------------------- /public/files/pencil2d.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/pencil2d.zip -------------------------------------------------------------------------------- /public/files/pentestingcourse.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/pentestingcourse.zip -------------------------------------------------------------------------------- /public/files/phaser.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/phaser.zip -------------------------------------------------------------------------------- /public/files/popper.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/popper.zip -------------------------------------------------------------------------------- /public/files/python.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/python.zip -------------------------------------------------------------------------------- /public/files/pythonpdf.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/pythonpdf.zip -------------------------------------------------------------------------------- /public/files/react.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/react.zip -------------------------------------------------------------------------------- /public/files/reactcourse.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/reactcourse.zip -------------------------------------------------------------------------------- /public/files/reactpdf.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/reactpdf.zip -------------------------------------------------------------------------------- /public/files/risetwp.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/risetwp.zip -------------------------------------------------------------------------------- /public/files/rubyrailspdf.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/rubyrailspdf.zip -------------------------------------------------------------------------------- /public/files/simone.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/simone.zip -------------------------------------------------------------------------------- /public/files/sqlcourse.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/sqlcourse.zip -------------------------------------------------------------------------------- /public/files/trignometry.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/trignometry.zip -------------------------------------------------------------------------------- /public/files/ubuntu.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/ubuntu.zip -------------------------------------------------------------------------------- /public/files/unity.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/unity.zip -------------------------------------------------------------------------------- /public/files/unityfpscourse.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/unityfpscourse.zip -------------------------------------------------------------------------------- /public/files/video.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/video.zip -------------------------------------------------------------------------------- /public/files/vscode.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/vscode.zip -------------------------------------------------------------------------------- /public/files/vue.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/vue.zip -------------------------------------------------------------------------------- /public/files/vuecourse.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/vuecourse.zip -------------------------------------------------------------------------------- /public/files/vuepdf.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/vuepdf.zip -------------------------------------------------------------------------------- /public/files/wolfenstein.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/files/wolfenstein.zip -------------------------------------------------------------------------------- /public/hackclublogo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/icons/books.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/icons/books.png -------------------------------------------------------------------------------- /public/icons/colorpallete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/icons/colorpallete.png -------------------------------------------------------------------------------- /public/icons/gamingconsole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/icons/gamingconsole.png -------------------------------------------------------------------------------- /public/icons/guitar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/icons/guitar.png -------------------------------------------------------------------------------- /public/icons/hacklogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/icons/hacklogo.jpg -------------------------------------------------------------------------------- /public/icons/hacklogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/icons/hacklogo.png -------------------------------------------------------------------------------- /public/icons/hacklogorounded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/icons/hacklogorounded.png -------------------------------------------------------------------------------- /public/icons/homevar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/icons/homevar.png -------------------------------------------------------------------------------- /public/icons/javascript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/icons/javascript.png -------------------------------------------------------------------------------- /public/icons/khanacademy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/icons/khanacademy.png -------------------------------------------------------------------------------- /public/icons/linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/icons/linux.png -------------------------------------------------------------------------------- /public/icons/productivity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/icons/productivity.png -------------------------------------------------------------------------------- /public/icons/programming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/icons/programming.png -------------------------------------------------------------------------------- /public/icons/videos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/icons/videos.png -------------------------------------------------------------------------------- /public/icons/workshops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/icons/workshops.png -------------------------------------------------------------------------------- /public/poster.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/poster.gif -------------------------------------------------------------------------------- /public/readme/contactus.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/readme/contactus.webp -------------------------------------------------------------------------------- /public/readme/gimpss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/readme/gimpss.png -------------------------------------------------------------------------------- /public/readme/help.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/readme/help.webp -------------------------------------------------------------------------------- /public/readme/how.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/readme/how.webp -------------------------------------------------------------------------------- /public/readme/impressive.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/readme/impressive.webp -------------------------------------------------------------------------------- /public/readme/mainss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/readme/mainss.png -------------------------------------------------------------------------------- /public/readme/treasure.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/readme/treasure.webp -------------------------------------------------------------------------------- /public/readme/want.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/readme/want.gif -------------------------------------------------------------------------------- /public/readme/want.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/readme/want.webp -------------------------------------------------------------------------------- /public/screenshots/Androidcourse/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Androidcourse/ss1.png -------------------------------------------------------------------------------- /public/screenshots/Androidcourse/ss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Androidcourse/ss2.png -------------------------------------------------------------------------------- /public/screenshots/Aromaticcomp/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Aromaticcomp/ss1.png -------------------------------------------------------------------------------- /public/screenshots/Audacity/audacityss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Audacity/audacityss1.png -------------------------------------------------------------------------------- /public/screenshots/Audacity/audacityss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Audacity/audacityss2.png -------------------------------------------------------------------------------- /public/screenshots/Audrey/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Audrey/ss1.png -------------------------------------------------------------------------------- /public/screenshots/Audrey/ss1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Audrey/ss1.webp -------------------------------------------------------------------------------- /public/screenshots/Blender/blenderss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Blender/blenderss1.png -------------------------------------------------------------------------------- /public/screenshots/Blender/blenderss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Blender/blenderss2.png -------------------------------------------------------------------------------- /public/screenshots/Calibre/calibress1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Calibre/calibress1.png -------------------------------------------------------------------------------- /public/screenshots/Calibre/calibress2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Calibre/calibress2.png -------------------------------------------------------------------------------- /public/screenshots/Chris/ss1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Chris/ss1.jpeg -------------------------------------------------------------------------------- /public/screenshots/Chris/ss1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Chris/ss1.webp -------------------------------------------------------------------------------- /public/screenshots/Cosmouni/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Cosmouni/ss1.png -------------------------------------------------------------------------------- /public/screenshots/Csscourse/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Csscourse/ss1.png -------------------------------------------------------------------------------- /public/screenshots/Csscourse/ss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Csscourse/ss2.png -------------------------------------------------------------------------------- /public/screenshots/Datasciencecourse/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Datasciencecourse/ss1.png -------------------------------------------------------------------------------- /public/screenshots/Davinci/davinciss1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Davinci/davinciss1.jpg -------------------------------------------------------------------------------- /public/screenshots/Davinci/davinciss2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Davinci/davinciss2.jpg -------------------------------------------------------------------------------- /public/screenshots/Deeplearningcourse/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Deeplearningcourse/ss1.png -------------------------------------------------------------------------------- /public/screenshots/Denocourse/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Denocourse/ss1.png -------------------------------------------------------------------------------- /public/screenshots/Dscourse/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Dscourse/ss1.png -------------------------------------------------------------------------------- /public/screenshots/Dscourse/ss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Dscourse/ss2.png -------------------------------------------------------------------------------- /public/screenshots/Dylan/ss1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Dylan/ss1.jpg -------------------------------------------------------------------------------- /public/screenshots/Dylan/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Dylan/ss1.png -------------------------------------------------------------------------------- /public/screenshots/Elon/ss1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Elon/ss1.jpg -------------------------------------------------------------------------------- /public/screenshots/Elon/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Elon/ss1.png -------------------------------------------------------------------------------- /public/screenshots/Firebaseapp/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Firebaseapp/ss1.png -------------------------------------------------------------------------------- /public/screenshots/Gimp/gimpss1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Gimp/gimpss1.jpg -------------------------------------------------------------------------------- /public/screenshots/Gimp/gimpss2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Gimp/gimpss2.jpg -------------------------------------------------------------------------------- /public/screenshots/Gitcourse/githubss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Gitcourse/githubss1.png -------------------------------------------------------------------------------- /public/screenshots/Gitcourse/githubss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Gitcourse/githubss2.png -------------------------------------------------------------------------------- /public/screenshots/Golangcourse/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Golangcourse/ss1.png -------------------------------------------------------------------------------- /public/screenshots/Guillermo/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Guillermo/ss1.png -------------------------------------------------------------------------------- /public/screenshots/Guillermo/ss1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Guillermo/ss1.webp -------------------------------------------------------------------------------- /public/screenshots/Hackide/hackidess1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Hackide/hackidess1.gif -------------------------------------------------------------------------------- /public/screenshots/Hackide/hackidess1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Hackide/hackidess1.png -------------------------------------------------------------------------------- /public/screenshots/Hackide/hackidess2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Hackide/hackidess2.gif -------------------------------------------------------------------------------- /public/screenshots/Hackide/hackidess2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Hackide/hackidess2.png -------------------------------------------------------------------------------- /public/screenshots/Htmlcourse/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Htmlcourse/ss1.png -------------------------------------------------------------------------------- /public/screenshots/Htmlcourse/ss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Htmlcourse/ss2.png -------------------------------------------------------------------------------- /public/screenshots/Inkscape/inkscapess1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Inkscape/inkscapess1.png -------------------------------------------------------------------------------- /public/screenshots/Inkscape/inkscapess2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Inkscape/inkscapess2.png -------------------------------------------------------------------------------- /public/screenshots/Jack/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Jack/ss1.png -------------------------------------------------------------------------------- /public/screenshots/Jack/ss1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Jack/ss1.webp -------------------------------------------------------------------------------- /public/screenshots/Jscrashcourse/jscrashcoursess1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Jscrashcourse/jscrashcoursess1.png -------------------------------------------------------------------------------- /public/screenshots/Jscrashcourse/jscrashcoursess2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Jscrashcourse/jscrashcoursess2.png -------------------------------------------------------------------------------- /public/screenshots/Jsprojects/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Jsprojects/ss1.png -------------------------------------------------------------------------------- /public/screenshots/Limor/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Limor/ss1.png -------------------------------------------------------------------------------- /public/screenshots/Limor/ss1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Limor/ss1.webp -------------------------------------------------------------------------------- /public/screenshots/Linear/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Linear/ss1.png -------------------------------------------------------------------------------- /public/screenshots/Macromolecules/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Macromolecules/ss1.png -------------------------------------------------------------------------------- /public/screenshots/Organicchem/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Organicchem/ss1.png -------------------------------------------------------------------------------- /public/screenshots/Patrick/ss1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Patrick/ss1.jpg -------------------------------------------------------------------------------- /public/screenshots/Patrick/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Patrick/ss1.png -------------------------------------------------------------------------------- /public/screenshots/Pencil2d/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Pencil2d/ss1.png -------------------------------------------------------------------------------- /public/screenshots/Pencil2d/ss2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Pencil2d/ss2.jpg -------------------------------------------------------------------------------- /public/screenshots/Pentestingcourse/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Pentestingcourse/ss1.png -------------------------------------------------------------------------------- /public/screenshots/Pentestingcourse/ss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Pentestingcourse/ss2.png -------------------------------------------------------------------------------- /public/screenshots/Pythoncourse/pythoncoursess1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Pythoncourse/pythoncoursess1.png -------------------------------------------------------------------------------- /public/screenshots/Pythoncourse/pythoncoursess2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Pythoncourse/pythoncoursess2.png -------------------------------------------------------------------------------- /public/screenshots/Reactcourse/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Reactcourse/ss1.png -------------------------------------------------------------------------------- /public/screenshots/Reactcourse/ss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Reactcourse/ss2.png -------------------------------------------------------------------------------- /public/screenshots/Risetwp/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Risetwp/ss1.png -------------------------------------------------------------------------------- /public/screenshots/Simone/ss1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Simone/ss1.jpeg -------------------------------------------------------------------------------- /public/screenshots/Simone/ss1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Simone/ss1.webp -------------------------------------------------------------------------------- /public/screenshots/Sqlcourse/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Sqlcourse/ss1.png -------------------------------------------------------------------------------- /public/screenshots/Sqlcourse/ss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Sqlcourse/ss2.png -------------------------------------------------------------------------------- /public/screenshots/Trignometry/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Trignometry/ss1.png -------------------------------------------------------------------------------- /public/screenshots/Unity/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Unity/ss1.png -------------------------------------------------------------------------------- /public/screenshots/Unity/ss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Unity/ss2.png -------------------------------------------------------------------------------- /public/screenshots/Unityfpscourse/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Unityfpscourse/ss1.png -------------------------------------------------------------------------------- /public/screenshots/Unityfpscourse/ss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Unityfpscourse/ss2.png -------------------------------------------------------------------------------- /public/screenshots/Vscode/vscodess1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Vscode/vscodess1.png -------------------------------------------------------------------------------- /public/screenshots/Vscode/vscodess2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Vscode/vscodess2.png -------------------------------------------------------------------------------- /public/screenshots/Vuecourse/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Vuecourse/ss1.png -------------------------------------------------------------------------------- /public/screenshots/Vuecourse/ss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Vuecourse/ss2.png -------------------------------------------------------------------------------- /public/screenshots/Wolfenstein/wolfensteinss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Wolfenstein/wolfensteinss1.png -------------------------------------------------------------------------------- /public/screenshots/Wolfenstein/wolfensteinss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/screenshots/Wolfenstein/wolfensteinss2.png -------------------------------------------------------------------------------- /public/starblank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/starblank.png -------------------------------------------------------------------------------- /public/starfilled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/hackstore/2af880d50a333e1b5e200321e07d1a02cf6b437b/public/starfilled.png -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- 1 | /* the server file to serve the application on express, 2 | on the pi application is being served on express */ 3 | 4 | const express = require("express"); 5 | const next = require("next"); 6 | 7 | const dev = true; // process.env.NODE_ENV !== 'production' 8 | const app = next({ dev }); 9 | const handle = app.getRequestHandler(); 10 | 11 | app 12 | .prepare() 13 | .then(() => { 14 | const server = express(); 15 | 16 | server.get("*", (req, res) => { 17 | return handle(req, res); 18 | }); 19 | 20 | server.listen(3000, "0.0.0.0", (err) => { 21 | if (err) throw err; 22 | console.log("> Ready on http://localhost:8080"); 23 | }); 24 | }) 25 | .catch((ex) => { 26 | console.error(ex.stack); 27 | process.exit(1); 28 | }); 29 | --------------------------------------------------------------------------------