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
<div id="mapContainer" style="position: absolute; left: 25px; top: 0px; width: 1153px; height: 700px; cursor: auto;"><div unselectable="on" oncontextmenu="return (false);" style="overflow: hidden; position: relative; left: 0px; top: 0px; width: 100%; height: 100%; right: 0px; bottom: 0px;"><div unselectable="on" style="position: absolute; left: -600px; top: -600px; width: 2400px; height: 2400px;"><div unselectable="on" class="0" style="position: absolute; left: -578px; top: 545px; width: 600px; height: 600px;"><div unselectable="on" class="loading" style="position: absolute; left: 0px; top: 0px; width: 600px; height: 600px; z-index: 21; background: url("img/loading.gif") center center no-repeat rgb(0, 0, 0); opacity: 0.5; display: none;"></div><img unselectable="on" class="image" src="map_block.php?tx0=-20&ty0=40&tx1=-1&ty1=59&w=600&h=600&version=0" style="position: absolute; left: 0px; top: 0px; width: 600px; height: 600px; z-index: 2;"><img unselectable="on" class="imageMar |
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
### Keybase proof | |
I hereby claim: | |
* I am tqk2811 on github. | |
* I am tqk2811 (https://keybase.io/tqk2811) on keybase. | |
* I have a public key whose fingerprint is 539E 4668 96AE 0026 F0BD 82F0 EF5E 055A 0AA5 5B3B | |
To claim this, I am signing this object: |
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
@font-face { | |
font-family: OpenSans; | |
src: url(/fonts/OpenSans-Regular.ttf) | |
} | |
@font-face { | |
font-family: OpenSans; | |
src: url(/fonts/OpenSans-Bold.ttf); | |
font-weight: 700 | |
} |
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
chrome.runtime.onMessage.addListener(function (message, sender, callback) { | |
if (message && message == "close_tab_call") { | |
chrome.tabs.remove(sender.tab.id, function () {}); | |
} | |
}); |
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
var config = { | |
mode: "fixed_servers", | |
rules: { | |
singleProxy: { | |
scheme: "http", | |
host: "{host}", | |
port: "{port}" | |
}, | |
bypassList: ["localhost"] | |
} |
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
#include <GUIConstantsEx.au3> | |
#include <Misc.au3> | |
$Form1=GUICreate("" ,150,30,-1,-1,-1 ,-1) | |
$i = GUICtrlCreateInput("4",5,5,20,20) | |
GUISetState(@SW_SHOW,$Form1) | |
Global $dll = DllOpen("user32.dll") | |
AdlibRegister("_HotKeySet",0) | |
While 1 | |
$nMsg=GUIGetMsg () | |
$i_ = GUICtrlRead($i) |
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
// Use OpenGL 3.0+, but don't use GLU | |
#define GLFW_INCLUDE_GL3 | |
#define GLFW_NO_GLU | |
#include <GL/glfw.h> | |
#include <glm/glm.hpp> | |
#include <glm/gtc/matrix_transform.hpp> | |
#include <glm/gtc/type_ptr.hpp> | |
extern "C" { |
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
using System; | |
using System.Runtime.InteropServices; | |
using FFmpeg.AutoGen; | |
namespace StreamVideo.Ffmpeg | |
{ | |
internal static class Extensions | |
{ | |
static unsafe string av_strerror(int error) | |
{ |
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
#include "H264_Decoder.h" | |
H264_Decoder::H264_Decoder(h264_decoder_callback frameCallback, void* user) | |
:codec(NULL) | |
,codec_context(NULL) | |
,parser(NULL) | |
,fp(NULL) | |
,frame(0) | |
,cb_frame(frameCallback) | |
,cb_user(user) |
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
public static class AdbHelper | |
{ | |
public static string AdbPath = "adb.exe"; | |
public static MemoryStream ExecuteCommandBuffer(string command) | |
{ | |
using(Process process = new Process()) | |
{ | |
process.StartInfo.FileName = AdbPath; | |
process.StartInfo.WorkingDirectory = Directory.GetCurrentDirectory(); |
OlderNewer