This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from io import BytesIO | |
import requests | |
from django.core.files.images import ImageFile | |
from wagtail.wagtailimages.models import Image | |
# event is a model object, substitute your model | |
# filename and title are up to you | |
# in my model, event.event_image is a ForeignKey to wagtailimages.Image | |
response = requests.get(url) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Pinball rollover lanes simulator | |
* | |
* Isaac Csandl http://nerkles.com/ | |
* Copyleft 2014 All Rights Reversed. | |
*/ | |
// pins for rollover targets: | |
const int laneSwitches[] = {5,6,7}; | |
// pins for LEDs: | |
const int laneLEDs[] = {2,3,4}; |