Skip to content

Instantly share code, notes, and snippets.

@alplottw
alplottw / google_sheets.json
Created May 17, 2025 12:27
Fixed n8n workflow to use Anthropic node instead of OpenAI
{
"name": "google sheets",
"nodes": [
{
"parameters": {},
"type": "n8n-nodes-base.manualTrigger",
"typeVersion": 1,
"position": [
-120,
-100
@alplottw
alplottw / google_sheets.json
Created May 17, 2025 12:23
Updated n8n workflow with Claude 3 Sonnet for better Go job filtering
{
"name": "google sheets",
"nodes": [
{
"parameters": {},
"type": "n8n-nodes-base.manualTrigger",
"typeVersion": 1,
"position": [
-120,
-100
@alplottw
alplottw / google_sheets.json
Created May 17, 2025 12:19
Updated n8n Google Sheets config with AI filter
{
"name": "google sheets",
"nodes": [
{
"parameters": {},
"type": "n8n-nodes-base.manualTrigger",
"typeVersion": 1,
"position": [
-120,
-100
@alplottw
alplottw / google_sheets.json
Created May 17, 2025 12:06
n8n Google Sheets workflow config
{
"name": "google sheets",
"nodes": [
{
"parameters": {},
"type": "n8n-nodes-base.manualTrigger",
"typeVersion": 1,
"position": [
-120,
-100
@alplottw
alplottw / jsBlockScroll.js
Created March 13, 2021 13:05
js block body scroll
var scrollPosition;
function blockScrollToggle() {
const $body = $('body');
if ($body.css('overflow') == 'hidden') {
$body.css('overflow', 'auto');
$body.css('position', '');
window.scrollTo(0, scrollPosition);
} else {
scrollPosition = window.pageYOffset;
$body.css('overflow', 'hidden');