I hereby claim:
- I am diemer on github.
- I am diemer (https://keybase.io/diemer) on keybase.
- I have a public key ASC8wLcAmlH3SEVpwwvBun7PmATuRoo5I9LS7NZYtox2vgo
To claim this, I am signing this object:
import SwiftUI | |
struct ContentView: View { | |
@State var infoIndex: Int = 0 | |
typealias TourPOI = (point: UnitPoint, radii: (start: CGFloat, end: CGFloat)) | |
var infos: [TourPOI] = [ | |
// UnitPoint is a value between 0 and 1, | |
// x represents the percentage of width, | |
// y represents the percentage of height | |
(point: .init(x: 0.75, y: 0.05), radii: (start: 0, end: 90)), |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
LC_ALL=en_US.UTF-8 | |
# configures/installs common CHIP features (including enabling disabled ones) | |
# run 'sudo chmod +x setup.sh && ./setup.sh' to run the installation | |
clear | |
res= | |
dtc= | |
rboot= | |
uname -a | |
cat << _EOF_ |
# An implementation of the Sieve of Eratosthenes in Ruby | |
# I recently read about it in The Imposter's Handbook(https://bigmachine.io/products/the-imposters-handbook) | |
# and thought it would be a fun experiment to try to code, just off the | |
# description and the example animation on | |
# Wikipedia(https://en.wikipedia.org/wiki/Sieve_of_Eratosthenes) | |
class PrimeSieve | |
def initialize(max) | |
@numbers = (2...max).to_a | |
@current_prime = 2 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); | |
class MY_Exceptions extends CI_Exceptions { | |
// this file goes in application/core | |
public function __construct() | |
{ | |
$this->ob_level = ob_get_level(); | |
// Note: Do not log messages from this constructor. | |
} |
{exp:freeform:form form_id="2" return="contact_us/thank_you"} | |
{freeform:field:cell_phone} | |
{freeform:captcha} | |
{freeform:submit} | |
{/exp:freeform:form} |