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 UnityEngine; | |
namespace Assets.Phunk.Core | |
{ | |
public static class Log | |
{ | |
#region Error | |
public static void ErrorFormat(UnityEngine.Object context, string template, params object[] args) | |
{ | |
var message = string.Format(template, args); |
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
""" This script bulk downloads emoji from a slack channel """ | |
import os, time, urllib | |
from pyvirtualdisplay import Display | |
from selenium import webdriver | |
from selenium.webdriver.common.keys import Keys | |
display = Display(visible=0, size=(800, 600)) | |
display.start() | |
driver = webdriver.Chrome("DRIVER LOCATION") |
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
""" This script bulk uploads emoji to a slack channel """ | |
import os, time | |
from pyvirtualdisplay import Display | |
from selenium import webdriver | |
from selenium.webdriver.common.keys import Keys | |
rootdir = 'EMOJI SOURCE' | |
display = Display(visible=0, size=(800, 600)) | |
display.start() |