Update-AUPackages
UTC: 2021-02-10 11:59
palethorper/chocolatey-packages
This file is automatically generated by the update_all.ps1 script using the AU module.
| import java.io.File | |
| import java.nio.file.Paths | |
| import java.sql.Timestamp | |
| import org.apache.commons.io.FileUtils | |
| import org.apache.hudi.DataSourceWriteOptions | |
| import org.apache.hudi.DataSourceReadOptions | |
| import org.apache.hudi.config.{HoodieCompactionConfig, HoodieIndexConfig, HoodieStorageConfig, HoodieWriteConfig} | |
| import org.apache.hudi.hive.MultiPartKeysValueExtractor | |
| import org.apache.hudi.index.HoodieIndex |
| #!/bin/bash | |
| echo -ne "HTTP/1.1 200 OK\r\n" | |
| echo -ne "Content-Type: text/event-stream\r\n" | |
| echo -ne "Cache-Control: no-cache\r\n" | |
| echo -ne "Connection: keep-alive\r\n" | |
| echo -ne "\r\n" | |
| while true; do | |
| x=$((1 + $RANDOM % 15000)) |
UTC: 2021-02-10 11:59
palethorper/chocolatey-packages
This file is automatically generated by the update_all.ps1 script using the AU module.
| {{/* | |
| haproxy-config.cfg: contains the main config with helper backends that are used to terminate | |
| encryption before finally sending to a host_be which is the backend that is the final | |
| backend for a route and contains all the endpoints for the service | |
| */}} | |
| {{- define "conf/haproxy.config" }} | |
| {{- $workingDir := .WorkingDir }} | |
| {{- $defaultDestinationCA := .DefaultDestinationCA }} | |
| {{- $dynamicConfigManager := .DynamicConfigManager }} | |
| {{- $router_ip_v4_v6_mode := env "ROUTER_IP_V4_V6_MODE" "v4" }} |
| #!/bin/bash | |
| # Unlock the directory, we need the unencrypted versions of the files | |
| git crypt unlock | |
| # Re-initialize git crypt, generating a new key | |
| rm .git/git-crypt/keys/default | |
| git crypt init | |
| # Make the key available to the current users |
| <?xml version="1.0" encoding="utf-8"?> | |
| <fileSnapshot xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
| <files> | |
| <file path="C:\ProgramData\chocolatey\lib\nexus-repository\nexus-3.29.2-02-win64.zip.txt" checksum="50C5E7FC48146E0EBB4799972343F4D5" /> | |
| <file path="C:\ProgramData\chocolatey\lib\nexus-repository\nexus-repository.nupkg" checksum="F7B036955E1911EF091DF2198A39E897" /> | |
| <file path="C:\ProgramData\chocolatey\lib\nexus-repository\nexus-repository.nuspec" checksum="6631CE159F2BBF51ADB9BAB59CCE29F2" /> | |
| <file path="C:\ProgramData\chocolatey\lib\nexus-repository\tools\chocolateyinstall.ps1" checksum="F58BD0ABCA7738E9E842452FC3A63323" /> | |
| <file path="C:\ProgramData\chocolatey\lib\nexus-repository\tools\chocolateyuninstall.ps1" checksum="42F564431BE78C3B889DC5B3614CE368" /> | |
| <file path="C:\ProgramData\chocolatey\lib\nexus-repository\tools\supportingfunctions.ps1" checksum="42087AD9DE59D32C78184A474B4AD66A" /> | |
| </files> |
| #!/bin/python3 | |
| import json | |
| import lzma | |
| import redis | |
| import glob | |
| from datetime import timedelta | |
| r = redis.Redis() | |
| ids = [] |
| SELECT DISTINCT address FROM ( | |
| ( | |
| # Query EOA that interacted with a specific list of contracts | |
| SELECT tx.from_address as address | |
| # Table including all Ethereum transactions | |
| FROM bigquery-public-data.crypto_ethereum.transactions AS tx | |
| # Date just before PRAI deployement | |
| WHERE tx.block_timestamp > TIMESTAMP("2020-10-24 00:00:00+00") | |
| # PRAI settlement block | |
| AND tx.block_number <= 11724918 |