Skip to content

Instantly share code, notes, and snippets.

@JMV38
JMV38 / neural_v07.py
Created March 26, 2019 07:51
neural_v07.py
import ui, io
import numpy as np
import matplotlib.pyplot as plt
from PIL import Image as PILImage
from PIL import ImageChops as chops
import console, math
import objc_util
###########################################################################
# history
@JMV38
JMV38 / neural_v06.py
Created March 25, 2019 21:54
neural_v06.py
import ui, io
import numpy as np
import matplotlib.pyplot as plt
from PIL import Image as PILImage
from PIL import ImageChops as chops
import console, math
import objc_util
###########################################################################
# history
@JMV38
JMV38 / neural_v06.py
Created March 24, 2019 18:29
neural_v06.py
import ui, io
import numpy as np
import matplotlib.pyplot as plt
from PIL import Image as PILImage
from PIL import ImageChops as chops
import console, math
import threading
###########################################################################
# history
@JMV38
JMV38 / neural_v03.py
Created March 17, 2019 11:03
neural_v03.py
import ui, io
import numpy as np
import matplotlib.pyplot as plt
from PIL import Image as PILImage
from PIL import ImageChops as chops
import console
###########################################################################
# history
# v01: 1/format output. 2/Landscape view.
@JMV38
JMV38 / neural_v02.py
Created March 16, 2019 19:46
neural_v02.py
import ui, io
import numpy as np
import matplotlib.pyplot as plt
from PIL import Image as PILImage
from PIL import ImageChops as chops
import console
###########################################################################
# history
# v01: 1/format output. 2/Landscape view.
@JMV38
JMV38 / 1aTabOrder
Created January 24, 2014 21:12
Codea Project Gist Created with AutoGist
AutoGist Tab Order Version: 2.2.8
------------------------------
This file should not be included in the Codea project.
#Buttons
#Main
@JMV38
JMV38 / 1aTabOrder
Created September 15, 2013 17:46
Codea Project Gist Created with AutoGist
AutoGist Tab Order Version: 2.2.8
------------------------------
This file should not be included in the Codea project.
#Img2str
#Icons
#Settings
#DropList
#Pinch
#Switch
#Slider
@JMV38
JMV38 / 1aTabOrder
Created September 2, 2013 16:24
Codea Project Gist Created with AutoGist
AutoGist Tab Order Version: 2.2.8
------------------------------
This file should not be included in the Codea project.
#Main
@JMV38
JMV38 / Main.lua
Created August 19, 2013 20:56
XFC AutoInstall
--# Main
--XFC Single Install
--Installer created by @Briarfox
--- This will pull the XFC project into Codea for you
-- Instructions:
-- * Create a new project in Codea named XFC If you chose another name please change the variable Below
--This is case sensitive
ProjectName = "XFC"
-- * Paste this into the Main (not from the raw view, as iSafari will escape special characters)
@JMV38
JMV38 / gist:6150470
Last active December 20, 2015 14:59
Wait function
    
local wait = function (delay,DoSomething)
    tween.delay(delay,DoSomething)
end
XFC.Functions.wait = wait