25 Student TECH Programmes that you should think to be part of ๐
๐น Google DSC
๐น Microsoft Student Partner Program
๐น CNCF ambassador program
๐น Amazon Future Engineer Program
๐น Swift Student Challenge - Apple
๐น GitHub Campus Expert
๐น AWS Educate Student Ambassador Program
๐น Microsoft LEAP Apprenticeship Program
๐น Oracle Student Ambassador Program
๐น NVIDIA Deep Learning Institute SAP
๐น Intel Student Ambassador Program
๐น AnitaB .org Grace Hopper Celebration Scholarships
๐น IBM Quantum Community Advocate Program
๐น Red Hat Women in Open Source
๐น Adobe Campus Leader Program
๐น OnePlus Student Ambassador Program
๐น Women Who Code Fellowship Program
๐น VMware vExpert Program
๐น Women Techmakers Scholars Program by Google
๐น Google DSC
๐น Microsoft Student Partner Program
๐น CNCF ambassador program
๐น Amazon Future Engineer Program
๐น Swift Student Challenge - Apple
๐น GitHub Campus Expert
๐น AWS Educate Student Ambassador Program
๐น Microsoft LEAP Apprenticeship Program
๐น Oracle Student Ambassador Program
๐น NVIDIA Deep Learning Institute SAP
๐น Intel Student Ambassador Program
๐น AnitaB .org Grace Hopper Celebration Scholarships
๐น IBM Quantum Community Advocate Program
๐น Red Hat Women in Open Source
๐น Adobe Campus Leader Program
๐น OnePlus Student Ambassador Program
๐น Women Who Code Fellowship Program
๐น VMware vExpert Program
๐น Women Techmakers Scholars Program by Google
๐24๐1
3 Steps on how to upskill & learn any New Tech as Frontend Engineer ๐ฅ
1. Stop learning just the Code of the Tech. As you know with every version update Code changes. See React, lots of APIs have changed.
2. Every Framework, Library or Tech comes with a purpose to solve a problem. Learn whatโs the problem. People donโt release just for show off of New Tech.
3. Donโt just jump to YouTube Tutorial, โ15 mins of this Tech, that Techโ. Rather, refer Conferences, Talks, Tech Blogs, Podcasts by the Official People whoโve built it (No one knows better than them โก๏ธ)
Source: LinkedIn
1. Stop learning just the Code of the Tech. As you know with every version update Code changes. See React, lots of APIs have changed.
2. Every Framework, Library or Tech comes with a purpose to solve a problem. Learn whatโs the problem. People donโt release just for show off of New Tech.
3. Donโt just jump to YouTube Tutorial, โ15 mins of this Tech, that Techโ. Rather, refer Conferences, Talks, Tech Blogs, Podcasts by the Official People whoโve built it (No one knows better than them โก๏ธ)
Source: LinkedIn
๐6
Get to know how Promises work in JavaScript
https://www.freecodecamp.org/news/guide-to-javascript-promises/
---
An introduction to Nullish Coalescing in JavaScript
https://www.freecodecamp.org/news/what-is-the-nullish-coalescing-operator-in-javascript-and-how-is-it-useful/
---
A collection of very important JavaScript function snippets
https://levelup.gitconnected.com/20-extremely-useful-javascript-function-snippets-d8e7b0642ab9
---
Some web APIs that are rarely known
https://javascript.plainenglish.io/7-useful-javascript-web-apis-that-you-probably-dont-know-b766c613bab4
---
Introduction to Geolocation API in JavaScript
https://javascript.plainenglish.io/must-know-javascript-api-geolocation-api-f653f2d84b
---
#promise #webapi #nullishCoalescing #geolocation #snippet
https://www.freecodecamp.org/news/guide-to-javascript-promises/
---
An introduction to Nullish Coalescing in JavaScript
https://www.freecodecamp.org/news/what-is-the-nullish-coalescing-operator-in-javascript-and-how-is-it-useful/
---
A collection of very important JavaScript function snippets
https://levelup.gitconnected.com/20-extremely-useful-javascript-function-snippets-d8e7b0642ab9
---
Some web APIs that are rarely known
https://javascript.plainenglish.io/7-useful-javascript-web-apis-that-you-probably-dont-know-b766c613bab4
---
Introduction to Geolocation API in JavaScript
https://javascript.plainenglish.io/must-know-javascript-api-geolocation-api-f653f2d84b
---
#promise #webapi #nullishCoalescing #geolocation #snippet
๐13โค1๐1
#ECMAScript excitement ๐
This week #TC39 advanced these proposals ๐
3๏ธโฃ Array Grouping
3๏ธโฃ Promise.withResolvers
3๏ธโฃ Source Phase Imports
3๏ธโฃ Time Zone Canonicalization
2๏ธโฃ Deferred Import Evaluation
1๏ธโฃ DataView get/set Uint8Clamped methods
1๏ธโฃ Optional Chaining assignment
This week #TC39 advanced these proposals ๐
3๏ธโฃ Array Grouping
3๏ธโฃ Promise.withResolvers
3๏ธโฃ Source Phase Imports
3๏ธโฃ Time Zone Canonicalization
2๏ธโฃ Deferred Import Evaluation
1๏ธโฃ DataView get/set Uint8Clamped methods
1๏ธโฃ Optional Chaining assignment
๐13๐คฏ1
3 Steps on how to upskill & learn any New Tech as Frontend Engineer ๐ฅ
1. Stop learning just the Code of the Tech. As you know with every version update Code changes. See React, lots of APIs have changed.
2. Every Framework, Library or Tech comes with a purpose to solve a problem. Learn whatโs the problem. People donโt release just for show off of New Tech.
3. Donโt just jump to YouTube Tutorial, โ15 mins of this Tech, that Techโ. Rather, refer Conferences, Talks, Tech Blogs, Podcasts by the Official People whoโve built it (No one knows better than them โก๏ธ)
Source: LinkedIn
1. Stop learning just the Code of the Tech. As you know with every version update Code changes. See React, lots of APIs have changed.
2. Every Framework, Library or Tech comes with a purpose to solve a problem. Learn whatโs the problem. People donโt release just for show off of New Tech.
3. Donโt just jump to YouTube Tutorial, โ15 mins of this Tech, that Techโ. Rather, refer Conferences, Talks, Tech Blogs, Podcasts by the Official People whoโve built it (No one knows better than them โก๏ธ)
Source: LinkedIn
๐17๐11โค3
Did JavaScript just got faster ?
Bun is a modern JavaScript runtime like Node or Deno. It was built from scratch to focus on three main things:
- Start fast (it has the edge in mind).
- New levels of performance (extending JavaScriptCore, the engine).
- Being a great and complete tool (bundler, transpiler, package manager).
Bun uses the JavaScriptCore engine(WebKit), which tends to start and perform a little faster than more traditional choices like V8.
Bun is written in Zig, a low-level programming language with manual memory management.
Most of Bun is written from scratch including the JSX/TypeScript transpiler, npm client, bundler, SQLite client, HTTP client, WebSocket client and more.
Bun is a modern JavaScript runtime like Node or Deno. It was built from scratch to focus on three main things:
- Start fast (it has the edge in mind).
- New levels of performance (extending JavaScriptCore, the engine).
- Being a great and complete tool (bundler, transpiler, package manager).
Bun uses the JavaScriptCore engine(WebKit), which tends to start and perform a little faster than more traditional choices like V8.
Bun is written in Zig, a low-level programming language with manual memory management.
Most of Bun is written from scratch including the JSX/TypeScript transpiler, npm client, bundler, SQLite client, HTTP client, WebSocket client and more.
๐21โค6โก3๐คฉ3