Skip to content
View stojg's full-sized avatar

Highlights

  • Pro

Organizations

@amoebas
Block or Report

Block or report stojg

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

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

Report abuse

Pinned

  1. purr purr Public archive

    Slack notifier for open pull requests

    Go 7 4

  2. canola canola Public

    A webgl project demoing a simple Physically Based Rendering (PBR) with lights, shadows, tonemapping

    TypeScript

  3. recommend recommend Public archive

    PHP library that can be used for recommendations to users

    PHP 35 8

  4. crop crop Public archive

    PHP Image crops

    PHP 259 40

  5. Arduino sleep example Arduino sleep example
    1
    // This is an example how to put an arduino board into deep sleep to save on battery power and 
    2
    // periodically wake up to run some logic. Ideal for sensor stations like plant moisture sensors.
    3
    #include "Arduino.h"
    4
    #include <avr/sleep.h>
    5
    #include <avr/power.h>
  6. Parsing a huge XML with closure in PHP Parsing a huge XML with closure in PHP
    1
    <?php
    2
    // An example on how to parse massive XML files with PHP by chunking it up to avoid running out of memory
    3
    
                  
    4
    // Open the XML
    5
    $handle = fopen('file.xml', 'r');