Skip to content

Instantly share code, notes, and snippets.

View philipprochazka's full-sized avatar

Philip Procházka philipprochazka

View GitHub Profile

‎‎​

@philipprochazka
philipprochazka / curl_cheatsheet.md
Created December 19, 2024 23:46 — forked from mpoerwito/curl_cheatsheet.md
curl cheatsheet from HTB

cURL

Command Description
 curl -h cURL help menu
 curl inlanefreight.com Basic GET request
 curl -s -O inlanefreight.com/index.html Download file
 curl -k https://inlanefreight.com Skip HTTPS (SSL) certificate validation
 curl inlanefreight.com -v Print full HTTP request/response details
 curl -I https://www.inlanefreight.com Send HEAD request (only prints response headers)
@philipprochazka
philipprochazka / AdbCommands
Created May 15, 2024 20:41 — forked from Pulimet/AdbCommands
Adb useful commands list
adb help // List all comands
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader
############################################################################
# This file was created with O&O ShutUp10 and can be imported onto another computer.
#
# Download the application at https://www.oo-software.com/shutup10
# You can then import the file from within the program.
#
# Alternatively you can import it automatically over a command line. Simply use
# the following parameter:
# ooshutup10.exe <path to file>
#
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://json.schemastore.org/prettierrc.json",
"definitions": {
"optionsDefinition": {
"type": "object",
"properties": {
"arrowParens": {
"description": "Include parentheses around a sole arrow function parameter.",
"default": "always",
@philipprochazka
philipprochazka / .gitignore
Created March 8, 2024 14:13
.gitignore -Global
*.tmp
# Word temporary
~$*.doc*
# Word Auto Backup File
Backup of *.doc*
# Excel temporary
~$*.xls*