- consolidate sockopts into :file:`setsockopt.c`
- add support for ipv[4|6] pseudoheader checksum to :file:`checksum.c`
- Wherever possible, disable loading the CLI tree for massive performance gains (> 3x)
- If running in parallel, disable pidfile checks
- Skip option parsing
- Disable checksums where applicable
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
ovrResult mygis(ovrSession session, ovrControllerType controllerType, ovrInputState* inputState) | |
{ | |
ovrResult r = gis(session, controllerType, inputState); | |
ovrVector2f lh = inputState->Thumbstick[0]; | |
ovrVector2f rh = inputState->Thumbstick[1]; | |
if (controllerType == ovrControllerType_Touch) { | |
int resx = 500; | |
int resy = 500; |
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
- hello | |
+ world |
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
#!/bin/bash | |
# ---------------------------------------------------------------------------------- | |
# Script for checking the temperature reported by the ambient temperature sensor, | |
# and if deemed too high send the raw IPMI command to enable dynamic fan control. | |
# | |
# Requires: | |
# ipmitool – apt-get install ipmitool | |
# slacktee.sh – https://github.com/course-hero/slacktee | |
# ---------------------------------------------------------------------------------- |
Programs that want to bind themselves to free cores present some challenges
when run within Docker.
CPU pinning allows a program to request it be assigned exclusively to a core or set of cores This improves cache locality and other factors that become relevant for extremely CPU bound processes, especially in combination with other configurations that prevent the scheduler from assigning other processes
- Snaps don't work if your homedir isn't /home/foo
- Snaps don't work if your homedir is /home/foo but it's nfs
- microk8s straight up doesn't work on zfs (canonical/microk8s#401)
what is software testing
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
2020/03/29 18:25:08 warnings: PIM: pim_parse_addr_group: unknown group address encoding family=0 mask_len=0 from | |
2020/03/29 18:25:08 warnings: PIM: pim_tlv_parse_holdtime: PIM hello holdtime TLV with incorrect value size=173 correct=2 from 0.1.0.173 on interface fuzziface | |
2020/03/29 18:25:08 warnings: PIM: pim_tlv_parse_holdtime: PIM hello holdtime TLV with incorrect value size=173 correct=2 from 0.1.0.173 on interface fuzziface | |
2020/03/29 18:25:08 warnings: PIM: pim_tlv_parse_holdtime: PIM hello holdtime TLV with incorrect value size=173 correct=2 from 0.1.0.173 on interface fuzziface | |
2020/03/29 18:25:08 warnings: PIM: pim_tlv_parse_holdtime: PIM hello holdtime TLV with incorrect value size=173 correct=2 from 0.1.0.173 on interface fuzziface | |
2020/03/29 18:25:08 warnings: PIM: pim_tlv_parse_holdtime: PIM hello holdtime TLV with incorrect value size=173 correct=2 from 0.1.0.173 on interface fuzziface | |
2020/03/29 18:25:08 warnings: PIM: pim_tlv_parse_holdtime: PIM hello holdtime TLV with incorrect value size=173 |
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
- In Windows, open Settings -> Bluetooth & other devices | |
- If Teric has been paired before, click it and click "Remove device" | |
- Open Subsurface, go to Import -> From Dive Computer | |
- In Windows Settings, click Add Bluetooth or other device -> Bluetooth | |
- On Teric, initiate Bluetooth mode (it seems it only sends one beacon at | |
startup, so Windows must be listening on the adapter first) | |
- Pair the Teric when it appears in the Windows panel | |
- Go to Subsurface, select the Teric as the model, and click "Download" | |
- If it fails, repeat all steps; sometimes it only works on the second try |