The Transmission torrent client has an option to set a Blocklist, which helps protect you from getting caught and having the DMCA send a letter/email.
It's as simple as downloading and installing the latest client:
The Transmission torrent client has an option to set a Blocklist, which helps protect you from getting caught and having the DMCA send a letter/email.
It's as simple as downloading and installing the latest client:
This is a study of interpersonal closeness, and your task, which we think will be quite enjoyable, is simply to get close to your partner. We believe that the best way for you to get close to your partner is for you to share with them and for them to share with you. Of course, when we advise you about getting close to your partner, we are giving advice regarding your behavior in this demonstration only, we are not advising you about your behavior outside of this demonstration.
In order to help you get close we've arranged for the two of you to engage in a kind of sharing game. You're sharing time will be for about one hour, after which time we ask you to fill out a questionnaire concerning your experience of getting close to your partner.
You have been given three sets of slips. Each slip has a question or a task written on it. As soon as you both finish reading these instructions, you should
#!/usr/bin/env bash | |
# This script launches a Windows executable using Proton within a Linux environment. | |
# It requires exactly one argument: the path to the executable to run. | |
# It sets up a separate Proton prefix for each executable to avoid conflicts. | |
# Usage: proton <path-to-executable> | |
if [ "$#" -ne 1 ]; then | |
echo "Usage: $0 <executable-path>" | |
exit 1 |
XScreenSaver is a collection of screen savers for X Window System. Each "module" is a standalone program that renders graphics to a window created by the XScreenSaver daemon.
Import-Module posh-git | |
Import-Module PSFzf | |
# Set initial directory | |
cd "$HOME\workspace\repos\UI" | |
# Git aliases | |
Set-Alias -Name g -Value git | |
Remove-Item alias:gc -Force -ErrorAction SilentlyContinue | |
function gs { git status $args } |
#NoEnv | |
SendMode Input | |
SetWorkingDir %A_ScriptDir% | |
padding := 20 | |
; half screens | |
^#h::WinMove, A, , padding, padding, (A_ScreenWidth/2)-(padding*1.5), A_ScreenHeight-(padding*2) | |
^#j::WinMove, A, , padding, (A_ScreenHeight/2)+padding, A_ScreenWidth-(padding*2), (A_ScreenHeight/2)-(padding*2) | |
^#k::WinMove, A, , padding, padding, A_ScreenWidth-(padding*2), (A_ScreenHeight/2)-(padding*2) |
; AHK v2 script | |
SetWorkingDir(A_ScriptDir) | |
; https://github.com/Ciantic/VirtualDesktopAccessor | |
VDA_PATH := A_ScriptDir . "\VirtualDesktopAccessor.dll" | |
hVirtualDesktopAccessor := DllCall("LoadLibrary", "Str", VDA_PATH, "Ptr") | |
GoToDesktopNumberProc := DllCall("GetProcAddress", "Ptr", hVirtualDesktopAccessor, "AStr", "GoToDesktopNumber", "Ptr") | |
GoToDesktopNumber(num) { |
#include <X11/Xatom.h> | |
#include <X11/Xlib.h> | |
#include <X11/Xutil.h> | |
#include <X11/extensions/shape.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <unistd.h> | |
int main() { |
#!/usr/bin/env python3 | |
from flask import Flask, request, redirect, url_for | |
from markupsafe import escape | |
import re | |
import json | |
import atexit | |
from urllib.parse import urlparse | |
app = Flask(__name__) |