|
|
(не показано 19 промежуточных версий этого же участника) |
Строка 1: |
Строка 1: |
| + | == 2024 == |
| + | |
| + | === 2024-06 === |
| + | |
| + | * 2024-06-13, 01:08:55: [https://github.com/intel/cve-bin-tool GitHub - intel/cve-bin-tool: The CVE Binary Tool helps you determine if your system includes known vulnerabilities. You can scan binaries for over 200 common, vulnerable components (openssl, libpng, libxml2, expat and others), or if you know the components used, you can get a list of known vulnerabilities associated with an SBOM or a list of components and versions.] |
| + | |
| + | == 2023 == |
| + | |
| + | === 2023-09 === |
| + | |
| + | * 2023-09-18, 10:56:18: [https://habr.com/ru/companies/visiology/articles/761690/ Сертифицируй ЭТО: как получить сертификат ФСТЭК на новейшую версию ПО / Хабр] |
| + | |
| + | === 2023-08 === |
| + | |
| + | * 2023-08-05, 16:03:19: [https://habr.com/ru/companies/dsec/articles/702652/ SAST для самых маленьких. Обзор open-source инструментов поиска уязвимостей для C/C++ / Хабр] |
| + | |
| + | === 2023-06 === |
| + | |
| + | * 2023-06-05, 05:51:54: [https://habr.com/ru/articles/736518/ Введение в Clickhouse движок AggregatingMergeTree / Хабр] |
| + | |
| + | === 2023-03 === |
| + | |
| + | * 2023-03-31, 22:27:50: [https://habr.com/ru/post/725888/ NudeCrawler: Голый ползун по женщинам на телеграфе / Хабр] |
| + | * 2023-03-14, 22:57:01: [https://github.com/rogerorr/NtTrace rogerorr/NtTrace: An strace-like program for the Windows 'native' API] |
| + | |
| == 2022 == | | == 2022 == |
| + | === 2022-10 === |
| + | |
| + | * 2022-10-27, 22:49:47: [https://github.com/AnonymerNiklasistanonym/KaraokeMusicVideoManager/blob/34e1e6a489f1f5c9df7029afe38075e3d746257d/WindowsInstaller/build_windows_installer.py KaraokeMusicVideoManager/build_windows_installer.py at 34e1e6a489f1f5c9df7029afe38075e3d746257d · AnonymerNiklasistanonym/KaraokeMusicVideoManager] |
| + | * 2022-10-27, 22:44:36: [https://github.com/tawanjairew/https-github.com-google-omaha/blob/7e01c7e51b32bfa7bd41f2b5768a0638e59d27d8/omaha/enterprise/installer/build_enterprise_installer.py https-github.com-google-omaha/build_enterprise_installer.py at 7e01c7e51b32bfa7bd41f2b5768a0638e59d27d8 · tawanjairew/https-github.com-google-omaha] |
| + | *: <html>wix</html> |
| + | <!-- NEXT BOOKMARK --> |
| + | |
| + | === 2022-08 === |
| + | |
| + | * 2022-08-06, 10:32:01: [https://habr.com/ru/company/mts_ai/blog/678928/ Как установить лицензионную защиту кода на Python и обезопасить данные с помощью HASP? / Хабр] |
| + | *: <html> Компании в области ИИ значительную часть расходов на НМА (нематериальные активы) несут через списание затрат на наиболее дорогие задачи - такие как ML (серверные ресурсы) и зарплаты ML инженеров. И именно модель нужно защищать, а не код. Код в этой индустрии почти ничего не стоит, особенно когда команда не может написать серверный код на чистом С++. </html> |
| + | <!-- NEXT BOOKMARK --> |
| + | |
| + | === 2022-07 === |
| + | |
| + | * 2022-07-05, 20:47:49: [https://github.com/gildas-lormeau/SingleFile/issues/448 How to use with Selenium and Python · Issue #448 · gildas-lormeau/SingleFile] |
| + | * 2022-07-05, 20:47:40: [https://github.com/gildas-lormeau/single-file-cli gildas-lormeau/single-file-cli] |
| + | |
| + | === 2022-06 === |
| + | |
| + | * 2022-06-22, 21:49:57: [https://wiki.astralinux.ru/pages/viewpage.action?pageId=137563067 Создание Docker-образов Astra Linux - Справочный центр - Справочный центр Astra Linux] |
| + | |
| + | === 2022-04 === |
| + | |
| + | * 2022-04-24, 21:31:49: [https://stackoverflow.com/questions/32274222/wrap-multiple-tags-with-beautifulsoup python - Wrap multiple tags with BeautifulSoup - Stack Overflow] |
| + | *: <html><span class="hljs-keyword">from</span> bs4 <span class="hljs-keyword">import</span> BeautifulSoup <span class="hljs-keyword">import</span> itertools soup = BeautifulSoup(html_doc) <span class="hljs-comment"># wrap all h1 and next siblings into sections</span> h1s = soup.find_all(<span class="hljs-string">'h1'</span>) <span class="hljs-keyword">for</span> el <span class="hljs-keyword">in</span> h1s: els = [i <span class="hljs-keyword">for</span> i <span class="hljs-keyword">in</span> itertools.takewhile( <span class="hljs-keyword">lambda</span> x: x.name <span class="hljs-keyword">not</span> <span class="hljs-keyword">in</span> [el.name, <span class="hljs-string">'script'</span>], el.next_siblings)] section = soup.new_tag(<span class="hljs-string">'section'</span>) el.wrap(section) <span class="hljs-keyword">for</span> tag <span class="hljs-keyword">in</span> els: section.append(tag) <span class="hljs-built_in">print</span>(soup.prettify())</html> |
| + | <!-- NEXT BOOKMARK --> |
| + | * 2022-04-24, 21:19:02: [https://stackoverflow.com/questions/54902751/find-all-html-content-between-heading-tags-and-wrap-it-with-section-tag-in-pytho Find all html content between heading tags and wrap it with section tag in Python - Stack Overflow] |
| + | * 2022-04-24, 18:40:07: [https://codepen.io/hexagoncircle/pen/JjRYaZw CSS Sticky Parallax Sections] |
| + | * 2022-04-24, 16:56:33: [https://www.mediawiki.org/wiki/Parsing/Notes/Section_Wrapping Parsing/Notes/Section Wrapping - MediaWiki] |
| + | *: <html>by</html> |
| + | <!-- NEXT BOOKMARK --> |
| + | * 2022-04-22, 08:32:54: [https://www.digitalocean.com/community/tutorials/css-pure-css-parallax How To Create a Parallax Scrolling Effect with Pure CSS in Chrome | DigitalOcean] |
| + | * 2022-04-15, 23:06:25: [https://docs.switzernet.com/people/emin-gabrielyan/060112-capillary-references/ref/MacKay05.pdf#page=1&zoom=180,31,513 Title - MacKay05.pdf] |
| + | |
| + | === 2022-03 === |
| + | |
| + | * 2022-03-23, 00:27:15: [https://github.com/HighwayStar/cocalc/commit/fbff82acc56716c386e92d39ae9ae61bdbafb7db ldap: Add ldapauth strategy and adapt sign-in page · HighwayStar/cocalc@fbff82a · GitHub] |
| + | |
| + | === 2022-02 === |
| + | |
| + | * 2022-02-16, 12:08:55: [http://math.intra.ispras.ru/DocMarking/%D0%90%D0%BB%D0%B3%D0%BE%D1%80%D0%B8%D1%82%D0%BC%D1%8B/RNC32 DocMarking/Алгоритмы/RNC32 — MATH] |
| | | |
| === 2022-01 === | | === 2022-01 === |