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
Show hidden characters
[ | |
{ | |
"caption": "Epoch Converter", | |
"command": "epoch_converter" | |
} | |
] |
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
#!/bin/bash | |
# step 1: install these tools | |
# sudo apt install sysstat | |
# sudo apt install ifstat | |
# step 2: setup header for the files in ~/scripts |
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
cmake_minimum_required(VERSION 3.12) | |
project(concat_files) | |
set(CMAKE_CXX_STANDARD 14) | |
# set(CMAKE_CXX_COMPILER em++) | |
add_executable(concat_files main.cpp) | |
set_target_properties(concat_files PROPERTIES LINK_FLAGS "\ | |
-s WASM=1 \ |
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
cmake_minimum_required(VERSION 3.12) | |
project(uppercase) | |
set(CMAKE_CXX_STANDARD 14) | |
add_executable(uppercase uppercase.cpp) | |
set_target_properties(uppercase PROPERTIES LINK_FLAGS "-s WASM=1 -s EXPORTED_FUNCTIONS=['_uppercase_file'] -s EXPORTED_RUNTIME_METHODS=['ccall','cwrap','FS'] -s FORCE_FILESYSTEM=1") |
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
#!/bin/bash | |
# The output file | |
output_file='combined.fbs' | |
# Remove the output file if it already exists | |
if [ -f $output_file ]; then | |
rm $output_file | |
fi |
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
cmake_minimum_required(VERSION 3.12) | |
project(fileProcessor) | |
set(CMAKE_CXX_STANDARD 11) | |
add_executable(fileProcessor fileProcessor.cpp) | |
# set_target_properties(fileProcessor PROPERTIES LINK_FLAGS "-s WASM=1 -s EXTRA_EXPORTED_RUNTIME_METHODS='[\"cwrap\"]'") | |
# set_target_properties(fileProcessor PROPERTIES LINK_FLAGS "-s WASM=1 -s EXPORTED_RUNTIME_METHODS='[\"cwrap\"]' -s EXPORTED_FUNCTIONS='[\"_malloc\", \"_free\"]'") | |
set_target_properties(fileProcessor PROPERTIES LINK_FLAGS "-s WASM=1 -s EXPORTED_RUNTIME_METHODS='[\"cwrap\", \"UTF8ToString\"]' -s EXPORTED_FUNCTIONS='[\"_malloc\", \"_free\"]'") |
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
var serp = document.querySelector('cib-serp'); | |
console.log("Found # serp: ") | |
console.log(serp) | |
var conversation = "" | |
/* Check if the element has a shadow root */ | |
if (serp && serp.shadowRoot) { | |
/* Select the "cib-conversation" element within the shadow root */ | |
var conversation = serp.shadowRoot.querySelector('cib-conversation'); |
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
import SwiftUI | |
import spmlib | |
struct ContentView: View { | |
let l = SPMLib() | |
var body: some View { | |
VStack { |
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
var hItems = document.querySelectorAll("div[data-testid='issue-history.ui.history-items.generic-history-item.history-item']") | |
var desc = hItems[1] | |
if (hItems.length < 1) { | |
alert("switch to history tab and re-run") | |
return | |
} | |
else { | |
Array.from(hItems).forEach(function (desc, idx){ | |
if (desc.childNodes.length > 1 ){ | |
prof = desc.childNodes[0] |
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
# youtube cosmetics | |
www.youtube.com###logo-icon > .yt-icon.style-scope > .yt-spec-icon-shape > div | |
www.youtube.com###masthead-container:style(opacity:0.25) | |
www.youtube.com###top-row:style(opacity:0.25) | |
www.youtube.com##ytd-comments-header-renderer:style(opacity:0.25) | |
www.youtube.com###secondary:style(opacity:0.25) | |
www.youtube.com###description:style(opacity:0.25) | |
www.youtube.com###sections:style(opacity:0.25) |
NewerOlder