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
Not "Have to present" -> "Get to present" | |
No reporting, no informating | |
resonating influencing | |
"How do people respond to your presentations?" (walk out, ask too many follow up questions, what actions do they take) | |
"there is nothing normal about presenting" | |
Prioritize the content | |
Judge the audience by: "where do they spend their time, energy and money" | |
When mixed audience: |
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
<? session_start(); ?> | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"/> | |
<title>Adapt</title> | |
<style type="text/css"> | |
.num{ | |
font-size: 244px; | |
height: 270px; |
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
maps.google.com/maps?q=25.279139,51.551230 |
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
http://maps.googleapis.com/maps/api/staticmap?zoom=16&size=600x300&sensor=true&markers=25.279139,51.551230 |
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
/** In Microsoft SQL with unixtime ... do **/ | |
Select DATEADD(second, @Unixtime-Variable, {d '1970-01-01'}) |
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
### put the switch ip address in lines 3 and 17 ### | |
### put the username in to lines 4 and 18 and the password into lines 5 and 19 ### | |
telnet 10.1.0.11 | |
admin | |
### put your password here ### | |
configure terminal | |
crypto key generate ssh rsa | |
ip ssh | |
ip ssh filetransfer | |
aaa authentication ssh login local none |
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
@echo off | |
:: check_wsus.cmd | |
:: | |
:: Logon script that checks if workstation token exists in wsus-check$ | |
:: If it exists, simply exit, but if not, clears WINDOWSUPDATE registry keys. | |
:: | |
:: Last updated by Roy Verrips ([email protected]) on 30th January 2014 | |
:: |
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
$newpath="C:\new\place\for\Hyper-V" | |
get-vm | % { move-vmstorage $_ -DestinationStoragepath $($newpath+"\"+$_.VMName)} |
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
@echo off | |
Rem Set Environment and cleanup | |
c: | |
cd\tracert | |
del trace.txt | |
del trace.sql | |
del trace.out | |
Rem Generate the Tracefile | |
tracert -d 65.221.28.106 > trace.txt |
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
/** Pulls data from various tables in HP IMC 7.0 Database to: | |
Show all details for a specific VLAN across a campus. | |
Useful for sizing a migration of that VLAN to another VLAN, etc. | |
Change the VLan PVID on the "Where" section .. the example listes uas pv=6. | |
**/ | |
SELECT [report_db].[report].[plat_v_dev].[symbol_name] AS Name, | |
[report_db].[report].[plat_v_dev].[dev_ip] AS IP, | |
[report_db].[report].[plat_v_dev].[dev_series_name] AS Series, | |
[report_db].[report].[plat_v_phy_if_info].[ifoptstatus] AS Status, |
OlderNewer