retailAdId: 4c5099c5-9dad-47cb-9816-ae4adf77de42
Country: PL | Currency: PLN | VAT Type: 1053 | VAT Rate: 0.23
Retail Ready Date: 2025-07-07
EUR/PLN Rate: 4.2248 (derived from stored GP values)
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
| package com.conduct.interview.auto; | |
| import io.micrometer.common.util.StringUtils; | |
| import org.jetbrains.annotations.NotNull; | |
| import java.util.Random; | |
| import java.util.UUID; | |
| public class SecretService { | |
| private final SecretStorageDao secretStorageDao; |
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
| from github import Github | |
| import re | |
| import time | |
| TOKEN = "ghp_..." | |
| dependencies = [ | |
| ["vehicle-api.version" ,"1.0.2-8177-0927ca8" ] | |
| ] |
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
| #!/usr/bin/env ruby | |
| # modified from https://gist.github.com/pbock/3ab260f3862c350e6b5f # | |
| require 'watir-webdriver' | |
| class BurgerBot | |
| def initialize | |
| @attempt_count = 0 |
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
| # Configuration file for runtime kernel parameters. | |
| # See sysctl.conf(5) for more information. | |
| # See also http://www.nateware.com/linux-network-tuning-for-2013.html for | |
| # an explanation about some of these parameters, and instructions for | |
| # a few other tweaks outside this file. | |
| # See evil packets in your logs. | |
| net.ipv4.conf.all.log_martians = 1 |
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
| source ~/.vim_runtime/vundle_plugins | |
| set runtimepath+=~/.vim_runtime | |
| set number | |
| set relativenumber | |
| source ~/.vim_runtime/vimrcs/basic.vim | |
| source ~/.vim_runtime/vimrcs/filetypes.vim |
lsof -i :8080 | awk '{l=$2} END {print l}' | xargs kill
comm -23 <(seq "$FROM" "$TO") <(ss -tan | awk '{print $4}' | cut -d':' -f2 | grep "[0-9]\{1,5\}" | sort | uniq) | shuf | head -n "$HOWMANY"
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
| package com.example.kpcat; | |
| import com.ulisesbocchio.jasyptspringboot.annotation.EnableEncryptableProperties; | |
| import org.jasypt.encryption.StringEncryptor; | |
| import org.jasypt.encryption.pbe.PooledPBEStringEncryptor; | |
| import org.jasypt.encryption.pbe.config.SimpleStringPBEConfig; | |
| import org.springframework.boot.CommandLineRunner; | |
| import org.springframework.boot.SpringApplication; | |
| import org.springframework.boot.autoconfigure.SpringBootApplication; | |
| import org.springframework.context.annotation.Bean; |
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
| public class UniqueRandomNumberGeneratorImplV2 implements UniqueRandomNumberGenerator { | |
| private SecureRandom random; | |
| @Autowired | |
| public UniqueRandomNumberGeneratorImplV2(SecureRandom random) { | |
| this.random = random; | |
| } | |
| @Override |
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
| import requests | |
| services = ( | |
| ("http://httpbin.org/get", 'POST'), | |
| ("http://httpbin.org/get", 'POST'), | |
| ("http://httpbin.org/get", 'POST'), | |
| ("http://httpbin.org/get", 'POST'), | |
| ("http://httpbin.org/get", 'POST'), | |
| ("http://httpbin.org/get", 'POST') | |
| ) |
NewerOlder