| File | Name | Developer | Date |
|---|---|---|---|
| 005.zip | 005 | Sega | 1981 |
| 100lions.zip |
This file contains hidden or 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
| struct ActivityRingView: View { | |
| @Binding var progress: CGFloat | |
| var mainColor: Color = .red | |
| var lineWidth: CGFloat = 20 | |
| var endColor: Color { | |
| mainColor.darker(by: 15.0) | |
| } | |
| File | Name | Developer | Date |
|---|---|---|---|
| mhgaiden.zip | Mahjong Hourouki Gaiden (Japan) | Home Data | 1987 |
| mhhonban.zip | Mahjong Housoukyoku Honbanchuu (Japan) | Nichibutsu | 1994 |
This file contains hidden or 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 SwiftUI | |
| import PlaygroundSupport | |
| extension Double { | |
| func toRadians() -> Double { | |
| return self * Double.pi / 180 | |
| } | |
| func toCGFloat() -> CGFloat { | |
| return CGFloat(self) |
This file contains hidden or 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
| install_git_lfs() | |
| { | |
| set -e | |
| # Get out if git-lfs is already installed | |
| if $(git-lfs &> /dev/null); then | |
| echo "git-lfs is already installed" | |
| return | |
| fi | |
| GIT_LFS_BUILD=$HOME/.bin |
This file contains hidden or 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
| # generated by Slic3r 1.37.2-prusa3d on Thu Dec 7 09:48:20 2017 | |
| # Figured out by trial and error engineer metacollin | |
| # Released as public domain. | |
| # USE GLUESTICK FOR PRINT BED ADHESION | |
| avoid_crossing_perimeters = 0 | |
| bed_shape = 0x0,250x0,250x210,0x210 | |
| bed_temperature = 110 | |
| before_layer_gcode = ;BEFORE_LAYER_CHANGE\n;[layer_z]\n\n | |
| bottom_solid_layers = 8 | |
| bridge_acceleration = 1000 |
This file contains hidden or 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 urllib2 | |
| import os | |
| import urllib, urlparse | |
| import xml.etree.cElementTree as et | |
| e = et.ElementTree(file=urllib2.urlopen('https://standardebooks.org/opds/all')).getroot() | |
| print(e) | |
| print("parsing") | |
| for atype in e.iter('{http://www.w3.org/2005/Atom}link'): |
This file contains hidden or 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 struct NSRectCorner: OptionSet { | |
| public let rawValue: UInt | |
| public static let none = NSRectCorner(rawValue: 0) | |
| public static let topLeft = NSRectCorner(rawValue: 1 << 0) | |
| public static let topRight = NSRectCorner(rawValue: 1 << 1) | |
| public static let bottomLeft = NSRectCorner(rawValue: 1 << 2) | |
| public static let bottomRight = NSRectCorner(rawValue: 1 << 3) | |
| public static var all: NSRectCorner { | |
| return [.topLeft, .topRight, .bottomLeft, .bottomRight] |
This file contains hidden or 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
| # Cleanup old alternatives | |
| update-alternatives --remove-all cc | |
| update-alternatives --remove-all c++ | |
| update-alternatives --remove-all gcc | |
| update-alternatives --remove-all g++ | |
| update-alternatives --remove-all clang | |
| update-alternatives --remove-all clang++ | |
| update-alternatives --remove-all icc | |
| update-alternatives --remove-all icc++ |
This file contains hidden or 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
| cmake_minimum_required(VERSION 2.8.11) | |
| project(qtosg) | |
| set(CMAKE_INCLUDE_CURRENT_DIR ON) | |
| set(CMAKE_AUTOMOC ON) | |
| find_package(Qt5 REQUIRED COMPONENTS Core Gui OpenGL) | |
| find_package(OpenSceneGraph REQUIRED COMPONENTS osgDB osgGA osgUtil osgViewer) | |
| include_directories(${OPENSCENEGRAPH_INCLUDE_DIRS}) |
NewerOlder