All Projects → novoda → dojos

novoda / dojos

Licence: other
This is where the Novoda team do all their hacking

Programming Languages

java
68154 projects - #9 most used programming language
kotlin
9241 projects
swift
15916 projects
groovy
2714 projects
python
139335 projects - #7 most used programming language
ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to dojos

Android Demos
Examples of Android applications
Stars: ✭ 1,963 (+2552.7%)
Mutual labels:  practice, novoda
awesome-javascript-katas
A curated list of javascript katas.
Stars: ✭ 25 (-66.22%)
Mutual labels:  kata, dojo
Ios Demos
Examples of ios applications http://www.novoda.com/blog
Stars: ✭ 85 (+14.86%)
Mutual labels:  practice, novoda
Vue Endless H5 Game
一个Vue制作的冒险游戏
Stars: ✭ 121 (+63.51%)
Mutual labels:  practice
Aloc Endpoints
5,000 past questions api end points for POST-UTME, UTME, WASSCE, NECO questions
Stars: ✭ 135 (+82.43%)
Mutual labels:  practice
Python
All Algorithms implemented in Python
Stars: ✭ 125,688 (+169748.65%)
Mutual labels:  practice
flask-vuln
Pretty vulnerable flask app..
Stars: ✭ 23 (-68.92%)
Mutual labels:  practice
Front end Demos
前端练手项目
Stars: ✭ 115 (+55.41%)
Mutual labels:  practice
functional-structures-refactoring-kata
Starting code and proposed solution for Functional Structures Refactoring Kata
Stars: ✭ 31 (-58.11%)
Mutual labels:  kata
Javascript Total
Сборник практических вопросов, задач разного уровня сложности, сниппетов (утилит), паттерны проектирования, а также полезные ссылки по JavaScript
Stars: ✭ 214 (+189.19%)
Mutual labels:  practice
Book Elastic Search In Action
Elastic 搜索开发实战
Stars: ✭ 205 (+177.03%)
Mutual labels:  practice
HenCoderPractice-Kotlin
HenCoder 练习项目- Kotlin 版
Stars: ✭ 26 (-64.86%)
Mutual labels:  practice
Rails Api Base
Rails 5 RESTful api template
Stars: ✭ 197 (+166.22%)
Mutual labels:  practice
Wonderland-Scala-Katas
Scala port of gigasquid/wonderland-clojure-katas
Stars: ✭ 70 (-5.41%)
Mutual labels:  kata
Git Kata
When you know the bases of git but sometimes you have problemes with it. This "code kata" could help you to deal with git problems
Stars: ✭ 127 (+71.62%)
Mutual labels:  practice
ARGoal
Get more goals. | Virtual Goals & Goal Distance | App Doctor Hu
Stars: ✭ 14 (-81.08%)
Mutual labels:  practice
Fe Awesome Demos
✨前端入门demos集合
Stars: ✭ 119 (+60.81%)
Mutual labels:  practice
Awesome Patterns
Collections of Go patterns based on tmrts/go-patterns, But merged with other awesome forks and more improvoments.
Stars: ✭ 188 (+154.05%)
Mutual labels:  practice
Pytudes
Python programs, usually short, of considerable difficulty, to perfect particular skills.
Stars: ✭ 17,219 (+23168.92%)
Mutual labels:  practice
pw
Best websites a Programmer should visit
Stars: ✭ 27 (-63.51%)
Mutual labels:  practice

dojos

This is where the Novoda team do all their hacking

Running a dojo

Find the module of the dojo you want to attempt. This will be a module under the root dir. Inside you will either find the default directory or a specific language directory.

If you only find the default directory, follow these instructions. Once the folder structure has been updated properly you can continue, make a copy of the default project of whichever language you want to run the kata with.

Go inside this copy of the default directory, and name it with the date and your name or pairing name. This dir you just copied should have instructions to run the dojo as well as any example code.

-dojos
|- theKata
    |- yourChoosenLanguage
        |- default
        |- 01012014-yourname-pairsname

Android katas

Add the copied kata to the root settings.gradle as theKata:01012014-yourname-pairsname

include: 'theKata:default', 'theKata:01012014-yourname-pairsname'

Starting a new dojo

  • Create a new directory inside root with the dojo's name
  • If the dojo targets specific programming languages like Swift or Java, create a directory with the name of the language. If the kata does not have a specific programming language you can place the code on root folder.
  • create a default directory inside whichever language you want to run the kata on
  • This default directory will contain any template source code and gradle file (if you are using a a Java project)
  • Implementations of the dojo should be at the same directory level as the default directory
-dojos
|- myKata
    |- oneLanguage
        |- default
        |- yourImpl
    |- anotherLanguage
        |- default
        |- yourImpl

Android katas

A dojo level gradle containing should be added to keep all the implementations using the same build.

subprojects {
	apply from: '../default/build.gradle'
}

Add the finished katas to the root gradle as dojo:implName

include: 'myKata:default'

Updating a legacy dojo

If the dojo only contains the default folder, it is possible that it has only been used for Android programming before and the structure needs to be updated. To do so create a Java folder and place all the code currently on root inside of the new folder (including the default folder). You can then create a new folder on the kata root with the new language you want to run the kata on if necessary.

-dojos
|- theKata
    |- oneLanguage
    |- existingLanguage
        |- default
        |- 01012014-existingname-existingpair

Now you can run a new dojo on either language

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].