Skip to content

Instantly share code, notes, and snippets.

View jaderdev's full-sized avatar
🛼
Try a new thing

Jaderson Nascimento jaderdev

🛼
Try a new thing
View GitHub Profile
@jaderdev
jaderdev / curl.md
Created February 17, 2021 19:34 — forked from subfuzion/curl.md
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.

@jaderdev
jaderdev / mysql-docker.sh
Created March 7, 2024 19:36 — forked from spalladino/mysql-docker.sh
Backup and restore a mysql database from a running Docker mysql container
# Backup
docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql
# Restore
cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE
@jaderdev
jaderdev / cdn.md
Created June 27, 2024 04:33 — forked from jcubic/cdn.md
How to setup a literally free CDN
package com.android.filechooser.example;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
import com.iusenko.filechooser.FileChooserActivity;
public class MainActivity extends Activity {
@jaderdev
jaderdev / AdbCommands
Created December 6, 2024 19:41 — forked from Pulimet/AdbCommands
Adb useful commands list
Hi All!
I've recently launched a tool that wraps many of the commands here with a user interface. This desktop application is currently available for macOS. There's a roadmap outlining planned features for the near future.
Feel free to request any features you'd like to see, and I'll prioritize them accordingly.
One of the most important aspects of this application is that every command executed behind the scenes is displayed in a special log section. This allows you to see exactly what’s happening and learn from it.
Here's the link to the repository: https://github.com/Pulimet/ADBugger
App Description:
ADBugger is a desktop tool designed for debugging and QA of Android devices and emulators. It simplifies testing, debugging, and performance analysis by offering device management, automated testing, log analysis, and remote control capabilities. This ensures smooth app performance across various setups.