[Raspberry Pi NES console is better than Nintendo’s Classic Mini]
Rocksmith
Rocksmith does work with acoustic guitars. Weeeeeee…
Fortnite
Check the [dashboard] for invites.
There’s a limited number of Alpha codes going out through [Facebook] page, [Twitter], [Instagram], [Twitch], [YouTube] and Snapchat.
If you have a code, please [click here] to redeem it.
Unity Merry Fragmas 3.0: Multiplayer FPS Foundation
Xamarin Dev Days Live : Hands-On Lab Walkthrough
DIY Live Stream to YouTube With a Raspberry Pi
Apple Publishes Its First AI Research Paper
Modo Substance Replicator
Modo has a free Substance Plugin that can be used with replicators.
Modo Substances
Modo has a free [Substance Plugin] that’s available in the [downloads section of the Foundry].
Unity Camera Controller
Unity Dynamic Mesh Creation
I started a project with [dynamic mesh generation].
[Snowy Ground] from the Allegorithmic Substance Share looks great.
Unity WebGL Microphone Plugin
I moved the Microphone WebGL module out of my Word Detection package and into [its own public repository]. The module makes the Microphone API available on WebGL. It’s going to be a couple years before Unity adds the built-in functionality for Microphone on WebGL.
There’s a user `Will` who needs it working and I made the module public to move development along…
Unity Tree View Control
Unity added a [TreeView Control] to the Unity editor.
Unity NAT Traversal
LIFX Cycle Lights
I made a [Holiday Lifx Console App] that cycles between festive colors. Initially, I had a [question] about the API, and now it works like a charm.
Unity Realistic Explosions Pack
Unity DirectX 11 Low Poly Shader
Prime31UnityActivity.jar Source
I need the [Prime31] source from [Mike] to the `Prime31UnityAcivity.jar` which is used by the [Android Social Networking], the [Android In App Billing Plugin], and the [Android Etcetera Plugin].
In the end, I just had to delay the `UnityPlayer` pause so that C# had time to pause the music before pausing the rest of the UnityPlayer.
Python Camera Adjust Iso For Sunset And Sunrise
Install the `astral` Python package.
sudo pip install astral
Be sure to [set the timezone].
Python script to adjust the iso based on sunrise and sunset.
#get access to the camera
from picamera import PiCamera
#import so we can invoke another script
import subprocess
#get access to the clock
import datetime
#sleep so we can wait on the camera
from time import sleep
# get access to sunrise and sunset
from astral import Location
from fractions import Fraction
# create a camera object
camera = PiCamera()
#set the image resolution
camera.resolution = (1024, 768)
#rotate the camera if upside-down
#camera.rotation = 180
#flip the camera on the horizontal
#camera.hflip = True
i = 0;
#record defaults
framerate = camera.framerate
shutter_speed = camera.shutter_speed
exposure_mode = camera.exposure_mode
iso = camera.iso
while True:
# Get sunrise and sunset for Monroe, WA
l = Location()
l.latitude = 47.887059
l.longitude = -121.8792998
l.timezone = 'US/Pacific'
sunrise = l.sun()['dawn']
sunriseHour = int(sunrise.strftime('%H'))
sunriseMinute = int(sunrise.strftime('%M'))
sunset = l.sun()['sunset']
sunsetHour = int(sunset.strftime('%H'))
sunsetMinute = int(sunset.strftime('%M'))
hours = int(datetime.datetime.now().strftime('%H'))
minutes = int(datetime.datetime.now().strftime('%M'))
seconds = int(datetime.datetime.now().strftime('%S'))
#print 'hours='+hours+' minutes='+minutes+' seconds='+seconds
if (hours > sunriseHour and hours < sunsetHour):
#print 'work in the light'
camera.framerate = framerate
camera.shutter_speed = shutter_speed
camera.exposure_mode = exposure_mode
camera.iso = iso
else:
#print 'work in the dark'
camera.framerate = Fraction(1,6)
camera.shutter_speed = 600000
camera.exposure_mode = 'off'
camera.iso = 800
filename = 'image'+str(i)+'.jpg'
#save image locally
camera.capture(filename)
#invoke the script to upload the image
subprocess.call('python save_image.py '+filename, shell=True)
sleep(3)
i = (i + 1) % 12
NDK Target 23
Here is a strange [NDK issue]. I had to move the native code to its own module with a min SDK, target SDK, and compile tools set to API 21 in order to get the native library to load properly. This started happening after upgrading to `android-ndk-r12b`.
Making Swiss Cheese in MODO 10.2
Ripple Color
Google Play publishing requires a new target of 24 and you have to set the `Ripple Color`. I created a [sample project].
Windows 10 Download Tool
The [Windows 10 Download Tool] can download Windows 10 to a USB stick to install Windows 10 on another computer.


