One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Laravel PHP Framework</title> | |
<style> | |
@import url(//fonts.googleapis.com/css?family=Lato:700); | |
body { | |
margin:0; |
{ | |
"id": :person_id, | |
"last_name": ":lastname", | |
"first_name": ":firstname", | |
"preferred_name": null, | |
"gender": null, | |
"birth_country": "value 1", | |
"aborig_torres_cd": null, | |
"pasifika_pacific_islander": null, | |
"residency": null, |
<?php namespace App\Http\Controllers; | |
use Illuminate\Http\Request; | |
trait RestControllerTrait | |
{ | |
public function index() | |
{ | |
$m = self::MODEL; | |
return $this->listResponse($m::all()); |
# Change YOUR_TOKEN to your prerender token and uncomment that line if you want to cache urls and view crawl stats | |
# Change example.com (server_name) to your website url | |
# Change /path/to/your/root to the correct value | |
server { | |
listen 80; | |
server_name example.com; | |
root /path/to/your/root; | |
index index.html; |
javascript:(function()%7BMutationObserver%20%3D%20window.MutationObserver%20%7C%7C%20window.WebKitMutationObserver%3Bfilter%20%3D%20prompt(%22Dont%20want%20to%20see%20these%3A%22%2C%20%22aldub%7Cpastillas%7Cotwol%22)%3BiDontFuckingCare()%3Bvar%20observer%20%3D%20new%20MutationObserver(function%20(mutations%2C%20observer)%20%7BiDontFuckingCare()%3B%7D)%3Bobserver.observe(document%2C%20%7Bsubtree%3A%20true%2Cattributes%3A%20true%7D)%3Bfunction%20iDontFuckingCare()%20%7Bif%20(filter%20!%3D%20null)%20%7Bx%20%3D%20document.getElementsByClassName('fbUserContent')%3BregexFilter%20%3D%20new%20RegExp(filter%2C%20%22gi%22)%3Bfor%20(var%20i%20%3D%200%3B%20i%20%3C%20x.length%3B%20i%2B%2B)%20%7Bif%20(regexFilter.test(x%5Bi%5D.innerHTML))x%5Bi%5D.remove()%3B%7D%7D%7D%7D)() |
MutationObserver = window.MutationObserver || window.WebKitMutationObserver; | |
syntaxHighlight(); | |
var observer = new MutationObserver(function (mutations, observer) { | |
syntaxHighlight(); | |
}); | |
observer.observe(document, { | |
subtree: true, | |
attributes: true | |
}); | |
function syntaxHighlight() { |
<table border="1"> | |
<?php | |
$aVeryLongWord = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad'; | |
$chunks18 = str_split($aVeryLongWord,18); | |
foreach($chunks18 as $chunk) | |
{ | |
echo "<tr>"; | |
$oneChar = str_split($chunk,1); | |
foreach($oneChar as $char) |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Title</title> | |
</head> | |
<body> | |
%val1% %val2% | |
</body> | |
</html> |
When hosting our web applications, we often have one public IP
address (i.e., an IP address visible to the outside world)
using which we want to host multiple web apps. For example, one
may wants to host three different web apps respectively for
example1.com
, example2.com
, and example1.com/images
on
the same machine using a single IP address.
How can we do that? Well, the good news is Internet browsers