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
| { | |
| "url": "https://floobits.com/megamen32/GrammarPrac" | |
| } |
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
| #include <iostream> | |
| #include <map> | |
| #include <strstream> | |
| #include <sstream> | |
| #include <utility> | |
| #include <vector> | |
| #include <deque> | |
| #include <queue> | |
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
| #include <iostream> | |
| #include <map> | |
| #include <strstream> | |
| #include <sstream> | |
| #include <utility> | |
| #include <vector> | |
| #include <deque> | |
| #include <queue> | |
| #include <unordered_map> |
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
| #include <iostream> | |
| #include <sstream> | |
| /*SemanticNode | |
| functer() | |
| { | |
| if (curTok == ARRAY) { | |
| curTok = getToken(); | |
| auto it = leaf(); | |
| return {Arr + it.str}; | |
| } else if (curTok == FUNC) { |
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
| #include <iostream> | |
| #include <map> | |
| #include <strstream> | |
| #include <sstream> | |
| #include <utility> | |
| #include <vector> | |
| #include <deque> | |
| #include <queue> | |
| #include <unordered_map> | |
| #include <string> |
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
| #include <iostream> | |
| #include <stack> | |
| #include <sstream> | |
| #include "err.hpp" | |
| #include "lexeme.hpp" | |
| #include "syntax.hpp" | |
| using namespace std; | |
| int main() | |
| { | |
| try { |
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
| #ifndef LEXEME_HPP | |
| #define LEXEME_HPP | |
| enum LexemeType | |
| { | |
| LSB, | |
| RSB, | |
| END, | |
| IDENT, | |
| ASSIGN, |
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
| [{"id":"621fb344.753c4c","type":"tab","label":"Flow 1","disabled":false,"info":""},{"id":"bc1a9021.abe42","type":"tab","label":"Flow 2","disabled":false,"info":""},{"id":"3c3edf43.a7172","type":"subflow","name":"HA webhook","info":"# Payload:\n\n* json (object containing body json)\n* query (object containing GET parameters)\n* webhook_id (string)\n* data (object containing form data body)","category":"","in":[],"out":[{"x":540,"y":80,"wires":[{"id":"a39b3afc.3ba0f8","port":0}]}],"env":[],"color":"#DDAA99"},{"id":"850e8a37.588a68","type":"server","name":"Home Assistant","addon":true},{"id":"efd2edb2.fa1f6","type":"tls-config","name":"","cert":"/ssl/fullchain.pem","key":"/ssl/privkey.pem","ca":"/ssl/fullchain.pem","certname":"","keyname":"","caname":"","servername":"demiurge.space","verifyservercert":true},{"id":"7ce8991.e39ab68","type":"tls-config","name":"","cert":"","key":"","ca":"","certname":"certificate (1).crt","keyname":"privkey.txt","caname":"certificate_ca (1).crt","servername":"demiurge.space","veri |
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
| curl https://raw.githubusercontent.com/home-assistant/home-assistant-cli/master/docker-hass-cli > hass-cli | |
| $ chmod +x hass-cli |
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/bash | |
| # Use the current directory as default if no argument is provided | |
| DIR=${1:-.} | |
| # Check if the directory exists | |
| if [ ! -d "$DIR" ]; then | |
| echo "Directory does not exist" | |
| exit 1 | |
| fi |
OlderNewer