This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| input { | |
| outline: 0; | |
| border-width: 0 0 2px 0; | |
| border-color: blue | |
| } | |
| input:focus { | |
| border-color: green | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script type="text/javascript" src="http://livejs.com/live.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ''''''''''''''''''''''''''''' | |
| ' Updater Snippet ' | |
| ' ' | |
| ' Creator : TehProject26 ' | |
| ' Date : 17/12/2011 ' | |
| ' ' | |
| ' ' | |
| ' ' | |
| ' Enjoy :D ' | |
| ''''''''''''''''''''''''''''' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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"> |
NewerOlder