Skip to content

Instantly share code, notes, and snippets.

{
"timestamp": "2025-11-26T21:42:32.750Z",
"denylistedRecipient": {
"hex": "0x00000000000000000000000000000000000000000000000000000000deadbeef",
"decimal": "3735928559"
},
"contracts": {
"stablecoin": "0x26a1971b64ed77c82ec85fc83bc3d1a1ea867e776e61be6a8872c321ecd87b6",
"tokenMessengerMinter": "0x1a8aef65113f8a4c46ac2793e3b02e9d32cc43a79b171df50d4fcbd684ce636",
"messageTransmitter": "0x4356cdc4411523c5cc98a2e09c723ddee4e051b615d3cf12bc152b49c20e45f"
Starting Starknet node using runtime: docker
>> Launching container via docker compose -f /Users/aakashjapi/projects/starknet-cctp/repros/denylist_poc/devnet/docker-compose.yml up
WARN[0000] /Users/aakashjapi/projects/starknet-cctp/repros/denylist_poc/devnet/docker-compose.yml: the attribute `version` is obsolete, it will be ignored, please remove it to avoid potential confusion
[+] Building 0.6s (17/17) FINISHED
... 0.0s
=> resolving provenance for metadata file 0.0s
[+] Running 3/3
✔ devnet-starknet-devnet Built
name description
vibecoder-review
Practical OWASP-focused security review for fast-moving codebases built with AI assistance - catches common patterns where speed trumps security (exposed secrets, auth bypasses, missing access controls, injection vulnerabilities)

Vibecoder Security Review

Overview

Target audience: Fast-moving codebases built by developers using AI assistance, rapid prototyping tools, and modern frameworks. These projects prioritize speed and iteration, often skipping security fundamentals.

@logicx24
logicx24 / BlockingQueue.java
Created April 8, 2015 18:28
Natero Code Questions
import java.util.ArrayList;
class BlockingQueue {
private ArrayList<Character> queue;
public BlockingQueue() {
queue = new ArrayList<Character>();
}
public synchronized String take() {
from sys import argv
import os
def inputFunc():
if len(argv) >= 2:
if os.path.isfile(argv[1]):
text = open(argv[1]).read()
else:
print('not a file')
else: