- https://github.com/AlansCodeLog/blender-debugger-for-vscode
- https://github.com/nutti/fake-bpy-module
{
"name": "Python: Attach",
"type": "python",
"request": "attach",
"port": 3000,
"host": "localhost",
{
"name": "Python: Attach",
"type": "python",
"request": "attach",
"port": 3000,
"host": "localhost",
I hereby claim:
To claim this, I am signing this object:
const WebSocket = require('ws'); | |
let password = ''; | |
let port = 0; | |
process.env.NODE_TLS_REJECT_UNAUTHORIZED = "0"; | |
let ws = new WebSocket(`wss://riot:${password}@127.0.0.1:${port}/`, "wamp"); | |
ws.on('error', (err) => { |
using System.Collections.Generic; | |
using System.Reflection; | |
namespace Ayra.Core.Enums | |
{ | |
// Based on https://lostechies.com/jimmybogard/2008/08/12/enumeration-classes/ | |
public abstract class Enumeration : IComparable | |
{ | |
public readonly int Id; | |
public readonly string Name; |
import glob | |
f = open(".stignore", "w") | |
for filepath in glob.iglob("**/.stignore", recursive=True): | |
# Ignore top-level .stignore, because that is the one we are generating | |
if filepath != ".stignore": | |
unixpath = filepath.replace('\\', '/') # Use Unix like filepaths | |
f.write(f"#include {unixpath}\n") | |
print(f"Added '{unixpath}' to the ignore file") |
UseTab: Never | |
IndentWidth: 4 | |
ColumnLimit: 100 | |
PointerAlignment: Left | |
AllowShortFunctionsOnASingleLine: Empty | |
AllowShortIfStatementsOnASingleLine: Always | |
AlwaysBreakTemplateDeclarations: Yes | |
NamespaceIndentation: All | |
IndentCaseLabels: true | |
AlignTrailingComments: false |
#!/usr/bin/env python3 | |
""" | |
Generate database.json | |
""" | |
__author__ = "Fusion86" | |
__version__ = "0.1.1" | |
__license__ = "MIT" | |
from os import listdir |