George Boole in his Laws of Thought [1, p24] asserted "That language is an instrument of human reason, and not merely a medium for the expression of thought, is a truth generally admitted."
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
| # https://github.com/imtomt/ymawky | |
| # https://imtomt.github.io/ymawky/ | |
| # https://news.ycombinator.com/item?id=48080587 | |
| # https://news.ycombinator.com/item?id=48062977 | |
| # | |
| ymawky/ymawky:ymawky;make -C ymawky | |
| ymawky:;git clone https://github.com/imtomt/ymawky | |
| server:;cd ymawky;./ymawky | |
| test:;curl http://localhost:8080 | |
| clean:;rm -rf ymawky |
$ cat SYSTEM.md
You are only allowed to write node scripts and save them in /home/bin/. Do not make up answers, run the code with node. You are not allowed to run any other bash scripts, including curl.
$ pi --system-prompt SYSTEM.md -p "What time is it?" --mode json > time.jsonl
$ cat bin/time.js
console.log(new Date().toLocaleString());
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
| #!/bin/sh | |
| # ISC License | |
| # Copyright (c) 2026 Alexandre Gomes Gaigalas <alganet@gmail.com> | |
| # Permission to use, copy, modify, and/or distribute this software for any | |
| # purpose with or without fee is hereby granted, provided that the above | |
| # copyright notice and this permission notice appear in all copies. | |
| # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
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
| [ | |
| { | |
| "InstanceName": "win2016VM", | |
| "ConsumedService": "Microsoft.Compute", | |
| "UsageQuantity": 0.000008, | |
| "UsageStart": "2020-11-16T00:00:00Z", | |
| "UsageEnd": "2020-11-16T23:59:59Z" | |
| }, | |
| { | |
| "InstanceName": "ontouchstart", |
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
| [ | |
| { | |
| "UsageQuantity": 0.000008, | |
| "UsageStart": "2020-11-16T00:00:00Z", | |
| "UsageEnd": "2020-11-16T23:59:59Z" | |
| }, | |
| { | |
| "UsageQuantity": 0.000008, | |
| "UsageStart": "2020-11-17T00:00:00Z", | |
| "UsageEnd": "2020-11-17T23:59:59Z" |
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
| [ | |
| { | |
| "UsageQuantity": 0.009636, | |
| "UsageStart": "2020-11-17T00:00:00Z", | |
| "UsageEnd": "2020-11-17T23:59:59Z" | |
| }, | |
| { | |
| "UsageQuantity": 0.004827, | |
| "UsageStart": "2020-11-16T00:00:00Z", | |
| "UsageEnd": "2020-11-16T23:59:59Z" |
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
| [ | |
| { | |
| "AccountName": null, | |
| "AdditionalInfo": null, | |
| "AdditionalProperties": null, | |
| "BillableQuantity": null, | |
| "BillingPeriodId": "/subscriptions/2441ec97-42d8-424a-a820-c4aefaa7c958/providers/Microsoft.Billing/billingPeriods/202012", | |
| "BillingPeriodName": "202012", | |
| "ConsumedService": "Microsoft.Compute", | |
| "CostCenter": null, |
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
| version: '3.3' | |
| services: | |
| db: | |
| image: mysql:5.7 | |
| volumes: | |
| - db_data:/var/lib/mysql | |
| restart: always | |
| environment: | |
| MYSQL_ROOT_PASSWORD: somewordpress |
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
| up: | |
| docker-compose up -d | |
| down: | |
| docker-compose down | |
| rebuild: | |
| docker-compose run web bundle install | |
| docker-compose build |