Skip to content

Instantly share code, notes, and snippets.

View kevb10's full-sized avatar
๐Ÿ 
Working from home

Kevin Manase kevb10

๐Ÿ 
Working from home
View GitHub Profile
{
"<p>The Lucky Pig was founded by a local fashion designer finally following her passion after 10 years in the garment industry. Always a collector of vintage, she started selling at local markets and eventually made the leap into running her own store in Los Angeles.</p>": "Pig Fashion design Antique Retail Los Angeles",
"Give the gift of vintage this Valentine's Day. To yourself, or to your own someone special.": "Gift Valentine's Day",
"<!--|||\ntype: collaboration;\nsecondary_image: https://cdn.shopify.com/s/files/1/0118/0132/9723/files/densie_hewett-secondary-cropped.jpg?8310930043823045734;\n|||-->\n<p>Denise Hewett is the Founder and CEO of Scriptd, a digital screenplay marketplace to bolster scripts from underrepresented groups. She is a television and digital producer turned startup founder who lives at the intersection of activism, entrepreneurship, and entertainment.</p>\n<p>Below are some of Deniseโ€™s favorite items of clothing from her closet. Shop the below to support a good cause. P
var e = React.createElement;
console.log("I AM WORKING");
class LikeButton extends React.Component {
constructor(props) {
super(props);
}
render() {
return 'Hello World!';
}
@kevb10
kevb10 / backend.md
Created October 16, 2023 15:33
Ligence Backend Assignment

Authentication and Authorization

Description

Your task is to implement Authentication and Authorization with JWT (Access and Refresh tokens)

  • User can signup new account with personal login & password
    โ€“ User can login with personal login & password, server returns response with Access token and Refresh token (Refresh token is in advanced scope).
  • Refresh token helps to get new pair Access/Refresh tokens (optional) โ€“ User now should use valid Access token to access resources โ€“ When the Access token is expired, user can't use it anymore