TODO: Write a project description
TODO: Describe the installation process
| javascript:(function({ | |
| var INSTAPAPER=true,w=window,d=document,pageSelectedTxt=w.getSelection?w.getSelection():(d.getSelection)?d.getSelection():(d.selection?d.selection.createRange().text:0),pageTitle=d.title,pageUri=w.location.href,tmplt=""; | |
| tmplt="From ["+pageTitle+"]("+pageUri+"):\n\n"; | |
| if(pageSelectedTxt!="") { | |
| pageSelectedTxt=">%20"+pageSelectedTxt; | |
| pageSelectedTxt=pageSelectedTxt.replace(/(\r\n|\n+|\r)/gm,"\n"); | |
| pageSelectedTxt=pageSelectedTxt.replace(/\n/g,"\n>%20\n>%20"); | |
| w.location.href="nvalt://make/?txt="+encodeURIComponent(tmplt+pageSelectedTxt)+"&title="+encodeURIComponent(pageTitle) | |
| } | |
| else { |
| \ SORRY / | |
| \ / | |
| \ This page does / | |
| ] not exist yet. [ ,'| | |
| ] [ / | | |
| ]___ ___[ ,' | | |
| ] ]\ /[ [ |: | | |
| ] ] \ / [ [ |: | | |
| ] ] ] [ [ [ |: | |
| [{"User_Name":"John Doe","score":"10","team":"1"},{"User_Name":"Jane Smith","score":"15","team":"2"},{"User_Name":"Chuck Berry","score":"12","team":"2"}] |
| {"users":[ | |
| { | |
| "firstName":"Horst", | |
| "lastName":"Bierwurst", | |
| "joined": { | |
| "month":"January", | |
| "day":12, | |
| "year":2016 | |
| } | |
| }, |
| <!doctype html> | |
| <!-- http://taylor.fausak.me/2015/01/27/ios-8-web-apps/ --> | |
| <html> | |
| <head> | |
| <title>iOS 8 web app</title> | |
| <!-- CONFIGURATION --> |
| <?php | |
| if(date("G") < 12) {$a="Guten Morgen";} | |
| if(date("G") <= 18 && date("G") >= 12) {$a="Guten Tag";} | |
| if(date("G") >= 19) {$a="Guten Abend";} | |
| echo $a; | |
| ?> |
| <script type="text/javascript"><!-- | |
| var imlocation = "images/"; | |
| function ImageArray (n) { | |
| this.length = n; | |
| for (var i =1; i <= n; i++) { | |
| this[i] = ' ' | |
| } | |
| } | |
| image = new ImageArray(7) | |
| image[0] = 'Sonntag.gif' |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta http-equiv="refresh" content="0;url=pages/index.html"> | |
| <title>Seitentitel</title> | |
| <script language="javascript"> | |
| window.location.href = "pages/index.html" | |
| </script> | |
| </head> | |
| <body> |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script> | |
| function startTime() { | |
| var today = new Date(); | |
| var h = today.getHours(); | |
| var m = today.getMinutes(); | |
| var s = today.getSeconds(); | |
| m = checkTime(m); |