Skip to content

Instantly share code, notes, and snippets.

@rsaenzi
rsaenzi / DragAndDrop.cs
Last active May 5, 2024 17:40
Script for Unity to add Drag and Drop support for 2D/3D objects
//
// DragAndDrop.cs
//
// Created by Rigoberto Sáenz Imbacuán (https://linkedin.com/in/rsaenzi/)
// Copyright © 2021. All rights reserved.
//
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
@dvddarias
dvddarias / SingletonScriptableObject.cs
Last active September 15, 2024 13:13
Better Unity Singleton Class
/************************************************************
* Better Singleton by David Darias
* Use as you like - credit where due would be appreciated :D
* Licence: WTFPL V2, Dec 2014
* Tested on Unity v5.6.0 (should work on earlier versions)
* 03/02/2017 - v1.1
* **********************************************************/
using System;
using UnityEngine;
@Iman
Iman / clean.sh
Last active October 30, 2024 10:05
Free up disk space on Ubuntu - clean log, cache, archive packages/apt archives, orphaned packages, old kernel and remove the trash
#!/bin/sh
#Check the Drive Space Used by Cached Files
du -sh /var/cache/apt/archives
#Clean all the log file
#for logs in `find /var/log -type f`; do > $logs; done
logs=`find /var/log -type f`
for i in $logs