- https://trello.com/b/iuskDHXt/komanda-board
- https://trello.com/b/whv5gtuj/tpt-pin-planner
- https://trello.com/b/1KRMaYUN/bullet-journal-companion-template-
- https://trello.com/b/KQxSg1jW/gs
- https://trello.com/b/4CyRXDgL/demo-m20170600166-logistic
- https://trello.com/b/fpYBRlzg/demo
- https://trello.com/b/EAnzdYGO/sales-team-resources
- https://trello.com/b/51WsEhtE/feature-requests
- https://trello.com/b/yrJ4Ek5D/new-website
- https://trello.com/b/dPSxk29R/bible-checklist
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
| // ==UserScript== | |
| // @name free medium | |
| // @namespace http://tampermonkey.net/ | |
| // @version 2024-04-16 | |
| // @description try to take over the world! | |
| // @author You | |
| // @include *://medium.*.com/* | |
| // @include *://*.medium.com/* | |
| // @include *://medium.com/* | |
| // @icon *://www.google.com/s2/favicons?sz=64&domain=medium.com |
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 | |
| namespaced App\Providers; | |
| use RuntimeException; | |
| use Illuminate\Support\Facades\Route; | |
| use Illuminate\Database\Eloquent\Model; | |
| use Illuminate\Routing\ImplicitRouteBinding; | |
| class RouteServiceProvider extends ServiceProvider |
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
| Alpine.directive('typed', (el, { expression, modifiers }, { evaluateLater, effect, cleanup }) => { | |
| const getStrings = evaluateLater(expression); | |
| const modifierValue = (key, fallback) => { | |
| if (-1 === modifiers.indexOf(key)) { | |
| return fallback; | |
| } | |
| const value = modifiers[modifiers.indexOf(key) + 1]; | |

