Skip to content

Instantly share code, notes, and snippets.

View denault's full-sized avatar

Charles Denault denault

View GitHub Profile
{
"name": "Creative Director Agent",
"nodes": [
{
"parameters": {
"options": {}
},
"type": "@n8n/n8n-nodes-langchain.chatTrigger",
"typeVersion": 1.1,
"position": [
utm-USA.jpg
@denault
denault / continental-usa.geojson
Created August 21, 2020 09:47 — forked from lossyrob/continental-usa.geojson
Rough continental USA single polygon GeoJSON
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@denault
denault / Test_bart_data.xml
Last active February 4, 2016 13:51
Test XML Data for BART integration
<?xml version="1.0" encoding="UTF-8"?>
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:met="http://www.avinode.com/schema/MetaData" xmlns:sch="http://www.avinode.com/integration/Schedule" xmlns:wsa="http://www.w3.org/2005/08/addressing">
<soap:Header>
<wsa:Action>http://www.avinode.com/integration/Schedule#uploadScheduleRequest</wsa:Action>
<wsa:MessageID>uuid:10EF12C0-1A47-4D6B-BCBEDAEF6CF06FC2</wsa:MessageID>
<wsse:Security xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" soap:mustUnderstand="1">
<wsu:Timestamp xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" wsu:Id="XWSSGID-1220011372290-1105016787">
<wsu:Created>2016-02-02T18:51:00Z</wsu:Created>
<wsu:Expires>2016-02-03T18:51:00Z</wsu:Expires>
</wsu:Timestamp>
# OSX for Hackers (Mavericks/Yosemite)
#
# Source: https://gist.github.com/brandonb927/3195465
#!/bin/sh
# Some things taken from here
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
# Ask for the administrator password upfront
@denault
denault / .htaccess
Created June 10, 2014 20:01
force https and remove index.php
# force https
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteCond %{HTTP_HOST} ^api.simplecharters.com [NC]
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [L,R]
# remove index.php/
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?/$1 [QSA,L]
@denault
denault / php_status_codes.php
Created June 10, 2014 14:32
Common php status codes
<?php
// See related links for more status codes
// from http://www.jonasjohn.de/snippets/php/headers.htm
// Use this header instruction to fix 404 headers
// produced by url rewriting...
header('HTTP/1.1 200 OK');
// Page was not found:
header('HTTP/1.1 404 Not Found');