Skip to content

Instantly share code, notes, and snippets.

View dwhite440's full-sized avatar

Demond dwhite440

  • South Carolina
View GitHub Profile
input {
outline: 0;
border-width: 0 0 2px 0;
border-color: blue
}
input:focus {
border-color: green
}
function refreshViews()
{
var views = ko.views.manager.getAllViews();
var view;
// Loop through all open tabs to find the browser preview tabs
for (var i=0; i < views.length; i++)
{
view = views[i];
// Reload each preview tab
<?php
$to = 'recipient@yahoo.com';
$subject = 'Testing sendmail.exe';
$message = 'Hi, you just received an email using sendmail!';
$headers = 'From: [your_gmail_account_username]@gmail.com' . "\r\n" .
'MIME-Version: 1.0' . "\r\n" .
'Content-type: text/html; charset=utf-8';
if(mail($to, $subject, $message, $headers))
echo "Email sent";
else
@dwhite440
dwhite440 / 0_reuse_code.js
Created June 4, 2017 15:38
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@dwhite440
dwhite440 / gist:84a4e5d6691ce2516e56d284109f5d3e
Created June 4, 2017 15:24
Auto refresh web browser during development - LiveJS
<script type="text/javascript" src="http://livejs.com/live.js"></script>
@dwhite440
dwhite440 / VB.NET - Updater Script
Created November 25, 2016 16:09 — forked from TehProject26/VB.NET - Updater Script
VB.NET - Updater Script
'''''''''''''''''''''''''''''
' Updater Snippet '
' '
' Creator : TehProject26 '
' Date : 17/12/2011 '
' '
' '
' '
' Enjoy :D '
'''''''''''''''''''''''''''''
@dwhite440
dwhite440 / gist:0b4d86fb21229ae56b2de9b81c2708f8
Created November 25, 2016 16:08 — forked from abhilash2006/gist:4984987
Google Authintication VB.NET
Imports Microsoft.VisualBasic
Imports System.Data
Imports System.Data.SqlClient
Imports Google.GData.Client
Imports Google.GData.Contacts
Public Class GoogleAppsAuth
Private GoogleContactsService As New Google.GData.Contacts.ContactsService("mail")
Private GoogleService As Service
@dwhite440
dwhite440 / address-form.html
Last active October 6, 2019 17:58 — forked from iloris/address-form.html
Generic html address form using twitter bootstrap form. inspiration: http://www.uxmatters.com/mt/archives/2008/06/international-address-fields-in-web-forms.php
<form class="form-horizontal">
<fieldset>
<!-- Address form -->
<h2>Address</h2>
<!-- full-name input-->
<div class="control-group">
<label class="control-label">Full Name</label>
<div class="controls">