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
(function () { | |
let referralBox = document.getElementsByName("fieldArea0")[0]; | |
let groups = referralBox.querySelectorAll("option"); | |
let txt = ""; | |
groups.forEach( | |
function (e) { | |
if (e.textContent === "+Individual Users") |
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
(() => { | |
const hi_dom = document.getElementById("sqs-slash-page-header"); | |
let hello_index = 0; | |
const display_time = 4500; | |
const fade_out_time = 500; | |
const fade_in_time = 500; | |
const buffer = 30; | |
const hellos = [ |
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
SELECT | |
COUNT(*), | |
submission__btracking, | |
mrUSERID | |
FROM | |
( | |
SELECT | |
DISTINCT MASTER1.mrID, | |
MASTER1.submission__btracking, | |
MASTER1_FIELDHISTORY.mrUSERID |
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
const csv = require('csvtojson'); | |
const fs = require('fs'); | |
const files = []; | |
const colParserBool = item => { | |
return item === "true"; | |
}; | |
const colParserStringSet = item => { |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<!-- Import JavaScript and CSS here --> | |
<!-- | |
<link rel="stylesheet" href="style.css" /> | |
<script src="script.js"></script> | |
--> | |
<!-- End Import JavaScript and CSS --> |
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
# all <-- main script | |
# ========================== | |
sudo ./lttng | |
if [ $1 = 'docker' ]; then | |
./docker | |
else | |
./lxc | |
fi | |
sudo ./dlttng |
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
#include <functional> | |
#include <iterator> | |
#include <vector> | |
#include <iostream> | |
namespace std { | |
template<typename S, typename E> | |
vector<E> vector_map(typename std::vector<S>::iterator start, typename std::vector<S>::iterator end, std::function<E(S)> lambda) { | |
vector<E> ret; |
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
#include <stdio.h> | |
typedef union U1 { | |
int a[2]; | |
char c; | |
short s; | |
} U1; | |
int main() { | |
long long tmp; |
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
#include <stdio.h> | |
#include <stdlib.h> | |
int main() { | |
char* tmp = (char*)(malloc(2 * sizeof(long long))); | |
printf("Found pointer: 0x%llX\n", (unsigned long long)tmp); | |
unsigned long long* dbl = (long long*)(tmp + 2); | |
printf("Cast pointer location (+ 2): 0x%llX\n", (unsigned long long)dbl); |
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
#include <stdio.h> | |
struct example; | |
union u { | |
struct example *access; | |
int c; | |
short d; | |
}; |
OlderNewer