StartUP Resources

Lancez-Vous. C'est gratuit
ou s'inscrire avec votre adresse e-mail
StartUP Resources par Mind Map: StartUP Resources

1. Learning to Code

1.1. Python

1.1.1. iteration construct

1.1.2. guess and check method

1.1.2.1. loop charateristics

1.1.2.2. put in other words: exhaustive numeration

1.1.3. For loop: xem lai Problem 7 trong L3

1.2. Dev Tools

1.2.1. Pseudo class

1.3. Coursera VentureFinancing

1.3.1. In-depth knowledge about your market place

1.3.2. honest about who your competitors are?

1.3.3. what does investor want to see????

1.3.3.1. a team really complement each other

1.3.4. Tell your story!!!!!!!

1.4. Learn SQL the hard way

1.4.1. critical concept

1.4.2. Data criteria

1.4.2.1. comparison operators

1.4.2.1.1. >

1.4.2.1.2. <

1.4.2.1.3. >=

1.4.2.1.4. <=

1.4.2.1.5. =

1.4.2.1.6. not equal: <>

1.5. CDAC Course

1.5.1. Class 1: HTML/CSS/Javascript

1.5.1.1. info

1.5.1.1.1. Programming basics of Web technology

1.5.1.1.2. by: Nimesh Kumar Dagur

1.5.1.1.3. specialized in Microsoft Techonology

1.5.1.2. Day 1

1.5.1.2.1. Webtech Overview

1.5.1.2.2. HMTL

1.5.1.3. Day 2

1.5.1.3.1. HTML Character Entities

1.5.1.3.2. Change fonts, sizes, colors

1.5.1.3.3. HTML background

1.5.1.3.4. abbreviations and acronyms

1.5.1.3.5. Deleting and inserting text: <del> <ins>

1.5.1.3.6. List

1.5.1.3.7. Display preformatted text

1.5.1.3.8. defintionlist

1.5.1.3.9. New Topic

1.5.1.4. Day 3

1.5.1.4.1. HTML Link:

1.5.1.5. Day 4

1.5.1.5.1. Frame

1.5.1.5.2. Audio tag

1.5.1.5.3. video tag

1.5.1.5.4. CSS

1.5.1.6. Day5

1.5.1.6.1. CSS selector

1.5.1.6.2. Javascript

1.5.1.7. Day 6

1.5.1.7.1. While Loop

1.5.1.7.2. Javascript Function

1.5.1.7.3. Javascript event

1.5.1.7.4. form

1.5.2. Class2: SQL

1.5.2.1. Teacher: Mr. SaS

1.5.2.2. Commands

1.5.2.2.1. Data Definition Language

1.5.2.2.2. Data Manipulation Language

1.5.2.2.3. Transaction Control Language

1.5.2.2.4. Data Control Language

1.5.2.3. Database Objects

1.5.2.3.1. Table

1.5.2.3.2. View

1.5.2.3.3. Sequence

1.5.2.3.4. Index

1.5.2.3.5. Symnonym

1.5.2.4. Database users

1.5.2.4.1. One user = 1 schema

1.5.2.4.2. 2 users can create the same table name since they belong to different schemas

1.5.2.5. Single row function

1.5.2.5.1. per row there'll be an output

1.5.2.5.2. Character function

1.5.2.5.3. others

1.5.2.5.4. bai tap so 2

1.5.2.6. multiple row function

1.5.2.6.1. multiple inputs produce 1 result

1.5.2.6.2. functions

1.5.2.7. subquery

1.5.2.7.1. mean queries within query

1.5.2.7.2. subquery returns multiple values

1.5.2.8. Create Sequence

1.5.2.9. Constraints

1.5.2.9.1. Enforce rules at the table level

1.5.2.9.2. prevent the deletion of a table if there are dependencies

1.5.2.9.3. CONSTRAINTS

1.5.2.10. JOIN

1.5.2.10.1. cross join

1.5.2.10.2. natural join

1.5.2.11. MERGE

1.5.2.12. New data object

1.5.2.12.1. table

1.5.2.12.2. sequecne

1.5.2.12.3. view

1.5.2.12.4. index

1.5.2.12.5. Synonym

1.5.2.13. Rownum

1.5.2.13.1. rownum = 1

1.5.2.13.2. rownum <= anything

1.5.3. Class 3: PL/SQL

1.5.3.1. Delimiters

1.5.3.1.1. compound symbols

1.5.3.2. Identifiers

1.5.3.2.1. contains numbers, dollar signs, underscores, number signs

1.5.3.2.2. can't contain hyphens,slashes,spaces

1.5.3.3. Make it maintenance-easy

1.5.3.3.1. comments

1.5.3.3.2. case conventions

1.5.3.3.3. naming conventions fro identifiers and objects

1.5.3.4. PL/SQL

1.5.3.4.1. 3 sections

1.5.3.5. Block Types

1.5.3.5.1. Anonymous Procedure

1.5.3.5.2. Named procedure

1.5.3.5.3. Named function

1.5.3.6. Variables

1.5.3.6.1. temporary storage of data

1.5.3.6.2. manipulation of stored values

1.5.3.6.3. resusablity

1.5.3.6.4. only declare variables in the DECLARE section

1.5.3.6.5. data types

1.5.3.7. LOB data type

1.5.3.8. Declaring PL/SQL Variables

1.5.3.8.1. Syntax

1.5.3.8.2. don't use table name or column name for naming variables

1.5.3.9. print

