Skip to content
View 0xdw's full-sized avatar
:octocat:
Learning
:octocat:
Learning

Highlights

  • Pro

Block or report 0xdw

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. sass2css sass2css Public

    Online/offline tool for Convert sass, scss, less Code to CSS Code.

    10

  2. unity-grab-pass-blue-shader unity-grab-pass-blue-shader Public

    Unity - Grab Pass Blue Shader

    ShaderLab

  3. dbn-compiler dbn-compiler Public

    The DBN compiler translates DBN source into SVG source file. The resulting SVG source files can then be loaded and executed on any web browser. (Pet project)

    C++ 1

  4. C++ RGB to HEX Converter C++ RGB to HEX Converter
    1
    // RGB_TO_HEX.cpp : This file contains the 'main' function. Program execution begins and ends there.
    2
    //
    3
    
                  
    4
    #include <iostream>
    5
    #include <string>
  5. Unity - Reading and writing binary f... Unity - Reading and writing binary file (Save file)
    1
    using System;
    2
    using System.IO;
    3
    using System.Runtime.Serialization;
    4
    using System.Runtime.Serialization.Formatters.Binary;
    5
    using UnityEngine;
  6. Unity - Pick color in the screen poi... Unity - Pick color in the screen point (x, y)
    1
    using System.Collections;
    2
    using UnityEngine;
    3
    using UnityEngine.EventSystems;
    4
    
                  
    5
    public class CheckPixelColor : MonoBehaviour {