Skip to content

Instantly share code, notes, and snippets.

View AlifArnado's full-sized avatar

alif benden arnado AlifArnado

  • Ghost Protocol
  • Ghost City
View GitHub Profile
@AlifArnado
AlifArnado / _ide_helper.php
Created July 14, 2017 03:55 — forked from barryvdh/_ide_helper.php
Laravel IDE Helper for Netbeans / PhpStorm / Sublime Text 2 CodeIntel, generated using https://github.com/barryvdh/laravel-ide-helper
<?php
/**
* A helper file for Laravel 5, to provide autocomplete information to your IDE
* Generated for Laravel 5.4.11 on 2017-02-14.
*
* @author Barry vd. Heuvel <[email protected]>
* @see https://github.com/barryvdh/laravel-ide-helper
*/
namespace {
exit("This file should not be included, only analyzed by your IDE");
# Android SDK setup
## Install Java
```bash
sudo apt-get update
sudo dpkg --add-architecture i386
sudo apt-get install libbz2-1.0:i386
sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386 lib32z1
sudo apt-get install openjdk-8-jdk openjdk-8-jre
<?php
/*! @class SocketServer
@author Navarr Barnier
@abstract A Framework for creating a multi-client server using the PHP language.
*/
class SocketServer
{
/*! @var config
@abstract Array - an array of configuration information used by the server.
*/
@AlifArnado
AlifArnado / codeigniter.multiple.file.upload.php
Created March 13, 2017 05:52
Trick to upload multiple files using CodeIgniter's Upload Library
<?php
/*
* Code above omitted purposely
* In your HTML form, your input[type=file] must be named *userfile[]*
*/
/*
* Uploads multiple files creating a queue to fake multiple upload calls to
* $_FILE
*/
@AlifArnado
AlifArnado / Sublime Text 3 Build 3103 License Key - CRACK
Created March 7, 2017 15:29
Sublime Text 3 Build 3103 License Key - CRACK
I use the first
—– BEGIN LICENSE —–
Michael Barnes
Single User License
EA7E-821385
8A353C41 872A0D5C DF9B2950 AFF6F667
C458EA6D 8EA3C286 98D1D650 131A97AB
AA919AEC EF20E143 B361B1E7 4C8B7F04

How to change Pantheon Terminal's color scheme

Many of us spend many hours of our days using their terminal. Plus, we all have different tastes when it comes to color schemes. That's why the ability to change the color scheme of a terminal is one of its more important featuresl. Throughout this tutorial, I'll teach you how you can change the looks of your terminal, step by step.

This tutorial is aimed at elementary OS users, but it also works for any Ubuntu user. Start by installing dconf-tools:

sudo apt-get install dconf-tools

Secondly, you need to decide which theme you're going to apply. You can find dozens of terminal color schemes online, you can even design your own using this web application. Design the color scheme, hit "Get Scheme" and choose "Terminator". You'll get a raw text file with a background color, a foreground color and a palette. Those strings define your color scheme. In this tutorial, I'll post an

@AlifArnado
AlifArnado / browser-example.js
Created May 1, 2016 14:05 — forked from nyxtom/browser-example.js
Base64 Encoded MD5 Computed Hashes - MongoDB Shell, Javascript and C#
b64_md5("http://twitter.com/nyxtom")
@AlifArnado
AlifArnado / Sublime Text 3 Build 3103 License Key - CRACK
Created April 29, 2016 02:32
Sublime Text 3 Build 3103 License Key - CRACK
I use the first
—– BEGIN LICENSE —–
Michael Barnes
Single User License
EA7E-821385
8A353C41 872A0D5C DF9B2950 AFF6F667
C458EA6D 8EA3C286 98D1D650 131A97AB
AA919AEC EF20E143 B361B1E7 4C8B7F04
@AlifArnado
AlifArnado / starbucks_map.html
Created April 7, 2016 15:27 — forked from yitznewton/starbucks_map.html
Starbucks Stores API / Google Maps JS API mashup with browser geolocation
<html>
<head></head>
<body>
<div id="map-canvas" style="height: 600px; width: 600px;"></div>
<script src="https://maps.googleapis.com/maps/api/js?key=YOUR_GOOGLE_MAPS_API_KEY_HERE"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script>
var positionToStarbucksLatlng = function(position) {
@AlifArnado
AlifArnado / html_form
Created March 28, 2016 14:01 — forked from zvineyard/html_form
PHP: Upload and Rename File
<form action="" enctype="multipart/form-data" method="post">
<input id="file" name="file" type="file" />
<input id="Submit" name="submit" type="submit" value="Submit" />
</form>