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
cmake_minimum_required(VERSION 3.6) | |
project(jbigkit) | |
set(JBIG_SRC libjbig/jbig.c libjbig/jbig_ar.c) | |
set(JBIG85_SRC libjbig/jbig85.c libjbig/jbig_ar.c libjbig/jbig_ar.h) | |
add_library(libjbig STATIC ${JBIG_SRC}) | |
set_target_properties(libjbig PROPERTIES PUBLIC_HEADER "libjbig/jbig_ar.h;libjbig/jbig.h") | |
add_library(libjbig85 STATIC ${JBIG85_SRC}) |
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
#include <iostream> | |
#include <librealsense2/rs.hpp> | |
using namespace std; | |
using namespace rs2; | |
const char* rs2_option_enum_name(int i); | |
int main() | |
{ |
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 os | |
import subprocess | |
import time | |
import psutil | |
nvtask = {} | |
while True: | |
nvrescmd = subprocess.run(['nvidia-smi','pmon','-c','1'], stdout=subprocess.PIPE) |
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 Use this script After wire is connected | |
netsh wlan disconnect | |
route delete 0.0.0.0 | |
netsh wlan connect waseda-wpa2 | |
route add 133.9.0.0 mask 255.255.0.0 192.168.11.1 |