Skip to content

Instantly share code, notes, and snippets.

@assiless
assiless / main.js
Last active November 29, 2023 19:00
This file has been truncated, but you can view the full file.
window.__SCRIPTS_LOADED__.vendor&&((self.webpackChunk_twitter_responsive_web=self.webpackChunk_twitter_responsive_web||[]).push([["main"],{126738:(e,n,d)=>{var t=d(379404);t.loadLanguage.registerChunkLoader((function(e){return d(831893)(`./${e}`)}),["en","ar","ar-x-fm","bg","bn","ca","cs","da","de","el","en-GB","en-ss","en-xx","es","eu","fa","fi","fil","fr","ga","gl","gu","ha","he","hi","hr","hu","id","ig","it","ja","kn","ko","mr","ms","nb","nl","pl","pt","ro","ru","sk","sr","sv","ta","th","tr","uk","ur","vi","yo","zh","zh-Hant"]),e.exports=t},831893:(e,n,d)=>{var t={"./ar":[240421,"vendor","i18n/ar"],"./ar-x-fm":[397180,"vendor","i18n/ar-x-fm"],"./ar-x-fm.js":[397180,"vendor","i18n/ar-x-fm"],"./ar.js":[240421,"vendor","i18n/ar"],"./bg":[216664,"vendor","i18n/bg"],"./bg.js":[216664,"vendor","i18n/bg"],"./bn":[793458,"vendor","i18n/bn"],"./bn.js":[793458,"vendor","i18n/bn"],"./ca":[45949,"vendor","i18n/ca"],"./ca.js":[45949,"vendor","i18n/ca"],"./cs":[690186,"vendor","i18n/cs"],"./cs.js":[690186,"vendor","i18n
@assiless
assiless / UCR_vX.X.X\context.xml
Last active September 7, 2023 16:13
Twin USB Joystick
<?xml version="1.0" encoding="utf-8"?>
<Context xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Profiles>
<Profile Title="Twin USB Joystick" Guid="bcd3b74c-f874-4c8d-a238-03423431e670">
<ChildProfiles />
<Mappings>
<Mapping Title="Cross">
<DeviceBindings>
<DeviceBinding IsBound="true" DeviceConfigurationGuid="245d82b7-c3fa-4d68-a6dc-0c4c08a18b32" KeyType="1" KeyValue="50" KeySubValue="0" />
</DeviceBindings>
@assiless
assiless / Arabic - QWERTY.klc
Last active December 7, 2024 10:24
Arabic - QWERTY
KBD AR "Arabic - QWERTY"
COPYRIGHT "(c) 2023 assil"
COMPANY "assil"
LOCALENAME "ar-AE"
LOCALEID "00003801"
@assiless
assiless / install_rsync.ps1
Last active November 18, 2024 14:58 — forked from LuisEGR/install_rsync.ps1
Install rsync in Windows 11, easy
# open powershell as admin
# $HOME\install_rsync.ps1
# Download and install Git for Windows if not already installed
if (-not (Test-Path "C:\Program Files\Git\bin\git.exe")) {
Write-Host "Git for Windows not found. Downloading installer..."
Invoke-WebRequest -Uri "https://github.com/git-for-windows/git/releases/download/v2.31.1.windows.1/Git-2.31.1-64-bit.exe" -OutFile "git-installer.exe"
Write-Host "Installing Git for Windows..."
Start-Process -FilePath ".\git-installer.exe" -ArgumentList "/VERYSILENT" -Wait
Remove-Item ".\git-installer.exe"