Skip to content

Instantly share code, notes, and snippets.

View fewlinesofcode's full-sized avatar

Few Lines Of Code fewlinesofcode

View GitHub Profile
@fewlinesofcode
fewlinesofcode / MTAudioProcessingTapSample.swift
Created January 30, 2025 11:49 — forked from Ridwy/MTAudioProcessingTapSample.swift
How to use MTAudioProcessingTap in Swift 5
//
// Created by Chiharu Nameki @Ridwy on 2021/07/30.
//
import UIKit
import AVFoundation
/*
Using MTAudioProcessingTap, you can touch raw audio samples playing with AVPlayer.
This sample code shows how to use MTAudioProcessingTap in Swift 5.
@fewlinesofcode
fewlinesofcode / UIView+TouchableViews.swift
Created November 20, 2024 14:38 — forked from hlung/UIView+TouchableViews.swift
Make subviews touchable even if it is outside its superview bounds.
// Make subviews touchable even if it is outside its superview bounds.
// ** Add more views here **
lazy var touchableViews: [UIView] = {
return [self.voteUpButton, self.voteDownButton, self.authorDetailButton]
}()
// Boilerplate
override func hitTest(point: CGPoint, withEvent event: UIEvent?) -> UIView? {
for view in touchableViews {
import XCTest
extension XCTestCase {
func trackForMemoryLeaks(_ instance: AnyObject, file: StaticString = #filePath, line: UInt = #line) {
addTeardownBlock { [weak instance] in
XCTAssertNil(instance, "Instance should have been deallocated. Potential memory leak.", file: file, line: line)
}
}
}
@fewlinesofcode
fewlinesofcode / GLSL-Noise.md
Created October 11, 2020 17:12 — forked from patriciogonzalezvivo/GLSL-Noise.md
GLSL Noise Algorithms

Generic 1,2,3 Noise

float rand(float n){return fract(sin(n) * 43758.5453123);}

float noise(float p){
	float fl = floor(p);
  float fc = fract(p);
	return mix(rand(fl), rand(fl + 1.0), fc);
}
@fewlinesofcode
fewlinesofcode / PageIndicator.swift
Last active July 17, 2024 09:57
SwiftUI Page Indicator implementation
//
// PageIndicator.swift
//
// Created by Oleksandr Glagoliev on 6/24/20.
// Copyright © 2020 Oleksandr Glagoliev. All rights reserved.
//
import SwiftUI
// MARK: - Dot Indicator -
// Twitter: @fewlinesofcode
var angle = 1.0;
var angularSpeed = 0.01;
var internalRadius = 130;
function setup() {
createCanvas(600, 600);
noStroke();
background(255);
const w = 500;
const h = 500;
const numWalkers = 1000;
let walkers = [];
function setup() {
createCanvas(w, h);
background(255);
@fewlinesofcode
fewlinesofcode / pillow_p5.js
Created June 19, 2020 14:51
p5 Pillow drawing
const s = (p) => {
const w = 400;
const h = 400;
// Center coordinates
const x0 = 200;
const y0 = 200;
// Radius
const r = 150;
@fewlinesofcode
fewlinesofcode / StructCompareUsingMirror.swift
Created April 2, 2020 17:56
Example of structure comparison in Swift
import Foundation
protocol KeyPathListable {
var allKeyPaths: [String: PartialKeyPath<Self>] { get }
var keyPathsList: [PartialKeyPath<Self>] { get }
}
extension KeyPathListable {
private subscript(checkedMirrorDescendant key: String) -> Any {
Mirror(reflecting: self).descendant(key)!
import UIKit
public extension CGPoint {
func distance(to point: CGPoint) -> CGFloat {
let xDist = x - point.x
let yDist = y - point.y
return (xDist * xDist + yDist * yDist).squareRoot()
}
}