I was looking to compress PDF files (typically poster for event and such are massive)
- online tools is not a solution for sensitive data, process is tiedous to check compression rate ;
- other tools require Python (cf. minimalpdfcompress, pdfc) ; but Local compress of PDF with ~90% efficiency (way better than online tool) using only CLI tool
- in-browser solution compress so much that content isn't readable (cf. CompressPDF) ;
- DjVu format is super efficient as it's designed to store document
- Currently no OCR, if you need it check pdf2djvu-ocr
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 is your system's configuration file. | |
| # Use this to configure your system environment (it replaces /etc/nixos/configuration.nix) | |
| { | |
| inputs, | |
| lib, | |
| config, | |
| pkgs, | |
| ... | |
| }: { | |
| imports = [ |
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
| Test timeout of 60000ms exceeded. | |
| Pending operations: | |
| - locator.isDisabled at src/pages/POM/reasons.ts:33:70 | |
| Error: browserContext.close: Browser closed. | |
| ==================== Browser output: ==================== | |
| <launching> /ms-playwright/chromium-1080/chrome-linux/chrome --disable-field-trial-config --disable-background-networking --enable-features=NetworkService,NetworkServiceInProcess --disable-background-timer-throttling --disable-backgrounding-occluded-windows --disable-back-forward-cache --disable-breakpad --disable-client-side-phishing-detection --disable-component-extensions-with-background-pages --disable-component-update --no-default-browser-check --disable-default-apps --disable-dev-shm-usage --disable-extensions --disable-features=ImprovedCookieControls,LazyFrameLoading,GlobalMediaControls,DestroyProfileOnBrowserClose,MediaRouter,DialMediaRouteProvider,AcceptCHFrame,AutoExpandDetailsElement,CertificateTransparencyComponentUpdater,AvoidUnnecessaryBeforeUnloadCheckSync,Translate --allow-pre-commit |
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
| {"version":1,"resource":"file:///home/edouard/projects/digital-identity/keycloak/.provision/scripts/keycloak-wait-readiness.sh","entries":[{"id":"hNGX.sh","timestamp":1666345172275},{"id":"xvOw.sh","source":"undoRedo.source","timestamp":1666345175203},{"id":"t3y8.sh","timestamp":1666345289952},{"id":"ob7N.sh","timestamp":1666345323052}]} |
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
| download_dir:=./C3LearningLabs | |
| install_dir:=/opt/c3system/C3LearningLabs | |
| download-linux: | |
| wget -c http://www.c3learninglabs.com/download/system/c3fire-v4.1.1.0/c3fire-v4.1.1.0-install-linux.tgz | |
| echo "You need to extract the archive" | |
| install-linux: | |
| mkdir -p /opt/c3system |
Bonjour,
Je suis un ingénieur logiciel avec une expériences de projets fullstack (Python, Docker, Ansible, CI / CD, etc.) et un fort goût pour l'UX, les tests et l'automatisation.
J'ai également une expérience des frameworks JS populaires (React, Vue, Ember et AngularJS).
Je sais :
- Collaborer avec le client pour faire évoluer la plateforme existante ;
Tools taken from https://github.com/aitemr/awesome-git-hooks.
Legend: ✔: yes, ✖: no, ⚠: broken, xn: run against n versions
| project | language | Tests | CI | Stars | Description |
|---|---|---|---|---|---|
| Githooks | shell |
~100 |
✔ x12 |
~150 | Auto-install Git hook, that supports hooks in any language checked into Git and also shared repos. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| import hashlib | |
| import binascii | |
| def calc_entropy(): | |
| digest_algorithm = "sha256" | |
| master_password = 'password' | |
| salt = 'site'+'login'+hex(1)[2:] | |
| iterations = 100000 | |
| derived_key_length = 32 |
NewerOlder