Run:
ffmpeg -hide_banner -h encoder=libfdk_aac
#!/usr/bin/env python3 | |
# | |
# smartctl-validate-health - Validate SMART health for all drives in parallel. | |
# | |
# Author: Lee Trager <[email protected]> | |
# Newell Jensen <[email protected]> | |
# | |
# Copyright (C) 2017-2020 Canonical | |
# | |
# This program is free software: you can redistribute it and/or modify |
# | |
# Xorg Config for an Integrated AMD / ATI Radeon HD 4200 on a MSI 785GTM-E45 | |
# | |
# | |
# Use special reduced timings for 1080p HDMI output as it gets rid of screen | |
# corruption on the Radeon 4200 HD (Win7 never had problems with same cabling). | |
# | |
# Other symptoms included skipping audio and periodic screen corruption in XBMC | |
# as well as general use. | |
# |
Locate the section for your github remote in the .git/config
file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = [email protected]:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/*
to this section. Obviously, change the github url to match your project's URL. It ends up looking like this:
<# | |
.SYNOPSIS | |
Script to Initialize my custom powershell setup. | |
.DESCRIPTION | |
Script uses scoop | |
.NOTES | |
**NOTE** Will configure the Execution Policy for the "CurrentUser" to Unrestricted. | |
Author: Mike Pruett | |
Date: October 18th, 2018 |
// https://levelup.gitconnected.com/how-to-load-external-javascript-files-from-the-browser-console-8eb97f7db778 | |
const sleep = (ms) => new Promise((r) => setTimeout(r, ms)) | |
const randint = (max) => Math.floor(Math.random() * max) | |
async function getDiscoveryData() { | |
const resp = await fetch( | |
'https://www.pixiv.net/ajax/discovery/artworks?mode=all&limit=100&lang=zh', | |
{ |
#先读我! | |
#$HdiffFilePath 为 升级包 完整路径 | |
#$GamePath 为 游戏完整路径(非启动器路径) | |
#$ToolPath 为 hpatchz.exe 完整路径(如果有官方启动器就填写启动器完整路径,如果没有去该地址下载:https://github.com/sisong/HDiffPatch/releases) | |
param($HdiffFilePath="H:\GameSetup\setup\Genshine Impact\game_2.8.52_2.8.53_hdiff_tODgBJm8uenIGUX5.zip",$GamePath="H:\Games\Genshin Impact\Genshin Impact game") | |
$ToolPath = 'G:\ProgramFiles\hdiffpatch_v4.1.3' | |
$github = "https://gist.github.com/LiuQixuan/1a3810046c1152808fc9d65c699f8d8d" | |
$host.ui.RawUI.WindowTitle = "Install game_hdiff.zip for GenshinImpact" |