Skip to content

Instantly share code, notes, and snippets.

View akashennn's full-sized avatar
🤯
WERK WERK WERK!

Akash Perera akashennn

🤯
WERK WERK WERK!
View GitHub Profile
@seahyc
seahyc / frontend_task.md
Last active January 23, 2023 06:00
Mobile responsiveness as a criteria

Years of Experience?

To align with what we use at Glints, we'd prefer you use React on the frontend, Node.js on the backend and Postgres as the database, with Typescript if you are confident. If you’re a frontend developer with no backend background, Firebase is always an option, but a more suitable stack will definitely earn you bonus points.

Build a simple editable profile page that represents a candidate's basic information and work experience. Minimally, the following information is required to be editable and presented:

  1. Name
  2. Profile picture
  3. Age
  4. Work experiences (the following are information required for each instance)
@brenopolanski
brenopolanski / vue-axios-cors.md
Last active August 14, 2023 10:10
Vue.js + Axios + CORS

Proxy requests using Webpack dev server to avoid cors in development mode.

In your webpack.config file add:

"devServer":{
  "proxy": {
    "/api": {
    "target": 'https://my-target.com',
    "pathRewrite": { '^/api': '' },