Skip to content

Instantly share code, notes, and snippets.

@paulloz
paulloz / content.md
Last active November 16, 2024 23:26
Visual Studio Code and C# code completion and debugger for Godot

Visual Studio Code and C# code completion and debugger for Godot

Ok, this is a quick document to guide you through the setup of a Godot project in Visual Studio Code.
I'll assume you have a working C# environment installed. Note that on Linux, you might need to install Mono for everything to work fine with Godot 3.x.

1. Install the necessary extensions

First off, make sure you have the following extensions installed and active in Visual Studio Code:

@icedterminal
icedterminal / vmxfile.md
Last active April 28, 2025 11:50
Hide VM status in guest OS (VMWare)

Hide VM Identification in VMWare (Stealthy)

Tested using WorkStation Pro 16.x, Windows host and guest in UEFI mode, using an Intel CPU.

  1. Create a Windows 10 VM.
  2. Edit VM settings Processor section. Enable (tick) these:
    • Virtualize Intel VT-x/AMD-V
    • Virtualize CPU Performance Counters
    • Virtualize IOMMU
  3. Install Windows 10 in VM.
using System.Collections.Generic;
using HardDev.Engine.Experiment.Types;
using HardDev.Engine.Experiment.Voxel.BlockImpl;
using HardDev.Engine.Experiment.Voxel.Directions;
using UnityEngine;
namespace HardDev.Engine.Experiment.Voxel.ChunkImpl
{
public static class MergedFaceMeshBuilder
{
@digitalhitler
digitalhitler / smali-cheatsheet.txt
Created September 4, 2018 21:20
Smali docs на русском
Небольшая помощь в Smali
(Будет дополняться)
#
Общая информация
#
Smali
Виды(Types)
Байт-код Dalvik имеет два основных класса типов, примитивные типы и ссылочные типы. Типы ссылок - это объекты и массивы, все остальное является примитивным.