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 <string.h> | |
#include <audio_codec_data_if.h> | |
#include <esp_codec_dev.h> | |
#include <esp_codec_dev_defaults.h> | |
#include <esp_event.h> | |
#include <esp_log.h> | |
#include <inttypes.h> | |
#include <nvs_flash.h> | |
#include <protocol_examples_common.h> |
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
// ==UserScript== | |
// @name LCSC JPY | |
// @namespace npm/vite-plugin-monkey | |
// @version 1.0.4 | |
// @author nusu- | |
// @description LCSCを日本円表記に変換します。 | |
// @license Apache-2.0 | |
// @icon https://www.lcsc.com/favicon.ico | |
// @match https://www.lcsc.com/* | |
// @connect api.excelapi.org |
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
// ==UserScript== | |
// @name Fix Google Translate messy | |
// @version 0.0.1 | |
// @run-at document-start | |
// @match *://*/* | |
// @noframes | |
// ==/UserScript== | |
// https://github.com/facebook/react/issues/11538#issuecomment-417504600 | |
!function(){if(Array.from(document.scripts).find(({src:b})=>b.includes("react"))&&"function"==typeof Node&&Node.prototype){const b=Node.prototype.removeChild;Node.prototype.removeChild=function(a){return a.parentNode!==this?a:b.apply(this,arguments)};const d=Node.prototype.insertBefore;Node.prototype.insertBefore=function(a,c){return c&&c.parentNode!==this?a:d.apply(this,arguments)}}}(); |
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/bash | |
echo "starting pod" | |
# nvidia | |
apt-key del 7fa2af80 | |
apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2004/x86_64/3bf863cc.pub | |
# setup | |
apt update |
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
// ==UserScript== | |
// @name Product name checker | |
// @match https://www.amazon.co.jp/* | |
// @grant none | |
// @version 0.0.1 | |
// @author nusu- | |
// ==/UserScript== | |
window.onload = function () { | |
const error_log = [] |