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
snmpwalk -v 2c -c public -O e <ip> |
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
@echo off | |
set TOP=%~dp0.. | |
set LIB=%TOP%\lib | |
set MAIN= | |
for /R %LIB% %%a in (*.jar) do call :AddToPath %%a | |
set CLASSPATH=%CLASSPATH%;%LIB%\classes | |
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
# Create /etc/apache2/users/<username>.conf with this content. | |
# Note these options enable symbolic links | |
# Run `sudo apachectl restart` to put changes into effect | |
<Directory "/Users/<username>/Sites/"> | |
Options Indexes MultiViews FollowSymLinks | |
AllowOverride All | |
Order allow,deny | |
Allow from all | |
</Directory> |
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
// https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Reserved_Words | |
break | |
case | |
catch | |
continue | |
debugger | |
default | |
delete | |
do |
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
<properties> | |
<m2eclipse.wtp.contextRoot>/ROOT</m2eclipse.wtp.contextRoot> | |
</properties> |
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
#!/bin/sh | |
case $1 in | |
'start') | |
sudo launchctl start com.apple.racoon | |
;; | |
'stop') | |
sudo launchctl stop com.apple.racoon | |
;; |
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
<c:if test="${ empty sessionScope.myVar }"> | |
</c:if> |
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
<!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame --> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> |
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
<!--[if lt IE 7 ]> <body class="ie6"> <![endif]--> | |
<!--[if IE 7 ]> <body class="ie7"> <![endif]--> | |
<!--[if IE 8 ]> <body class="ie8"> <![endif]--> | |
<!--[if IE 9 ]> <body class="ie9"> <![endif]--> | |
<!--[if (gt IE 9)|!(IE)]> for higher than IE9 or non-IE <![endif]--> | |
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
.btn-submit { | |
background: transparent url(image.png) no-repeat center top; | |
border: 0; | |
cursor: pointer; | |
height: 0px; | |
margin: 0; | |
overflow: hidden; | |
padding: 55px 0 0; /* set top padding to height of image */ | |
width: 100px; /* set to width of image */ | |
} |