- Download attachments: fetch and save invoice attachment PDFs.
- Check payments: retrieve and display the payment status of invoices.
- Check line item price: validate line item prices against a specified amount.
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
#include <iostream> | |
#include <iomanip> | |
#include <sstream> | |
#include <string> | |
#include <vector> | |
#include <random> | |
using byte = unsigned char; | |
using byte_vector = std::vector<byte>; |
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
import requests | |
import json | |
import hmac | |
import hashlib | |
import base64 | |
from datetime import datetime | |
API_KEY_PUBLIC_VALUE = 'aWQ9OTI3NDMwNWZhYjQ3NDgzNzg0NTkwNTUyNzU5MGUwZGQmZGlnZXN0PWZlOTUxMDc0MmFjMWVhZjZlOThmZTZlMWJkMTllNjU3OWY4NGNkOTU4MzE4ZmM1YmEwZjI4NDUxYjEwZDY4MzI=' | |
API_KEY_ID = '9274305fab474837845905527590e0dd' | |
API_KEY_PASSWORD = '28198cf21d8a4f6fa33fc07bc87bc92c' |
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
import hmac | |
import datetime | |
import json | |
from base64 import b64encode | |
from urllib.parse import urlencode | |
import requests | |
API_KEY = b'...' | |
API_ID = '...' |
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
cat << 'EOF' > gitlab-mvn-settings.xml | |
<settings xmlns="http://maven.apache.org/SETTINGS/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd"> | |
<servers> | |
<server> | |
<id>gitlab</id> | |
<configuration> | |
<httpHeaders> | |
<property> | |
<name>Deploy-Token</name> |
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
<script setup lang="ts"> | |
import { $ref } from "vue/macros"; | |
import { onMounted, onUnmounted } from "vue"; | |
import { SLIDE_TEXTS } from "./assets/slides/slideTexts"; | |
import PresentationSlide from "./components/PresentationSlide.vue"; | |
// Width of the slide images in pixels, change this if the images are of different width | |
const IMAGE_WIDTH_PX = 1024; | |
const MAX_INDEX = Object.keys(SLIDE_TEXTS).length; |
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
import boto3 | |
ENDPOINT_URL = 'https://fra1.digitaloceanspaces.com' | |
SPACE = "space-name" | |
REGION = "FRA1" | |
ACCESS_KEY_ID = "..." | |
SECRET_ACCESS_KEY = "..." | |
def main(): | |
session = boto3.session.Session() |
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
""" | |
Generate wordlist for recovering a password that was entered with a typo. | |
Assume the password consists of three elements of random words generated by gpw, | |
separated by punctuation marks and numbers. | |
python password-permutations.py > passwords.txt | |
sudo snap install john-the-ripper | |
john-the-ripper.keepass2john Database.kdbx > passwordhash.txt | |
john-the-ripper --wordlist=passwords.txt passwordhash.txt | |
""" |
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
""" | |
A simple Python HTTP proxy that forwards all requests to download.cypress.io | |
to enable Cypress download from NPM behind a Nexus proxy. | |
This is to work around Nexus proxy limitations, see | |
- https://issues.sonatype.org/browse/NEXUS-22887 and | |
- https://issues.sonatype.org/browse/NEXUS-22889. | |
Requires Python 3. |
NewerOlder