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
Play this game by pasting the script in http://www.puzzlescript.net/editor.html |
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
Play this game by pasting the script in http://www.puzzlescript.net/editor.html |
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
Play this game by pasting the script in http://www.puzzlescript.net/editor.html |
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
module: Siesta | |
author: Bust Out Solutions | |
author_url: http://bustoutsolutions.com | |
github_url: https://github.com/bustoutsolutions/siesta | |
exclude: | |
- "**/*-ObjC.swift" | |
- "**/*Deprecations.swift" | |
- "Source/Siesta/Support/Siesta-ObjC.swift" # until Cocoadocs gets https://github.com/realm/jazzy/pull/640 | |
- "Source/SiestaUI/SiestaUI-ObjC.swift" # ditto | |
- "Source/Siesta/Support/Ω_Deprecations.swift" # ditto |
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
// | |
// ClassWithEnum.swift | |
// TestFramework | |
// | |
// Created by Leonardo Galli on 15.06.18. | |
// Copyright © 2018 Leonardo Galli. All rights reserved. | |
// | |
import Foundation |
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
#!/usr/bin/env python | |
""" | |
The script builds OpenCV.framework for iOS. | |
The built framework is universal, it can be used to build app and run it on either iOS simulator or real device. | |
Usage: | |
./build_framework.py <outputdir> | |
By cmake conventions (and especially if you work with OpenCV repository), | |
the output dir should not be a subdirectory of OpenCV source tree. |
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
import requests | |
import time | |
import json | |
import sys | |
import threading | |
import queue | |
from datetime import timedelta | |
API_KEY = "YOUR_TMDB_APIKEY" | |
append_to_response = "images,alternative_titles,videos,credits,keywords,release_dates,similar_movies,recommendations" //Change this if you do not want all the data. |
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
public interface IFetchNetImport | |
{ | |
List<Movie> FetchAndFilter(int listId, bool onlyEnableAuto); //Returns movies from listId that have not been added yet. | |
List<Movie> Fetch(int listId, bool onlyEnableAuto); //Returns all movies from listId. | |
//If onlyEnableAuto is set to true, only lists with enableAuto will be queried. | |
//If listId = 0, query all lists available! | |
} |