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 QMK_KEYBOARD_H | |
bool spam_space; | |
bool spam_rmb; | |
uint16_t spam_timer = false; | |
uint16_t spam_interval = 50; | |
uint16_t spam_rmb_timer = false; | |
uint16_t spam_rmb_interval = 1600; | |
enum planck_keycodes { |
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
Filter Settings file | |
Room EQ V5.20.7 | |
Dated: Mar 25, 2023 2:29:48 AM | |
Notes: | |
Equaliser: Generic | |
Vector average | |
Filter 1: ON PK Fc 60.70 Hz Gain 1.70 dB Q 3.101 |
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
--- | |
devices: | |
samplerate: 48000 | |
chunksize: 4096 | |
target_level: 4096 | |
adjust_period: 5 | |
enable_rate_adjust: true | |
capture: | |
type: Alsa | |
channels: 6 |
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 xbmc | |
from pywizlight import wizlight, PilotBuilder | |
class XBMCPlayer( xbmc.Player ): | |
def __init__(self, *args): | |
xbmc.Player.__init__(self) | |
xbmc.log('Kodi WiZ __init__') | |
def onPlayBackStarted( self ): |
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 asyncnet, asyncdispatch, nativesockets | |
proc discover(): Future[string] {.async.} = | |
let socket = newAsyncSocket(AF_INET, SOCK_DGRAM, IPPROTO_UDP) | |
socket.setSockOpt(OptReuseAddr, true) | |
socket.setSockOpt(OptReusePort, true) | |
socket.setSockOpt(OptBroadcast, true) | |
await socket.sendTo("255.255.255.255", Port(12346), $0b10) | |
var data = await socket.recvFrom(15) |
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 net | |
let socket = newSocket(AF_INET, SOCK_DGRAM, IPPROTO_UDP) | |
socket.setSockOpt(OptReuseAddr, true) | |
socket.setSockOpt(OptReusePort, true) | |
socket.setSockOpt(OptBroadcast, true) | |
socket.sendTo("255.255.255.255", Port(12346), $0b10) | |
var | |
receivedFrom = "" |
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
# | |
# Automatically generated file; DO NOT EDIT. | |
# Linux/arm64 4.9.184 Kernel Configuration | |
# | |
CONFIG_ARM64=y | |
CONFIG_64BIT=y | |
CONFIG_ARCH_PHYS_ADDR_T_64BIT=y | |
CONFIG_MMU=y | |
CONFIG_DEBUG_RODATA=y | |
CONFIG_ARM64_PAGE_SHIFT=12 |
This file has been truncated, but you can view the full file.
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
foidbgen 2016 2800 2016 1 44 Jan08 ? 00:52:34 /usr/lib64/chromium/chromium --ppapi-flash-path=/usr/lib64/chromium/PepperFlash/libpepflashplayer.so --ppapi-flash-version=28.0.0.126 --password-store=detect --enable-threaded-compositing --ui-disable-partial-swap --explicitly-allowed-ports=6697 | |
foidbgen 2016 2800 2020 0 44 Jan08 ? 00:07:07 /usr/lib64/chromium/chromium --ppapi-flash-path=/usr/lib64/chromium/PepperFlash/libpepflashplayer.so --ppapi-flash-version=28.0.0.126 --password-store=detect --enable-threaded-compositing --ui-disable-partial-swap --explicitly-allowed-ports=6697 | |
foidbgen 2016 2800 2027 0 44 Jan08 ? 00:00:00 /usr/lib64/chromium/chromium --ppapi-flash-path=/usr/lib64/chromium/PepperFlash/libpepflashplayer.so --ppapi-flash-version=28.0.0.126 --password-store=detect --enable-threaded-compositing --ui-disable-partial-swap --explicitly-allowed-ports=6697 | |
foidbgen 2016 2800 2028 0 44 Jan08 ? 00:00:00 /usr/lib64/chromium/chromium --ppapi-flash-path=/u |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<manifest> | |
<project name="ixmoe/android_device_moto_shamu_t" path="device/motorola/shamu_t" revision="cm-14.1" /> | |
<project name="ixmoe/android_kernel_moto_shamu_t" path="kernel/motorola/shamu_t" revision="cm-14.1" /> | |
<project name="ixmoe/android_vendor_motorola_shamu_t" path="vendor/motorola/shamu_t" revision="cm-14.1" /> | |
</manifest> |
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 java.util.Scanner; | |
import java.math.BigInteger; | |
import java.io.PrintWriter; | |
import java.io.File; | |
public class Hello{ | |
public static BigInteger n,sum,i,d; | |
public static int cores; | |
static class MyThread implements Runnable { |
NewerOlder