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
/* Address */ | |
"Address" = "Adresse"; | |
/* Birth date of person */ | |
"BirthDate" = "Geburtsdatum"; | |
/* Is birth date estimated? */ | |
"BirthDate Estimated" = "Geburtsdatum geschätzt"; | |
/* Error message */ |
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
if ! [[ $# -eq 1 || $# -eq 2 || $# -eq 4 ]]; then | |
echo "Usage: $0 <author> [<start_date> <end_date>] [output_dir]" | |
echo "Example: $0 [email protected] 2015-05-25 2015-08-21 ./patches" | |
exit | |
fi | |
author=$1 | |
if [ $# -gt 3 ]; then | |
output_dir=$4 |
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
__author__ = 'yousefhamza' | |
import json | |
import sys | |
if len(sys.argv) != 2: | |
print 'Usage: python parse_tabs.py <file name>' | |
exit() | |
tab_file = open(sys.argv[1]) | |
json_stack = [] |
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 "cuda_runtime.h" | |
#include "device_launch_parameters.h" | |
#include <stdio.h> | |
#define BLOCKSIZE 2 | |
#define THREADSIZE 3 | |
void cpu_convolve(float *image, float *filter, float *result, unsigned int N) { | |
float sum; | |
for (unsigned int i = 1; i < N - 1; i++) |
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
data:text/text;charset=utf-8, | |
# Cause: Crash due to signal: SIGSEGV(SEGV_MAPERR) at 00000000 | |
# Reported at: 2023-06-07 12:00:57 UTC | |
Thread 0 Unknown: | |
0 libsystem_kernel.dylib 0x1dc065c84 mach_msg2_trap + 8 | |
1 libsystem_kernel.dylib 0x1dc078e2c mach_msg_overwrite + 539 | |
2 libsystem_kernel.dylib 0x1dc0661c8 mach_msg + 23 | |
3 CoreFoundation 0x19d3c6114 __CFRunLoopServiceMachPort + 159 |