Skip to content

Instantly share code, notes, and snippets.

View kotleni's full-sized avatar
👚
.addFeature(Features.VR_OCULUS_QUEST2)

Viktor Varenik kotleni

👚
.addFeature(Features.VR_OCULUS_QUEST2)
View GitHub Profile
@kotleni
kotleni / arch-linux-installing-helper.md
Last active August 11, 2024 11:12
arch-linux-installing-helper.md

Arch Linux Installing Helper

This markdown document should help to you (and me :3) install arch linux with all needed non graphical things for regular PC with UEFI. Excented source of information about installation: https://wiki.archlinux.org/title/Installation_guide

Preparing

  1. Download iso image, from https://repo.hyron.dev/archlinux/iso/ (UA mirror) as example.
  2. Flash iso to usb stick using rufus, balendaEtcher, dd or etc.
  3. Boot PC and switch booting device to flashed usb stick.

Installing basic system

@maximtrp
maximtrp / Orange Pi PC + Arch Linux ARM.md
Last active August 28, 2024 13:59
Guide on how to install Arch Linux ARM on SD card for your Orange Pi PC board

Orange Pi PC + Arch Linux ARM: installation guide

This guide is based on multiple guides as well as official instructions for the other boards found on the Internet:

  1. https://github.com/RoEdAl/alarm-uboot-sunxi-armv7
  2. https://uthings.uniud.it/building-mainline-u-boot-and-linux-kernel-for-orange-pi-boards
  3. https://archlinuxarm.org/platforms/armv7/allwinner/pcduino3

I have gone through all these steps recently and got a working board with my favorite Arch Linux ARM. I hope it will be helpful for someone else.

@RupGautam
RupGautam / block_tik_tok.txt
Last active May 22, 2024 07:04
TikTok domains to DNSBL Feeds
api30.tiktokv.com
api21.tiktokv.com
webcast21.tiktokv.com
api31.tiktokv.com
api-t1.tiktokv.com
webcast1.tiktokv.com
api32.tiktokv.com
api30-h2.tiktokv.com
api21-h2.tiktokv.com
api-s1-h2.tiktokv.com
@diyism
diyism / Use your android phone as a karaoke microphone in Linux.md
Last active December 11, 2023 16:46
Use your android phone as a karaoke microphone in Linux

micclient+WoMic is close source, while Mumble is open source, so on armbian tv, I can only use Mumble+Murmurd+Plumble.

===================="mumble+murmurd"(on arm64 armbian linux tv)+plumble(on android/ios)==================== refer: https://github.com/diyism/mic_over_mumble

sudo apt install mumble mumble-server

sudo systemctl stop mumble-server.service

@denizssch
denizssch / XpSerials.txt
Created July 21, 2019 00:13
Windows XP ALL Serial Keys :) (For testing purpose [Ex: VM or PenTest])
FCKGW-RHQQ2-YXRKT-8TG6W-2B7Q8
Windows XP PRO Corporate serial number S/N: Key: MQPWW-PGVKX-YPMKG-8DH3G-KC8PW
windows xp home edition serial number S/N: 034634-262024-171505-828316-729010-413531-800424-400442
Windows XP 64 serial number S/N: B2RBK-7KPT9-4JP6X-QQFWM-PJD6G
Windows XP serial number S/N: K6C2K-KY62K-DQR84-RD4QV-QB74Q
Windows XP Professional 64-bit Corporate Edition 5.2.3790.1830 serial number S/N: VCFQD-V9FX9-46WVH-K3CD4-4J3JM
Microsoft Windows XP Professional SP2 serial number S/N: YY8F2-3CKVQ-RKTRG-6JMDR-9DTG6
Windows XP Professional Service Pack 1 sp1 serial number S/N: F46YY - 2R8VQ - R8GMY - 926VK - 6BQ73
Windows XP Pro serial number S/N: KBWR7-76BD8-J7MDQ-KKG&C-V9Q2J
@matthewjberger
matthewjberger / cargo.toml
Created June 6, 2018 04:51
SDL2/OpenGl in Rust
[package]
name = "chapter-01"
version = "0.1.0"
authors = ["Matthew J. Berger <matthewberger@nevada.unr.edu>"]
[dependencies]
gl = "0.10.0"
[dependencies.sdl2]
version = "0.31.0"
fragment float4 capturedImageFragmentShader(ImageColorInOut in [[stage_in]],
texture2d<float, access::sample> capturedImageTextureY [[ texture(kTextureIndexY) ]],
texture2d<float, access::sample> capturedImageTextureCbCr [[ texture(kTextureIndexCbCr) ]]) {
constexpr sampler colorSampler(mip_filter::linear,
mag_filter::linear,
min_filter::linear);
const float4x4 ycbcrToRGBTransform = float4x4(
float4(+1.0000f, +1.0000f, +1.0000f, +0.0000f),
@maiconhellmann
maiconhellmann / UnsafeOkHttpClient.kt
Last active August 26, 2024 13:06
UnsafeHttpClient wrote in Kotlin
import android.annotation.SuppressLint
import okhttp3.OkHttpClient
import java.security.cert.CertificateException
import javax.net.ssl.SSLContext
import javax.net.ssl.TrustManager
import javax.net.ssl.X509TrustManager
object UnsafeOkHttpClient {
fun Builder(): OkHttpClient.Builder {
try {
@itotallyrock
itotallyrock / CS:GO Sounds.md
Created July 9, 2016 22:12
List of all/most CS:GO sound names.
error
ambient\fallscream
ambient\opera
ambient\tankidle2
ambient\waterrun
ambient\water_splash1
ambient\water_splash2
ambient\water_splash3
ambient\animal\bird1
@nemotoo
nemotoo / .gitattributes
Last active September 19, 2024 14:56
.gitattributes for Unity3D with git-lfs
## Unity ##
*.cs diff=csharp text
*.cginc text
*.shader text
*.mat merge=unityyamlmerge eol=lf
*.anim merge=unityyamlmerge eol=lf
*.unity merge=unityyamlmerge eol=lf
*.prefab merge=unityyamlmerge eol=lf