Skip to content

Instantly share code, notes, and snippets.

View denzildoyle's full-sized avatar
🎯
Growing

Denzil Doyle denzildoyle

🎯
Growing
View GitHub Profile
@denzildoyle
denzildoyle / basics.md
Last active December 31, 2015 20:48 — forked from dwayne/basics.md

Basics

The best guide for getting up to speed with Android Development that I've come across has to be the Getting Started Training Guide from the Android Developers website. There has to be better and low and behold I found this and this, i.e. How to Program for Android and Android Bootcamp Series 2012 Video Tutorial.

For beginners, the ADT (Android Developer Tools) Bundle is recommended for quickly starting Android development.

If you don't already have the JDK installed on your system you'd need to install it. For Ubuntu users, you can follow the in

@denzildoyle
denzildoyle / Android-Development.md
Last active January 4, 2016 02:09
Notes on everything I know and learn about Android Development

Telnet window 8 control panel/Programs/Turn Windows features on or off/ look for telnet client and check the box then click ok

Telnet commands help|h|? print a list of commands event simulate hardware events geo Geo-location commands gsm GSM related commands kill kill the emulator instance network manage network settings power power related commands

@denzildoyle
denzildoyle / Setting up Ruby on Rails on Windows.md
Last active August 29, 2015 13:56
A step by step guide to setting up rails on windows

Download Ruby (Ruby 1.9.3-p484) from # http://rubyinstaller.org/downloads/

Install

  • Add Ruby executables to your PATH
  • Associate .rb and .rbw files with this Ruby installation
  • (Remember file path you install ruby in)

Download devkit (DevKit-tdm-32-4.5.2-20111229-1559-sfx.exe) from same link

Install to same file path as previous ruby install

@denzildoyle
denzildoyle / Section Scroll.html
Last active August 26, 2016 19:39
A Jquery snippet to scroll to a particular section of a page.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Section Scroll</title>
<link rel="stylesheet" href="">
</head>
<style type="text/css">
.arrow {
display: block;
width: 30px;
height: 30px;
position: absolute;
bottom: 50px;
left: 50%;
margin-left: -15px;
border: 2px solid rgba(255, 255, 255, 0.35);
background: rgba(0,0,0,0);
@denzildoyle
denzildoyle / Facebook With CI
Created March 31, 2014 13:06
Facebook page tab application with codeigniter
Google analytics
http://www.savio.no/blogg/a/104/how-to-track-facebook-iframes-with-google-analytics

How to press a site

How to create wordpress custom themes

  • installing wordpress
  • install xampp
  • download wordpress
  • create empty database
  • install wordpress in browser
  • installing blank theme

box-shadow: 0px 1px 2px #555 inset;

@denzildoyle
denzildoyle / bootstrap-fixes.md
Created May 7, 2014 18:51
A collection of my bootstrap updates
  ul.nav li.dropdown:hover > ul.dropdown-menu {
      display: block;    

}