Upgrade to Pro — share decks privately, control downloads, hide ads and more …

"Programming" your next dream job

OlivierJM
November 10, 2018

"Programming" your next dream job

Programming is now considered as the blue collar job, It is not easy to reach to a young generation, this talk shares the problem that our society have and programming as a skill can help in problem solving.

OlivierJM

November 10, 2018
Tweet

More Decks by OlivierJM

Other Decks in Education

Transcript

  1. 09/11/2018 Inspirethon http://localhost:3000/#/?export 6/11 function Editor({ tools }) { const

    { x, y, node, dispatch } = useDragging() return ( <Fragment> {tools.map(icon => ( <Draggable key={icon._id} onStop={(e, data) => useHandlers(e, data, icon, dispatch, 'DROP')} > <i className="material-icons">{icon.name}</i> </Draggable> ))} x: {x} <br /> y: {y} <br /> iconName: {node && node.innerHTML} </Fragment> ); } export function useDragging(){ const [value, dispatch] = useContext(ToolsState); const { data } = value; return { ...data, dispatch } } Why learn Programming ?
  2. 09/11/2018 Inspirethon http://localhost:3000/#/?export 8/11 Whether you want to uncover the

    secrets of the universe, or you just want to pursue a career in the 21stcentury, basic computer programming is an essential skill to learn. - Stephen Hawking