Skip to content

Instantly share code, notes, and snippets.

View dansup's full-sized avatar
😎
Working on @pixelfed

daniel dansup

😎
Working on @pixelfed
View GitHub Profile
@dansup
dansup / homebrew.mxcl.php.plist
Created September 21, 2023 00:26 — forked from askdkc/homebrew.mxcl.php.plist
fork safe php
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>KeepAlive</key>
<true/>
<key>Label</key>
<string>homebrew.mxcl.php</string>
<key>LimitLoadToSessionType</key>
<array>
@dansup
dansup / pixelfed-instances-mod.json
Created March 25, 2023 07:42
Example Pixelfed Instances Backup
{
"version": 1,
"auto_cw": [],
"unlisted": [],
"banned": [
"instagram.com",
"myspace.com",
"bebo.com",
"photobucket.com",
"friendster.com",
@dansup
dansup / stories.md
Last active October 31, 2019 05:09
@dansup
dansup / .env
Last active August 31, 2019 01:13
PixelFed Alpha Installation
APP_NAME=PixelFed Test
APP_ENV=local
APP_KEY=
APP_DEBUG=true
APP_URL=http://localhost
ADMIN_DOMAIN="localhost"
APP_DOMAIN="localhost"
LOG_CHANNEL=stack
@dansup
dansup / deploy.sh
Last active July 29, 2019 20:08
Pixelfed development deployment script
cd /home/forge/pixelfed.social
git pull origin dev
composer install --no-ansi --no-interaction --no-progress --no-scripts --optimize-autoloader
echo "" | sudo -S service php7.2-fpm reload
php artisan config:cache
php artisan migrate --force
php artisan horizon:purge
php artisan horizon:terminate
@dansup
dansup / gist:d4c563c5577d034bf024e6c79d7d0b35
Created May 3, 2018 00:27 — forked from isimmons/gist:8202227
Truncate tables with foreign key constraints in a Laravel seed file.

For the scenario, imagine posts has a foreign key user_id referencing users.id

public function up()
{
	Schema::create('posts', function(Blueprint $table) {
		$table->increments('id');
		$table->string('title');
		$table->text('body');
"aoColumnDefs": [
{
"aTargets": [0], // row id
"mRender": function ( data, type, full ) {
return '<a href="/path/to/route/' + data + '">' + data.substring(0,13) + '...</a>';
}
}
],
<?php
namespace Laracasts\Generators\Commands;
use Illuminate\Console\Command;
use Illuminate\Container\Container;
use Illuminate\Filesystem\Filesystem;
use Laracasts\Generators\Migrations\NameParser;
use Laracasts\Generators\Migrations\SchemaParser;
use Laracasts\Generators\Migrations\SyntaxBuilder;
@dansup
dansup / auth-routes.php
Last active January 5, 2017 01:41
Auth routes for Laravel 5.3.28
<?php
Route::get('login', 'Auth\LoginController@showLoginForm')->name('login');
Route::post('login', 'Auth\LoginController@login');
Route::post('logout', 'Auth\LoginController@logout')->name('logout');
// Registration Routes...
Route::get('register', 'Auth\RegisterController@showRegistrationForm')->name('register');
Route::post('register', 'Auth\RegisterController@register');
// Password Reset Routes...

Keybase proof

I hereby claim:

  • I am dansup on github.
  • I am dansup (https://keybase.io/dansup) on keybase.
  • I have a public key whose fingerprint is 2B68 6965 1CA7 FBB6 348E FDEF 989F 5F36 F586 CC73

To claim this, I am signing this object: