Skip to content

Instantly share code, notes, and snippets.

@abdulazizahwan
Created February 23, 2020 15:15
Show Gist options
  • Save abdulazizahwan/2d39624cb536fd53d6283bf76c97e824 to your computer and use it in GitHub Desktop.
Save abdulazizahwan/2d39624cb536fd53d6283bf76c97e824 to your computer and use it in GitHub Desktop.
private void courseData() {
courses = new ArrayList<>();
courses.add(new Course("Android Basic", "Android Development, Building\nLayouts, Android Studio, Views", R.drawable.ic_android, "#40D7CB"));
courses.add(new Course("UI UX Fundamental", "User Research, User Experience,\nPrototyping, Interactive Design", R.drawable.ic_uiux_fundamental, "#FC46A5"));
courses.add(new Course("Full Stack Web Developer", "Python, JavaScript, PostgreSQL,\nFlask, Docker, Kubernetes", R.drawable.ic_fullstack_web, "#F14C50"));
courses.add(new Course("Android Intermediate", "Data Binding, API & REst API,\nDatabases, Firebase and more", R.drawable.ic_android, "#1E59F6"));
courses.add(new Course("Data Visualization", "Combine data, visuals, and narrative to tell\nimpactful stories and make data-driven decisions", R.drawable.ic_data_science, "#6A2C91"));
courses.add(new Course("Cloud Developer", "Cloud development is the foundation for\nthe new world of software development", R.drawable.ic_cloud_developer, "#F79919"));
courses.add(new Course("Data Engineer", "Data Engineering is the foundation for\nthe new world of Big Data", R.drawable.ic_data_engineer, "#1C546F"));
courses.add(new Course("Marketing Analyst", "Gain foundational data skills applicable to marketing\nCollect and analyze data, model marketing and more", R.drawable.ic_marketing_analyst, "#01B0F1"));
courses.add(new Course("Android Basic", "Android Development, Building\nLayouts, Android Studio, Views", R.drawable.ic_android, "#40D7CB"));
courses.add(new Course("UI UX Fundamental", "User Research, User Experience,\nPrototyping, Interactive Design", R.drawable.ic_uiux_fundamental, "#FC46A5"));
courses.add(new Course("Full Stack Web Developer", "Python, JavaScript, PostgreSQL,\nFlask, Docker, Kubernetes", R.drawable.ic_fullstack_web, "#F14C50"));
courses.add(new Course("Android Intermediate", "Data Binding, API & REst API,\nDatabases, Firebase and more", R.drawable.ic_android, "#1E59F6"));
courses.add(new Course("Data Visualization", "Combine data, visuals, and narrative to tell\nimpactful stories and make data-driven decisions", R.drawable.ic_data_science, "#6A2C91"));
courses.add(new Course("Cloud Developer", "Cloud development is the foundation for\nthe new world of software development", R.drawable.ic_cloud_developer, "#F79919"));
courses.add(new Course("Data Engineer", "Data Engineering is the foundation for\nthe new world of Big Data", R.drawable.ic_data_engineer, "#1C546F"));
courses.add(new Course("Marketing Analyst", "Gain foundational data skills applicable to marketing\nCollect and analyze data, model marketing and more", R.drawable.ic_marketing_analyst, "#01B0F1"));
courses.add(new Course("Android Basic", "Android Development, Building\nLayouts, Android Studio, Views", R.drawable.ic_android, "#40D7CB"));
courses.add(new Course("UI UX Fundamental", "User Research, User Experience,\nPrototyping, Interactive Design", R.drawable.ic_uiux_fundamental, "#FC46A5"));
courses.add(new Course("Full Stack Web Developer", "Python, JavaScript, PostgreSQL,\nFlask, Docker, Kubernetes", R.drawable.ic_fullstack_web, "#F14C50"));
courses.add(new Course("Android Intermediate", "Data Binding, API & REst API,\nDatabases, Firebase and more", R.drawable.ic_android, "#1E59F6"));
courses.add(new Course("Data Visualization", "Combine data, visuals, and narrative to tell\nimpactful stories and make data-driven decisions", R.drawable.ic_data_science, "#6A2C91"));
courses.add(new Course("Cloud Developer", "Cloud development is the foundation for\nthe new world of software development", R.drawable.ic_cloud_developer, "#F79919"));
courses.add(new Course("Data Engineer", "Data Engineering is the foundation for\nthe new world of Big Data", R.drawable.ic_data_engineer, "#1C546F"));
courses.add(new Course("Marketing Analyst", "Gain foundational data skills applicable to marketing\nCollect and analyze data, model marketing and more", R.drawable.ic_marketing_analyst, "#01B0F1"));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment