Skip to content

Instantly share code, notes, and snippets.

@Radon8472
Radon8472 / markdown-details-collapsible.md
Created May 3, 2023 12:05 — forked from pierrejoubert73/markdown-details-collapsible.md
How to add a collapsible section in markdown.

How to

<details>
  <summary>Click me</summary>
  
  ### Heading
  1. Foo
  2. Bar
     * Baz
 * Qux
@Radon8472
Radon8472 / Mailer.php
Created November 15, 2019 11:52 — forked from DavidRockin/Mailer.php
PHPMailer save emails to IMAP folder
<?php
class Mailer extends PHPMailer {
/**
* Save email to a folder (via IMAP)
*
* This function will open an IMAP stream using the email
* credentials previously specified, and will save the email
* to a specified folder. Parameter is the folder name (ie, Sent)
@Radon8472
Radon8472 / AdbCommands
Created October 9, 2019 18:44 — forked from Pulimet/AdbCommands
Adb useful commands list
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader
== Shell