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
| FINAL Corecturi gramaticale, punctuatie, stilistice si semantic-logice de pe site-ul https://neculaifantanaru.com | |
| Corectează gramatica, ortografia și punctuația textului dat in limba romana. Precizeaza ce anume nu e corect, logic si stilistic in textul dat, conform instrucțiunilor de mai jos: | |
| 1. Respectarea fidelă a textului original: | |
| - Analizează textul pentru a corecta greșelile gramaticale, de ortografie, punctuație și structură. | |
| - Păstrează cât mai mult posibil stilul, tonul și intenția originală a autorului. | |
| 2. Intervenții minime: | |
| - Corectează doar elementele care împiedică claritatea sau respectarea normelor limbii române. |
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
| # -*- coding: utf-8 -*- | |
| """ | |
| adauga-folder-in-repository.py | |
| Adauga toate fisierele dintr-un folder local intr-un repository de pe GitHub. | |
| Flux: | |
| Fereastra 1 -> intreaba in ce repo de pe GitHub sa adaugi fisierele (URL repo). | |
| Fereastra 2 -> intreaba calea folderului local pe care vrei sa-l copiezi in repo, | |
| cu un checkbox: "Copiaza si subfolderele" (recursiv) sau doar fisierele din folder. |
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
| # -*- coding: utf-8 -*- | |
| """ | |
| DOWNLOAD FULL - Metoda 1 | |
| ======================== | |
| Bazat pe structura din "Claude-FINAL 15 ... Firefox.py", dar SINGURA diferenta | |
| este METODA de preluare a datelor: NU se mai descarca PDF (are limita). In schimb, | |
| pentru fiecare pagina se preia IMAGINEA SURSA din browser (METODA 1 = fetch la | |
| blob-ul <img class="page-canvas">), apoi toate imaginile unui document se pun | |
| intr-un PDF. |
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
| <?php | |
| // ───────────────────────────────────────────────────────────────────────────── | |
| // Word Editor — editor de documente (docx / doc / odt / rtf / pdf) cu toolbar tip Word. | |
| // Inspirat din "index V.4.php" (Mini Dreamweaver), dar dedicat fisierelor office. | |
| // • docx → deschis client-side cu mammoth.js → editabil → salvat cu html-docx-js | |
| // • odt → convertit server-side (zip + content.xml) → editabil → salvat ca .docx | |
| // • rtf → convertit server-side minimal → editabil → salvat ca .docx | |
| // • pdf → randat cu pdf.js; text extras pentru editare → salvat ca .docx | |
| // • doc → binar vechi: doar avertisment (recomanda conversie in .docx) | |
| // ───────────────────────────────────────────────────────────────────────────── |
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
| # -*- coding: utf-8 -*- | |
| """ | |
| DOWNLOAD FULL - Metoda 1 | |
| ======================== | |
| Bazat pe structura din "Claude-FINAL 15 ... Firefox.py", dar SINGURA diferenta | |
| este METODA de preluare a datelor: NU se mai descarca PDF (are limita). In schimb, | |
| pentru fiecare pagina se preia IMAGINEA SURSA din browser (METODA 1 = fetch la | |
| blob-ul <img class="page-canvas">), apoi toate imaginile unui document se pun | |
| intr-un PDF. |
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
| # -*- coding: utf-8 -*- | |
| """ | |
| Arcanum - METODA 2: printscreen real + deplasare controlata + lipire pe geometrie. | |
| Gandire diferita fata de metoda 1 (care preia blob-ul sursa cu fetch). Aici | |
| capturam PIXELII DE PE ECRAN, dar NU ne bazam pe scroll-ul viewer-ului (care e | |
| virtual/clamp-uit). In schimb: | |
| 1. luam <img> paginii (cea mai mare), o mutam in <body>; | |
| 2. o fixam la rezolutie nativa (position:fixed, z-index maxim, NW x NH); | |
| 3. o deplasam noi pe verticala (top:-offset) banda cu banda; |
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
| # -*- coding: utf-8 -*- | |
| """ | |
| Arcanum - captura pagina la rezolutie maxima din <canvas> (metoda PDF.js / toDataURL). | |
| NU inchide Firefox-ul care ruleaza: copiaza profilul activ intr-un folder temp | |
| (cookie-urile se mostenesc => deja logat) si porneste un Firefox de automatizare separat. | |
| Rezultat: PNG + PDF in .\arcanum_capture\ | |
| """ | |
| import os |
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
| from __future__ import annotations | |
| import copy | |
| import re | |
| import unicodedata | |
| from dataclasses import dataclass | |
| from difflib import SequenceMatcher | |
| from pathlib import Path | |
| from docx import Document |
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
| from fpdf import FPDF, HTMLMixin | |
| from docx import Document | |
| from docx.shared import Pt, RGBColor | |
| from docx.enum.text import WD_ALIGN_PARAGRAPH | |
| from docx.oxml.ns import qn | |
| from docx.oxml import OxmlElement | |
| import copy | |
| import os | |
| import re | |
| from PyPDF2 import PdfMerger |
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
| Este complet normal să nu fi înțeles ideea din prima, deoarece conceptul central nu este cel al unui film horror clasic cu un criminal în serie, ci folosește elemente paranormale ca pe o metaforă. [1, 2] | |
| Notă: Deși ai menționat anul 2003, povestea horror cu bufonul sinistru aparține universului cinematografic The Jester (lansat inițial ca scurtmetraje pe YouTube și extins în lungmetrajul regizat de Colin Krawchuk). În 2003 s-a lansat documentarul cu nume similar „Bitter Jester” sau animația „Jester Till”. [1, 3, 4, 5, 6] | |
| ------------------------------ | |
| ## 💡 Ideea principală a filmului | |
| The Jester nu este un om real, ci o entitate supranaturală care reprezintă manifestarea fizică a Guilt-ului (vinovăției), a regretelor și a secretelor nespuse. [2, 7] | |
| El apare în preajma oamenilor care refuză să își asume greșelile sau care poartă o ură profundă. Jester îi torturează și îi ucide doar pe cei care „aleg să nu joace după reguli” – regulile sale fiind, de fapt, onestitatea emoțională și iertarea. [2] | |
| * Tatăl (Jo |
NewerOlder