
Kushal Gohil
@2002kushalgohil
Followers
46
Following
180
Media
10
Statuses
29
Frontend Lead @ Bridged Media
India
Joined May 2021
703 visitors in one day for the website: Qweeksite Do join the waitlist: https://t.co/EPKyy0hT41
#SaaS #product #Software
1
0
4
Something exciting is coming… 'Qweek Site' - build stunning personal websites in minutes. Currently in development in collaboration with Ketan Agwan and Mehak Narang. Join the waitlist: https://t.co/EPKyy0hT41
#saas hashtag#project hashtag#softwaredevelopment hashtag#webdev
1
0
3
I’ll be working on 2-3 personal projects, including a Chrome plugin, SaaS, and developer tools, under the name RUDISN. Stay tuned! RUDISN Website: https://t.co/Td9dzP7nJU
#saas #website #chromeplugin
rudisn.com
Creating efficient, frontend-focused developer tools with minimal backend overhead. Powering seamless dev experiences through lightweight web utilities.
0
0
3
I have been using https://t.co/fWlgnwogcU for a few days and created a complete User Authentication and onboarding UI and logic in less than half an hour. If you are good at prompting, then any tool will help you increase your productivity #AI #website #webdev #software
bolt.new
Prompt, run, edit & publish apps
1
1
8
Finally Purchased ThreeJS course from the @bruno_simon One of the finest course on ThreeJS #threejs #webdev #software
0
0
8
Update 4: Budget Tracker I've completed the initial version of the Landing Page (Penny Wise) using Figma. I'm currently seeking a content writer and UI/UX designer who is interested in contributing to the UI as an open-source contributor. #webdesign #nextjs #webdevelopment #saas
3
0
14
Update 3: Budget Tracker 1. Converted "The Complete JavaScript" project into TypeScript. 2. Added a license. 3. Introduced the first version of documentation to the project. 4. Completed all APIs #nextjs #nodejs #api #webdevelopment #project
1
0
5
Update 2: Budget Tracker Finished User Related APIs, updated DTO and Implemented JWT authentication 1. Register 2. Login 3. Refresh Token 4. Forgot Password 5. Reset Password 6. Get User ( Authenticated ) 7. Update User ( Authenticated ) #nextjs #nodejs #webdevelopment #project
0
0
4
Update 1: Budget Tracker We've planned to keep the project's code open-source so that anyone can learn and contribute: https://t.co/pNtiI9hogr Tech Stack: Frontend: Next JS, Shadcn UI Backend and DB: Next JS, Mongoose, MongoDB Deployment: Vercel #nextJS
0
0
4
I am starting a new personal project in Next JS i.e. Expense Tracker and will be providing updates regarding the project through LinkedIn and Twitter posts. #nextjs #nodejs #shadcn #webdevelopment
0
0
3
Had a chance to dive into Next.js and Google Sheets as a backend, and gotta say, it was one of my top gigs yet. Using Google Sheets as our backend was a total game-changer, especially when keeping things simple on the backend. #nextjs #webdevelopment #programming
1
0
4
A: Hello B: Hey! C: undefined D: ReferenceError E: TypeError What's the output of the following JavaScript code? let c = { greeting: 'Hey!' }; let d; d = c; c.greeting = 'Hello'; console.log(d.greeting);
2
0
7
A: mouse.bird.size is not valid B: mouse[bird.size] is not valid C: mouse[bird["size"]] is not valid D: All of them are valid Guess the output of the following JavaScript code #javascript #webdevelopment #programming
1
2
8
+true; !'Lydia'; Guess the output of the following JavaScript code #javascript #webdevelopment #programming
1
1
6
0
1
4
for (var i = 0; i < 3; i++) { setTimeout(() => console.log(i), 1); } for (let i = 0; i < 3; i++) { setTimeout(() => console.log(i), 1); } Guess the output. #javascript #webdevelopment #programming
2
3
10
function sayHi() { console.log(name); console.log(age); var name = 'Lydia'; let age = 21; } sayHi(); Guess the output. #javascript #webdevelopment #programming
0
1
5
Sometimes when I'm writing JavaScript I want to throw up my hands and say "this is bullshit!" but I can never remember what "this" refers to. #javascript
0
1
4