Skip to content

Instantly share code, notes, and snippets.

View KengoSawa2's full-sized avatar
💭
I don’t want to work forever :)

Kengo Sawatsu KengoSawa2

💭
I don’t want to work forever :)
View GitHub Profile
@mkropat
mkropat / knownpaths.py
Last active April 19, 2024 00:07
Python wrapper around the SHGetKnownFolderPath Windows Shell function
import ctypes, sys
from ctypes import windll, wintypes
from uuid import UUID
class GUID(ctypes.Structure): # [1]
_fields_ = [
("Data1", wintypes.DWORD),
("Data2", wintypes.WORD),
("Data3", wintypes.WORD),
("Data4", wintypes.BYTE * 8)
@voluntas
voluntas / webrtc.rst
Last active April 5, 2024 03:03
WebRTC コトハジメ
@josephg
josephg / main.c
Created August 26, 2017 08:20
kqueue network & file example
#include <sys/socket.h>
#include <sys/un.h>
#include <sys/event.h>
#include <netdb.h>
#include <assert.h>
#include <unistd.h>
#include <fcntl.h>
#include <stdio.h>
#include <errno.h>
"""
A simple example pyside app that demonstrates dragging and dropping
of files onto a GUI.
- This app allows dragging and dropping of an image file
that this then displayed in the GUI
- Alternatively an image can be loaded using the button
- This app includes a workaround for using pyside for dragging and dropping
@DaisukeMiyamoto
DaisukeMiyamoto / zabbix_rtx1210.xml
Last active January 25, 2023 10:16
zabbix template for YAMAHA RTX1210 by SNMP agent v2
<?xml version="1.0" encoding="UTF-8"?>
<zabbix_export>
<version>3.2</version>
<date>2017-06-11T10:23:22Z</date>
<groups>
<group>
<name>Templates</name>
</group>
</groups>
<templates>
@fereria
fereria / createMenu.py
Last active December 9, 2020 15:52
Windowにメニューとツールバーを追加するサンプル
## -*- coding: utf-8 -*-
import sys
from PySide import QtCore, QtGui
from PySide.QtUiTools import QUiLoader
import remitools.lib.qt as remiQt
"""
iconの読み込み。
QtDesignerで、Iconを読み込んで、リソースファイルを作成する(qrcファイル)
@pudquick
pudquick / statfs.py
Last active August 27, 2020 05:10
Calling statfs from python on OS X via ctypes for inspecting filesystem information
from ctypes import CDLL, Structure, c_uint32, c_int64, c_uint64, c_char, create_string_buffer, byref, c_ubyte, c_int16, c_int64, c_int32
# when _DARWIN_FEATURE_64_BIT_INODE is not defined
class statfs32(Structure):
_fields_ = [
("f_otype", c_int16),
("f_oflags", c_int16),
("f_bsize", c_int64),
("f_iosize", c_int64),
("f_blocks", c_int64),
@Atsushi4
Atsushi4 / tablewidget_int_sort.moc
Created September 13, 2012 14:20
QtのItemViewの規定動作確認。setしたデータの型によってsortの挙動やDelegateが変わる。
#include <QTableWidget>
#include <QDateTime>
#include <QApplication>
static void init(QTableWidget &w) {
w.setSortingEnabled(true);
w.setRowCount(10);
w.setColumnCount(10);
w.resize(640, 480);
@voluntas
voluntas / webrtc_conf_ja.rst
Last active September 20, 2017 03:08
WebRTC Conference Japan で話してきた
#!/bin/bash
export LANG=C
for ((i=0;1;i++)) ; do
if make -j16 >/dev/null 2>>log.txt ; then
echo "$i: $(date): OK" >>log.txt
else
echo "$i: $(date): NG" >>log.txt
fi