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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <opml version="2.0"> | |
| <head> | |
| <title>Miniflux</title> | |
| <dateCreated>Sat, 25 Apr 2026 07:27:18 UTC</dateCreated> | |
| </head> | |
| <body> | |
| <outline text="AWS"> | |
| <outline title="AWS Heroes" text="AWS Heroes" xmlUrl="https://dev.to/feed/aws-heroes" htmlUrl="https://dev.to/aws-heroes" description="The latest articles on DEV Community by AWS Heroes (@aws-heroes)." type="rss"></outline> | |
| <outline title="AWS News" text="AWS News" xmlUrl="https://aws.amazon.com/blogs/aws/feed/" htmlUrl="https://aws.amazon.com/blogs/aws/" description="Announcements, Updates, and Launches" type="rss"></outline> |
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
| fields @timestamp, @message, @logStream, @log | |
| | filter @message not like /RequestId|Verbose|INIT_START|Importing/ | |
| | sort @timestamp desc |
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
| *Common Annotations* | |
| {{ range .CommonAnnotations.SortedPairs }} • *{{ .Name }}:* `{{ .Value }}` | |
| {{ end }} | |
| *Common Labels* | |
| {{ range .CommonLabels.SortedPairs }} • *{{ .Name }}:* `{{ .Value }}` | |
| {{ end }} |
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
| mysqldump -u <user> -p -h <host> --databases <db name> | gzip > <file> |
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.5' | |
| services: | |
| drone-server: | |
| image: drone/drone:0.8 | |
| ports: | |
| - 80:8000 | |
| - 9000:9000 | |
| volumes: | |
| - dronedata:/var/lib/drone | |
| restart: always |
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 | |
| aws iam create-group --group-name kops | |
| aws iam attach-group-policy --policy-arn arn:aws:iam::aws:policy/AmazonEC2FullAccess --group-name kops | |
| aws iam attach-group-policy --policy-arn arn:aws:iam::aws:policy/AmazonS3FullAccess --group-name kops | |
| aws iam attach-group-policy --policy-arn arn:aws:iam::aws:policy/AmazonRoute53FullAccess --group-name kops | |
| aws iam attach-group-policy --policy-arn arn:aws:iam::aws:policy/IAMFullAccess --group-name kops | |
| aws iam attach-group-policy --policy-arn arn:aws:iam::aws:policy/AmazonVPCFullAccess --group-name kops | |
| aws iam create-user --user-name kops |
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
| Snippet to replace a sentence across multiple buffers in Vim. The `update` writes the changes to the file. | |
| bufdo %s/depends 'mysql2_chef_gem', '\~> 1.0.1'// | update |
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
| mysqldump -n -t -d -R -u <username> -p -h <host name> <database> stored_procs.sql |
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 | |
| #Replace {GIT_URL} with your repo | |
| git ls-remote --heads {GIT_URL} | aws -F" " '{print $NF}' | cut -c12- - |
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
| rename "s/oldExtension/newExtension/" *.txt | |
| via http://unix.stackexchange.com/a/159466/1648 |
NewerOlder