Skip to content

Instantly share code, notes, and snippets.

View satabol's full-sized avatar
💭
keep clear

satabol satabol

💭
keep clear
View GitHub Profile
@x1unix
x1unix / NET-framework-standalone-exe.md
Last active November 1, 2024 20:24
[C#] Embed DLL assemblies onto executable

Summary

This guide tells how to embed CLR assemblies (.dll) onto a single executable. This works for WPF, WinForms and console .NET applications.

Source - original article

Project settings

First, we need to add special section to .csproj file to make MSBuild embed referenced assemblies

@AzureDVBB
AzureDVBB / node_trees.py
Created July 17, 2018 21:22
A simple node tree addon template for blender.
# the little less documented way of adding a custom node tree
# and populate it with nodes of varying types of I/O
# sockets that work together, discombobulated
# first we import the blender API
import bpy
# then we create the UI space, the node tree as it is called
# but in actualy fact this is similar to a UI panel/menu
@angadn
angadn / require.js
Created March 4, 2016 18:42
require() for browsers
/******************************************************
* Angad Nadkarni's note: *
* Resist the temptation to 'optimize' my hack *
******************************************************/
//
// This file is part of Smoothie.
//
// Copyright (C) 2013-2015 Flowy Apps GmbH <[email protected]>
@eligrey
eligrey / object-watch.js
Created April 30, 2010 01:38
object.watch polyfill in ES5
/*
* object.watch polyfill
*
* 2012-04-03
*
* By Eli Grey, http://eligrey.com
* Public Domain.
* NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK.
*/