Skip to content

Instantly share code, notes, and snippets.

View ForestMars's full-sized avatar
๐Ÿ’ญ
๐‘โ„Ž=๐‘๐‘ (๐›ผโˆ—(๐‘๐‘–+๐‘๐‘œ))

Forest Mars ForestMars

๐Ÿ’ญ
๐‘โ„Ž=๐‘๐‘ (๐›ผโˆ—(๐‘๐‘–+๐‘๐‘œ))
View GitHub Profile
@ForestMars
ForestMars / gist:ea91118be060710b63a3679c4d65c48a
Last active August 9, 2026 07:25
Ontologia Nova (De Mundo Operationali) prompt
```
System Prompt:
You are a technical writer with deep expertise in enterprise data architecture and a profound knowledge of Catholic Social Teaching and Papal Encyclical prose styles (specifically echoing encyclicals like Laudato Si' or Caritas in Veritate).
Review the attached formal architectural vision document for an Enterprise Ontology platform (drawing on concepts akin to Palantir Foundry/AIP: Data, Logic, Action, Security, Language, Engine, Toolchain, SDK, ERP integration, and human-in-the-loop AI orchestration) and provide your frank feedback. The final document should be faithful to the following guidelines.
Frame the automation arc through Populorum Progressio ยง20โ€“21: development only
counts if it's a passage from less human conditions to more human ones. Ask
directly whether the technology makes life more human and more worthy of the
@ForestMars
ForestMars / keybase.md
Created April 2, 2015 15:18
keybase.md

Keybase proof

I hereby claim:

  • I am forestmars on github.
  • I am forestmars (https://keybase.io/forestmars) on keybase.
  • I have a public key whose fingerprint is FCCF FCF6 9112 6AE1 8B77 FCA9 F86F C64A 9ACE 3025

To claim this, I am signing this object:

{% extends '/themes/twigtastic/templates/footer.html.twig' %}
{% block header %}
<header>
<h2>Frontpage Footer -<strong> Get in touch:</strong></h2>
</header>
{% endblock %}
{% block footer %}
(This is the front page footer)
<div id="footer-wrapper">
{% block footer %}
(This is the normal footer block.)
{% endblock %}
<!-- Footer -->
<div id="footer" class="container">
/**
* Include meta tags.
* Also how does this work without a valid argument?
*/
//drupal_add_html_head($variables, 'rendering_meta'); {
// Add a theme-specific css class to the body tag.
//$variables['attributes']['class'][] = 'twigtastic';
//}
@ForestMars
ForestMars / twigview.xml
Last active August 29, 2015 13:57
Add Twig templates to Quickview
## How to add Twig templates to your OSX Quickview
## Due to the way OSX works you have to add new declarations for a file type to an application.
## That's bc of OSX's app-based approach (as opposed to the standard file based approach in Unix!)
## So you need to pick an application to add this definition to.
## I recommend using a free app you downloaded and not something you have licensed/registered.
# Find the Application in Finder, control-click it, and select "Show package contents"
@ForestMars
ForestMars / gist:9507555
Last active August 29, 2015 13:57
D7 Class
http://j.mp/D7StudentManual
http://dgo.to/drush
http://dgo.to/admin_menu
function codify_block_info() {
$blocks = array();
$blocks['submit_session'] = array(
'info'=> t('Submit Session Block')
);
return $blocks;
}
function codify_blocks_block_view($delta) {
$blocks = array();
<?php
/* @file
* provides custom blocks
*/
function n101_blocks_block_info() {
$blocks = array();
$blocks['custom1'] = array(
'info'=> t('Custom block 1')
);
<?php
global $user;
global $node;
$pageURL = (@$_SERVER["HTTPS"] == "on") ? "https://" : "http://";
$current_nid = $node->nid;
$load_limit = 60;
$add_query_string="";
$query_string="";
$showstoppers_event=false;