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
public class TestApp { | |
/** | |
* @param args the command line arguments | |
*/ | |
public static void main(String[] args) { | |
//Try with list of set values | |
List<Integer> listSet = new ArrayList<Integer>(); | |
listSet.add(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
<?php | |
//set boolean value | |
$bool = true; | |
//print boolean value | |
print $bool; | |
#prints 1 | |
//cast as string |
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
<package> | |
<job id="Import_Example"> | |
'--- IMPORT CLASSES --- | |
<script language="VBScript" src="Utilities.class.vbs"> | |
<script language="VBScript" src="Another.class.vbs"/> | |
'- --- END IMPORT --- | |
<script language="VBScript"> | |
'--- START --- | |
Dim objUtil, objAnother |
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 root namespace | |
var myNS = new Object(); | |
myNS.foo = new Object(); | |
myNS.bar = new Object(); | |
myNS={ | |
//Namespace scope vars | |
_myVar:'hi ', | |
_i: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
cd %windir%system32 | |
regsvr32 wuapi.dll /s | |
regsvr32 wuaueng.dll /s | |
regsvr32 wuaueng1.dll /s | |
regsvr32 wucltui.dll /s | |
regsvr32 wups.dll /s | |
regsvr32 wups2.dll /s | |
regsvr32 wuweb.dll /s | |
net stop wuauserv | |
net stop bits |
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
!bin/sh | |
##################################### | |
### Backup script - run_backup.sh ## | |
##################################### | |
### Desc: Runs backup on MYSQL ## | |
### database and then emails to ## | |
### confirm ## | |
##################################### | |
# Settings |
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
'=================================== | |
' | |
' VBScript Source File -- Created with SAPIEN Technologies PrimalScript 3.0 | |
' | |
' NAME: AD Computer search.vbs | |
' | |
' AUTHOR: Robert Murray | |
' DATE : 29/10/2008 | |
' | |
' COMMENT: List All XP Computer Accounts in Active Directory and write to text file |
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
// ExampleViewController.m | |
/* | |
* Define class constants a top of @implementation | |
*/ | |
static NSString *const kRMMyViewTitle = @"Amazing App Home"; | |
@implementation ExampleViewController | |
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
//Configuration.h | |
#import <Foundation/Foundation.h> | |
@interface Configuration : NSObject | |
extern NSString *const kRMAWebServiceURL; | |
extern const NSTimeInterval kRMTimeoutValue; |
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
<?php | |
namespace ACompany\AnAppName\Dao\PdoImpl; | |
/** | |
* PDOConnection is a singleton implementation. | |
* getConnection() returning an instance of PDO connection. | |
* | |
* <code> | |
* Example usage: |