SingaporeJS / talk.js

πŸŽ™ A monthly meet up for all things JavaScript, Node.js, and the modern web
https://singaporejs.github.io/talk.js
78 stars 6 forks source link

πŸŽ™ talk.js - March 2019 #19

Closed ongmin closed 5 years ago

ongmin commented 5 years ago

πŸ“ Details

πŸ“… Agenda

Time Agenda
7.00pm Doors open - mingle with guests and speakers over πŸ•
7.30pm Start of event - opening segment by host
7.40pm Start of scheduled talks
8.40pm Open announcements - open segment for anyone to make announcements
9.00pm End of event

:speech_balloon: Talks

:seedling: Propose a talk this month

Want to speak at this month's talk? Leave a comment below with the following details:

Click for details > #### Title of your topic > Insert catchy title here > > #### Topic description > Tell us what you'd like to talk about > > #### Presenter(s) > Include GitHub handles where possible. Add your Twitter handle if you wish > > #### Presenter's bio > A short introduction of yourself > > #### Duration > 5 minutes for presenting an introduction to the topic, then up to 20 minutes for discussion. > > #### Deck URL (if any) > You can add this part in later

:loudspeaker: Open announcements

Have something you'd like to tell the audience? We have an open announcement segment for you to announce job opportunities, promote a meet up, upcoming conferences, etc.


:pencil: Organizers' checklist

Click for details - [x] Check available dates on [EngineersSG](https://engineers.sg/) - [x] Confirm date and venue availability - [x] Create event on [SingaporeJS Meetup Page](https://www.meetup.com/singapore-js/) - [x] Inform @engineersftw for video recordings - [x] Announce event on [SingaporeJS Gitter](https://gitter.im/SingaporeJS/home) and other social media platforms - [x] Prepare deck for event \* _checked boxes indicate confirmed/done_
ckkok commented 5 years ago

Title of your topic

Concurrency in NodeJS

Topic description

NodeJS has fantastic I/O performance for a seemingly single-threaded computing model due to its ability to handle such tasks asynchronously. But this fails for CPU-bound tasks that block threads. Before the current NodeJS LTS version, computationally heavy tasks could be farmed out to child processes, taking advantage of multicore CPUs, but processes do not share memory and inter-process communication adds significant overhead. Multithreading support landed in NodeJS as of v10.5.0, and is still flagged as an experimental API. We can now process tasks in separate threads with shared memory, but this power does not come for free. We'll compare the implementation and performance of a multithreaded NodeJS web server with that of some other industry solutions, and see how we can manage shared memory and orchestrate threads using buffers and atomics.

Presenter(s)

https://github.com/ckkok

Presenter's bio

Chee Kean is a software engineer from the Maltem Consulting Group and uses NodeJS extensively for pet projects.

Duration

30 minutes

ais-one commented 5 years ago

Title of your topic

Using Nuxt generate for building static web applications

Topic description

NuxtJS is a framework for VueJS that helps in building applications in single page (SPA) mode or universal mode (SSR)

SPA apps can be easily deployed on cloud storage such as Google Cloud Storage, AWS S3, Now, Netlify but it takes time for the app to be loaded and SEO is a problem as there are no pre-generated content.

SSR apps address the issues of load speed and SEO but requires a backend server to serve the content.

So to get the best of both worlds. We use Nuxt generate.

This talk will focus on the use of Nuxt generate, its advantages, its pitfalls. We will also be looking at few things which one may need to take note of when using nuxt generate, such as: 1) handling dynamic routing 2) use of dynamically created Vuex modules

Presenter(s)

https://github.com/ais-one

Presenter's bio

Aaron is currently doing consulting work with Zenika Singapore. Using JS only for literally everything now...

Duration

20 minutes

danielepolencic commented 5 years ago

Happy to present my talk in March is there's still space https://github.com/SingaporeJS/talk.js/issues/21#issuecomment-470130937

malgamves commented 5 years ago

Ahh! I come into Singapore on 14th March would have loved to share my talk on building Realtime CRUD Apps with JavaScript and GraphQL..any other meetups planned for March?

ais-one commented 5 years ago

FOSSAsia is in March...

malgamves commented 5 years ago

Do they have something letting people apply to speak? @ais-one

ais-one commented 5 years ago

I think you can try and contact them if they have slots...

ais-one commented 5 years ago

I just realize it may be a bit too late to be speaker in FOSSASIA... The problem is your arrival date is just after March talkJS...

Warmest Regards,

Aaron

The information herein is given on a general basis without obligation and is strictly for information purposes only. We do not warrant the accuracy or completeness of the information, graphics, links, or other items contained herein, and expressly disclaim liability for errors or omissions in these materials.

On Thu, Mar 7, 2019 at 4:01 PM Daniel Madalitso Phiri < notifications@github.com> wrote:

Do they have something letting people apply to speak? @ais-one https://github.com/ais-one

β€” You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/SingaporeJS/talk.js/issues/19#issuecomment-470424878, or mute the thread https://github.com/notifications/unsubscribe-auth/AEFgntswGWmC7vid-cH0NAzv4ueC6rRtks5vUMdlgaJpZM4aaskT .

ais-one commented 5 years ago

submitting on behalf of @allanchua101, he will comment later...

Title of your topic

Proxy Pattern: Re-usable and Mockable API calls

Topic description

whatsapp image 2019-03-07 at 15 16 26

Presenter(s)

https://github.com/allanchua101

Presenter's bio

Alan is a software engineer at Sleek, Singapore.

Duration

20 minutes

malgamves commented 5 years ago

Hey that's not a problem. Maybe next time! Have a great meetup :sparkles:

ongmin commented 5 years ago

@danielepolencic Hey, I'm so sorry but I missed your comment for this month!

ckkok commented 5 years ago

Title of your topic

Concurrency in NodeJS

Repository for examples that we didn't have time to see.

https://github.com/ckkok/nodejs-concurrency

ongmin commented 5 years ago

Video recordings of talks:

Proxy Pattern: Re-usable and Mockable API calls by @allanchua101: https://engineers.sg/v/3246 Using Nuxt generate for building static web applications by @ais-one: https://engineers.sg/v/3247 Concurrency in NodeJS by @ckkok: https://engineers.sg/v/3248

Thanks again everyone! :)

PS. Checkout Microsoft learning resources at: https://docs.microsoft.com/en-us/learn/