I hereby claim:
- I am beznosd on github.
- I am beznosd (https://keybase.io/beznosd) on keybase.
- I have a public key ASB2A6i4xxogamqt3KyHrFfR2cKfXPlzeNr6Vwg3AgU9jQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| <?xml version="1.0" encoding="UTF-8"?> | |
| <CORSConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/"> | |
| <CORSRule> | |
| <AllowedOrigin>*</AllowedOrigin> | |
| <AllowedMethod>GET</AllowedMethod> | |
| <MaxAgeSeconds>3000</MaxAgeSeconds> | |
| <AllowedHeader>*</AllowedHeader> | |
| </CORSRule> | |
| </CORSConfiguration> |
Download the following repositories and run yarn install in each:
| function loadProjectFile() { | |
| var platform_ios; | |
| var projectFile; | |
| try { | |
| // try pre-5.0 cordova structure | |
| platform_ios = context.requireCordovaModule('cordova-lib/src/plugman/platforms')['ios']; | |
| projectFile = platform_ios.parseProjectFile(iosPlatformPath()); | |
| } catch (e) { | |
| try { |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Skipping default controls of the browser</title> | |
| </head> | |
| <body> | |
| <a href="#f" id="1">first link</a> | |
| <a href="#s" id="2">second link</a> | |
| <a href="#t" id="3">third link</a> |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Testing ES6 code</title> | |
| <script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script> | |
| </head> | |
| <body> | |
| <script type="text/babel"> | |
| /* |
| function isValidEmail(email) { | |
| var re = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/; | |
| return re.test(email); | |
| } | |
| document.write(isValidEmail('[email protected]')); |