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
| curl --location 'https://ems.psuad.ac.ae/pdfcreator/lib/html5/annotationHandler.php?did=GettingStarted' \ | |
| --header 'Content-Type: application/x-www-form-urlencoded' \ | |
| --data-urlencode 'save=1' \ | |
| --data-urlencode 'data=<?xml version="1.0" encoding="UTF-8" ?> | |
| <xfdf xmlns="http://ns.adobe.com/xfdf/" xml:space="preserve"> | |
| <fields /> | |
| <annots><text subject="Sticky" page="0" rect="404.493157,788.36853,427.743162,765.118525" name="c2e3774e-1522-b434-8262-d62ea710199f" title="Syed Amer" date="D:20230518112611+5.5'\''30'\''" color="#FFFF00" creationdate="D:20230518112611+5.5'\''30'\''" icon="Comment"><contents-richtext><body xmlns="http://www.w3.org/1999/xhtml" xmlns:xfa="http://www.xfa.org/schema/xfa-data/1.0/" xfa:spec="2.0.2" xfa:APIVersion="Acrobat:10.1.3"><p dir="ltr"><span dir="ltr" style="font-size:10.0pt;text-align:left;color:#000000;font-weight:normal;font-style:normal">test</span></p></body></contents-richtext><popup flags="print,nozoom,norotate" page="0" rect="349.28481,839.16021,469.28484,779.160195" open=" |
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
| <!doctype html> | |
| <html> | |
| <head> | |
| <title>Socket.IO chat</title> | |
| <style> | |
| * { margin: 0; padding: 0; box-sizing: border-box; } | |
| body { font: 13px Helvetica, Arial; } | |
| form { background: #000; padding: 3px; position: fixed; bottom: 0; width: 100%; } | |
| form input { border: 0; padding: 10px; width: 90%; margin-right: .5%; } | |
| form #send_msg { width: 8%; background: rgb(130, 224, 255); border: none; padding: 10px; } |
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 | |
| /** | |
| * ICS.php | |
| * ======= | |
| * Use this class to create an .ics file. | |
| * | |
| * Usage | |
| * ----- | |
| * Basic usage - generate ics file contents (see below for available properties): |
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 | |
| define('CLIENT_ID', 'YOUR_CLIENT_ID'); | |
| define('API_KEY', 'YOUR_API_KEY'); | |
| define('TOKEN_URI', 'https://connect.stripe.com/oauth/token'); | |
| define('AUTHORIZE_URI', 'https://connect.stripe.com/oauth/authorize'); | |
| if (isset($_GET['code'])) { // Redirect w/ code | |
| $code = $_GET['code']; |
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 | |
| /** | |
| * Get Vimeo video id from url | |
| * | |
| * Supported url formats - | |
| * | |
| * https://vimeo.com/11111111 | |
| * http://vimeo.com/11111111 |
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
| <!-- Include the PubNub Library --> | |
| <script src="https://cdn.pubnub.com/pubnub.min.js"></script> | |
| <!-- Instantiate PubNub --> | |
| <script type="text/javascript"> | |
| var PUBNUB_demo = PUBNUB.init({ | |
| publish_key: 'Your Publish Key Here', | |
| subscribe_key: 'Your Subscribe Key Here' | |
| }); |