Skip to content

Instantly share code, notes, and snippets.

View drandarov-io's full-sized avatar
:octocat:
Always learning...

Dmitrij Drandarov drandarov-io

:octocat:
Always learning...
View GitHub Profile
@drandarov-io
drandarov-io / dmitr.io-onemore.xml
Last active October 19, 2023 19:58
OneMore Adjusted Style
<?xml version="1.0" encoding="utf-8"?>
<Theme key="Default" name="dmitr.io" color="automatic" setColor="False" dark="False">
<Style index="0" name="Code" font="Cascadia Code" fontColor="#001400" fontSize="9.0" spaceBefore="2.0" spaceAfter="5.0" spacing="12.0" applyColors="true" styleType="Paragraph" />
<Style index="1" name="Heading 1" font="Calibri Light" fontColor="#000000" fontSize="20.0" spaceBefore="14.0" spaceAfter="0.0" spacing="0.0" applyColors="true" styleType="Heading" />
<Style index="2" name="Heading 2" font="Calibri Light" fontColor="#E67832" fontSize="18.0" spaceBefore="14.0" spaceAfter="0.0" spacing="0.0" applyColors="true" styleType="Heading" />
<Style index="3" name="Heading 3" font="Calibri Light" fontColor="#823D0A" fontSize="16.0" spaceBefore="12.0" spaceAfter="0.0" spacing="0.0" applyColors="true" styleType="Heading" />
<Style index="4" name="Heading 4" font="Calibri Light" fontColor="#C85A14" fontSize="14.0" spaceBefore="12.0" spaceAfter="0.0" spacing="0.0" applyColors="true" s
@cinnamon-msft
cinnamon-msft / settings.json
Created January 25, 2023 00:23
Windows Terminal New Tab Dropdown Customization
"newTabMenu":
[
{
"type": "remainingProfiles"
},
{
"allowEmpty": false,
"entries":
[
{
@drandarov-io
drandarov-io / $PROFILE.ps1
Last active October 19, 2023 19:42
Personal PowerShell $PROFILE (drandarov-io)
# https://gist.github.com/drandarov-io/ec6a51a1d4e256c322f496cb47ab704a
#########################
# Theme
#########################
# Theme
oh-my-posh init pwsh --config ~/dmitr_io.omp.json | Invoke-Expression
@kentbye
kentbye / readme.md
Last active October 11, 2023 18:40
Half-Life: Alyx VConsole Commands for VR Developers and Modders

Half-Life: Alyx VConsole Commands for VR Developers and Modders

Posted on April 20th, 2020. (Last updated April 21st, 2020)

This is a guide meant for VR developers and modders to use some of the VConsole commands and 2D tools for navigating Half-Life: Alyx for the purpose of modding and exploring the experiential design of this VR experience. The experience is best when experienced in VR, but there are some things that are actually easier and better to do in 2D if you're intention is to analyze how some of the maps and experiences were put together.

You need to add this to you Properties (Right Click on HL:A), and then "Set Launch Options" -console -vconsole -dev

#!/bin/bash
################################################################################
### OpenCV2 Installation Script ###
################################################################################
# Source code at https://github.com/arthurbeggs/scripts #
################################################################################
# #
# Feel free to copy and modify this file. Giving me credit for it is your #
# choice, but please keep references to other people's work, which I don't #
@drandarov-io
drandarov-io / D.R.Y. - Reuse Gradle repository definition
Last active May 28, 2019 18:26
D.R.Y. - Reuse Gradle repository definition
This works however:
#### build.gradle
```gradle
buildscript {
// Repository Configuration
ext.repos = {
mavenCentral()
maven { url 'https://repo.spring.io/milestone' }
#!/bin/bash
################################################################################
### OpenCV2 Installation Script ###
################################################################################
# Source code at https://github.com/arthurbeggs/scripts #
################################################################################
# #
# Feel free to copy and modify this file. Giving me credit for it is your #
# choice, but please keep references to other people's work, which I don't #
@adammw
adammw / client.js
Last active September 13, 2022 02:33
simple-peer / socket.io test
var Peer = require('simple-peer');
var io = require('socket.io-client');
var debug = require('debug')('client');
var socket = io.connect();
var peers = {};
var useTrickle = true;
socket.on('connect', function() {
debug('Connected to signalling server, Peer ID: %s', socket.id);
});
@asmega
asmega / .curlrc
Created October 27, 2011 12:38
default proxy for curl in .curlrc
proxy=http://username:password@host:port