- Set pull with rebase as default:
git config --global pull.rebase true - Always take a pull on
masterrebasing your feature branches usinggit rebase -i master. - Use
git push --force-with-leaseinstead ofgit push --force - Use
git add -pinstead ofgit add . - Install GitHub CLI: https://cli.github.com
- Use it to create and merge PRs.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import * as React from 'react' | |
| import clsx from 'clsx' | |
| import { type Atoms, atoms, ResponsiveValue } from '@atoms' | |
| import { useResponsiveValue } from '@hooks' | |
| import { root, page } from './Carousel.css' | |
| interface CarouselProps { | |
| /** | |
| * Number of items to display per page. | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export methods="\_SB.PCI0.PEG0.PEGP._PS3" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "basics": { | |
| "name": "Nayaab Khan", | |
| "label": "All-in-one generalist: Designer, programmer, and a product thinker." | |
| }, | |
| "meta": { | |
| "theme": "short" | |
| } | |
| } |
redshift -l0:0 -t 7800:7800 to Startup Application app
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "id": "hodil0m0", | |
| "pk": "262687306511763738", | |
| "title": "Jeffrey D.", | |
| "subtitle": "Web Programming • San Francisco", | |
| "sort_time": "2016-04-28T08:41:46.507Z", | |
| "request_id": "3ta2gm05", | |
| "request_pk": "262679754052356306", | |
| "is_archived": false, | |
| "is_awaiting_initial_pro_reply": false, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { fileLoader, mergeResolvers, mergeTypes } from 'merge-graphql-schemas' | |
| import * as path from 'path' | |
| const schemaFiles = fileLoader(path.join(__dirname, './**/*.graphql')) | |
| const resolverFiles = fileLoader(path.join(__dirname, './**/resolvers.ts')) | |
| const typeDefs = mergeTypes(schemaFiles, { all: true }) | |
| const resolvers = mergeResolvers(resolverFiles) | |
| export { typeDefs, resolvers } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| defaults write com.bohemiancoding.sketch3 exportCompactSVG -bool yes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Author = Nikhil Venkat Sonti | |
| # email = nikhilsv92@gmail.com | |
| # github ID = shadowfax92 | |
| import sys | |
| from xml.dom.minidom import _get_StringIO | |
| from lxml import html | |
| import requests | |
| import os | |
| import re | |
| import time |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| "auto_complete_commit_on_tab": true, | |
| "bold_folder_labels": true, | |
| "color_scheme": "Packages/Theme - Spacegray/base16-ocean.dark.tmTheme", | |
| "draw_minimap_border": true, | |
| "draw_white_space": "all", | |
| "ensure_newline_at_eof_on_save": true, | |
| "font_face": "Inconsolata", | |
| "font_size": 14.0, | |
| "highlight_line": true, |