Skip to content

Instantly share code, notes, and snippets.

View Bodix's full-sized avatar
💭
Making augmented reality a reality

Bogdan Nikolayev Bodix

💭
Making augmented reality a reality
View GitHub Profile
@Bodix
Bodix / README_RUS.md
Last active July 18, 2023 07:00
Unity development methodology

Методология разработки на движке Unity

Автор: Богдан Николаев

Цели

  1. Сокращение времени на разработку и поддержку программного обеспечения.
  2. Сохранение психического здоровья инженеров программного обеспечения.
@Bodix
Bodix / GameViewSizes.asset
Last active March 9, 2021 10:28
Game view sizes for Unity
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!114 &1
MonoBehaviour:
m_ObjectHideFlags: 61
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
@Bodix
Bodix / ConEmu.xml
Last active February 1, 2021 13:03
ConEmu settings
<?xml version="1.0" encoding="utf-8"?>
<key name="Software">
<key name="ConEmu">
<key name=".Vanilla" modified="2021-02-01 14:53:39" build="201124">
<value name="Language" type="string" data="en"/>
<value name="StartType" type="hex" data="02"/>
<value name="CmdLine" type="string" data=""/>
<value name="StartTasksFile" type="string" data=""/>
<value name="StartTasksName" type="string" data="{Shells::PowerShell (Admin)}"/>
<value name="StartFarFolders" type="hex" data="00"/>
@Bodix
Bodix / README.md
Last active July 19, 2022 23:25
PowerShell profile

Install (auto)

  1. Launch install.bat as Administrator.

Install (manual)

  1. Add profile.ps1 to %USERPROFILE%\Documents\WindowsPowerShell folder.

  2. Open PowerShell and enter the following commands:

@Bodix
Bodix / build.gradle
Created March 6, 2020 17:10
Deploy Android plugin to Unity
task deleteAar(type: Delete) {
delete fileTree(aarDeployPath) {
include "${aarName}-**.aar"
}
}
task deployAar(type: Copy, dependsOn: deleteAar) {
from('build/outputs/aar/')
into(aarDeployPath)
include(project.name + '-release.aar')
@Bodix
Bodix / README.md
Last active December 24, 2020 01:52
ADB over Wi-Fi

Usage

  1. Install Terminal Emulator for Android on your phone (requires root-access).
  2. Open terminal emulator on your phone and enter the following commands:
    su
    setprop service.adb.tcp.port 5555
    stop adbd
    start adbd
    
  3. Find the IP address on your phone.
@Bodix
Bodix / .gitconfig
Last active February 25, 2023 20:34
[user]
email = bodix321@gmail.com
name = Bodix
[includeIf "gitdir/i:Work/"]
path = ~/.work.gitconfig
[credential]
helper = store
[merge]
tool = vscode
[mergetool "vscode"]
@Bodix
Bodix / .gitignore
Last active May 4, 2022 23:36
Unity
/*
.DS_Store
!.gitignore
!.gitattributes
!.gitmodules
!*.DotSettings
!README.md
!.idea/