Every time you choose to apply a rule(s), explicitly state the rule(s) in the output. You can abbreviate the rule description to a single word or phrase.
[Brief description ]
- [more description]
- [more description]
- [more description]
| "use client" | |
| import * as React from "react" | |
| import { buttonVariants } from "@/components/ui/button" | |
| import { ScrollArea } from "@/components/ui/scroll-area" | |
| import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select" | |
| import { cn } from "@/lib/utils" | |
| import { ChevronLeft, ChevronRight } from "lucide-react" | |
| import { DayPicker, DropdownProps } from "react-day-picker" |
| use aws_sdk_s3::{Client, Endpoint, Error, Region}; | |
| use http::Uri; | |
| use awaitgroup::WaitGroup; | |
| #[tokio::main] | |
| async fn main() -> Result<(), Error> { | |
| let bucket = "joshuarobinson"; | |
| let endpoint = "http://10.62.64.200"; | |
| let prefix = ""; |
| // this is my aws serverless function | |
| const serverless = require('serverless-http'); | |
| const express = require('express'); | |
| const AWS = require('aws-sdk'); | |
| const app = express(); | |
| app.use(express.urlencoded({ extended: true })); |
| # Stick this in your home directory and point your Global Git config at it by running: | |
| # | |
| # $ git config --global core.attributesfile ~/.gitattributes | |
| # | |
| # See https://tekin.co.uk/2020/10/better-git-diff-output-for-ruby-python-elixir-and-more for more details | |
| *.c diff=cpp | |
| *.h diff=cpp | |
| *.c++ diff=cpp | |
| *.h++ diff=cpp |
| #!/bin/bash | |
| ### | |
| ### my-script — does one thing well | |
| ### | |
| ### Usage: | |
| ### my-script <input> <output> | |
| ### | |
| ### Options: | |
| ### <input> Input file to read. | |
| ### <output> Output file to write. Use '-' for stdout. |
| Mute these words in your settings here: https://twitter.com/settings/muted_keywords | |
| ActivityTweet | |
| generic_activity_highlights | |
| generic_activity_momentsbreaking | |
| RankedOrganicTweet | |
| suggest_activity | |
| suggest_activity_feed | |
| suggest_activity_highlights | |
| suggest_activity_tweet |
| {"lastUpload":"2018-07-10T16:58:55.808Z","extensionVersion":"v2.9.2"} |
This focuses on generating the certificates for loading local virtual hosts hosted on your computer, for development only.
Do not use self-signed certificates in production ! For online certificates, use Let's Encrypt instead (tutorial).
| # Description: Boxstarter Script | |
| # Author: Chris Kinniburgh <chris@cjkinni.com> | |
| # Based heavily on https://gist.github.com/jessfraz/7c319b046daa101a4aaef937a20ff41f | |
| # by Jess Frazelle | |
| # Last Updated: 2017-12-31 | |
| # | |
| # Install boxstarter: | |
| # . { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force | |
| # |