Skip to content

Instantly share code, notes, and snippets.

View sanikkenway's full-sized avatar
💻
rails new unicorn

Nik Saiful Anuar sanikkenway

💻
rails new unicorn
View GitHub Profile
@sanikkenway
sanikkenway / default
Created April 27, 2021 00:29
Nginx Server Block With PHP-FPM
server {
listen 80;
root /var/www/html;
index index.php;
server_name example.com;
location / {
try_files $uri $uri/ =404;
}
<?php
$photoid = <photoid>;
$alphabet = '123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ';
// function to encode from photoid to shortcode
function base_encode($photoid, $alphabet)
{
$base_count = strlen($alphabet);
$encoded = '';
@sanikkenway
sanikkenway / job.rb
Last active February 3, 2019 12:12
if dev.is_bored? || job.sucks?
Job::search(:flexible_hours true, :company_culture 100)
end