Popalay / Tutors
Licence: apache-2.0
A simple way to show the user interface tutorials
Stars: ✭ 87
Programming Languages
java
68154 projects - #9 most used programming language
Projects that are alternatives of or similar to Tutors
Showcase Ansible Chatops
Vagrant Demo showing ChatOps with Ansible
Stars: ✭ 71 (-18.39%)
Mutual labels: showcase
Awesome Mobile Machine Learning
A curated list of awesome mobile machine learning resources for iOS, Android, and edge devices.
Stars: ✭ 1,136 (+1205.75%)
Mutual labels: tutorials
Tristeon3d
A 3D Engine built by two Game Engineering students.
Stars: ✭ 68 (-21.84%)
Mutual labels: showcase
Taniarascia.com
💾 Personal website running on Gatsby, React, and Node.js.
Stars: ✭ 1,183 (+1259.77%)
Mutual labels: tutorials
Deeplearning Nlp Models
A small, interpretable codebase containing the re-implementation of a few "deep" NLP models in PyTorch. Colab notebooks to run with GPUs. Models: word2vec, CNNs, transformer, gpt.
Stars: ✭ 64 (-26.44%)
Mutual labels: tutorials
Ml Audio Start
Suggestions for those interested in developing audio applications of machine learning
Stars: ✭ 87 (+0%)
Mutual labels: tutorials
Flask Session Tutorial
💾 🙇 Example Flask project for implementing Flask-Session with Redis.
Stars: ✭ 69 (-20.69%)
Mutual labels: tutorials
Dev Portal
The SingularityNET Developer Portal where you can find all our documentation, tutorials, and developer resources!
Stars: ✭ 81 (-6.9%)
Mutual labels: tutorials
Fish detection
Fish detection using Open Images Dataset and Tensorflow Object Detection
Stars: ✭ 67 (-22.99%)
Mutual labels: tutorials
Graphql Microservices
Showcasing a graphql microservice setup
Stars: ✭ 68 (-21.84%)
Mutual labels: showcase
Ctshowcase
A simple to use Showcase library that can highlight arbitrary views in an iOS app
Stars: ✭ 73 (-16.09%)
Mutual labels: showcase
Go Hardware
A directory of hardware related libs, tools, and tutorials for Go
Stars: ✭ 1,137 (+1206.9%)
Mutual labels: tutorials
Elementsproject.org
Source code for the ElementsProject.org website
Stars: ✭ 84 (-3.45%)
Mutual labels: tutorials
Thinkdiff
My open source project links, programming and software development related code and tutorials are in this repo. Content types: Python, JavaScript, Dart | Django, React, Flutter, React-Native etc.
Stars: ✭ 65 (-25.29%)
Mutual labels: tutorials
Botwiki.org
Tutorials, articles, datasets and other resources for creating useful, interesting, artistic and friendly online bots.
Stars: ✭ 72 (-17.24%)
Mutual labels: tutorials
Machine Learning Tutorial Chinese
专门面向中文用户的机器学习相关的学习资料大集合
Stars: ✭ 86 (-1.15%)
Mutual labels: tutorials
Rubyrush
Open source курс по основам программирования от «Хорошего программиста»
Stars: ✭ 78 (-10.34%)
Mutual labels: tutorials
Tutors
A simple way to show the user interface tutorials.

Getting Started
compile 'com.github.popalay:tutors:latest-version'
compile 'com.github.popalay:tutors-kotlin:latest-version'
Usage
From Java
Tutors tutors = new TutorsBuilder()
.textColorRes(android.R.color.white)
.shadowColorRes(R.color.shadow)
.textSizeRes(R.dimen.textNormal)
.completeIconRes(R.drawable.ic_cross_24_white)
.nextButtonTextRes(R.string.action_next)
.completeButtonTextRes(R.string.action_got_it)
.spacingRes(R.dimen.spacingNormal)
.lineWidthRes(R.dimen.lineWidth)
.cancelable(false)
.build();
tutors.show(getSupportFragmentManager(), toolbar, "It's a toolbar", !iterator.hasNext());
See sample.
From Kotlin
val tutors = Tutors.create {
textColorRes = android.R.color.white
shadowColorRes = R.color.shadow
textSizeRes = R.dimen.textNormal
completeIconRes = R.drawable.ic_cross_24_white
nextButtonTextRes = R.string.action_next
completeButtonTextRes = R.string.action_got_it
spacingRes = R.dimen.spacingNormal
lineWidthRes = R.dimen.lineWidth
cancelable = false
}
tutors.show(supportFragmentManager, view = toolbar, text = "It's a toolbar", isLast = true)
See sample.
License
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
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].