This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>Loading page name - Loading...</title> | |
<style> | |
.lds-dual-ring { | |
display: inline-block; | |
width: 80px; | |
height: 80px; | |
} | |
.lds-dual-ring:after { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# USING | |
# chmod +x cores.sh | |
# ./cores.sh x | |
# where x is a number of cores you want to have active, all others will be disabled | |
# CONFIG | |
coresCount=16 # write your number of cores (threads) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using UnityEditor; | |
using UnityEngine; | |
/// <summary> | |
/// Tool for displaying current number of lines in every script hold in "Assets/Scripts/" directory. | |
/// </summary> | |
public class LineCounter : EditorWindow |