gws CLI — Final Setup for ajmalafif@gmail.com (M5 Max)
Project: gws-cli-m5-max
Date: 2026-04-10
Status: Active and verified
| gws auth login --scopes "https://www.googleapis.com/auth/gmail.modify,https://www.googleapis.com/auth/drive,https://www.googleapis.com/auth/calendar,https://www.googleapis.com/auth/spreadsheets,https://www.googleapis.com/auth/documents,https://www.googleapis.com/auth/presentations,https://www.googleapis.com/auth/contacts,https://www.googleapis.com/auth/chat.messages,https://www.googleapis.com/auth/chat.spaces,https://www.googleapis.com/auth/forms.body,https://www.googleapis.com/auth/meetings.space.created,https://www.googleapis.com/auth/script.projects,openid,email,profile" |
Project: gws-cli-m5-max
Date: 2026-04-10
Status: Active and verified
| # Admin API key goes here | |
| KEY="[FIND ME IN THE ADMIN SETTINGS]" | |
| # Split the key into ID and SECRET | |
| TMPIFS=$IFS | |
| IFS=':' read ID SECRET <<< "$KEY" | |
| IFS=$TMPIFS | |
| # Prepare header and payload | |
| NOW=$(date +'%s') |
| .field:before, .customer .field:before,.field:after, .customer .field:after { | |
| display: none !important; | |
| } | |
| .customer .field input, .customer select, .field__input, .select__select { | |
| box-shadow: -1px 0px 0px 1px #C0C0C0 !important; | |
| border: 1px solid #000; | |
| } |
| { | |
| "id": "lhn1hp8aqiulsb1pji", | |
| "name": "Screenshot -> Resize & Bordered", | |
| "description": "", | |
| "color": "green", | |
| "actions": [ | |
| { | |
| "id": "ljmha6c33u1ov3tam9o", | |
| "command": { | |
| "name": "getCurrentSelection", |
| { | |
| "black": { | |
| "value": "#000000", | |
| "type": "color" | |
| }, | |
| "white": { | |
| "value": "#ffffff", | |
| "type": "color" | |
| }, | |
| "slate": { |
| import React from 'react' | |
| const VideoEmbedPreview = ({ value }) => { | |
| const url = value.url | |
| const responsiveVideoContainer = { | |
| padding: "56.25% 0 0 0", | |
| position: "relative" | |
| } |
| //Hook into the createSchemaCustomization API | |
| //This hook runs after all our nodes have been created | |
| exports.createSchemaCustomization = ({ actions, schema }) => { | |
| //The createTypes action allows us to create custom types | |
| //and modify existing ones | |
| const { createTypes } = actions | |
| // Create our schema customizations | |
| const typeDefs = [ | |
| // Replace "SanityReview" with your _typename of your post type |
| <div tw="md:w-full"> | |
| <div | |
| tw="md:mx-8 md:mx-auto md:grid md:grid-cols-1 md:grid-cols-2 md:font-serif md:border-b" | |
| css={{ | |
| width: 'min(100ch, calc(100% - 64px))', | |
| gridRowGap: 8, | |
| }} | |
| > | |
| </div> | |
| </div> |
| https://dev.to/amanhimself/setup-macbook-m1-for-web-and-react-native-development-8la |