Skip to content

Instantly share code, notes, and snippets.

View klukiyan's full-sized avatar
🎯
Focusing

Kiril Lukiyan klukiyan

🎯
Focusing
View GitHub Profile
@klukiyan
klukiyan / Hub Extra urgent tasks.md
Last active March 23, 2025 14:54
Hub Extra urgent tasks.md

SOme more tasks 19. 3. 2025

  • Take out intern managers from the manager group (leave non-EU managers for now) 🔺 ✅ 2025-03-19 ![[image.png]]
  • Add the Gorzow - OBM employees (under Edyta Rozycka) to view global content + create user group 🔺 ✅ 2025-03-23
  • Not showing that the doc is pinned ✅ 2025-03-23
  • Message on storage and access of data (compliance disclaimer) #important 🔺 ✅ 2025-03-23 https://primetools.tpv-tech.com/documentation/primetools-portal-data-storage-and-access-compliance-disclaimer
  • Events not showing they come from Finance/Legal/IT… hub on Dashboard 🔺 ✅ 2025-03-23
  • Pictures of new hires not showing 🔺 ✅ 2025-03-20
  • Provide access to nominated testers who will inspect the system and provide us feedback (I will provide the list of names) 🔺 ✅ 2025-03-20
@klukiyan
klukiyan / LDAPS.md
Last active March 24, 2025 11:01
LDAPS.md

Links: [[CT Obsidian]] | [[MyHome]]

I have the code sample that works for server here including the certificate. case 'ldap-test': It works on server. However on mac I'll need to apply on of the solutions from here [[#^e1c663|below]]

These are the keys for debuging:

// disabled the certificate on local works:
@klukiyan
klukiyan / Tickets list.md
Last active January 28, 2025 15:09
Tickets list.md

[[Ticketing System]] | [[CT Obsidian]]

🔗Urls: /requests - list of all requests /requests/{id} - direct link to specific ticket/task/request

Code:

  • FrontEnd:
    • pages/requests/index.vue
    • components/RequestDetails.vue
@klukiyan
klukiyan / SOPS.md
Last active January 22, 2025 15:40
SOPS.md

We need a solution for documenting and easily displaying to colleagues the SOPS. Alain sees it as a clickable flowchart that shows details (SOP) for each of the action-taking steps in the flowchart.

We already have the "document/attachment" module available. Open for development is the flowcart editing module.

Todo:

  • Alain will discuss with Dominika and Richard the solution they had in InBev.
  • Check https://www.acadia-software.com/ for inspiration and examples. Check it on Youtube as well
  • Check SOPs documenting/storing videos on Youtube for inspiration.
@klukiyan
klukiyan / API automation.md
Last active January 22, 2025 13:57
API automation.md
@klukiyan
klukiyan / VS Code extensions.md
Last active January 22, 2025 11:39
VS Code extensions.md

You can use the VSCode Command Line Interface (CLI) to list all installed extensions. Open a terminal and run: code --list-extensions code --list-extensions --show-versions

You can save this list to a file for backup or sharing purposes by redirecting the output: code --list-extensions > vscode-extensions.txt

If you want to export your extensions for installation on another machine On the new machine, install all extensions listed in the file using: xargs -L 1 code --install-extension < vscode-extensions.txt

@klukiyan
klukiyan / zf2-sql-examples.php
Created April 25, 2017 21:21 — forked from anton-kotik/zf2-sql-examples.php
Zend Framework 2 database SQL examples
<?php
use Zend\Db\Sql\Expression;
use Zend\Db\Sql\Predicate\Operator;
use Zend\Db\Sql\Select;
use Zend\Db\Sql\Where;
use Zend\Db\TableGateway\TableGateway;
$adapter = $this->getServiceLocator()->get('Zend\Db\Adapter\Adapter');
$table = new TableGateway('users', $adapter);