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
/* | |
* ACPI UBIX fix for Toshiba Satellite L750D | |
* https://bbs.archlinux.org/viewtopic.php?id=152543 | |
* | |
* Symptoms: | |
* ACPI Exception: AE_AML_PACKAGE_LIMIT, Index (0x0000000000000011) is beyond end of object (20120320/exoparg2-418) | |
* ACPI Error: Method parse/execution failed [\_SB_.BAT1.UBIX] (Node ffff880203e8a168), AE_AML_PACKAGE_LIMIT (20120320/psparse-536) | |
* ACPI Error: Method parse/execution failed [\_SB_.BAT1._BIX] (Node ffff880203e8a0f0), AE_AML_PACKAGE_LIMIT (20120320/psparse-536) | |
* ACPI Exception: AE_AML_PACKAGE_LIMIT, Evaluating _BIX (20120320/battery-419) | |
* |
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
commit 41c027ae2136fc48d1b6eac3a17fbd2b8b4d3717 | |
Author: Peter Wu <[email protected]> | |
Date: Fri May 24 13:38:20 2013 +0200 | |
Remove references to __devinit/__devexit (dropped in Linux 3.8) | |
diff --git a/rtsx.c b/rtsx.c | |
index c1c76f3..70a8d03 100644 | |
--- a/rtsx.c | |
+++ b/rtsx.c |
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
#!/bin/bash | |
# Quick 'n' dirty generator for extending wireshark cipher suites | |
# Author: Peter Wu <[email protected]> | |
p() { | |
local tmp kex sig keysize dig diglen | |
[ $# -gt 0 ] || return | |
num=$(($2*0x100 + $3)) | |
tmp=${1%%_WITH_*} |
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
diff --git a/epan/dissectors/packet-ssl.c b/epan/dissectors/packet-ssl.c | |
index e4e2ec4..31dbada 100644 | |
--- a/epan/dissectors/packet-ssl.c | |
+++ b/epan/dissectors/packet-ssl.c | |
@@ -2154,14 +2154,15 @@ dissect_ssl3_handshake(tvbuff_t *tvb, packet_info *pinfo, | |
size = (int)strlen(ssl_psk); | |
- /* psk must be 0 to 16 bytes*/ | |
- if (size < 0 || size > 32 || size % 2 != 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
--- a/apps/pkcs8.c | |
+++ b/apps/pkcs8.c | |
@@ -157,6 +157,12 @@ int MAIN(int argc, char **argv) | |
topk8 = 1; | |
else if (!strcmp (*args, "-noiter")) | |
iter = 1; | |
+ else if (!strcmp (*args, "-iter")) | |
+ { | |
+ if (!args[1]) goto bad; | |
+ iter = atoi(*(++args)); |
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
/* cc -g -Wall -Wextra -fsanitize=address robot.c -lGL -lglut -lGLU -o robot */ | |
#include <stdio.h> /* for printf of glError */ | |
#include <GL/glut.h> | |
void display(void) { | |
glClear(GL_COLOR_BUFFER_BIT); | |
// draw axis | |
glLineWidth(2); | |
glBegin(GL_LINES); |
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
# | |
# Makefile for the USB serial device drivers. | |
# | |
# Object file lists. | |
obj-$(CONFIG_USB_SERIAL) += usbserial.o | |
usbserial-y := usb-serial.o generic.o bus.o |
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
#!/usr/bin/env python | |
# Attempt to find the cause for http://meta.stackoverflow.com/q/228587/150311 | |
# (“Hot Network Questions” change when I hit Back button in my browser) | |
try: | |
from http.server import * | |
except: | |
from BaseHTTPServer import * | |
from datetime import datetime | |
import time |
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
ACTION!="add", GOTO="libticables_end" | |
# serial device (assume TI calculator) | |
#KERNEL=="ttyS[0-3]", TAG+="uaccess" | |
# parallel device (assume TI calculator) | |
#SUBSYSTEM=="ppdev", TAG+="uaccess" | |
# SilverLink | |
SUBSYSTEM=="usb", ATTR{idVendor}=="0451", ATTR{idProduct}=="e001", TAG+="uaccess" | |
# TI-84+ DirectLink | |
SUBSYSTEM=="usb", ATTR{idVendor}=="0451", ATTR{idProduct}=="e003", TAG+="uaccess" |
OlderNewer