Generally free coding Resources for all! Check it out and don't forget to give it a star ⭐️

Overview

A-Z Coding Resources

This website is built using Docusaurus 2, a modern static website generator.

img

Installation

yarn install

Local Development

yarn start

This command starts a local development server and open up a browser window. Most changes are reflected live without having to restart the server.

Build

yarn build

This command generates static content into the build directory and can be served using any static contents hosting service.

Deployment

GIT_USER=<Your GitHub username> USE_SSH=true yarn deploy

If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the gh-pages branch.

Comments
  • Add intermediate level in Node.js and add a working image url in android

    Add intermediate level in Node.js and add a working image url in android

    Hello and Happy Hacktober! Would you please verify this PR, also I am a bit hesitant about the 'package-lock.json' should I include it in my commits or I ignore this file?

    opened by itzkou 3
  • add node.js and modify android roadmap

    add node.js and modify android roadmap

    This commit concerns an upgrade for android courses and I added a section for Node js development, next commit will include 'intermediate level' for node js pathway

    opened by itzkou 3
  • (Solution) Build with node +17.x  (ERR_OSSL_EVP_UNSUPPORTED)

    (Solution) Build with node +17.x (ERR_OSSL_EVP_UNSUPPORTED)

    For build as espected in repository documentation with node 17.x or or higher (I have 18.5) just put this code fragment in package.json to build successfully.

    SET NODE_OPTIONS=--openssl-legacy-provider

    It should look as follows.

    "start": "SET NODE_OPTIONS=--openssl-legacy-provider && docusaurus start",

    This solves problems with "digital envelope routines" and prevents the error in title.

    opensslErrorStack: [ 'error:03000086:digital envelope routines::initialization error' ],
    library: 'digital envelope routines',
    reason: 'unsupported',
    code: 'ERR_OSSL_EVP_UNSUPPORTED'
    
    opened by Altffenser 2
  • Formatted the Indexing

    Formatted the Indexing

    Formatted the Indexing by adding a space between the period (.) and text that follows as per the rules of Punctuation in English Grammar, and updated content on the main web page a bit. Please accept this under Hactoberfest 2022

    opened by Fighter-007 2
  • Add resource in free-media-5.md

    Add resource in free-media-5.md

    Hi! @hulyak I added a new resource, N°55: "Iconscout" in the category "Free Images/Videos" with an image of the resource.

    You can find it in: docs/free-media-4.md

    • Category title: Free Images/Videos
    • N° resource: 55
    • line of code: 227

    Greetings from Chile and Happy Hacktoberfest! 🙌

    opened by patodm 2
  • Added Grokking Alogrithms to resource page

    Added Grokking Alogrithms to resource page

    I have been reading this book (and pdf while I am at work at the bike shop) and I have really enjoyed how difficult concepts are explained. I hope others find it as helpful as I do!

    opened by Lor1138 2
  • Update css-3.md

    Update css-3.md

    Added free-css.com website into css-3.md file.

    Free CSS has 3400+ free website templates coded using HTML & CSS in its gallery. The HTML website templates that are showcased on Free CSS.com are the best that can be found in and around the net.

    opened by Aaditya1612 1
  • Create New Category and Add a resource

    Create New Category and Add a resource

    Creating A New Resource Page and Adding New Resource

    If you cannot find a new resource to add, you can just create a new page and a different category. It can be related to frontend, backend, cloud, blockchain, or mobile development. It can be whatever you want.

    For that, create a new markdown file for a new category and add the resource there.

    • create the file name as <category>-<number>.md and add the resource to the file. For example, you can the file as free-websites-1.md. Then, go to sidebars.js file in the root of the project and add the file name to the list.
    module.exports = {
      someSidebar: {
        resources: [
          'free-websites-1',
          'free-media-3',
          'react-5',
          'css-2',
          // 'markdown-features',
          'javascript-4',
          'nextjs-6',
          'job-hunt-8',
          'career-9',
          'computer-science-7',
          // add the new file name
        ],
      },
    }
    
    • MDX file starts with YAML front matter block declared as triple-dashed lines. Declare the title property.
    ---
    title: Free Images/Videos
    ---
    
    • After the title, add your resource similar to this:
    ### 1.[Reacti Flux](https://discord.com/invite/reactiflux)
    
    Reacti Flux is the largest community of React developers (110,000+)!
    

    Run the project

    npm install
    npm start
    

    Make sure the page loads with no errors and you have added a new resource.

    Stage, Commit, and Push Your Changes

    Next, you want to stage, commit, and push your changes to your fork. Staging means saving your changes so they are ready to be added to your branch.

    git add .
    
    git commit -m "type your commit message"
    
    git push
    

    git push adds the changes on your computer to your GitHub repository.

    Create a Pull Request

    Navigate back to the original repo from which you forked, and you will see a prompt to open a new Pull Request from the branch you just pushed to.

    Click Compare & pull request, add a description describing the changes you made.

    To submit your pull request, click the green 'Create pull request' button.

    Well done, you have made your first pull request! 🎉🎉🎉

    good first issue 
    opened by hulyak 5
  • Add new resource

    Add new resource

    Follow these steps to add a new resource to the page.

    • Go to the docs folder and look at the resources.
    • All you need is to add a unique new resource to any of the markdown files. You only need to add one resource for the Pull Request.
    • Go to the end of the page and add a new resource.
    • Image of the resource is not necessary, if you want to add the image of the website, you can first load the image on Dev.to and paste the link from there.
    • You can add a short description after the heading. For the heading use ### for Heading level 3 and make sure it looks good.

    If you need help writing markdown files, you can check out this website.

    You can checkout this example:

    ### 1.[Reacti Flux](https://discord.com/invite/reactiflux)
    
    Reacti Flux is the largest community of React developers (110,000+)!
    

    Run the Project

    Install dependencies and start the project in localhost 3000.

    npm install
    npm start
    

    Make sure the page loads with no errors and you have added a new resource.

    Stage, Commit, and Push Your Changes

    Next, you want to stage, commit, and push your changes to your fork. Staging means saving your changes so they are ready to be added to your branch.

    git add .
    git commit -m "type your commit message"
    git push
    

    git push adds the changes on your computer to your GitHub repository.

    Create a Pull Request

    Navigate back to the original repo from which you forked, and you will see a prompt to open a new Pull Request from the branch you just pushed to.

    Click Compare & pull request, add a description describing the changes you made.

    To submit your pull request, click the green 'Create pull request' button.

    Well done, you have made your first pull request! 🎉🎉🎉

    good first issue 
    opened by hulyak 1
