Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
ai [2024/03/24 18:15] – [искусственный интеллект ИИ AI - Photo - screenshot OCR] adminai [2025/01/09 10:01] (current) – [искусственный интеллект ИИ AI - Photo - screenshot OCR] admin
Line 1: Line 1:
 ====== искусственный интеллект ИИ AI ====== ====== искусственный интеллект ИИ AI ======
 +
 +  - https://publish.obsidian.md/aidanhelfant/Concept+Notes/%E2%AD%90Best+ChatGPT+prompts#Based%20on%20notes
 +
 +теория https://qengineering.eu/deep-learning-with-raspberry-pi-and-alternatives.html \\
 курс https://course.fast.ai/ - https://github.com/yury-sannikov/course-v3?tab=readme-ov-file \\ курс https://course.fast.ai/ - https://github.com/yury-sannikov/course-v3?tab=readme-ov-file \\
 +рекомендации https://help.openai.com/en/articles/6654000-best-practices-for-prompt-engineering-with-the-openai-api \\
   - https://chat.claudeai.ai/chats https://www.ai-portraits.org/ru https://www.stablediffusionai.ai/   - https://chat.claudeai.ai/chats https://www.ai-portraits.org/ru https://www.stablediffusionai.ai/
   - https://www.youtube.com/watch?v=jib1wjgIaa4 - models llama2   - https://www.youtube.com/watch?v=jib1wjgIaa4 - models llama2
Line 11: Line 16:
  
 ====== искусственный интеллект ИИ AI - Photo - screenshot OCR  ====== ====== искусственный интеллект ИИ AI - Photo - screenshot OCR  ======
 +  - table from screenshots to markdown https://shekhargulati.com/2024/07/22/from-screenshots-to-markdown-tables-with-llms/
   - prepare graphics <https://pixlr.com/>   - prepare graphics <https://pixlr.com/>
   - ocr - https://convertio.co/ru/ocr/chinese/   - ocr - https://convertio.co/ru/ocr/chinese/
