These instructions ensure consistent, properly structured content when sending information to Tana via MCP.
IMPORTANT: ANY TIME I ask to do something with Tana, use this MCP
{ | |
"name": "Voicenotes to Tana Integration", | |
"flow": [ | |
{ | |
"id": 8, | |
"module": "gateway:CustomWebHook", | |
"version": 1, | |
"parameters": { | |
"hook": 2282247, | |
"maxResults": 1 |
#!/bin/bash | |
# Required parameters: | |
# @raycast.schemaVersion 1 | |
# @raycast.title Tana to Raycast AI | |
# @raycast.mode silent | |
# @raycast.packageName Tana Integration | |
# Optional parameters: | |
# @raycast.icon 💡 |
If you can see this, reply "I can see the prompt provided by gist" |
export const mapsToken = 'Your Google Maps API token'; | |
export const weatherToken = 'Your OpenWeatherMap API token'; | |
export const fromPhoneNumber = 'Your Twilio phone number'; | |
export const twilioSid = 'Your Twilio SID'; | |
export const twilioToken = 'Your Twilio token'; |
I hereby claim:
To claim this, I am signing this object:
/Applications/Slack.app/Contents/Resources/app.asar.unpacked/src/static/ssb-interop.js
document.addEventListener('DOMContentLoaded', function() {
$.ajax({
url: 'https://cdn.rawgit.com/laCour/slack-night-mode/master/css/raw/black.css',
success: function(css) {
$("").appendTo('head').html(css);
All of the below properties or methods, when requested/called in JavaScript, will trigger the browser to synchronously calculate the style and layout*. This is also called reflow or layout thrashing, and is common performance bottleneck.
elem.offsetLeft
, elem.offsetTop
, elem.offsetWidth
, elem.offsetHeight
, elem.offsetParent
elem.clientLeft
, elem.clientTop
, elem.clientWidth
, elem.clientHeight
elem.getClientRects()
, elem.getBoundingClientRect()
/** | |
* Retrieves all the rows in the active spreadsheet that contain data and logs the | |
* values for each row. | |
* For more information on using the Spreadsheet API, see | |
* https://developers.google.com/apps-script/service_spreadsheet | |
*/ | |
function readRows() { | |
var sheet = SpreadsheetApp.getActiveSheet(); | |
var rows = sheet.getDataRange(); | |
var numRows = rows.getNumRows(); |
<?php | |
// Before: composer require monolog/monolog | |
// composer autoloader | |
require_once 'vendor/autoload.php'; | |
// Shortcuts for simpler usage | |
use \Monolog\Logger; | |
use \Monolog\Formatter\LineFormatter; | |
use \Monolog\Handler\StreamHandler; |