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.
{ | |
"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, |
# 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; |
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
var Dropbox = require("dropbox"); | |
var fs = require("fs"); | |
var config = require('../config'); | |
var client = new Dropbox.Client(config.dropbox); | |
getFile: function (file, res) { | |
client.readFile(file,{ buffer: true }, function (error, result) { | |
if (error) { | |
console.log(error); |
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)() |
#Introduction If you're a php developer on ubuntu, there comes the time where you have to install/reinstall your system. I did it already a few times and i decided to write down the steps for a typical web developer stack with php. This is for a developer machine and not for a live environment!
I hope it helps you too!
fyi @mheiniger and me started with an installer here: https://github.com/mheiniger/webdev-setup