Moved to a repo at https://github.com/Geczy/coolify-migration
services: | |
qbittorrent: | |
container_name: qbittorrent | |
image: 'linuxserver/qbittorrent:latest' | |
environment: | |
- PUID=1000 | |
- PGID=1000 | |
- TZ=UTC | |
- WEBUI_PORT=5080 | |
volumes: |
// Made by @charlestehio: https://x.com/charlestehio | |
// Usage: https://abc.workers.dev/?query=your%20embedding%20query | |
import { Ai } from './vendor/@cloudflare/ai.js'; | |
export default { | |
async fetch(request, env) { | |
// Parse the URL to get query parameters | |
const url = new URL(request.url); | |
var query = url.searchParams.get('query'); |
LogiOps is an amazing projet - please donate.
I've moved from MacOS (I also use Windows with this mouse) and I wanted to keep most of the behaviors I'm used too. Thinks that didn't work for me:
- Gestures button dragging left/right switch desktops
- Hold/release gestures buttom shows all apps in active desktop
#!/bin/sh | |
# This script based on linux-vm-tools for Ubuntu 22.02. | |
# Thanks to https://github.com/Hinara/linux-vm-tools/ to script | |
# This script is for Ubuntu 22.04 Jammy Jellyfish to download and install XRDP+XORGXRDP via | |
# source. | |
# | |
# Major thanks to: http://c-nergy.be/blog/?p=11336 for the tips. | |
# |
Because I use Cloudflare to manage my domains and Backblaze for backups, it only made sense to take advantage of their Bandwidth Alliance for creating my own CDN. This has been incredibly helpful for image hosting for this knowledge base, however, I recently noticed that caching wasn't working as it should.
The overall problem started when I was adding a parking page for a domain I recently purchased. The background image was hosted on B2 and the image was supposed to be cached by Cloudflare. However, each time the page loaded, it would pull the image from the origin instead of the cache. I checked this on my knowledge base and found it was doing the same thing.
<?php | |
namespace App\Http\Livewire; | |
use App\Models\Tag; | |
use App\Models\User; | |
use Illuminate\Database\Eloquent\Builder; | |
use Rappasoft\LaravelLivewireTables\DataTableComponent; | |
use Rappasoft\LaravelLivewireTables\Views\Columns\BooleanColumn; | |
use Rappasoft\LaravelLivewireTables\Views\Column; |
#!/usr/bin/env bash | |
# Usage: | |
# ./git-change-commit-date.sh <commit id | 'all' > | |
# Example: | |
# ./git-change-commit-date.sh e119b94 # change commit with id e119b94 | |
# ./git-change-commit-date.sh all # changes all commits | |
# | |
# Warning! rebase/filter will change the history |
See the following links for further updates to Github Desktop for Ubuntu. These are official instructions. (also mentioned by fetwar on Nov 3, 2023)
For the sake of "maintaining the tradition" here is the updated version.
#!/usr/bin/python3 | |
""" | |
Copyright 2021 Mygod | |
Licensed under the Apache License, Version 2.0 (the "License"); | |
you may not use this file except in compliance with the License. | |
You may obtain a copy of the License at | |
http://www.apache.org/licenses/LICENSE-2.0 |