<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
| https://write.corbpie.com/installing-windows-10-pro-iso-with-virtio-on-vultr/ | |
| http://172.245.211.114/Win10Pro.iso |
| <?php | |
| if (!function_exists('sanitize')) { | |
| function sanitize(string $value): string | |
| { | |
| $safeValue = filter_var($value, FILTER_SANITIZE_STRING); | |
| if(!$safeValue) { | |
| return ''; | |
| } |
| { | |
| "api-cors-header": "", | |
| "authorization-plugins": [], | |
| "bip": "", | |
| "bridge": "", | |
| "cgroup-parent": "", | |
| "cluster-store": "", | |
| "cluster-store-opts": {}, | |
| "cluster-advertise": "", | |
| "debug": true, |
| #!/bin/bash | |
| # Your system should be 64 bits and check if the last version at https://github.com/danielchatfield/trello-desktop/ is 0.19 | |
| # If the current version is not 0.19 change the file name below accordingly | |
| wget https://github.com/Racle/trello-desktop/releases/download/v0.2.0/Trello-linux-0.2.0.zip -O trello.zip | |
| sudo mkdir /opt/trello | |
| sudo unzip trello.zip -d /opt/trello/ | |
| sudo ln -sf /opt/trello/Trello /usr/bin/trello | |
| echo -e '[Desktop Entry]\n Version=1.0\n Name=Trello Desktop\n Exec=/usr/bin/trello\n Icon=/opt/trello/resources/app/static/Icon.png\n Type=Application\n Categories=Application' | sudo tee /usr/share/applications/trello.desktop |
| <?php | |
| function get_youtube_channel_ID($url){ | |
| $html = file_get_contents($url); | |
| preg_match("'<meta itemprop=\"channelId\" content=\"(.*?)\"'si", $html, $match); | |
| if($match && $match[1]); | |
| return $match[1]; | |
| } |
| 2 - Autos & Vehicles | |
| 1 - Film & Animation | |
| 10 - Music | |
| 15 - Pets & Animals | |
| 17 - Sports | |
| 18 - Short Movies | |
| 19 - Travel & Events | |
| 20 - Gaming | |
| 21 - Videoblogging | |
| 22 - People & Blogs |
| <?php | |
| // Here is a sample of the URLs this regex matches: (there can be more content after the given URL that will be ignored) | |
| // http://youtu.be/dQw4w9WgXcQ | |
| // http://www.youtube.com/embed/dQw4w9WgXcQ | |
| // http://www.youtube.com/watch?v=dQw4w9WgXcQ | |
| // http://www.youtube.com/?v=dQw4w9WgXcQ | |
| // http://www.youtube.com/v/dQw4w9WgXcQ | |
| // http://www.youtube.com/e/dQw4w9WgXcQ | |
| // http://www.youtube.com/user/username#p/u/11/dQw4w9WgXcQ |
| <?php | |
| use Symfony\Component\PropertyAccess\PropertyAccess; | |
| use Symfony\Component\Validator\Constraints\All; | |
| use Symfony\Component\Validator\Constraints\Choice; | |
| use Symfony\Component\Validator\Constraints\Collection; | |
| use Symfony\Component\Validator\Constraints\Length; | |
| use Symfony\Component\Validator\Constraints\NotBlank; | |
| use Symfony\Component\Validator\Constraints\Optional; | |
| use Symfony\Component\Validator\Constraints\Required; |
| <?php | |
| namespace BADDI\SMP; | |
| /** | |
| * cURLHelper class | |
| */ | |
| class cURLHelper | |
| { | |
| /** Default cURL options */ |