Skip to content

Instantly share code, notes, and snippets.

View Erik3010's full-sized avatar
🎯
Focusing

Erik Erik3010

🎯
Focusing
View GitHub Profile
@Erik3010
Erik3010 / round-robin.php
Last active June 19, 2023 05:45
Round Robin
<?php
public function store(Request $request, Competition $competition)
{
if ($request->rollback) {
$competition->matches()->delete();
return redirect()->back()->with('message', 'Rollback success');
}
foreach ($competition->groups as $group) {
@Erik3010
Erik3010 / deploy.sh
Last active October 9, 2021 15:18
gh-pages-deploy
#!/usr/bin/env sh
# abort on errors
set -e
# build
npm run build
# navigate into the build output directory
cd dist