What would you need:
- Postgres 9.3, 9.4, 9.5, 9.6 or 10 with cstore_fdw extention (https://github.com/citusdata/cstore_fdw)
- Docker 1.12.6 or higher
- Docker Compose
- Linux machine
Hardware requirements
| <?php | |
| namespace App\Traits; | |
| use Illuminate\Support\Str; | |
| use App\Exceptions\InvalidEnumException; | |
| trait Enums | |
| { | |
| /** |
| <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); | |
| class MY_Input extends CI_Input { | |
| /** | |
| * Variables | |
| * | |
| */ | |
| protected $delete; |
| ((name, context = window, func) => { context[name] = func() }) | |
| ('CpuMeter', this, () => { | |
| const isEmptyObject = object => Object.keys(object).length === 0 | |
| const getProcessorUsage = (usage, oldUsage) => | |
| Math.floor((usage.kernel + usage.user - oldUsage.kernel - oldUsage.user) / (usage.total - oldUsage.total) * 100) | |
| class CpuMeter { | |
| constructor() { | |
| if (!chrome || !chrome.system || !chrome.system.cpu) { | |
| throw new Error(`No access to chrome.system.cpu! |
| <template> | |
| <div> | |
| <div class="tabs"> | |
| <ul> | |
| <li v-for="tab in tabs" :key="tab.id" :class="{ 'is-active': isActivated(tab) }"><a @click="selectTab(tab)">{{ tab.name }}</a></li> | |
| </ul> | |
| </div> | |
| </div> | |
| </template> |
| <?php | |
| /** | |
| * This example uses 'main-category' as a custom taxonomy and values | |
| * from Carbon Fields for sorting https://carbonfields.net | |
| */ | |
| // Add custom column title | |
| add_filter( 'manage_edit-main-category_columns', function( $columns ) { | |
| $column_position = 2; | |
| $before = array_slice( $columns, 0, $column_position, true ); |
What would you need:
Hardware requirements
| ; Wordfence WAF | |
| auto_prepend_file = ‘/srv/www/example.com/current/config/wordfence-waf.php’ | |
| ; END Wordfence WAF |
| // On PhpStorm, when ussing with laravel mix, for Alias path resolving in components you have to: | |
| // - create a webpack.config.js file separately like: | |
| const path = require('path') | |
| const webpack = require('webpack') | |
| module.exports = { | |
| ... | |
| resolve: { | |
| extensions: ['.js', '.json', '.vue'], |
public static function boot() {
parent::boot();
// Trim all string attributes before they are saved
static::saving(function($model){
$attributes = collect($model->getAttributes())->map(function ($attribute) {
if (is_string($attribute)) {
return trim($attribute);
}This guide explains how to setup your openwrt router to interact with Telenet WiFree as a WISP router.
In this case we will connect to WiFree, create a secondary Wifi signal and also have access to the internet on the Lan interface.
With this setup you can have multiple devices connected to the Telenet WiFree Hotspot.
!Important check the Troubleshooting section at the bottom of this page if LAN does not work.
I only use this at a secondary home. I am not in any way affiliated with Telenet.