Owner
Hulya Karakaya
Frontend Developer/Open Source Enthusiast
Hulya Karakaya
Make your first Pull Request on Hacktoberfest 2022. Don't forget to spread love and if you like give us a star

Hacktoberfest2022 Make your first Pull Request on Hacktoberfest 2022. Don't forget to spread love and if you like give us a star Quality of Pull Reque

Google Developer Students Club - Galgotias University 12 Oct 30, 2022
Check in, check the weather, Check out.

☀️ Just-Weather ??️ Hi, Welcome! Just Weather is a Web App designed for Fast Real-Time Weather queries in combination with well Thought Out Visual Des

Miguel Ángel 6 Aug 7, 2022
Data structures & algorithms implementations and coding problem solutions. Written in Typescript and tested with Jest. Coding problems are pulled from LeetCode and Daily Coding Problem.

technical-interview-prep Data structures & algorithms implementations and coding problem solutions. Written in Typescript and tested with Jest. Coding

Lesley Chang 7 Aug 5, 2022
TS & JS Library for adaptive precision cursor for the web. Releases will come out soon! Meanwhile, check out the demo site:

Haha, cool cursor go brrrr... Table of Content What is this? Installation & Setup Installation Setup Usage Cursor controls Element settings Known issu

LemonOrange 10 Nov 24, 2022
Subscribe My YT And Give Star This Repo ⭐

