This file contains 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 // copy everything after this line | |
Artisan::command('identify-duplicates', function () { | |
$duplicates = []; | |
$shouldFixDuplicates = $this->confirm('Should Duplicate IDs be replaced with fresh IDs?'); | |
$items = collect(\Illuminate\Support\Facades\File::allFiles(__DIR__.'/../content')) | |
->filter(function ($file) { | |
return $file->isFile(); | |
}) |
This file contains 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
{ | |
"[python]": { | |
"editor.rulers": [ | |
79, | |
120 | |
] | |
}, | |
"beautify.language": { |