- #אישור 46
- #טופס 135
- #טופס 106
- סטטוס פניה ברשות המיסים
- שליחת פניה לרשות המיסים
- הדיווחים שלי ברשות המיסים
- רשימת בקשות
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
| # החזר מס | |
| - #אישור 46 | |
| - #טופס 135 | |
| - #טופס 106 | |
| - [סטטוס פניה ברשות המיסים](https://www.gov.il/apps/taxes/taxes/#/status-pniya/he) | |
| - [שליחת פניה לרשות המיסים](https://www.gov.il/apps/taxes/taxes/#/shelot-vetshuvot/he) | |
| - [הדיווחים שלי ברשות המיסים](https://secapp.taxes.gov.il/srsherutatzmi/#/MyReports) | |
| - [רשימת בקשות](https://secapp.taxes.gov.il/srbksOpentik/#/myRequests) |
A Detailed Feature Comparison of Leading Open-Source No-Code Database Platforms
This gist presents a thorough comparison of free, self-hosted no-code database platforms. The table below outlines key features, GitHub metrics, and integration capabilities, helping developers and teams select the ideal database solution for their projects.
Contributions to further refine and expand this comparison are welcome.
| Github | Stars | Forks | In-Cell editing | API Access | Kanban View | No Code App Builder | Table to Table relations | Mobile Access | Backup & Restore | Integrations | n8n integration | NodeRed integration | Comments |
|---|
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
| .env | |
| data.json |
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
| openapi: '3.0.3' | |
| info: | |
| title: Wordpress API | |
| version: '1.0' | |
| servers: | |
| - url: https://api.wordpress.org/ | |
| externalDocs: | |
| description: Original documentation | |
| url: https://codex.wordpress.org/WordPress.org_API |
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
| const _cache = {} | |
| /** @param {string[]} keys */ | |
| const buildNewKeys = (keys) => keys.reduce((acc, currentKey) => { | |
| if (!acc[currentKey]) { | |
| acc[currentKey] = {} | |
| } | |
| return acc[currentKey] | |
| }, _cache) |
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
| function doPost(e) { | |
| log("Received doPost") | |
| try { | |
| const { chatId, text, update } = getUpdate(e) | |
| if (myChatId !== chatId) | |
| return sendMessage(chatId, `You are not authorized`) | |
| if (!isDocument(update)) | |
| return sendMessage(chatId, `message is without document`) |
I'm using semantic-release to perform releases and changelog.
The convention is the eslint format, with the next rules:
{tag: 'Breaking', release: 'major'},
{tag: 'Fix', release: 'patch'},
{tag: 'Update', release: 'minor'},
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
| // This file was initially generated by Windows Terminal 1.5.10411.0 | |
| // It should still be usable in newer versions, but newer versions might have additional | |
| // settings, help text, or changes that you will not see unless you clear this file | |
| // and let us generate a new one for you. | |
| // To view the default settings, hold "alt" while clicking on the "Settings" button. | |
| // For documentation on these settings, see: https://aka.ms/terminal-documentation | |
| { | |
| "$schema": "https://aka.ms/terminal-profiles-schema", | |
| "defaultProfile": "{574e775e-4f2a-5b96-ac1e-a2962a402336}", | |
| // You can add more global application settings here. |
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
| # Gist: https://gist.github.com/baruchiro/e204078b67d96c16d8ee9bf523206c31 | |
| Set-PoshPrompt -Theme ~/.mytheme.omp.json | |
| # git push master && git switch dev -> g p sm | |
| function ParseAliases { | |
| foreach ($command in $args) { | |
| Write-Host "> git $command" -ForegroundColor Green | |
| Invoke-Expression -Command "git $command" | |
| } |
NewerOlder