Skip to content

Instantly share code, notes, and snippets.

View niilante's full-sized avatar
🌊
I'm a builder more than a Mason

Richard Nii Lante Lawson niilante

🌊
I'm a builder more than a Mason
View GitHub Profile
Unlock Locked Pattern Without Losing Data!
Requirements:
- Aroma File Manager
- A memory card for device.
- Your android device must be either locked by pattern lock or password lock.
How To?
1. After you download “Aroma File Manager” place it in your card [SD CARD] Insert card into your locked android device.
Sign up at Yunpan.360.cn to get 360GB of free storage, it can be extended up to 36TB by downloading the PC and Android/iOS clients!
http://yunpan.360.cn/
Sign up at Ozibox.com to get 100GB of free storage.
http://ozibox.com/
Sign up at SurDoc.com to get 100GB of free storage.
http://surdoc.com/
Sign up at Shared.com to get 100GB of free storage.
@niilante
niilante / KMS_office.cmd
Created June 3, 2020 08:29 — forked from CHEF-KOCH/KMS_office.cmd
KMS server Windows
@echo off
title Microsoft Office 2019 versions are supported!&cls&echo
============================================================================&echo
#Project: Activating Microsoft software products for FREE without software&echo
============================================================================&echo.&echo
#Supported products:&echo - Microsoft Office Standard 2019&echo - Microsoft Office Professional Plus 2019&echo.&echo.&(if exist
"%ProgramFiles%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles%\Microsoft Office\Office16")&(if exist
"%ProgramFiles(x86)%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles(x86)%\Microsoft Office\Office16")&(for /f %%x in ('dir /b
..\root\Licenses16\ProPlus2019VL*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)&(for /f %%x in ('dir /b
..\root\Licenses16\ProPlus2019VL*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)&echo.&echo
http://www.hidemyass.com/proxylist/
http://www.samair.ru/proxy/
http://www.proxy4free.com/page1.html
http://www.stayinvisible.com/
http://www.proxz.com/
@niilante
niilante / awesm.md
Created January 4, 2022 05:11 — forked from matula/awesm.md
Awesome PHP stuff in one Gist
# This is a sample build configuration for PHP.
# Check our guides at https://confluence.atlassian.com/x/e8YWN for more examples.
# Only use spaces to indent your .yml configuration.
# You can specify a custom docker image from Docker Hub as your build environment.
# run composer check-platform-reqs for a list of required extensions.
image: php:7.2-fpm
pipelines:
default:
# Not needed unless you're doing feature tests.
# - step:
@niilante
niilante / install_php7.4.x_with_pthreads.md
Created January 4, 2022 04:52 — forked from pointybeard/install_php7.4.x_with_pthreads.md
Compiling PHP 7.4.x with pthreads enabled

Compiling PHP 7.4.x with pthreads (https://github.com/pmmp/pthreads) enabled

Install required libraries

build-essential autoconf libtool bison re2c pkg-config git-core libsqlite3-dev libonig-dev libzip-dev libltdl-dev libbz2-dev libxml2-dev libxslt1-dev libssl-dev libicu-dev libpspell-dev libenchant-dev libmcrypt-dev libpng-dev libjpeg8-dev libfreetype6-dev libmysqlclient-dev libreadline-dev libcurl4-openssl-dev

Download PHP 7.4.x source

cd /var/sources

wget https://www.php.net/distributions/php-7.4.24.tar.gz

@niilante
niilante / githubpull.md
Created January 4, 2022 04:51 — forked from Jabarabo/githubpull.md
Gist of a stolen gist
@niilante
niilante / FormRequest.php
Created September 12, 2021 20:55 — forked from syofyanzuhad/FormRequest.php
change your default extends FormRequest to your customize FormRequest (API ONLY)
<?php
namespace App\Http\Requests\Api;
use Illuminate\Http\Request;
use Illuminate\Http\JsonResponse;
use Illuminate\Contracts\Validation\Validator;
use Illuminate\Validation\ValidationException;
use Illuminate\Http\Exceptions\HttpResponseException;
use Illuminate\Foundation\Http\FormRequest as LaravelFormRequest;