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
[General] | |
# warning, notify, info, verbose | |
loglevel = notify | |
bypass-system = true | |
skip-proxy = 127.0.0.1, 192.168.0.0/16, 193.168.0.0/24, 10.0.0.0/8, 172.16.0.0/12, 100.64.0.0/10,localhost,*.local | |
collapse-policy-group-items = true | |
interface = 0.0.0.0 | |
show-auto-proxy-changed-notification = false | |
ipv6 = true | |
allow-wifi-access = true |
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
Doing md4 for 3s on 16 size blocks: 2345648 md4's in 3.00s | |
Doing md4 for 3s on 64 size blocks: 2020116 md4's in 3.00s | |
Doing md4 for 3s on 256 size blocks: 1432548 md4's in 3.00s | |
Doing md4 for 3s on 1024 size blocks: 658868 md4's in 3.00s | |
Doing md4 for 3s on 8192 size blocks: 109122 md4's in 3.00s | |
Doing md4 for 3s on 16384 size blocks: 55826 md4's in 3.00s | |
Doing md5 for 3s on 16 size blocks: 4780682 md5's in 3.00s | |
Doing md5 for 3s on 64 size blocks: 2913582 md5's in 3.00s | |
Doing md5 for 3s on 256 size blocks: 1354068 md5's in 3.00s | |
Doing md5 for 3s on 1024 size blocks: 430729 md5's in 3.00s |
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
Doing md4 for 3s on 16 size blocks: 733963 md4's in 3.00s | |
Doing md4 for 3s on 64 size blocks: 634089 md4's in 3.00s | |
Doing md4 for 3s on 256 size blocks: 439716 md4's in 3.00s | |
Doing md4 for 3s on 1024 size blocks: 197994 md4's in 3.00s | |
Doing md4 for 3s on 8192 size blocks: 32159 md4's in 3.00s | |
Doing md5 for 3s on 16 size blocks: 585757 md5's in 2.99s | |
Doing md5 for 3s on 64 size blocks: 489303 md5's in 3.00s | |
Doing md5 for 3s on 256 size blocks: 319333 md5's in 2.99s | |
Doing md5 for 3s on 1024 size blocks: 135014 md5's in 3.00s | |
Doing md5 for 3s on 8192 size blocks: 20992 md5's in 3.00s |
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 fs = require('fs'); | |
const pdfParse = require('pdf-parse'); | |
let content = [] | |
const readPdf = async (uri) => { | |
const buffer = fs.readFileSync(uri); | |
try { | |
const data = await pdfParse(buffer); |
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
<template> | |
<div class="root"> | |
<table-with-filters | |
:ref="tableFilter" | |
:columns="columns" | |
:sections="sections" | |
:is-with-sortable="true" | |
:is-with-pagination="true" | |
:is-with-column-select="true" | |
:table-props="tableProps" |
OlderNewer