| Posición | Nombre | Puntos |
|---|---|---|
| 1 | Jorge González | 33 |
| 2 | Christopher Peña | 28 |
| 3 | Jalil Romero | 4 ½ |
| 4 | Rodolfo Navarro | 1 |
| 5 | Rolando Balboa | 1 |
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 | |
| namespace App\Traits; | |
| use Illuminate\Database\Eloquent\Builder; | |
| use Illuminate\Support\Arr; | |
| trait Searchable | |
| { | |
| /** |
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 | |
| trait Sortable | |
| { | |
| /** | |
| * This function receives a $newOrder array parameter, which contains the order in which | |
| * we should sort our items after being dragged in the UI. The format of the $newOrder is: | |
| * | |
| * [ | |
| * newIndex => [ |
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
| import { visit } from 'unist-util-visit' | |
| export default () => (tree, file) => { | |
| visit(tree, 'element', (node) => { | |
| if (! ('tagName' in node) || node.tagName !== 'pre') { | |
| return; | |
| } | |
| node.properties.className.push('not-prose') | |
| }) |
Configuration file for deploying ActualBudget Server to Fly.io.
- Create a new volume called
actualbudget_datain the same region you want to deploy your application.
That's it! Deploy now :)
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
| FROM alpine AS base | |
| CMD ["echo", "'Base stage'"] | |
| ############################################# | |
| FROM base AS development | |
| CMD ["echo", "'Development stage'"] |
OlderNewer