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
| pdfalto/libs | |
| ├── freetype | |
| │ ├── include | |
| │ │ ├── dlg | |
| │ │ │ ├── dlg.h | |
| │ │ │ └── output.h | |
| │ │ ├── freetype | |
| │ │ │ ├── config | |
| │ │ │ │ ├── ftconfig.h | |
| │ │ │ │ ├── ftheader.h |
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
| grobid-home/lib | |
| ├── lin-32 | |
| │ ├── ld-linux.so.2 | |
| │ ├── libc.so.6 | |
| │ ├── libgcc_s.so.1 | |
| │ ├── libm.so.6 | |
| │ ├── libstdc++.so.6 | |
| │ └── libwapiti.so | |
| ├── lin-64 | |
| │ ├── jep |
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
| /// <reference types="node" /> | |
| import { EventEmitter } from "events"; | |
| import { | |
| Agent, | |
| ClientRequest, | |
| ClientRequestArgs, | |
| IncomingMessage, | |
| OutgoingHttpHeaders, | |
| Server as HTTPServer, |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Meeting Schedule</title> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.29.4/moment.min.js"></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/moment-timezone/0.5.38/moment-timezone-with-data.min.js"></script> | |
| <style> | |
| /* Add some basic styling */ |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Meeting Schedule</title> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.29.4/moment.min.js"></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/moment-timezone/0.5.38/moment-timezone-with-data.min.js"></script> | |
| <style> | |
| /* Add some basic styling */ |
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
| pip install "typer<0.5.0,>=0.4.1" "tomli<3.0.0,>=2.0.1" "rich<13.0.0,>=12.4.4" "httpx<0.24.0,>=0.23.0" "anyio<4.0.0,>=3.6.1" "nala" | |
| pip install --upgrade duplicity |
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
| #!/usr/bin/env bash | |
| if [ ! `which jq` ] | |
| then | |
| echo Installing 'jq' | |
| sudo apt-get install jq -y | |
| fi | |
| set -euo pipefail |
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
| #!/usr/bin/env bash | |
| # webfinger | |
| if [ ! `which jq` ] | |
| then | |
| echo Installing 'jq' | |
| sudo apt-get install jq -y | |
| fi | |
| set -euo pipefail |
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
| abstract class A { | |
| abstract run(): Promise<void> | |
| } | |
| export class B implements A { | |
| async run(): Promise<void> { | |
| } | |
| } | |
| const I = new B(); |
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
| tar xf ~/Downloads/qt-everywhere-opensource-src-5.15.9.tar.xz | |
| cd qt-everywhere-src-5.15.9 | |
| mkdir build | |
| cd build | |
| ../configure | |
| make | |
| sudo make install |
NewerOlder