-
namespaces - overview of Linux namespaces http://man7.org/linux/man-pages/man7/namespaces.7.html
-
mount_namespaces - overview of Linux mount namespaces
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
/* | |
* PCI tutorial | |
* | |
* This program is free software; you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation; either version 2 of the License, or | |
* (at your option) any later version. | |
* | |
* This program is distributed in the hope that it will be useful, | |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
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 <stdio.h> | |
#include <stdlib.h> | |
#include <math.h> | |
#define FOREVER while(1){ (void)0; } | |
#define PI 3.141592654f | |
//this marco only usable by FFT_Compute() function assuming we already have var realComp, imagineComp defined | |
//four inputs: real is real component value, imagine is imaginary component value | |
//kn is muplication of time domain sample location n and frequency domain sample location k | |
// sum is total number of samples in current stage (stageNumber*2) | |
#define EXP_NEG_TWOPI_JAY_N_K_OVER_N(real, imagine, kn,sum) { realComp = real*cos(-2.0f*PI*kn/(float)sum)-imagine*sin(-2.0f*PI*kn/(float)sum); \ |
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
''' | |
Input MD5 : BB4E83D7A77AADD7F62728314EF09461 | |
File Name : C:\Program Files (x86)\Powersaves For AMIIBO\Powersaves For AMIIBO.exe | |
0x108fd0 : schannel_recv -> log buffer on end | |
0x1090d0 : schannel_recv end | |
0x108d10 : schannel_send -> log buffer on start | |
0xce61 : deals with https "Token" | |
0xceab : deals with https "Vuid" |
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
ar_windows_7_enterprise_with_sp1_x64_dvd_u_677643.iso Languages: Arabic SHA1: 5F7E81A84E64270764C3C649598370015E341C7B | |
ar_windows_7_enterprise_with_sp1_x86_dvd_u_677691.iso Languages: Arabic SHA1: 11BB8461C3D69D8FB35498E1CA0ED5A3B99A60D3 | |
ar_windows_7_enterprise_x64_dvd_x15-70765.iso Languages: Arabic SHA1: 771C036295039F6F69EB4A243048C37EA24DF830 | |
ar_windows_7_enterprise_x86_dvd_x15-70761.iso Languages: Arabic SHA1: 7812E8FE810CB8F23319A1A4A5E9A86B77D2D973 | |
ar_windows_7_home_basic_with_sp1_x86_dvd_u_676462.iso Languages: Arabic SHA1: 18B9E305F71874C296817495FBC97F291D1141E8 | |
ar_windows_7_home_basic_x86_dvd_x15-65636.iso Languages: Arabic SHA1: 8F855966C7CEF0AF8A2A7E1AC945A171389FB8B3 | |
ar_windows_7_home_premium_with_sp1_x64_dvd_u_676551.iso Languages: Arabic SHA1: 8CC2AF16D33EE110DF4975DDB24BA27B44D0B9E1 | |
ar_windows_7_home_premium_with_sp1_x86_dvd_u_676666.iso Languages: Arabic SHA1: CC6232A0FF99DA23D6F1E34ECFD76DBA1D138151 | |
ar_windows_7_home_premium_x64_dvd_x15-65712.iso Languages: Arabic SHA1: A4C577BD1704556E18CF |
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 <windows.h> | |
#include <stdlib.h> | |
struct m_thread_info { | |
DWORD tid; | |
}; | |
typedef struct m_thread_info *pthread_t; | |
static DWORD mpv_tls_index = FLS_OUT_OF_INDEXES; |
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
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
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
function wait(ms) { | |
return new Promise((resolve) => setTimeout(resolve, ms)); | |
} |
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
function throttle(fn) { | |
let waiting = false; | |
return function() { | |
if (!waiting) { | |
waiting = true; | |
requestAnimationFrame(() => { | |
waiting = false; | |
fn.apply(this, arguments); | |
}); | |
} |
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
function debounce(fn, ms) { | |
let id; | |
return function() { | |
clearTimeout(id); | |
id = setTimeout(() => fn.apply(this, arguments), ms); | |
} | |
} |
OlderNewer