It is not the critic who counts; not the man who points out how the strong man stumbles, or where the doer of deeds could have done them better. The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood; who strives valiantly; who errs, who comes short again and again, because there is no effort without error and shortcoming; but who does actually strive to do the deeds; who knows great enthusiasms, the great devotions; who spends himself in a worthy cause; who at the best knows in the end the triumph of high achievement, and who at the worst, if he fails, at least fails while daring greatly, so that his place shall never be with those cold and timid souls who neither know victory nor defeat.
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 | |
export AWS_ACCESS_KEY_ID=<your-key-id-here> | |
export AWS_SECRET_ACCESS_KEY=<your-secret-key-here> | |
export RESTIC_PASSWORD="<your-encryption-password>" | |
# Run the backup command | |
restic -r s3:s3.us-west-004.backblazeb2.com/<your-bucket> --verbose backup /path/to/immich_data/upload |
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
function App() { | |
const credentials: AWSServiceConfig = { | |
awsEndpoint: "<lambda endpoint>", | |
region: "us-east-1", | |
ban: "<uuid>", | |
ContactFlowId: "71267879-1f33-47ce-8eac-b5004a934317", | |
InstanceId: "a7ef5c14-c2d8-4ba4-bff5-4ceb59bf3622", | |
PersistentChat: { | |
RehydrationType: "ENTIRE_PAST_SESSION", | |
}, |
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
<?php | |
/** | |
* Get an item from an array using "dot" notation. | |
* Provides a safe way to access nested array values, | |
* and also return a default value if the key does not exist. | |
* | |
* @param array $data | |
* @param string|int $key | |
* @param mixed $default |
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
{ | |
"awesome_twitter_folks": [ | |
{ | |
"name": "Ash Allen", | |
"twitter": "@AshAllenDesign" | |
} | |
] | |
} |
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.8' | |
services: | |
elasticvue: | |
image: cars10/elasticvue | |
container_name: elasticvue | |
ports: | |
- "8080:8080" | |
restart: always | |
networks: |
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.8' | |
services: | |
db: | |
image: mariadb:10.7 | |
ports: | |
- 3306:3306 | |
environment: | |
- MYSQL_DATABASE=laravel | |
- MYSQL_USER=root | |
- MYSQL_ROOT_PASSWORD=root |
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 php:8-fpm | |
# Arguments defined in docker-compose.yml | |
ARG user | |
ARG uid | |
# Install system dependencies | |
RUN apt-get update && apt-get install -y \ | |
git \ | |
curl \ |
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
//Nick Wetherington | |
package Chpt4_Project; | |
import java.util.Scanner; | |
public class Member { | |
public String name; | |
public String name; | |
public double weight; |
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' | |
services: | |
laravel_db: | |
image: mariadb | |
ports: | |
- 3306:3306 | |
volumes: | |
- ./db_data:/var/lib/mysql | |
environment: | |
- MYSQL_DATABASE=laravel_db |
NewerOlder