This file contains 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
N BEEP.COM | |
A 100 | |
MOV AH, 27 | |
INT 21 | |
MOV AH, 4C | |
INT 21 | |
RCX | |
8 | |
W |
This file contains 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
N YORN.COM | |
A 100 | |
MOV AH, 08 | |
INT 21 | |
CMP AL, 59 | |
JZ 0116 | |
CMP AL, 79 | |
JZ 0116 | |
CMP AL, 6E | |
JZ 0116 |
This file contains 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
10 POKE 53280, 6: POKE 53281, 6 | |
20 PRINT CHR$(147) | |
30 FOR C = 0 TO 63 | |
40 READ BYTE | |
50 POKE 832 + C, BYTE | |
60 NEXT C | |
70 POKE 2040, 13 | |
80 POKE 53287, 1 | |
90 POKE 53248, 50: POKE 53249, 100: POKE 53264, 0 | |
100 POKE 53269, 1 |
This file contains 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
Windows Registry Editor Version 5.00 | |
[HKEY_CURRENT_USER\Software\Microsoft\SkyDrive] | |
"UserFolder"="C:\\Users\\Administrator\\OneDrive" | |
This file contains 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
10 DEF SEG=&HF000 | |
20 FOR X=&HFFF5 TO &HFFFF | |
30 PRINT CHR$(PEEK(X)); | |
40 NEXT |
This file contains 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
Option Explicit | |
Public Const vbTextCompare = 1 | |
Public Const vbBinaryCompare = 0 | |
Public Function Join(source() As String, Optional sDelim) As String | |
Dim sOut As String, iC As Integer | |
If IsMissing(sDelim) Then | |
sDelim = " " | |
End If |
This file contains 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
// ----------------------------------------------------------------------- | |
// <copyright file="DisableVbHtml.cs" company="Conglomo"> | |
// Copyright 2015 Peter Chapman. Code in Public Domain. | |
// </copyright> | |
// ----------------------------------------------------------------------- | |
namespace Conglomo.Website | |
{ | |
using System; | |
using System.Linq; |
This file contains 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 pageLoad() { | |
var element = document.getElementById('ctl32_ctl09'); | |
if (element) { | |
element.style.overflow = 'visible'; | |
} | |
} |
This file contains 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
Set objMessage = CreateObject("CDO.Message") | |
objMessage.Subject = "SGML Test Message" | |
objMessage.From = "[email protected]" | |
objMessage.To = "[email protected]" | |
objMessage.HTMLBody = "<h1>This is an SGML test.</h1><p>You should not see:  </p>" | |
objMessage.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2 ' cdoSendUsingPort | |
objMessage.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "smtp.gmail.com" | |
objMessage.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 465 | |
objMessage.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1 | |
objMessage.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpusessl") = 1 |
This file contains 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
// The object will be called test | |
var test = (function () { | |
// Use strict mode for JavaScript parsing | |
// The browser uses this | |
"use strict"; | |
// Global Variables - JSLint stuff... | |
/*global $*/ | |
/*global utilities*/ |
OlderNewer