Skip to content

Instantly share code, notes, and snippets.

View LTroya's full-sized avatar

Luis Troya LTroya

  • Santiago, Chile
View GitHub Profile
<?php
namespace Tests\Feature;
use App\Models\Task;
use App\Models\User;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class KanbanTest extends TestCase
import java.util.ArrayList;
import java.util.Scanner;
public class Main {
public static void main(String args[]) {
Integer[] params = getParams();
int size = params[0];
int interval = params[1] + 1;
int lastIndex = 0;
ArrayList<Integer> children = createArrayList(size);
@LTroya
LTroya / laravel8.conf
Created September 17, 2020 04:48
Nginx config
server {
listen 80;
listen [::]:80;
server_name laravel8.io;
root /var/www/learning/laravel8/public;
index index.php index.html index.htm;
gzip on;