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
import sd | |
def print_selected_nodes_properties(): | |
"""Show all inputs and outputs of a node.""" | |
context = sd.getContext() | |
app = context.getSDApplication() | |
packageMgr = app.getPackageMgr() | |
uiMgr = app.getQtForPythonUIMgr() | |
node = uiMgr.getCurrentGraphSelection()[0] |
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; | |
using System.Text; | |
using System.Runtime.InteropServices; | |
using System.Text.RegularExpressions; | |
using UnityEngine; | |
using System.Diagnostics; | |
/// <summary> | |
/// Source : https://improve.dk/minimizing-and-maximizing-windows/ | |
/// </summary> |
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
import requests | |
import urllib.request | |
import time | |
from bs4 import BeautifulSoup | |
import difflib | |
import os | |
import smtplib | |
import email.message | |
import io |
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
I am attesting that this GitHub handle oktomus is linked to the Tezos account tz1YPLHAyrv1NUy8e1tB1bz9Ewwz3waTDpnU for tzprofiles | |
sig:edsigtqwkME8FMhC2W8YHUGiFTCpTj1VFDcGh1V8Ld2tRrCFz1uLcqDu6ESczbJn1UYETwZFh5dC3KMTQNrkq2bK1UZp4MHYESY |
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; | |
using System.IO; | |
using UnityEditor; | |
using UnityEditor.Callbacks; | |
using UnityEngine; | |
public static class ScriptCompilationTime | |
{ | |
private const string FileName = ".AssemblyReloadStarted.txt"; | |
private static readonly string FilePath = Path.Combine(Application.dataPath, FileName); |
OlderNewer