All Projects → josharsh → 100linesofcode

josharsh / 100linesofcode

Licence: gpl-3.0
Let's build something productive in less than 100 Lines of Code.

Programming Languages

javascript
184084 projects - #8 most used programming language
python
139335 projects - #7 most used programming language
java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to 100linesofcode

Chingu Fcc Speedrun Challenge
Challenge for the Chingu Cohorts
Stars: ✭ 94 (-56.48%)
Mutual labels:  challenge
27daysofcode
A repo with small projects
Stars: ✭ 140 (-35.19%)
Mutual labels:  challenge
Write Code Every Day
[No longer maintained] A project to honor those developers who believed in the challenge.
Stars: ✭ 174 (-19.44%)
Mutual labels:  challenge
Cinc Challenge2017
ECG classification from short single lead segments (Computing in Cardiology Challenge 2017 entry)
Stars: ✭ 112 (-48.15%)
Mutual labels:  challenge
Datascicomp
A collection of popular Data Science Challenges/Competitions || Countdown timers to keep track of the entry deadlines.
Stars: ✭ 1,636 (+657.41%)
Mutual labels:  challenge
Open Solution Toxic Comments
Open solution to the Toxic Comment Classification Challenge
Stars: ✭ 154 (-28.7%)
Mutual labels:  challenge
Front End Challenge
Challenge for those seeking a role as a front-end developer @amarofashion
Stars: ✭ 88 (-59.26%)
Mutual labels:  challenge
One Html Page Challenge
Can you create something cool without modern tools?
Stars: ✭ 205 (-5.09%)
Mutual labels:  challenge
Xview Yolov3
xView 2018 Object Detection Challenge: YOLOv3 Training and Inference.
Stars: ✭ 133 (-38.43%)
Mutual labels:  challenge
Challenge Build Your Own Array In Js
This is a challenge that will allow you to practice your logical, analytical and problem-solving skills. Additionally, by the end of it you’ll have much better command of arrays in javascript.
Stars: ✭ 173 (-19.91%)
Mutual labels:  challenge
Jeopardy Dockerfiles
🇨🇳 🏁 🚩 Dockerfiles of CTF Challenges running on SniperOJ
Stars: ✭ 114 (-47.22%)
Mutual labels:  challenge
Google Foobar Help
Guidance on how to tackle some of the foobar challenges.
Stars: ✭ 127 (-41.2%)
Mutual labels:  challenge
Uacme
ACMEv2 client written in plain C with minimal dependencies
Stars: ✭ 155 (-28.24%)
Mutual labels:  challenge
Dailycodingproblem
Stars: ✭ 113 (-47.69%)
Mutual labels:  challenge
A December Of Algorithms 2019
A December of Algorithms is a small collection of algorithms to implement this December. Finish it all to get a certificate. 🎄
Stars: ✭ 192 (-11.11%)
Mutual labels:  challenge
60 days rl challenge
60_Days_RL_Challenge中文版
Stars: ✭ 92 (-57.41%)
Mutual labels:  challenge
Bootcamp Gostack Desafio 03
Desafio do terceiro módulo do Bootcamp GoStack 🚀👨🏻‍🚀
Stars: ✭ 140 (-35.19%)
Mutual labels:  challenge
Bootcamp Gostack Desafio 02
Desafio do segundo módulo do Bootcamp GoStack 🚀👨🏻‍🚀
Stars: ✭ 217 (+0.46%)
Mutual labels:  challenge
Bootcamp Gostack Desafio 01
Desafio do primeiro módulo do Bootcamp GoStack 🚀👨🏻‍🚀
Stars: ✭ 204 (-5.56%)
Mutual labels:  challenge
Instagrapi
Fast and effective Instagram Private API wrapper
Stars: ✭ 157 (-27.31%)
Mutual labels:  challenge

100LinesOfCode

Contents:

About

This repository contains all the applications, extensions, add-ons, designs, themes and anything else which is productive developed in less than #100LinesOfCode.

Here's What It Is:

Does #100DaysOfCode get too recursive for you? Are you fed up of #coding just for a #streak? Do you want to change the #trend? Here's something fresh. This #season let's challenge our brains to develop something productive in less than #100LinesOfCode Often in places close and far, we come across those little things which can really be coded to easen the process. You want to watch a youtube video at 10X?, make a browser #extension for it. If you want to add custom design themes to sites you visit, do it by designing an#extension theme. #100LinesOfCode is a #challenge to get your neurons together to develop anything and everything productive using less than #100LinesOfCode. It can be an android code snippet, Javascript function, a python Library usage and anything else you can think of. So run the horses, pull up the socks, grab a cup of coffee and start to code to develop something productive in #100LinesOfCode. I have created a Github repository https://github.com/josharsh/100LinesOfCode. Navigate and contribute to #OpenSource in the process.

Purpose

Purpose of this repository is to promote development of productive applications and utilities which seem so common yet might not be into use. Trigger your brain, take the challenge of developing something in less than #100LinesofCode.

Contributing

For Contributing norms and guidelines, go to CONTRIBUTING.MD

Adding Your Code:

Here are the steps: 1: Develop something in the programming language of your choice for any platform in less than #100LinesOfCode 2: Fork this repository 3: Clone this repository

$ git clone "https://www.github.com/{Username}/100LinesOfCode.git"

where username is your GitHub account username.

  1. Create a branch where you can do your local work. Never work on master branch as we do not allow master commits except by admins.
$ git branch {branchname}
$ git checkout branchname
  1. Do your work and stage your changes.
$ git add <filename>
  1. Commit you changes with a commit message containing your name, file(s) worked upon, changes added.
$ git commit -m "Name| files| Changes"
  1. Push changes to your forked repository
$ git push -u origin branchname
Synchronize forked repository with Upstream repository
  1. Create upstream as our repository
$ git remote add upstream "https://github.com/josharsh/100LinesOfCode"
  1. Fetch upstream changes in local machine
$ git fetch upstream
  1. Switch to master branch
$ git checkout master
  1. Merge changes in local machine
$ git merge upstream/master
  1. Push changes to your forked GitHub repository
$ git push -f origin master

Structure of Your Code:

The root directory of your developed application must contain

  • A README.md describing your project, idea and Implementation
  • Source code for your app
  • Link to working app (In case the app in an extension, add-ons, etc.)
  • If Possible, Deploy the code onto a hosting platform.

Note: Please Add Author's name in Readme.md of application.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].