Skip to content

Instantly share code, notes, and snippets.

View sonnguyen9800's full-sized avatar
💥
Doing Projects

Son Nguyen Hoang sonnguyen9800

💥
Doing Projects
View GitHub Profile
@sonnguyen9800
sonnguyen9800 / CustomTreeTraversal
Last active May 10, 2023 18:01
Custom Tree Traversal, C#
using System;
using System.Collections.Generic;
using System.Linq;
namespace ConsoleApp1
{
public class FrameContainer
{
public Frame FirstFrame;
@sonnguyen9800
sonnguyen9800 / UnstringlifyJsonFile.py
Last active May 10, 2023 18:02
Unstringlify Json file (Python)
import json
file_path = "file_path.txt"
file_path_output = "file_path_output.json"
f = open(file_path, "r", encoding='utf-16')
data_raw = f.read()
data_raw = data_raw.replace('\\', '')
data_raw = data_raw.replace('"{', '{')
data_raw = data_raw.replace('}"', '}')