Skip to content

Instantly share code, notes, and snippets.

View imtiazShakil's full-sized avatar
🤍
Alhamdulillah always

Imtiaz Shakil Siddique imtiazShakil

🤍
Alhamdulillah always
View GitHub Profile
@imtiazShakil
imtiazShakil / docker_commands.md
Last active May 1, 2025 06:53
Docker Commands

Docker Basics

# get id of active containers
docker ps
docker ps -a # get all containers

docker stop <the-container-id>
docker rm <the-container-id>

# stop and remove
@imtiazShakil
imtiazShakil / linux_how.md
Last active May 1, 2025 06:53
Shell cheat sheet
@ericwastaken
ericwastaken / s3-setup.md
Last active September 24, 2024 13:18
How to create an S3 Bucket with Programmatic Access

How to create an S3 Bucket with Programmatic Access

Summary

This post explains how to create an AWS S3 Bucket and an IAM User with programmatic access to the bucket.

You will need access to the AWS S3 console for your account and have permissions to create new buckets and create new IAM users.

This is based on:

@giovanni-d
giovanni-d / allinonemigration.md
Last active April 30, 2025 15:17
All-in-One WP Migration - Restore From Server (without PRO version) - Restore

All-in-One WP Migration Restore From Server (without pro version)

If you don't want to pay for the PRO version of this plugin, and you want to use the "Restore from Server" functionally that was present in the version 6.77, open your browser’s dev tools and run the code below in the console:

Last confirmed working: March 2025 on version 7.91

Thanks @xxxdepy, and @tanveeratlogicx for confirming this still works in version 7.91!

@dinhchi27
dinhchi27 / Key Sublime Text 3.2.1 Build 3207 - Sublime Text 3 License Key
Last active April 23, 2025 21:24
Key Sublime Text 3.2.1 Build 3207 - Sublime Text 3 License Key
Key Sublime Text 3.2.1 Build 3207
----- BEGIN LICENSE -----
Member J2TeaM
Single User License
EA7E-1011316
D7DA350E 1B8B0760 972F8B60 F3E64036
B9B4E234 F356F38F 0AD1E3B7 0E9C5FAD
FA0A2ABE 25F65BD8 D51458E5 3923CE80
87428428 79079A01 AA69F319 A1AF29A4
A684C2DC 0B1583D4 19CBD290 217618CD
<?php
/**
Plugin Name: Caldera Forms Add-on For Remote API
Description: Example Caldera Forms processor to send data to a remote API
*/
/**
* Register processor
*/
add_filter( 'caldera_forms_get_form_processors', function( $processors ) {
@subfuzion
subfuzion / curl.md
Last active May 8, 2025 13:29
curl POST examples

Common Options

-#, --progress-bar Make curl display a simple progress bar instead of the more informational standard meter.

-b, --cookie <name=data> Supply cookie with request. If no =, then specifies the cookie file to use (see -c).

-c, --cookie-jar <file name> File to save response cookies to.