https://workconsultants.com/blog/move-google-chrome-profiles-to-a-new-computer/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Chrome] | |
"ExtensionManifestV2Availability"=dword:00000002 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gfx.font_rendering.cleartype_params.enhanced_contrast = 0 | |
gfx.font_rendering.cleartype_params.force_gdi_classic_for_families = (empty) | |
gfx.font_rendering.cleartype_params.rendering_mode = -1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# firewall_cleanup.ps1 | |
# | |
# Removes orphaned entries from the Windows Firewall. | |
# | |
$rules = Get-NetFirewallApplicationFilter | Where {($_.Program -ne "Any") -and ($_.Program -ne "System") -and (-not (Test-Path ([Environment]::ExpandEnvironmentVariables($_.Program))))} | Get-NetFirewallRule | |
foreach ($rule in $rules) | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Any copyright is dedicated to the Public Domain. | |
* https://creativecommons.org/publicdomain/zero/1.0/ */ | |
// @file Name: buildBridge.sqf | |
// @file Author: AgentRev | |
// examples: | |
// [nil, nil, ["rampDown+","ramp+_4","rampUp+","flat","flat_75_270","flat","rampUp-","ramp-_4","rampDown-"], true] execVM "buildBridge.sqf"; | |
// [nil, nil, ["rampDown+_lampR","ramp+_4_lampR","rampUp+_lampR","flat_10_lampR","rampUp-_lampR","ramp-_4_lampR","rampDown-_lampR"], true] execVM "buildBridge.sqf"; | |
// [nil, nil, ["rampDown+_lampL","ramp+_4_lampL","rampUp+_lampL","flat_lampL","flat_75_-270_lampL","flat_lampL","rampUp-_lampL","ramp-_4_lampL","rampDown-_lampL"], true] execVM "buildBridge.sqf"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const WAIT_OPEN_PLAYLIST_POPUP = 1000; | |
const WAIT_AFTER_ADD_PLAYLIST = 1500; | |
const PLAYLIST_NAME = 'Target'; | |
const listItems = Array.from(document.querySelectorAll('.sc-button-group.sc-button-group-small:first-child')); | |
const addItemToPlaylist = (index) => { | |
const node = listItems[index]; |
- Brainiac75 - Magnets
- Cody'sLab - Chemistry, Metallurgy, Physics
- colinfurze - Mechanics, Metalworking, Woodworking, Pyrotechnics
- DemolitionRanch - Guns
- ElectroBOOM - Electricity
- KREOSAN - Electricity
- Kurzgesagt - Philosophy, Physics
- MegaBots Inc - Robotics
- NileRed - Chemistry
- NurdRage - Chemistry
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// @file Name: fn_createCrewUAV.sqf | |
// @file Author: AgentRev | |
params [["_uav",objNull,[objNull]], ["_side",sideUnknown,[sideUnknown]]]; | |
if (!unitIsUAV _uav) exitWith { grpNull }; | |
private _vehCfg = configFile >> "CfgVehicles" >> typeOf _uav; | |
private _crewCount = {round getNumber (_x >> "dontCreateAI") < 1 && | |
((_x == _vehCfg && {round getNumber (_x >> "hasDriver") > 0}) || |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Default] | |
Version = 1 | |
;; Used incase there is ever a breaking change, or to inform user in log about a new feature. | |
Strip Chars = /\|;{}<> | |
;; List of characters to strip out | |
Strip Chars Mode = 0 | |
;; 0 = Strip Bad Chars, 1 = Strip + Log Bad Chars, 2 = Return Error & Log Bad Chars | |
;; Note: Logging on works when sending data to database. |
NewerOlder