A curated list of arrrrrrrrr!
Discover gists
Compute | |
EC2 Virtual Private Servers | |
Lightsail Amazon's hosting provider (vps, dns, storage) | |
Lambda Functions you can run, written in Python, NodeJS, Go etc. Can run many in parallel. | |
Batch Run software jobs on EC2 machines | |
Elastic Beanstalk Run software on managed virtual machines | |
Serverless Application Repository Repository of serverless applications that you can deploy (on lambda) | |
AWS Outposts Basically run Amazon services on your own hardware (datacenter) | |
EC2 Image Builder Create EC2 (ami?) images automatically |
Exhaustive list of SPDX (Software Package Data Exchange) licenses: https://spdx.org/licenses/
When working with password protected ssh keys for git in VS Code on Windows, VS Code by default does not ask for the password
and times out with a permissions denied message. Adding the key to the SSH agent also does not work, since it needs to be started manually.
Of course it can be started in the ~/.profile
or ~/.bashrc
, but that is not helpful for the VS Code issue.
To fix this we can tell git to use the OpenSSH service of Windows and add the key there, that SSH agent can be started automatically under services and will then also work with VS Code. I found this fix somewhere on the internet after some searching but lost the post about it again, thus decided to write it down myself to not struggle with it again.
Note: This short guide only assists in setup for the key to work nicely with VS Code on Windows.
#!/bin/bash | |
MYSELF_PID=$$ | |
# Set the working directory to the directory of the script | |
cd "$(dirname "$0")" | |
# Variables for the script | |
phpinterpreter="php8.2 -d memory_limit=1G" | |
pathtoconsole="./WEBROOT/bin/console" | |
lockfile="./WEBROOT/?docroot?/var/tmp/cronjob.lock" |
/* Deleting a node from Binary search tree */ | |
#include<iostream> | |
using namespace std; | |
struct Node { | |
int data; | |
struct Node *left; | |
struct Node *right; | |
}; | |
//Function to find minimum in a tree. | |
Node* FindMin(Node* root) |