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
http://office-recovery.com/word.asp | |
"C:\ Documents and Settings\<username>\Application Data\Microsoft\Word". | |
"C:\ Documents and Settings\<username>\Local Settings\Temp" | |
~wrdxxxx.tmp | |
%appdata%\Roaming\Microsoft\Word | |
https://support.microsoft.com/en-us/kb/827099 |
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
<html> | |
<head> | |
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script> | |
<script type="text/JavaScript"> |
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
dd if=/dev/zero of=/dev/sdb bs=1M conv=sync,notrunc |
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
ping -M do -s 1232 -c 4 ip | |
tracepath 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
dataLayer.push({ | |
"ecommerce": { | |
"add": { | |
"products": [ | |
{ | |
"id": "$myproduct", | |
"name": "$myname" | |
} | |
] | |
} |
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
#!/usr/bin/env python3.5 | |
from common.base import Base | |
import tensorflow as tf | |
class ClassName(Base): | |
""" | |
Add description about class | |
""" |