Skip to content

Instantly share code, notes, and snippets.

View gist:ad098af6d8d1ca7462af3cbdf78b384f
{
"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,
@beanmoss
beanmoss / RestControllerTrait.php
Created April 18, 2015 12:12
Playing with Laravel Lumen: simple RESTful trait.
View RestControllerTrait.php
<?php namespace App\Http\Controllers;
use Illuminate\Http\Request;
trait RestControllerTrait
{
public function index()
{
$m = self::MODEL;
return $this->listResponse($m::all());
@beanmoss
beanmoss / dashboard.twig.php
Created April 18, 2015 04:45
LARAVEL: Displaying different module/package dashboard widgets using view composers.
View dashboard.twig.php
<!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;
@beanmoss
beanmoss / nginx.conf
Created August 30, 2018 11:41 — forked from thoop/nginx.conf
Official prerender.io nginx.conf for nginx
View nginx.conf
# 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;
@beanmoss
beanmoss / README-Template.md
Created August 7, 2017 10:47 — forked from PurpleBooth/README-Template.md
A template to make good README.md
View README-Template.md

Project Title

One Paragraph of project description goes here

Getting Started

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.

Prerequisites

@beanmoss
beanmoss / IDONTFUCKINGCARE bookmarklet
Last active July 17, 2017 13:53
pangchurva ng aldub, pastillas, otwol sa facebook!
View IDONTFUCKINGCARE bookmarklet
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)()
@beanmoss
beanmoss / fb-sytax-highlight.js
Created July 29, 2016 09:02
hightlight fb script posts
View fb-sytax-highlight.js
MutationObserver = window.MutationObserver || window.WebKitMutationObserver;
syntaxHighlight();
var observer = new MutationObserver(function (mutations, observer) {
syntaxHighlight();
});
observer.observe(document, {
subtree: true,
attributes: true
});
function syntaxHighlight() {
@beanmoss
beanmoss / AhmedMehar.php
Created June 3, 2016 13:43
Ahmed Mehar
View AhmedMehar.php
<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)
@beanmoss
beanmoss / email.template.html
Created June 1, 2016 10:14
email template replace vars meteor
View email.template.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
%val1% %val2%
</body>
</html>
@beanmoss
beanmoss / nginxproxy.md
Created April 18, 2016 17:48 — forked from soheilhy/nginxproxy.md
How to proxy web apps using nginx?
View nginxproxy.md

Virtual Hosts on nginx (CSC309)

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