Skip to content

Instantly share code, notes, and snippets.

View Ravaelles's full-sized avatar
🏠
Working remotely

Ravaelles

🏠
Working remotely
  • Fullstack Laravel developer
  • Poland
View GitHub Profile
private static Unit getMineralFieldToGather(Unit worker) {
// Get nearest base for this unit
Unit base = Select.ourBases().nearestTo(worker.getPosition());
if (base == null) {
return null;
}
// Get minerals near to our main base and sort them from closest to most distant one
List<Unit> minerals = (List<Unit>) Select.minerals().inRadius(12, base.getPosition()).listUnits();
server {
listen 80 default_server;
listen [::]:80 default_server;
# Default route for Laravel projects
root /var/www/html/public;
# Add index.php to the list if you are using PHP
index index.html index.htm index.php;
server {
listen 80 default_server;
listen [::]:80 default_server;
# SSL configuration
#
# listen 443 ssl default_server;
# listen [::]:443 ssl default_server;
#
# Note: You should disable gzip for SSL traffic.
[program:laravel-worker]
process_name=%(program_name)s_%(process_num)02d
command=php /var/www/html/artisan queue:work database --sleep=3 --tries=3
autostart=true
autorestart=true
user=ubuntu
numprocs=10
redirect_stderr=true
stdout_logfile=/var/www/html/worker.log
@Ravaelles
Ravaelles / gist:3878d82117d2881c03ee02e036cc67cb
Created March 6, 2018 17:22
Password recovery fix for Laravel 5.5 with Jenssegers MongoDB package
<?php
namespace Jenssegers\Mongodb\Auth;
use DateTime;
use DateTimeZone;
use Illuminate\Auth\Passwords\DatabaseTokenRepository as BaseDatabaseTokenRepository;
use MongoDB\BSON\UTCDateTime;
class DatabaseTokenRepository extends BaseDatabaseTokenRepository {
@Ravaelles
Ravaelles / Laravel Homestead + MongoDB PHP 7.1 driver
Last active July 4, 2018 13:51
Laravel Homestead + MongoDB PHP 7.1 driver installer
#!/bin/bash
######################################################
### README ###########################################
######################################################
###
### One-line Laravel Homestead MongoDB driver PHP installer.
###
### What it does:
### - installs some MongoDB PHP driver dependencies
@Ravaelles
Ravaelles / gist:1aa9275d6a38a00d9eef4b34efe280bd
Created August 8, 2018 16:40
Vue.js checkbox controlling div visibility
<html>
<head>
<!-- development version, includes helpful console warnings -->
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
</head>
<body>

Keybase proof

I hereby claim:

  • I am ravaelles on github.
  • I am ravaelles (https://keybase.io/ravaelles) on keybase.
  • I have a public key ASAoe_F65zu8GJCNYbJC6xsw04OmYkFhhR4_Nt6xzAzIWwo

To claim this, I am signing this object:

@Ravaelles
Ravaelles / newdomain.sh
Last active October 18, 2019 15:02
Script used to create new nginx site config files based on the file name and project path
# Ensure to get this file: https://tinyurl.com/genericlocal
# And that it's placed in: /etc/nginx/sites-enabled/generic.local
# Also make sure to have the certificate files! See generic.local at the end.
#
# Example usage: ./newdomain.sh cool /projects/MyProject
#
# After that you should be able to visit https://cool.local
cp /etc/nginx/sites-enabled/generic.local /etc/nginx/sites-enabled/$1.local
sed -i "s/PROJECT/$1/g" /etc/nginx/sites-enabled/$1.local
@Ravaelles
Ravaelles / Ubuntu server setup script (PHP 5.6)
Last active April 6, 2020 12:13
PHP 5.6 + nginx + MongoDB driver for PHP
#!/bin/bash
######################################################
### README ###########################################
######################################################
###
### One-line server install script for Ubuntu.
### Installs Nginx + PHP5.6 + MongoDB for PHP driver.
###
### Removes previous Apache, PHP, nginx installations.