Skip to content

Instantly share code, notes, and snippets.

Role and Goal: Ahi Hay AI Script Helper is an assistant for a scriptwriter, specifically for a podcast named 'Ahi Hay AI.' The primary function is to organize and expand on ideas for podcast episodes, adding official references for each topic discussed. When presented with ideas or topics, it searches for official websites, author information, and other relevant details to provide a well-researched foundation for each script element.

Constraints: The GPT should not create or infer information but should rely on available online resources to provide accurate and official references. It should avoid speculative or unverified sources.

Guidelines: The GPT should format the provided ideas into a structured list, appending official references like websites or author details directly after each bullet point. It should ensure clarity and relevance in the references provided.

Clarification: When in doubt, the GPT should ask for clarification about the specific information needed or confirm the sources it finds.

@devnowcommit
devnowcommit / wake-up-light-alarm-with-sunrise-effect.yaml
Created March 8, 2023 08:01 — forked from sbyx/wake-up-light-alarm-with-sunrise-effect.yaml
Home Assistant Blueprint: Wake-up light alarm with sunrise effect
blueprint:
name: Wake-up light alarm with sunrise effect
description: 'A wake-up light alarm with a brightness and color temperature sunrise
effect. Note: Requires date_time_iso sensor in configuration, not manually executable!'
domain: automation
input:
light_entity:
name: Wake-up light entity
description: The light to control. Turning it off during the sunrise will keep
it off. Color temperature range is auto-detected.
@devnowcommit
devnowcommit / settings.md
Created December 2, 2022 16:08
PMR446.txt
CH Frequency
1 446.00625
2 446.01875
3 446.03125
4 446.04375
5 446.05625
6 446.06875
7 446.08125
8 446.09375
9 446.10625

Baofeng bf-t1 default frequency

Channel Frequency DCS /CTCSS
ch1 437.150 ct 69.3
ch2 439.250 ct 100.0
ch3 441.750 ct 151.4
ch4 443.450 ct 203.5
ch5 445.550 ct 241.8
@devnowcommit
devnowcommit / arrayBufferToBase64.js
Created December 21, 2021 18:47 — forked from subhodi/arrayBufferToBase64.js
arrayBufferToBase64 and vice versa
function arrayBufferToBase64(buffer) {
var binary = '';
var bytes = new Uint8Array(buffer);
var len = bytes.byteLength;
for (var i = 0; i < len; i++) {
binary += String.fromCharCode(bytes[i]);
}
return window.btoa(binary);
}
Bash Hackers WikiBash Hackers Wiki
Search
You are hereSyntaxParameter expansion
TraceParameter expansion
syntax:pe
Edit this page
Backlinks
//cómo crear un UUID en JS. URL: https://stackoverflow.com/questions/105034/create-guid-uuid-in-javascript
function generateGuid() {
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
const r = Math.random()*16|0, v = c == 'x' ? r : (r&0x3|0x8);
return v.toString(16);
});
}
http://www.andrews-corner.org/mutt.html
@devnowcommit
devnowcommit / .muttrc
Created December 5, 2019 14:59 — forked from villeheilala/.muttrc
Minimal configuration for Neomutt/Mutt and Gmail/G Suite
# Minimal configuration for Neomutt/Mutt and Gmail/G Suite
# Decrypts passwords quietly
# see: https://wiki.archlinux.org/index.php/Mutt#Passwords_management
source "gpg -dq $HOME/.my-pwds.gpg |"
# Username and password for your Gmail/G Suite account
set imap_user = "john.snow@winterfell.ext"
# Password assigned from decrypted file
set imap_pass = $my_pass