I hereby claim:
- I am altece on github.
- I am altece (https://keybase.io/altece) on keybase.
- I have a public key whose fingerprint is 8BB9 7FF6 F003 F8D1 C91D 05CE 42A6 ECA9 5595 440E
To claim this, I am signing this object:
struct CycleIterator<Element>: IteratorProtocol, ExpressibleByArrayLiteral { | |
private var elements: [Element] | |
private var offset: Int = 0 | |
init(_ elements: [Element]) { | |
self.elements = elements | |
} | |
init(arrayLiteral elements: Element...) { | |
self.init(elements) |
import Foundation | |
struct Zip3Sequence<Sequence1, Sequence2, Sequence3>: Sequence | |
where Sequence1: Sequence, Sequence2: Sequence, Sequence3: Sequence { | |
typealias Element = Iterator.Element | |
typealias Iterator = Zip3Iterator<Sequence1.Iterator, Sequence2.Iterator, Sequence3.Iterator> | |
private var s1: Sequence1 | |
private var s2: Sequence2 | |
private var s3: Sequence3 |
#include <stdio.h> | |
#include <assert.h> | |
/// Count the amount of bytes contained within a null-terminated string. | |
/// - returns: The amount of bits before the null-terminator in the given string. | |
int string_length(char const *const string); | |
/// Reverse an array of bytes in-place. | |
/// - parameter bytes: A buffer of bytes to be reversed. | |
/// - parameter length: The amount of bytes contained within the buffer that should be reversed. |
/// - note: The equivalence operators don't work because `NSObject` implements `Equatable`. | |
import UIKit | |
// MARK: Constraint From Anchor | |
public func == <AnchorType>(constrained: NSLayoutAnchor<AnchorType>, reference: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint { | |
return constrained.constraint(equalTo: reference) | |
} |
module Graphing.Graph | |
[<StructuralEquality; StructuralComparison>] | |
type Point = | |
| Point of float * float | |
static member X (Point (x, _)) = x | |
static member Y (Point (_, y)) = y | |
/// <summary> |
#!/usr/bin/osascript | |
on printLCCN(LCCN) | |
tell application "DYMO Label" | |
set paperOrientation to portrait | |
tell print object 1 | |
set object text to LCCN | |
end tell | |
printLabel2 of it | |
end tell |
// migrate the script executer's primary domain | |
// domainName - the desired domain to migrate to | |
function migrateDomain(organizationName, domainName) { | |
var customerId = 'my_customer'; | |
var customer = AdminDirectory.Customers.get(customerId); | |
customer.customerDomain = domainName; | |
customer.postalAddress.organizationName = organizationName; | |
customer.customerCreationTime = undefined; // | |
AdminDirectory.Customers.patch(customer, customerId); | |
#include <stdbool.h> | |
#define wenn ( | |
#define dann ) ? ( | |
#define sonst ) : ( | |
#define ende ) | |
int main() { | |
int x = wenn true dann 10 sonst 11 ende; | |
} |
static CGPoint convertRadianToCGPoint( double angle, double length, CGPoint center ) { | |
double xCoord = length * cos( angle ); | |
if( angle == M_PI ) { | |
xCoord = -length; | |
} | |
double yCoord = length * sin( angle ); | |
if( angle == (3 * M_PI)/2 ){ | |
yCoord = -length; | |
} |
I hereby claim:
To claim this, I am signing this object: