Skip to content

Instantly share code, notes, and snippets.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Show off</title>
<link href="static/css/bootstrap.css" rel="stylesheet">
<link href="static/css/vertical-tabs.css" rel="stylesheet">
<style>
body {
padding-top: 70px;
@enile8
enile8 / codepenclone.html
Created July 16, 2017 16:35 — forked from pachacamac/codepenclone.html
Mini Codepen Clone with sharing function
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>MiniCodepenClone</title>
<style>
body,textarea,iframe{ margin:0; box-sizing:border-box; }
textarea,iframe { width:100%; height:50vh; float:left; }
textarea { color:#eee; background:#111; font-family:monospace; font-size:11pt; line-height:1.4; width:33.33%; }
#shareBtn { position:absolute; bottom:0; left:0; }
@enile8
enile8 / fix-wordpress-permissions.sh
Created July 11, 2017 11:51 — forked from Adirael/fix-wordpress-permissions.sh
Fix wordpress file permissions
#!/bin/bash
#
# This script configures WordPress file permissions based on recommendations
# from http://codex.wordpress.org/Hardening_WordPress#File_permissions
#
# Author: Michael Conigliaro <mike [at] conigliaro [dot] org>
#
WP_OWNER=www-data # <-- wordpress owner
WP_GROUP=www-data # <-- wordpress group
WP_ROOT=$1 # <-- wordpress root directory
@enile8
enile8 / break_the_frame.js
Created May 26, 2017 11:35
break out of iframes
if(window.location != window.parent.location) {
window.parent.location = window.location;
}
@enile8
enile8 / bootstrap.flatten.css
Last active December 21, 2015 18:59 — forked from nodesocket/bootstrap.flatten.css
Added in .nav-pills
/* Flatten das boostrap */
.well, .navbar-inner, .nav-pills a, .popover, .btn, .tooltip, input, select, textarea, pre, .progress, .modal, .add-on, .alert, .table-bordered, .nav>.active>a, .dropdown-menu, .tooltip-inner, .badge, .label, .img-polaroid {
-moz-box-shadow: none !important;
-webkit-box-shadow: none !important;
box-shadow: none !important;
-webkit-border-radius: 0px !important;
-moz-border-radius: 0px !important;
border-radius: 0px !important;
border-collapse: collapse !important;
background-image: none !important;
@enile8
enile8 / db-test.php
Created June 30, 2013 06:19
A MySQL connection test script.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>MySQL Connection Test</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style type="text/css">
#wrapper {
width: 600px;
margin: 20px auto 0;
@enile8
enile8 / GCD.java
Created April 20, 2013 14:30
Greatest common divisor recursion example
public class GCD {
public static void main(String[] args) {
// jacked the test values from wikipedia
// output should be 37
System.out.println(gcd(259,111));
}
public static int gcd(int x, int y) {
if (y == 0)
return x;
@enile8
enile8 / RecursionExample.java
Created April 20, 2013 14:14
A simple little recursion method example.
public class RecursionExample {
public static void main(String[] args) {
// call the method
int fact = myFactorial(3);
// print the result
System.out.println(fact);
}
public static int myFactorial(int integer) {
@enile8
enile8 / ArrayTest.java
Last active December 16, 2015 06:28
A 2d array example in Java.
public class ArrayTest {
public static void main(String[] args) {
final int ROW = 3;
final int COL = 4;
int[][] numbers = new int[ROW][COL];
int total = 0,
value = 0;
@enile8
enile8 / recursionExample.cpp
Created March 20, 2013 20:24
Some in class recursion examples.
#include <iostream>
using namespace std;
int myFactorial(int integer)
{
if(integer == 1)
return 1;
else
{
return (integer * (myFactorial(integer-1)));