During my PhD in Data Science at Stanford, I got sick and tired of ghost jobs & 3rd party offshore agencies on LinkedIn & Indeed. So I wrote a script that fetches jobs from 30k+ company websites' career pages and uses GPT4o-mini to extract relevant information (ex salary, remote, etc.) from job descriptions. You can use it here: (HiringCafe). Here is a filter for Data science jobs
This file contains 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
select_aws_profile () { | |
local profiles=($(leapp session list --output=json | jq -r '[.[] | select(.status=="active")] | .[].profileId')) | |
if [[ ${#profiles[@]} -eq 0 ]] | |
then | |
unset AWS_PROFILE | |
echo "AWS_PROFILE unset as there are no profiles" | |
elif [[ ${#profiles[@]} -eq 1 ]] | |
then | |
export AWS_PROFILE="${profiles}" | |
echo "AWS_PROFILE set to ${profiles}" |
This file contains 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
/*-------------------------------------------------------------- | |
/*! normalize.css v8.0.1 | |
--------------------------------------------------------------*/ | |
html { | |
line-height: 1.15; | |
-webkit-text-size-adjust: 100%; | |
scroll-behavior: smooth; | |
} |
This was now moved to: https://github.com/thoroc/git-mirror
Deno script to clone a github/gitlab repo to ~/Projects
while keeping a tree structure close to the remote url. If the project is already present, then it'll fetch from the remote.
WARNING this was developed on a MacOS, so no guaranty are offered to run on a different OS.
Remove sophos keychain
sudo rm /Library/"Sophos Anti-Virus"/SophosSecure.keychain
Disable sophos
sudo defaults write /Library/Preferences/com.sophos.sav TamperProtectionEnabled -bool false
This file contains 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
[ | |
{ | |
"Source": "my.application", | |
"DetailType": "TestEvent", | |
"Detail": "{\"message\": \"Hello World\"}", | |
"EventBusName": "default" | |
}, | |
{ | |
"Source": "my.application", | |
"DetailType": "MyAppEvent", |
This file contains 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 | |
# put an alias in your .gitconfig to where the script lives: co-repo = ~/.bin/git-checkout-repo.sh | |
# don't forget to `chmod +x` it | |
# Input Git repository URL | |
REPO_URL="$1" | |
# Define the target base directory (where all projects should reside) | |
TARGET_BASE_DIR=~/Projects |
source: https://www.sccbrasil.com/blog/aws/cdk-api.html
By Wolfgang Unger
Lets have a look how to create a API Gateway with CDK (Python) The first approach is using the RestApi Class and code the resources and methods. The second by using a Swagger/Open API file. Both APIs will use lambda integrations.
This file contains 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
date | close | |
---|---|---|
2007-04-23 | 93.24 | |
2007-04-24 | 95.35 | |
2007-04-25 | 98.84 | |
2007-04-26 | 99.92 | |
2007-04-29 | 99.8 | |
2007-05-01 | 99.47 | |
2007-05-02 | 100.39 | |
2007-05-03 | 100.4 | |
2007-05-04 | 100.81 |
This file contains 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/sh | |
# set the table list for "DrawTable" "GameTable" "PlayroundTable" | |
TABLE_NAMES="DrawTable GameTable PlayroundTable" | |
# API_ID="asdasdadajsdljalskdjalksdj" | |
# use the following command to get the list of functions | |
# FUNCTION_FILE=$(aws appsync list-functions --api-id "$API_ID") | |
FUNCTION_FILE="list_functions_full.json" | |
rm -rf resolvers |
NewerOlder