This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var cluster = require('cluster'), | |
| numCPUs = require('os').cpus().length; | |
| if (cluster.isMaster) { | |
| while (numCPUs-- > 0) cluster.fork(); | |
| cluster.on('exit', function(worker, code, signal) { | |
| console.log('worker ' + worker.process.pid + ' died'); | |
| cluster.fork(); | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| include 'pheanstalk/pheanstalk_init.php'; | |
| $ph = new Pheanstalk_Pheanstalk('127.0.0.1'); | |
| $ph->ignore('default')->watch($tube); | |
| while ($job = $ph->reserve(0)) { | |
| $ph->delete($job); | |
| fwrite(STDOUT, $job->getId() . "\r"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $filename = $_SERVER['REQUEST_URI']; | |
| if ($i = strpos($filename, '?')) { | |
| $filename = substr($filename, 0, $i); | |
| } | |
| if (file_exists(__DIR__ . $filename)) { | |
| return false; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| angular.module('App', []).config(['$interpolateProvider', function($interpolateProvider) { | |
| $interpolateProvider.startSymbol('[['); | |
| $interpolateProvider.endSymbol(']]'); | |
| }]); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| echo "Generating an SSL private key to sign your certificate..." | |
| openssl genrsa -des3 -out myssl.key 1024 | |
| echo "Generating a Certificate Signing Request..." | |
| openssl req -new -key myssl.key -out myssl.csr | |
| echo "Removing passphrase from key (for nginx)..." | |
| cp myssl.key myssl.key.org | |
| openssl rsa -in myssl.key.org -out myssl.key |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "io" | |
| "errors" | |
| ) | |
| var ErrBufferIsNotEnough = errors.New("buffer is not enough") | |
| type ByteBuffer struct { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace App\Http\Middleware; | |
| use Closure; | |
| class CorsMiddleware | |
| { | |
| /** | |
| * Handle an incoming request. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { reactive } from '@vue/reactivity' | |
| export function createForm({ | |
| form = {}, | |
| validate, | |
| submit, | |
| keep = false, | |
| }) { | |
| const state = reactive({ | |
| form, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace App\Http\Middleware; | |
| use Closure; | |
| use Illuminate\Http\Request; | |
| class EtagMiddleware | |
| { | |
| public function handle(Request $request, Closure $next) |