Skip to content

Instantly share code, notes, and snippets.

View damNor's full-sized avatar
🌴
On vacation

Norris Damianus damNor

🌴
On vacation
  • Josh Web Dev
  • indonesia
View GitHub Profile
@damNor
damNor / Random Images on Refresh
Created February 26, 2016 07:11 — forked from stephenscaff/Random Images on Refresh
Super simple way to randomly load new images on refresh via Jquery and DOM injection. Great for banners.
<!DOCTYPE html>
<head>
<!--Little CSS fade in -->
<style>
.fadeIn{
-webkit-animation: fade-in 2s ease;
-moz-animation: fade-in ease-in-out 2s both;
-ms-animation: fade-in ease-in-out 2s both;
-o-animation: fade-in ease-in-out 2s both;
@damNor
damNor / gist:aaafd8424ea6e92deb4a
Created February 4, 2016 16:38 — forked from john-henry/gist:3179683
Infinite Scroll & Masonry in ExpressionEngine
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<meta name="description" content="">
<meta name="author" content="">
@damNor
damNor / connect_odoo.php
Created January 14, 2016 07:58
Php Connect with Odoo
<?php
error_reporting(E_ALL);
ini_set('display_errors', 1);
set_time_limit(0);
$info = array(
'host' => 'localhost:8069',
'database' => 'php',
'user' => 'admin',
'password' => 'admin');