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
| window.localStorage.setItem('app-designer-debug-mode', true); |
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
| WITH RECURSIVE nested_elements AS ( | |
| SELECT jsonb_array_elements(elements::jsonb) AS element | |
| FROM forms | |
| WHERE name = 'Structure Brushing 2025' | |
| UNION ALL | |
| SELECT jsonb_array_elements(element->'elements') | |
| FROM nested_elements | |
| WHERE element ? 'elements' | |
| ) | |
| SELECT |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title>App Extension Example</title> | |
| <!-- Fulcrum extension script --> | |
| <script>(()=>{var t=(e,n)=>()=>(n||e((n={exports:{}}).exports,n),n.exports);var d=t((w,o)=>{var a=new URLSearchParams(location.search),u,r=(u=c(a.get("extension")))!=null?u:{};function c(e){try{return JSON.parse(e)}catch(n){return null}}var l;o.exports=window.Fulcrum={id:r.id,url:r.url,data:(l=r.data)!=null?l:{},origin:r.origin,init:()=>{var e;Fulcrum.isReady=!0,(e=Fulcrum.onReadyOnce)==null||e.call(Fulcrum)},ready:e=>{Fulcrum.onReadyOnce=()=>{Fulcrum.isReady&&!Fulcrum.onReadyCalled&&(Fulcrum.onReadyCalled=!0,e(Fulcrum))},Fulcrum.onReadyOnce()},send:(e,{close:n=!1}={})=>{var i;e=e!=null?e:{};let s={id:Fulcrum.id,url:Fulcrum.url,data:e,close:n};(i=window.webkit)!=null&&i.messageHandlers?window.webkit.messageHandlers.extensionListener.postMessage(JSON.stringify(s)):window.parent&&window.parent.postMessage({extensionMessage:s},Fulcrum.origin)},finish:e=>{Fulcrum.send(e, |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| -- inside ESA | |
| UPDATE htmp points SET esa = 'yes' | |
| FROM | |
| (SELECT DISTINCT(poi.*) | |
| FROM vm_esa pol | |
| JOIN htmp poi | |
| ON (ST_Within(poi.geom, pol.geom))) inside | |
| WHERE points.legacy_fulcrum_id = inside.legacy_fulcrum_id; | |
| -- outside ESA |
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
| select _record_id, string_agg(unnest, ', ') as photos, string_agg(photos_captions, ', ') as photos_captions from (select r._record_id, r.unnest, k.labels as photos_captions from records r join rek k on k.photo = r.unnest order by _record_id) a group by _record_id order by _record_id |
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
| ruby-build: using openssl from homebrew | |
| Downloading ruby-2.2.4.tar.bz2... | |
| -> https://cache.ruby-lang.org/pub/ruby/2.2/ruby-2.2.4.tar.bz2 | |
| Installing ruby-2.2.4... | |
| WARNING: ruby-2.2.4 is past its end of life and is now unsupported. | |
| It no longer receives bug fixes or critical security updates. | |
| ruby-build: using readline from homebrew | |
| ^[[A |
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
| ON('change', 'routing_options', () => { | |
| if ($routing_options == 'google') { | |
| if (LATITUDE() && LONGITUDE()) { | |
| OPENURL('https://maps.google.com/?q=' + LATITUDE() + ',' + LONGITUDE()); | |
| } else { | |
| ALERT('No location provided!', 'A location is required to show Google Maps.') | |
| } | |
| SETVALUE('routing_options', null); | |
| } else if ($routing_options == 'mapsme') { | |
| let location = CURRENTLOCATION(); |
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
| <iframe width=100% height=100% src="https://docs.google.com/spreadsheets/d/e/2PACX-1vQvHvzsKhqm4JLIJGhBcrYrZbcKQKHFzg1CBPggQ5CsCOUcvNGYcJE_qop1dOa5VoQN7Ekb84Tqbq02/pubhtml?widget=true&headers=false"></iframe> |
NewerOlder