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
{ | |
"keys":[ | |
{ | |
"kty":"RSA", | |
"e":"AQAB", | |
"use": "sig", | |
"alg": "RS256", | |
"n":"3lyqXJwyPLBthnQZCOFnZdrMdwgZ9C9xoY7soimq5mCkY7-ku_OiMw4t7ZtSqJkr44_m9nS9vnsyDN_xPS3D7ucfpTyOTtKL31Br3ooxJlA-E5h4NzOmm_gw9Xc64nIsQtmUjETfAnY8WJ5cosaBPNq9qU2oLgcUnuz_xN_HA9M" | |
} |
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
{ | |
"keys":[ | |
{ | |
"kty":"RSA", | |
"e":"AQAB", | |
"use": "sig", | |
"alg": "RS256", | |
"kid":"573f0bc0-7ea7-4bef-8dc9-6f93b2f6ab01", | |
"n":"3lyqXJwyPLBthnQZCOFnZdrMdwgZ9C9xoY7soimq5mCkY7-ku_OiMw4t7ZtSqJkr44_m9nS9vnsyDN_xPS3D7ucfpTyOTtKL31Br3ooxJlA-E5h4NzOmm_gw9Xc64nIsQtmUjETfAnY8WJ5cosaBPNq9qU2oLgcUnuz_xN_HA9M" | |
} |
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
/** | |
* Common XPCOM STB constructor. | |
* @constructor | |
*/ | |
function common_xpcom(){ | |
this.user = {}; | |
this.mac = ''; | |
this.ip = ''; | |
this.hd = 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 | |
if (php_sapi_name() != "cli") { | |
exit; | |
} | |
include "../common.php"; | |
use Stalker\Lib\Core\Mysql; | |
use Stalker\Lib\Core\Config; |
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
import cv2 | |
# Run this script from the same directory as your Data folder | |
# Grab your webcam on local machine | |
cap = cv2.VideoCapture(1) | |
# Initialize photo count | |
number = 0 |
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
import numpy as np | |
import cv2 | |
def rotateImage(image, angle): | |
image_center = tuple(np.array(image.shape[1::-1]) / 2) | |
rot_mat = cv2.getRotationMatrix2D(image_center, angle, 1.0) | |
result = cv2.warpAffine(image, rot_mat, image.shape[1::-1], flags=cv2.INTER_LINEAR) | |
return result | |
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 | |
/** | |
* Memcache driver. | |
* Implementation of http://www.smira.ru/2008/10/29/web-caching-memcached-5/ | |
* | |
* @package stalker_portal | |
* @author [email protected] | |
*/ | |
namespace Stalker\Lib\Core; |
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
Index: c/vclub.js | |
IDEA additional info: | |
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP | |
<+>UTF-8 | |
=================================================================== | |
--- c/vclub.js (revision 271c5b6577b3d5eca58b6133611e04b6960d90e0) | |
+++ c/vclub.js (revision 8cceabfec92b7fa1c503cb6cfb4636cf4cd373a1) | |
@@ -828,6 +828,19 @@ | |
this.load_data.bind(key.REFRESH, this); | |
}; |
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
name: RoboNDGazebo | |
channels: | |
- defaults | |
dependencies: | |
- _license=1.1=py27_1 | |
- alabaster=0.7.10=py27_0 | |
- anaconda-client=1.6.3=py27_0 | |
- anaconda=custom=py27_0 | |
- anaconda-navigator=1.6.2=py27_0 | |
- anaconda-project=0.6.0=py27_0 |
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
Index: c/alert.js | |
IDEA additional info: | |
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP | |
<+>UTF-8 | |
=================================================================== | |
--- c/alert.js (revision ff79bf4c36ac0a7b2968e24beb7c4dd22b8e4793) | |
+++ c/alert.js (revision cf16b1d28aaa90ac0dc713fa523c0311f8495aa5) | |
@@ -131,6 +131,13 @@ | |
this.show(msg); | |
}else if (typeof(msg) == 'object'){ |
NewerOlder