Latest Docs http://search.osakos.com/rss.php http://search.osakos.com/rss.php en-us Thu, 26 Dec 2024 22:06:17 GMT Thu, 26 Dec 2024 22:06:17 GMT wget downloading only PDFs from website http://search.osakos.com/cache.php?key=c4e05c56d98a26f7c399cc0caed2cdd0&uri=https%3A%2F%2Fstackoverflow.com%2Fquestions%2F28590772%2Fwget-downloading-only-pdfs-from-website http://search.osakos.com/cache.php?key=c4e05c56d98a26f7c399cc0caed2cdd0 -A pdf --content-disposition \
--random-wait --wait 3 --no-http-keep-alive -U "curl/8.7.1" \
--header 'Authorization: Basic base64_username:password' \
-o ./wget.log "https://some-website.com/docs/"]]>
Thu, 19 Dec 2024 23:42:52 GMT
How does curl differ to wget for authentication http://search.osakos.com/cache.php?key=156b21c342c10a42f746b54f9f12591f&uri=https%3A%2F%2Fstackoverflow.com%2Fquestions%2F32878077%2Fhow-does-curl-differ-to-wget-for-authentication http://search.osakos.com/cache.php?key=156b21c342c10a42f746b54f9f12591f ]]> Thu, 19 Dec 2024 23:34:27 GMT ssl|https|Java > Lock down TLS version in java.security, but allow per app to override http://search.osakos.com/cache.php?key=910fe725011ae05d2d8c4bd7f70bab6f&uri=https%3A%2F%2Fstackoverflow.com%2Fquestions%2F51426106%2Fjava-lock-down-tls-version-in-java-security-but-allow-per-app-override-via-la http://search.osakos.com/cache.php?key=910fe725011ae05d2d8c4bd7f70bab6f Wed, 18 Dec 2024 22:41:15 GMT java|ssl > How is setting the system-wide cryptographic policy (SSL error/algorithm) http://search.osakos.com/cache.php?key=22dd1734029b75dfe2899b0c717c8d57&uri=https%3A%2F%2Fserverfault.com%2Fquestions%2F1106192%2Fhow-is-setting-the-system-wide-cryptographic-policy-for-java-supposed-to-work http://search.osakos.com/cache.php?key=22dd1734029b75dfe2899b0c717c8d57 Mon, 16 Dec 2024 03:22:56 GMT postgres|PostgreSQL > ERROR: could not attach to dynamic shared area http://search.osakos.com/cache.php?key=4cca6a06adfeccfb7a4c50627c30a16a&uri=https%3A%2F%2Fwww.postgresql.org%2Fmessage-id%2FPH0PR13MB49377CC9CCA28EA59EEB27C5DAD62%40PH0PR13MB4937.namprd13.prod.outlook.com http://search.osakos.com/cache.php?key=4cca6a06adfeccfb7a4c50627c30a16a Tue, 10 Dec 2024 02:04:48 GMT bash > Difference between nohup, disown http://search.osakos.com/cache.php?key=4dec27da3f4f960075487d0c05b78e2e&uri=https%3A%2F%2Funix.stackexchange.com%2Fquestions%2F3886%2Fdifference-between-nohup-disown-and http://search.osakos.com/cache.php?key=4dec27da3f4f960075487d0c05b78e2e Mon, 09 Dec 2024 04:57:00 GMT postgres|PostgreSQL > UNNEST() function http://search.osakos.com/cache.php?key=855a9fb4357338b39b57f49ad9740e4a&uri=https%3A%2F%2Fwww.w3resource.com%2FPostgreSQL%2Fpostgresql_unnest-function.php http://search.osakos.com/cache.php?key=855a9fb4357338b39b57f49ad9740e4a Fri, 06 Dec 2024 07:30:05 GMT Postgres UNNEST cheat sheet for bulk operations http://search.osakos.com/cache.php?key=20259e27aa9b7793c5e304b533ff6629&uri=https%3A%2F%2Fdev.to%2Fforbeslindesay%2Fpostgres-unnest-cheat-sheet-for-bulk-operations-1obg http://search.osakos.com/cache.php?key=20259e27aa9b7793c5e304b533ff6629 Fri, 06 Dec 2024 07:28:39 GMT github > Git to trust certificates from the Windows Certificate Store? http://search.osakos.com/cache.php?key=a1096aab442b3149642b8243b792f81c&uri=https%3A%2F%2Fstackoverflow.com%2Fquestions%2F16668508%2Fhow-do-i-configure-git-to-trust-certificates-from-the-windows-certificate-store http://search.osakos.com/cache.php?key=a1096aab442b3149642b8243b792f81c ]]> Thu, 05 Dec 2024 09:18:43 GMT postgres > How does PostgreSQL write transactions into WAL files and apply those changes http://search.osakos.com/cache.php?key=7f5c7202ec391facbb1401a73ca1c6c9&uri=https%3A%2F%2Fmedium.com%2F%40wasiualhasib%2Fhow-does-postgresql-write-transactions-into-wal-files-and-apply-those-changes-to-actual-data-files-d2903d2cd5d9 http://search.osakos.com/cache.php?key=7f5c7202ec391facbb1401a73ca1c6c9
After the WAL record is written to the WAL buffer, the actual changes are made to the data pages in the shared buffer. This includes marking rows as deleted or updating the row data.

The WAL buffer is periodically flushed to the WAL file on disk.]]>
Wed, 04 Dec 2024 04:21:35 GMT
bash > how to iterate list of strings with `read -ra` and IFS in the loop (not while loop) http://search.osakos.com/cache.php?key=0b164f1ef530bdb7428115f80b97e7f7&uri=https%3A%2F%2Fstackoverflow.com%2Fquestions%2F27296904%2Fread-ra-vs-direct-assignment http://search.osakos.com/cache.php?key=0b164f1ef530bdb7428115f80b97e7f7 IFS=", " read -ra repos <<< "$input_string"
for repo in "${repos[@]}"; do
echo "Processing repository: $repo"
done]]>
Tue, 03 Dec 2024 00:24:32 GMT
bash > Are `-L1` and `-n 1` the same for `xargs` http://search.osakos.com/cache.php?key=5a31455a9b83e159ccf6ed0f7a9239cc&uri=https%3A%2F%2Funix.stackexchange.com%2Fquestions%2F448290%2Fare-l1-and-n-1-the-same-for-xargs http://search.osakos.com/cache.php?key=5a31455a9b83e159ccf6ed0f7a9239cc echo 1 2
1 2
echo 3 4
3 4
$ printf '1 2\n3 4\n' | xargs -n1 -t echo
echo 1
1
echo 2
2
echo 3
3
echo 4
4]]>
Thu, 28 Nov 2024 07:14:53 GMT