Line 63: Line 69:
 </code> </code>
 ++++ ++++
 +==== AI - create bash script for execute nagios passive ====
  
 +++++ Prompt - create bash script for nagios|
 +<code BASH>
 +you are a proffesional bash programmer. 
 +you need to write a bash script start_metrics.sh with logging to file start_metrtics.log and config in variable on top of file. 
 +
 +need to print logging to stdout  if we have started a script whith an argument "-v" !
 +
 +config url="http://10.59.20.16:8000".
 +config bash array metrics is contain elements for parse and  execution 
 +example metrics=( "RAID_mismatch_virt04|./check_linux_raid_mismatch.sh|-p1 1|400" 
 +                 "RAID_rvirt04|./check_raid.pl"
 +
 +
 +Script need to Process each element in the metrics array  :
 + 0. for example split element  of array "RAID_mismatch_virt04|./check_linux_raid_mismatch.sh|-p1 1|400" to 
 + 
 +and execute "./check_linux_raid_mismatch.sh -p1 1 400" something like 
 +
 +```
 +for metric in "${metrics[@]}"; do
 +    # Split the metric into its components
 +    IFS='|' read -r -a components <<< "$metric"
 +
 +    # Extract the command and parameters
 +    metric_name=${components[0]}
 +    cmd=${components[1]}
 +    params=${components[@]:2}
 +
 +    # Execute the command with parameters and redirect stderr to a file
 +    output=$( "$cmd" $params 2> >(tee /tmp/stderr.tmp >&2) )
 +    exitcode=$?
 +    
 +    ....
 +
 +done
 +```
 + and firstly save exitcode to variable $exitcode, stdout to variable $stdout.
 + redirect stderr  to file and then read file to variable  $srtderr and delete file with stderr
 + 
 +2. save for every execution duration of  execution, exitcode,  stdout and stderr  to  variables   $dur,  $exitcode$,  
 +
 + 3. format     $mess="fed-hw;$metric_name;$errorcode;$stdout"
 +4. send 
 +```
 +curl \
 +  --request "POST" \
 +  --user 'fed_monitor:l3tm31n' \
 +  --header 'Content-Type: application/x-www-form-urlencoded' \
 +  --data-urlencode "perfdata=$mess" \
 +  --url $url
 +```
 +   in log need to save curl commond and stdout and stderr of curl execution  
 +every main step need to be in log file. 
 +first log entry is "---start" and concat with date.
 +finish entry is string  "=== Stop"  and concat  with duration of total execution of script and number of success and failed metrics 
 +</code>
 +++++
 +
 +==== Ai prompt to fill table ====
 +++++ заполнить таблицу календаря|
 +<code>
 +нужно заполнить таблицу в которой 10 столбцов
 +каждый элемент в строке представляет из себя формат "1 - 24.05" , где 1 это первые день в расчетном периоде , а 24.05 - это дата 24.05.2024 , второй элемент в строке  "2 - 25.05"  и так далее. при заполнении всей строки создается новая снизу и продолжается заполнение ее.
 +необходимо создать таблицу по правилам выше с 24.05.2024 по 31.07.2024
 +</code>
 +++++
 +
 +
 +
 +==== Ai prompt to optimise query for LLM ====
 +  * оптимизируй запрос к большой генеративной модели  ++ запрос на Gemmini|
 +<code BASH>
 +Оптимизируй запрос к большой генеративной языковой модели
 +```
 +ты профессионал в информационной безопасности ИТ, объясни термин указанный ниже простым языком, для облегчения понимания приведи примеры в виде списков и таблиц.
 +
 +термин "CIS compliance with Ubuntu 20.04 LTS and 22.04 LTS"
 +```
 +</code>
 +++
 +  *   ++ пример ответа|
 +<code BASH>
 +
 +--- 
 +Query:
 +
 +CIS Compliance with Ubuntu 20.04 LTS and 22.04 LTS: A Simplified Explanation
 +
 +Objective:
 +
 +To provide a clear and concise explanation of the term "CIS compliance with Ubuntu 20.04 LTS and 22.04 LTS" using layman's terms, accompanied by examples in the form of lists and tables.
 +
 +Target Audience:
 +
 +Individuals with limited or no technical background in information security.
 +
 +Key Points:
 +
 +CIS Compliance:
 +
 +Define CIS (Center for Internet Security) and its role in establishing cybersecurity standards.
 +Explain the significance of CIS compliance in the IT industry.
 +Ubuntu 20.04 LTS and 22.04 LTS:
 +
 +Briefly introduce Ubuntu as a popular operating system for servers and desktops.
 +Highlight the LTS (Long Term Support) designation and its implications for stability and security updates.
 +CIS Compliance with Ubuntu:
 +
 +Explain the concept of CIS Benchmarks, which are detailed security guidelines for various systems.
 +Describe how CIS Benchmarks are applied to Ubuntu 20.04 LTS and 22.04 LTS to achieve compliance.
 +Examples and Tables:
 +
 +Table 1: CIS Benchmark Categories:
 +
 +List the main categories covered by CIS Benchmarks, such as system configuration, data protection, and access control.
 +Example 1: CIS Compliance Requirement - Password Strength:
 +
 +Explain the CIS requirement for strong passwords in Ubuntu, including minimum length, complexity, and expiration policies.
 +Provide a table comparing compliant and non-compliant password examples.
 +Example 2: CIS Compliance Requirement - System Updates:
 +
 +Explain the CIS requirement for timely installation of system updates in Ubuntu to address security vulnerabilities.
 +Outline the steps involved in configuring automatic updates and manually checking for updates.
 +Conclusion:
 +
 +Summarize the importance of CIS compliance for enhanced cybersecurity posture.
 +Emphasize the benefits of using Ubuntu 20.04 LTS and 22.04 LTS for achieving CIS compliance.
 +Additional Considerations:
 +
 +Use simple language and avoid technical jargon to ensure comprehension by a non-technical audience.
 +Employ visual aids like tables and bullet points to enhance understanding and readability.
 +Maintain a conversational tone and engage the reader with examples and relatable scenarios.
 +</code>
 +++
  • ai.1711304136.txt.gz
  • Last modified: 2024/03/24 18:15
  • by admin