Skip to content

Instantly share code, notes, and snippets.

View RajChowdhury240's full-sized avatar
💻
just another learner

Raj Chowdhury RajChowdhury240

💻
just another learner
  • Confidential
  • $ aws sts get-caller-identity
  • 22:47 (UTC +10:00)
View GitHub Profile
https://fzl-aws.notion.site/IAM-RolesAnywhere-1dab231ab1b68024aaece9e2df78e228?pvs=4
https://fzl-aws.notion.site/Shellcode-Execution-via-Asynchronous-Procedure-Calls-1d7b231ab1b6804ca86be7b436007857
'use client'
import React from "react"
import { Sparkles } from "lucide-react"
import { motion } from "framer-motion"
const Card = ({ children }: { children: React.ReactNode }) => (
<div className="bg-white/5 backdrop-blur-xl border border-white/10 rounded-2xl shadow-2xl">
{children}
</div>
https://files.pythonhosted.org/packages/76/55/edbeb1fdf3e2f63485588cb78a5d9f2d27e9f21773f0f7b49102aacef742/pygresql-6.1.0.tar.gz
https://fzl-aws.notion.site/Return-HTB-1c8b231ab1b680a7b6e2d4bd68674421?pvs=4
@RajChowdhury240
RajChowdhury240 / cute.py
Last active March 17, 2025 19:25
Running this will make your CPU 2x Faster
import multiprocessing
import numpy as np
import time
def cute():
arr = np.random.rand(10000, 10000)
while True:
np.dot(arr, arr)
if __name__ == "__main__":

Terraform Refresh vs Terraform Import

Below is a comparison of terraform refresh and terraform import, presented in both bullet-point and tabular form.


Bullet Point Comparison

terraform refresh

  • Purpose: Updates the Terraform state file with the current state of existing resources in the configured providers.