A list of tutorials on how to upload & get direct mp3 link on some websites.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build My App | |
on: workflow_dispatch | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the code | |
uses: actions/checkout@v2 | |
- name: Make gradlew executable | |
run: chmod +x ./gradlew |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>Test JavaScript Form Validation</title> | |
<link rel="stylesheet" href="FormValidation.css"> | |
<script type="text/javascript" src="FormValidation.js" ></script> | |
</head> | |
<body> | |
<h2>Test JavaScript Form Validation</h2> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require_once DRUPAL_ROOT .'/vendor/dompdf/dompdf/src/Autoloader.php'; | |
Autoloader::register(); | |
use Symfony\Component\HttpFoundation\RedirectResponse; | |
use Symfony\Component\HttpFoundation\JsonResponse; | |
use Drupal\Core\Controller\ControllerBase; | |
use Dompdf\Autoloader; | |
use Dompdf\Dompdf; | |
... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
@page { margin-top: -60px } | |
table { | |
width: 100%; | |
} | |
p { | |
font-family: "Arial"; | |
font-weight: bold; | |
} | |
/*@page { margin: 1.7cm 2cm }*/ |