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
#!/usr/bin/env python3 | |
""" | |
Google Drive Backup Script | |
Downloads and backs up files from a shared Google Drive or My Drive folder to local storage. | |
""" | |
import os | |
import io | |
import json | |
from pathlib import Path |
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
from pyicloud import PyiCloudService | |
from pathlib import Path | |
from datetime import datetime | |
from getpass import getpass | |
# Backup destination, update the url path to point to your backup volume | |
backup_root = Path("/Volumes/MYDISK/folder") | |
# iCloud login | |
username = input("Enter your iCloud username/email: ") |
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
#!/bin/bash | |
# Function to get list of installed applications | |
get_installed_apps() { | |
find /Applications -maxdepth 1 -name "*.app" -print0 | xargs -0 -n1 basename | sed 's/\.app$//' | tr '[:upper:]' '[:lower:]' | |
find ~/Applications -maxdepth 1 -name "*.app" -print0 2>/dev/null | xargs -0 -n1 basename | sed 's/\.app$//' | tr '[:upper:]' '[:lower:]' | |
} | |
# Get list of installed apps | |
INSTALLED_APPS=($(get_installed_apps)) |
Table of Contents
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 Link from './Link'; | |
export function MyComponent(props) { | |
// NOTE: you can use all of the same props used for `next/link` | |
return ( | |
<div> | |
<Link href="/some-rad-page"> | |
<a>My Link Text</a> | |
</Link> | |
<Link href="/en/some-rad-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
#!/usr/bin/env bash | |
# MIT © Sindre Sorhus - sindresorhus.com | |
# git hook to run a command after `git pull` if a specified file was changed | |
# Run `chmod +x post-merge` to make it executable then put it into `.git/hooks/`. | |
changed_files="$(git diff-tree -r --name-only --no-commit-id ORIG_HEAD HEAD)" | |
check_run() { | |
echo "$changed_files" | grep --quiet "$1" && eval "$2" |
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 axios, { AxiosStatic, AxiosResponse } from 'axios'; | |
interface IJson { | |
[key: string]: string | IJson; | |
} | |
/** | |
* Internal types | |
*/ |
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
version: "3.1" | |
services: | |
strapi: | |
image: strapi/strapi | |
volumes: | |
- ./swap-backend:/srv/app | |
- /srv/app/node_modules | |
ports: | |
- 1337:1337 |
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
// Control Props | |
// 💯 don't warn in production | |
import * as React from 'react' | |
import warning from 'warning' | |
import {Switch} from '../switch' | |
const callAll = (...fns) => (...args) => fns.forEach(fn => fn?.(...args)) | |
const actionTypes = { |
NewerOlder