1.5.3.10. Bind variables

1.5.3.10.1. select to store database data into variables

1.5.3.11. declaring variables by %type and %rowtype

1.5.3.12. Nested blocks and Variable Scope

1.5.3.13. Control Stucture

1.5.3.13.1. if elsif

1.5.3.13.2. loop

1.5.3.13.3. for loop

1.5.3.14. Substitution Variables

1.5.3.15. Exception Handling

1.5.3.15.1. Trapping exceptions

1.5.3.16. Sub programs

1.5.3.17. Cursor

1.5.3.18. Packages

1.5.3.19. Triggers

1.5.4. Class 4

1.5.4.1. Desktop app

1.5.4.1.1. only J2SE

1.5.4.2. Web app

1.5.4.2.1. J2SE as base + J2EE

1.5.4.3. mobile app

1.5.4.3.1. J2SE as base +J2ME

1.5.4.4. Java

1.5.4.4.1. Day 1

1.5.4.4.2. Day 2

1.5.4.4.3. Day3

1.5.4.4.4. Day4

1.5.4.4.5. Day5

1.5.4.4.6. Day6

1.5.4.4.7. Day 7

1.5.4.4.8. Day 9

1.5.4.4.9. Day8

1.5.4.4.10. Day 10

1.5.4.4.11. Day 11

1.5.4.4.12. Day 12

1.5.4.4.13. Day 13

1.5.4.4.14. day14

1.5.4.4.15. day15

1.5.4.4.16. day 16

1.5.4.4.17. Day 17

1.5.4.4.18. Last Day

1.5.5. Design Class

1.5.5.1. Corel

1.5.5.1.1. create a new document

1.5.6. Culture Visit Plan

1.5.6.1. 06/09

1.5.6.1.1. qutabmisnar +lotus temple

1.5.6.2. 12/09

1.5.6.2.1. akshardham

1.5.6.3. 26/09

1.5.6.3.1. taj mahal

2. Ethos

2.1. Program Content

2.1.1. first 2 week for preparing and fine-tuning the biz proposal

2.1.2. week 3: going out to meet people

2.1.3. First week

2.1.3.1. tuesday morning

2.1.3.1.1. profession chey: mechanical engineeer, PhD in MIT, consultant in IT project, full of ideas guys

2.1.3.1.2. Supply chain consultant for more than 10 years

2.1.3.1.3. Metrachonics is adding a microprossesor to a control

2.1.3.1.4. engineering content

2.1.3.1.5. mechatronics

2.1.3.1.6. Sensor kinda determines what you can do

2.1.3.2. teusday afternoon

2.1.3.2.1. big telco, ICT division, talk about ICT startup from a corporate world, startup is survival strategy for corporate world now

2.1.3.2.2. Automation full liner

2.1.3.3. wednesday morning

2.1.3.3.1. new family: meeting time

2.1.3.3.2. Ethos lab

2.1.3.3.3. Sparklab: Business proposal writing: how to sell your idea to the investors

2.1.3.4. wednesday afternoon

2.1.3.4.1. Mr. Leonardo Lim - Professor from Sunny/LG Global

2.1.3.5. Thursday

2.1.3.5.1. Visit to DMC/NIPA in Seol: broadcasting, K-Pop, entertainment

2.1.3.5.2. Meeting alot of startup here

2.1.3.5.3. Night: pitching more and more

2.1.3.6. Friday

2.1.3.6.1. morning: James Larson lecture

2.1.3.6.2. Night: BUSINESS DRAFT DUE (one-page summary)

2.1.3.7. Monday

2.1.3.7.1. Speaker: CEO from SparkLab: he sold five companies already

2.1.4. third week

2.1.4.1. Monday: reviewing all the presentation materials

2.1.4.1.1. final mentoring

2.1.4.2. Tuesday: Exhibition

2.1.4.2.1. move to Kangnam: alot of audience

2.1.4.3. wednesday: review, review, review

2.1.4.4. thursday: final launching time

2.1.5. Second week

2.1.5.1. Monday

2.1.5.1.1. Morning: Mr. Louis Ryu

2.1.5.1.2. Afternoon: Mr.Ricky Kimm ODA fund sources

2.1.5.2. Tuesday

2.1.5.2.1. new team-building scheme

2.1.5.3. Wednesday

2.1.5.3.1. morning: lecture from UN: international trade issues

2.1.5.3.2. afternoon: visit to KANGNAM

2.1.5.4. Thursday

2.1.5.4.1. afternoon: Second mentoring by the group

2.1.5.4.2. SECOND DUE: POSTER AND PITCHING MATERIALS

2.1.5.5. Friday

2.1.5.5.1. Duzon: they moved their campus to a mountain: a paradise for employees

2.1.5.5.2. afternoon: visiting the Samsung

2.1.5.6. Second week: independent time.

2.2. Cafeteria Hours

3. resources

3.1. animation for iOS

3.2. Promising startup program

3.2.1. Founderfuel.com

3.2.1.1. Canada-based accelerator

3.2.1.2. deadline: 24/10/2014, watch out for 2015

3.2.2. http://seed.mg.gov.br/ kieu startup Chile cua Brazil, het han ngay 03/2014, watch out for 2015

3.2.3. Magic: http://map.mymagic.my/asean

3.2.3.1. Deadline khoang thang 4

4. Android

4.1. 26/09

5. Topica

5.1. Công nghiệp hóa

5.2. Văn hóa

5.3. Xây dựng đội ngũ