Hyzer Official Chat Saya Jika Ingin Menanyakan Sesuatu Ambil Session Disini Buka Linknya Disini Untuk Tutorialnya Liat Dan Subscribe Here Preview bot

Hyzer Official 54 Dec 23, 2022
A mini figure Doctor Strange platformer game with doctor strange variants to fight monsters. Give a star and fork too.

Doctor Strange : The Game This is a Doctor Strange variants based platformer game made in GDevelop. This game have 5 levels where you fight monsters a

Chandula Janith 6 Nov 5, 2022
Whatsapp BOT Multi Device menggunakan module baileys-md. Give this repo a star 🌠⭐🌟

README English Version • About • Installation • Thanks to • Donate Official Group Bot • Settings About Anon-BOT adalah pengembangan sourcecode yang be

Iqbal Hidayat Syahril 11 Sep 26, 2022
Watch anime ad free through a beautiful UI. Don't forget to 🌟 this repo for updates!

Ashanime - Stream Ad-free Anime Ashanime is an Ad free responsive web application built with the intention of providing a pleasent anime streaming exp

Ashanime 67 Dec 31, 2022
Grupprojekt för kurserna 'Javascript med Ramverk' och 'Agil Utveckling'

JavaScript-med-Ramverk-Laboration-3 Grupprojektet för kurserna Javascript med Ramverk och Agil Utveckling. Utvecklingsguide För information om hur utv

Svante Jonsson IT-Högskolan 3 May 18, 2022
Hemsida för personer i Sverige som kan och vill erbjuda boende till människor på flykt

Getting Started with Create React App This project was bootstrapped with Create React App. Available Scripts In the project directory, you can run: np

null 4 May 3, 2022
Kurs-repo för kursen Webbserver och Databaser

Webbserver och databaser This repository is meant for CME students to access exercises and codealongs that happen throughout the course. I hope you wi

null 14 Jan 3, 2023
Incredible resources (with links) to help up-skill yourselves on various fields. Resources like programming, designing, engineering and much more and completely Open Source.

Shiryoku Incredible resources (with links) to help up-skill yourselves on various fields. Resources like programming, designing, engineering and much

Kunal Keshan 22 Dec 15, 2022
Manage GitHub resources like repositories, teams, members, integrations and workflows with the AWS CDK as Custom Resources in CloudFormation.

CDK Github Manage GitHub resources like repositories, teams, members, integrations and workflows with the AWS CDK as Custom Resources in CloudFormatio

Pepperize 8 Nov 25, 2022
A mobile web application to check the data on the total covid19 confirmed cases and deaths, check data for all countries with recorded cases.

This is a mobile web application to check the data on the total covid19 confirmed cases and deaths, check data for all countries with recorded cases. It also has a details page to check for the statistics for each region/state if available.

Solomon Hagan 7 Jul 30, 2022
Automatic Role Adder Is Usually Used In Coding Servers Which Give Access To Codes By Subbing To Their Channel So This Helps Them To Auto Role People :)

Automatic Role Adder Setup Guide Automatic Role Adder Is Usually Used In Coding Servers Which Give Access To Codes By Subbing To Their Channel So This

NotJust 25 Dec 23, 2022
Search for coding resources by relevant keywords

Search for coding resources by relevant keywords. This API serves educational content for a wide variety of computer science topics, languages and technologies relevant to web development.

null 22 Nov 4, 2022
Fix your mistake when you forget to change your keyboard language!

Persian Typo Mistake ???? Introduction With this extension, you can fix your text that is written in Persian but on an English keyboard. this extensio

Hadi Zare 27 Nov 23, 2022
New base script bot wa by Ramdani Official, don't forget to subscribe youtube Ramdani Official.

Requirements • Installation • Thanks to • Official Group Bot • Donate Information bahasa Indonesia Ramdani Botz V17 adalah bot yang di ciptakan oleh R

Ramdani Official 22 Nov 1, 2022