Description: Setup GitHub Pages "gh-pages" branch and "master" branch as subfolders of a parent project folder ("grandmaster").
Author: Chris Jacob @_chrisjacob
Tutorial (Gist): https://gist.github.com/833223
| <input type="file" id="inputImg" /> | |
| <br><br> | |
| Nama file <input type="text" id="nameImg" style="width: 100%"/> | |
| <br><br> | |
| Type file <input type="text" id="typeImg" style="width: 100%"/> | |
| <br><br> | |
| Size file <input type="text" id="sizeImg" style="width: 100%"/> | |
| <br><br> | |
| base64Img: <input type="text" id="base64Url" style="width: 100%"/> | |
| <br> |
| <?php | |
| // menentukan frame, foto ,padding & file format (jpeg or png) | |
| $frame = 'https://pixabay.com/static/uploads/photo/2016/02/02/01/31/background-1174639_960_720.png'; | |
| $foto = 'http://4.bp.blogspot.com/-MnbkNj0P6G4/Viq-PDdxdPI/AAAAAAAAAnw/kpSkfdXs3A0/s1600/yakuza-apocalypse-yayan-ruhian.jpg'; | |
| $padding = 150; | |
| $format = 'png'; | |
| $frame_info = getImageSize($frame); | |
| $foto_info = getImageSize($foto); |
| <?php | |
| /* Just 4 Fun | |
| API kode POS Indonesia | |
| by iBacor.com */ | |
| function kode_pos($q){ | |
| // array untuk output | |
| $result = array(); |
| <?php | |
| function user_agent($user_agent) { | |
| $os_platform = "Unknown OS Platform"; | |
| $browser = "Unknown Browser"; | |
| $os_array = array( | |
| 'windows nt 10.0' => 'Windows 10', |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>Google Short URL & Google QR Code - iBacor</title> | |
| <!-- Bootstrap CSS --> | |
| <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.1/css/bootstrap.min.css"> |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>IMAP mailbox - iBacor</title> | |
| <!-- Custom style --> | |
| <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.1/css/bootstrap.min.css"> | |
| <style> |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <!-- Include jQuery --> | |
| <script src="//code.jquery.com/jquery-2.1.1.min.js"></script> | |
| <!-- Include Fontawesome (optional) --> | |
| <link href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet"> | |
| <?xml version="1.0" encoding="utf-8"?> | |
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
| package="de.mobilej.overlay" | |
| android:versionCode="1" | |
| android:versionName="1.0" > | |
| <uses-sdk android:minSdkVersion="14" /> | |
| <application android:label="SystemOverlay" > | |
| <activity |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title></title> | |
| <!-- Android | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no;" /> | |
| <meta charset="utf-8">--> | |
| <!-- iPad/iPhone specific css below, add after your main css > |
Description: Setup GitHub Pages "gh-pages" branch and "master" branch as subfolders of a parent project folder ("grandmaster").
Author: Chris Jacob @_chrisjacob
Tutorial (Gist): https://gist.github.com/833223