All Projects → jstevenperry → Ibm Developer

jstevenperry / Ibm Developer

Licence: apache-2.0
Articles and tutorials I've written for IBM Developer

Programming Languages

javascript
184084 projects - #8 most used programming language
java
68154 projects - #9 most used programming language
kotlin
9241 projects

Labels

Projects that are alternatives of or similar to Ibm Developer

Web Crawler Tutorial
Python 網頁爬蟲入門實戰
Stars: ✭ 170 (-5.03%)
Mutual labels:  tutorial
Astropy Tutorials
Tutorials for the Astropy Project
Stars: ✭ 174 (-2.79%)
Mutual labels:  tutorial
Vuetable 2 With Laravel 5.4
Sample project using Vuetable-2 in Laravel 5.4 and Laravel-Mix
Stars: ✭ 178 (-0.56%)
Mutual labels:  tutorial
Learn Elm Architecture In Javascript
🦄 Learn how to build web apps using the Elm Architecture in "vanilla" JavaScript (step-by-step TDD tutorial)!
Stars: ✭ 173 (-3.35%)
Mutual labels:  tutorial
Spring Cloud Tutorial
Spring Cloud Tutorial.《Spring Cloud 教程》
Stars: ✭ 173 (-3.35%)
Mutual labels:  tutorial
Epicsurvivalgameseries
Third-person Survival Game for Unreal Engine 4 (Sample Project)
Stars: ✭ 2,389 (+1234.64%)
Mutual labels:  tutorial
Chrome Extension Book
📚《Chrome Extension 入门指南》
Stars: ✭ 171 (-4.47%)
Mutual labels:  tutorial
Tensorflow Tutorials
텐서플로우를 기초부터 응용까지 단계별로 연습할 수 있는 소스 코드를 제공합니다
Stars: ✭ 2,096 (+1070.95%)
Mutual labels:  tutorial
Es6 Tutorial
Essentials in JavaScript ES6 - A Fun and Clear Introduction
Stars: ✭ 175 (-2.23%)
Mutual labels:  tutorial
Alfresco Developer Series
Source code from the ecmarchitect.com Alfresco Developer Series tutorials
Stars: ✭ 177 (-1.12%)
Mutual labels:  tutorial
Learn Vim
Learn the (arguably) best text-editor on the planet.
Stars: ✭ 173 (-3.35%)
Mutual labels:  tutorial
Awesome Flutter
Curated list of bookmarks, packages, tutorials, videos and other cool resources from Google's Flutter
Stars: ✭ 174 (-2.79%)
Mutual labels:  tutorial
Tutorial About 3d Convolutional Network
Tutorial about 3D convolutional network
Stars: ✭ 177 (-1.12%)
Mutual labels:  tutorial
Psi4numpy
Combining Psi4 and Numpy for education and development.
Stars: ✭ 170 (-5.03%)
Mutual labels:  tutorial
Electron Tutorials
Collection of small sample Electron apps
Stars: ✭ 178 (-0.56%)
Mutual labels:  tutorial
Rest Api Basics
This is a basic guide on how to build a REST API with Django & Python. For much deeper depth, check out our new course on REST API: (https://kirr.co/90kxtx)
Stars: ✭ 171 (-4.47%)
Mutual labels:  tutorial
Invisibility cloak
This is a fun application of image processing which enables you to experience the magic of an invisibility cloak. Let's make our childhood fantasy of using an invisibility cloak come true.
Stars: ✭ 176 (-1.68%)
Mutual labels:  tutorial
Travis cpp tutorial
Tutorial how to use Travis CI with C++
Stars: ✭ 178 (-0.56%)
Mutual labels:  tutorial
Gridgarden
A game for learning CSS grid layout 🥕
Stars: ✭ 2,331 (+1202.23%)
Mutual labels:  tutorial
Solid Tutorial Intro
Introductory tutorial to Solid
Stars: ✭ 177 (-1.12%)
Mutual labels:  tutorial

IBM-Developer

Source code for articles and tutorials I've written for IBM Developer (formerly IBM Code, formerly IBM developerWorks)

Directories you'll find in this repository (as of 7 June 2020):

IBM-Developer/
├── IntroToJava
├── Kotlin
├── NcaaMarchMadness
├── Node.js
└── README.md (this file)

IntroToJava

Description: Code that accompanies my Intro to Java Programming Course.

Directories you'll find in this repository (as of 5 Aug 2020):

IntroToJava/
├── Unit-2
│   └── Tutorial
│       └── src
│           └── com
│               └── jstevenperry
│                   └── intro
│                       ├── Person.java
│                       └── PersonTest.java
├── Unit-4
│    └── Tutorial
│        └── src
│            └── com
│                └── jstevenperry
│                    └── intro
│                        ├── BonusEligible.java
│                        ├── Employee.java
│                        ├── EmployeeTest.java
│                        ├── Executive.java
│                        ├── ExecutiveTest.java
│                        ├── HumanResourcesApplication.java
│                        ├── HumanResourcesApplicationTest.java
│                        ├── Manager.java
│                        ├── ManagerTest.java
│                        ├── Person.java
│                        ├── PersonTest.java
│                        └── StockOptionEligible.java
Unit-5
└── Tutorial
    ├── data_files
    │   ├── 1000kWords.txt
    │   ├── 100kWords.txt
    │   ├── 10Words.txt
    │   └── 10kWords.txt
    ├── logging.properties
    ├── src
    │   └── com
    │       └── jstevenperry
    │           └── intro
    │               ├── common
    │               │   ├── BonusEligible.java
    │               │   ├── Displayable.java
    │               │   ├── Employee.java
    │               │   ├── Executive.java
    │               │   ├── Gender.java
    │               │   ├── Manager.java
    │               │   ├── Person.java
    │               │   ├── StockOptionEligible.java
    │               │   └── StockOptionProcessingCallback.java
    │               ├── enumtypes
    │               │   ├── Displayable.java
    │               │   └── Gender.java
    │               ├── generics
    │               │   ├── Generics.java
    │               │   └── SimpleList.java
    │               ├── io
    │               │   └── InputOutput.java
    │               ├── lambdas
    │               │   └── HumanResourcesApplication.java
    │               ├── lvti
    │               │   └── InputOutput.java
    │               ├── regex
    │               │   └── RegularExpression.java
    │               ├── serialization
    │               │   └── HumanResourcesApplication.java
    │               └── streamsapi
    │                   └── HumanResourcesApplication.java
    └── test
        └── com
            └── jstevenperry
                └── intro
                    ├── enumtypes
                    │   └── GenderTest.java
                    ├── generics
                    │   ├── GenericsTest.java
                    │   └── SimpleListTest.java
                    ├── io
                    │   └── InputOutputTest.java
                    ├── lambdas
                    │   └── HumanResourcesApplicationTest.java
                    ├── lvti
                    │   └── InputOutputTest.java
                    ├── regex
                    │   └── RegularExpressionTest.java
                    ├── serialization
                    │   └── HumanResourcesApplicationTest.java
                    └── streamsapi
                        └── HumanResourcesApplicationTest.java


Kotlin

IBM-Developer/
└── Kotlin
    ├── LICENSE
    ├── Unit_10
    ├── Unit_11
    ├── Unit_12
    ├── Unit_13
    ├── Unit_14
    ├── Unit_15
    ├── Unit_16
    ├── Unit_17
    ├── Unit_2
    ├── Unit_4
    ├── Unit_6
    ├── Unit_7
    ├── Unit_8
    └── Unit_9

Description: Code that accompanies my Kotlin Learning Path. The LP consists of 17 units where you learn Kotlin, along with principles of object-oriented and functional programming.

Click here to start Part 1 of the series.

NcaaMarchMadness

Code that accompanies IBM Developer deep learning tutorial where I describe the neural network software I wrote to predict winners of the NCAA Men's Basketball Tournament, held every year in March.

The code uses the Neuroph framework, along with data you download from NCAA.com.

Click here to start the tutorial.

Node.js

IBM-Developer/Node.js/
└── Node.js
    └── Course
        ├── LICENSE
        ├── README.md
        ├── Unit-10
        ├── Unit-11
        ├── Unit-12
        ├── Unit-14
        ├── Unit-2
        ├── Unit-3
        ├── Unit-4
        ├── Unit-5
        ├── Unit-6
        ├── Unit-7
        ├── Unit-8
        ├── Unit-9
        ├── common
        ├── data
        └── settings

Description: Code that accompanies articles and tutorials about Node.js.

Click here to start Part 1 of the series.

Course

Description: Code that accompanies my Node.js Learning Path. The LP consists of 14 units where you learn how to use Node from the ground up.

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