Skip to content
View Teqqles's full-sized avatar

Organizations

@WildSnailProductions
Block or Report

Block or report Teqqles

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. how-many-mobile-meeple how-many-mobile-meeple Public

    Native mobile application to help a board gamer choose a game from their collection or geeklist

    Dart 1

  2. level-placement-tools level-placement-tools Public

    Tools for enhancing productivity in Unity.

    C#

  3. photoshop-tools photoshop-tools Public

    Tools for making life in Photoshop a little easier to swallow.

    JavaScript 1

  4. scala-katas scala-katas Public

    Scala Kata repository, an aid to improving Scala knowledge

    Scala 1 1

  5. Filter CSV by Field Heading using Scala Filter CSV by Field Heading using Scala
    1
    case class CsvWithHeadersExtractor( text: List[ String ] ) {
    2
    
                  
    3
        val head = removeQuotations( text.map( x => x.split( "," ).toList ).head )
    4
        val list = for {
    5
            tail <- text.map( x => x.split( "," ).toList ).tail
  6. Borg Cube Glow Borg Cube Glow
    1
    using UnityEngine;
    2
    using System.Collections;
    3
    
                  
    4
    public class GlowCycle : MonoBehaviour {
    5