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
| window.onload = function() { | |
| document.getElementById('find').onclick = findRequest; | |
| }; | |
| function findRequest() { | |
| var from = document.getElementById('from').value; | |
| var to = document.getElementById('to').value; | |
| var ajax = new XMLHttpRequest(); | |
| ajax.onload = injectDirections; |
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
| <?php | |
| $year = $_REQUEST["year"]; | |
| $rating = $_REQUEST["rating"]; | |
| $pdo = require 'connectdb.php'; | |
| $query = " | |
| SELECT DISTINCT d.id, CONCAT(d.last_name, ', ', d.first_name) AS name | |
| FROM directors d |
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
| <?php | |
| function isPalindrome($string) { | |
| if (strlen($string) <= 1) { | |
| return true; | |
| } elseif (strtolower(substr($string, 0, 1)) == strtolower(substr($string, -1))) { | |
| isPalindrome(substr($string, 1, -1)); | |
| } else { | |
| return false; | |
| } | |
| } |
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
| <?php | |
| function para($msg) { echo "<p>$msg</p>"; } | |
| function error($msg) { | |
| $valid = false; | |
| para($msg); | |
| } | |
| $name = trim($_REQUEST["name"]); |
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
| __________________________________________________________________________ | |
| // __ ____ __ \\ | |
| | ________________________ \ /\ / **>><<***>><<***>><<***>><<***>> | | |
| | / \ \/MM\/ Official Association | | |
| | | .adAMMMAbn. | /\WW/\ HUNTER'S LICENSE | | |
| | | dMMMMMMMMMMA. | _/ _\/_ \_ <<***>><<***>><<***>><<***>><<** | | |
| | | 'HMMMMMMMMMMMl. | | | |
| | | db\MMM^" "^j | NAME(-S): Matthew Roy AGE: 20 | | |
| | | MMY : | SURNAME: Barber GENDER: Male | | |
| | | ,M|`,----. ,---. | NICKNAME: Honno OCCUPATION: Student | |
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
| using System.Collections; | |
| using System.Collections.Generic; | |
| using UnityEngine; | |
| using UnityEngine.UI; | |
| public class DiceManager: MonoBehaviour { | |
| /* component reference */ | |
| private Image image; | |
| private TravelLightsDisplay hud; |
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
| ## Music in question https://www.flashygoodness.com/music/gallery/ | |
| import requests | |
| import os | |
| import xml.etree.ElementTree as ET | |
| import urllib | |
| import re | |
| folder_name = r'flashygoodness' |
NewerOlder