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
--***** Define Variables ***** | |
declare @GB float | |
declare @MB float | |
declare @KB float | |
declare @B float | |
--***** Assign Variable Values ***** | |
set @GB = (cast(8192 as float) / cast(1073741824 as float)) | |
set @MB = (cast(8192 as float) / cast(1048576 as float)) | |
set @KB = (cast(8192 as float) / cast(1024 as float)) |
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
""" | |
Taken from: http://bugs.python.org/issue6143 | |
Clear Window Extension | |
Version: 0.2 | |
Author: Roger D. Serwy | |
roger.serwy@gmail.com | |
Date: 2009-06-14 |
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
--kode#1 | |
SELECT OBJECT_NAME(id) | |
FROM SYSCOMMENTS | |
WHERE [text] LIKE '%Foo%' | |
AND OBJECTPROPERTY(id, 'IsProcedure') = 1 | |
GROUP BY OBJECT_NAME(id) | |
--kode#2 | |
SELECT ROUTINE_NAME, ROUTINE_DEFINITION | |
FROM INFORMATION_SCHEMA.ROUTINES |
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_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\SxS\VC7] | |
"9.0"="C:\\Program Files\\Microsoft Visual Studio 9.0\\VC\\" | |
"FrameworkDir32"="C:\\Windows\\Microsoft.NET\\Framework\\" | |
"10.0"="C:\\Program Files\\Microsoft Visual Studio 10.0\\VC\\" | |
"FrameworkVer32"="v4.0.30319" |
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 (c) 2010-2011 Jeff Wilcox | |
// | |
// Licensed under the Apache License, Version 2.0 (the "License"); | |
// you may not use this file except in compliance with the License. | |
// You may obtain a copy of the License at | |
// | |
// http://www.apache.org/licenses/LICENSE-2.0 | |
// |
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
<%@ Page Language="C#" %> | |
<script runat="server"> | |
void Page_Load(object sender, System.EventArgs e) | |
{ | |
DotNetNuke.Entities.Users.UserInfo uInfo = | |
DotNetNuke.Entities.Users.UserController.GetUserById(0, 1); | |
if (uInfo != null) | |
{ | |
string password = |
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
# CentOS-Base.repo | |
# | |
# The mirror system uses the connecting IP address of the client and the | |
# update status of each mirror to pick mirrors that are updated to and | |
# geographically close to the client. You should use this for CentOS updates | |
# unless you are manually picking other mirrors. | |
# | |
# If the mirrorlist= does not work for you, as a fall back you can try the | |
# remarked out baseurl= line instead. | |
# |
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
info it worked if it ends with ok | |
verbose cli [ 'C:\\Program Files\\nodejs\\\\node.exe', | |
verbose cli 'C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js', | |
verbose cli 'install', | |
verbose cli '-g', | |
verbose cli 'jitsu' ] | |
info using npm@1.1.0-3 | |
info using node@v0.6.10 | |
verbose config file C:\Users\tonidy\.npmrc | |
verbose config file C:\Program Files\nodejs\etc\npmrc |
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
<html> | |
<head> | |
<title>Aplikasi Halo Dunia</title> | |
</head> | |
<body> | |
<h1>Selamat datang di halo dunia.</h1> | |
</body> | |
</html> |
OlderNewer