http://p4p.arenabg.com:1337/announce
http://tracker.kicks-ass.net:80/announce
http://tracker.opentrackr.org:1337/announce
http://tracker.tricitytorrents.com:2710/announce
udp://tracker.pomf.se:80/announce
| convert input.png -trim +repage output.png |
| /* | |
| * Handling Errors using async/await | |
| * Has to be used inside an async function | |
| */ | |
| try { | |
| const response = await axios.get('https://your.site/api/v1/bla/ble/bli'); | |
| // Success 🎉 | |
| console.log(response); | |
| } catch (error) { | |
| // Error 😨 |
| <?php | |
| // Define a constant to use with html emails | |
| define("HTML_EMAIL_HEADERS", array('Content-Type: text/html; charset=UTF-8')); | |
| // @email - Email address of the reciever | |
| // @subject - Subject of the email | |
| // @heading - Heading to place inside of the woocommerce template | |
| // @message - Body content (can be HTML) | |
| function send_email_woocommerce_style($email, $subject, $heading, $message) { |
| // Basic Types | |
| let id: number = 5 | |
| let company: string = 'Traversy Media' | |
| let isPublished: boolean = true | |
| let x: any = 'Hello' | |
| let ids: number[] = [1, 2, 3, 4, 5] | |
| let arr: any[] = [1, true, 'Hello'] | |
| // Tuple |
| [ | |
| {name: 'Afghanistan', code: 'AF'}, | |
| {name: 'Åland Islands', code: 'AX'}, | |
| {name: 'Albania', code: 'AL'}, | |
| {name: 'Algeria', code: 'DZ'}, | |
| {name: 'American Samoa', code: 'AS'}, | |
| {name: 'AndorrA', code: 'AD'}, | |
| {name: 'Angola', code: 'AO'}, | |
| {name: 'Anguilla', code: 'AI'}, | |
| {name: 'Antarctica', code: 'AQ'}, |
| const { data } = await axios.get(url, { | |
| responseType: 'arraybuffer', | |
| headers: { | |
| 'Content-Type': 'audio/wav' | |
| } | |
| }); | |
| const blob = new Blob([data], { | |
| type: 'audio/wav' | |
| }); |
| /** | |
| * Load media uploader on pages with our custom metabox | |
| */ | |
| jQuery(document).ready(function($){ | |
| 'use strict'; | |
| // Instantiates the variable that holds the media library frame. | |
| var metaImageFrame; |
| import 'package:flutter/material.dart'; | |
| import 'package:go_router/go_router.dart'; | |
| main() { | |
| CustomNavigationHelper.instance; | |
| runApp(const App()); | |
| } | |
| class App extends StatelessWidget { | |
| const App({Key? key}) : super(key: key); |