Skip to content

Instantly share code, notes, and snippets.

View heLomaN's full-sized avatar

heLomaN

  • A smart company
View GitHub Profile
@heLomaN
heLomaN / cartoon2wired.js
Created May 21, 2020 20:02
A simple photoshop script could convert cartoon image to wired draft.
/// cartoon image to wired draft
/// ref: https://www.adobe.com/devnet/photoshop/scripting.html
function wired_filter() {
var doc = app.activeDocument;
while(doc.artLayers.length > 1) {
doc.activeLayer.remove()
}
doc.activeLayer.copy()
doc.paste();
@heLomaN
heLomaN / PTBrowserFusion.py
Last active April 18, 2021 11:05
A simple tool to view fusion folder content on windows with pyqt
from PyQt5.QtWidgets import QApplication, QMainWindow, QWidget, QListWidget
from PyQt5.QtWidgets import QHBoxLayout, QVBoxLayout, QTextEdit, QPushButton, QLineEdit, QCheckBox, QComboBox, QLabel
from PyQt5 import QtGui, QtCore
from collections import OrderedDict
# list all folder with depth 2 then save
# gen app command : pyinstaller --noconsole -F PTBrowserSimple.py
import os, sys