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/sh | |
set -e | |
DMG_NAME=ntfsmac17_trial.dmg | |
curl -LO "https://dl.paragon-software.com/demo/$DMG_NAME" | |
DMG_PATH=$(hdiutil attach -nobrowse -readonly "$DMG_NAME" | grep /Volumes | awk '{print $3}') | |
TMP_PATH=/tmp/paragon-ntfs-pkg |
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
ctl.!default { | |
type pulse | |
device "RDPSink" | |
} |
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
package main | |
import ( | |
"fmt" | |
"runtime" | |
"sync" | |
) | |
// Job represents the work unit | |
type Job struct { |
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 <array> | |
#include <cstdio> | |
#include <map> | |
#include <type_traits> | |
namespace ce { | |
template<class InputIt, class UnaryPredicate> | |
constexpr InputIt find_if_not(InputIt first, InputIt last, UnaryPredicate q) | |
{ | |
for (; first != last; ++first) { |
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
address <- function(x) .Internal(inspect(x)) | |
qq <- function() { | |
q(save = "no") | |
} | |
test <- list() | |
test[[1]] <- function() { | |
a = 1 |