Skip to content

Instantly share code, notes, and snippets.

View funky-monkey's full-sized avatar

Sidney de Koning funky-monkey

View GitHub Profile
@funky-monkey
funky-monkey / feed.xml
Created January 9, 2021 12:04 — forked from jackrhysider/feed.xml
Podcast RSS Feed XML file for Jekyll
---
layout: null
---
<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:googleplay="http://www.google.com/schemas/play-podcasts/1.0" xmlns:media="http://www.rssboard.org/media-rss" version="2.0">
<channel>
<title>Darknet Diaries</title>
<link>https://darknetdiaries.com/</link>
<language>en-us</language>
<atom:link href="{{ site.url }}/feed.xml" rel="self" type="application/rss+xml" />
#! /bin/bash
# Information came from https://apple.stackexchange.com/questions/358651/unable-to-completely-uninstall-zoom-meeting-app
# I just added more stuff to delete so there is no manual stuff to execute.
echo Zoom cleanup 🧹
echo Cleaning Application Cached Files...
sudo rm -rf ~/Library/Application\ Support/zoom.us
sudo rm -fr ~/Library/Application\ Support/ZoomPresence
echo Cleaning Application...
@funky-monkey
funky-monkey / NSLayoutAnchor
Created September 7, 2018 06:46
NSLayoutAnchor
private func applyLayout() {
self.scrollView.widthAnchor.constraint(equalTo: view.widthAnchor).isActive = true
self.scrollView.heightAnchor.constraint(equalTo: view.heightAnchor).isActive = true
}
All tests
Test Suite MyAwesomeProjectPackageTests.xctest started
MyAwesomeProjectTests
✓ testANameGiven (0.132 seconds)
✓ testAnotherNameGiven (0.000 seconds)
✓ testNoNameGiven (0.000 seconds)
Executed 3 tests, with 0 failures (0 unexpected) in 0.132 (0.132) seconds
alias 'swift test'='swift test -Xcc -F -Xcc /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks \ -Xlinker -F -Xlinker /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks'
swift build \
-Xcc -F -Xcc /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks \
-Xlinker -F -Xlinker /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks
@funky-monkey
funky-monkey / xcrun xctest arguments
Created August 17, 2018 14:29
xcrun xctest output
Usage: xctest [-XCTest All | <TestCaseClassName/testMethodName>] <path of unit to be tested>
Failure: No argument specifying test bundle path.
Displaying process arguments and environment for debugging purposes:
Arguments: (
"/Applications/Xcode.app/Contents/Developer/usr/bin/xctest"
)
Environment: {
"Apple_PubSub_Socket_Render" = "/private/tmp/com.apple.launchd.nEcxXCLuxx/Render";
@funky-monkey
funky-monkey / CLI Output
Last active August 17, 2018 14:19
CLI output for running `swift test`
Compile Swift Module 'MyAwsomeProject' (1 sources)
Compile Swift Module 'MyAwsomeProjectTests' (1 sources)
Linking ./.build/x86_64-apple-macosx10.10/debug/TestingPackageTests.xctest/Contents/MacOS/MyAwsomeProjectPackageTests
Test Suite 'All tests' started at 2018-08-15 21:52:56.705
Test Suite 'MyAwsomeProjectPackageTests.xctest' started at 2018-08-15 21:52:56.706
Test Suite 'MyAwsomeProjectTests' started at 2018-08-15 21:52:56.706
Test Case '-[MyAwsomeProjectTests.MyAwsomeProjectTests testANameGiven]' started.
Test Case '-[MyAwsomeProjectTests.MyAwsomeProjectTests testANameGiven]' passed (0.204 seconds).
Test Case '-[MyAwsomeProjectTests.MyAwsomeProjectTests testAnotherNameGiven]' started.
Test Case '-[MyAwsomeProjectTests.MyAwsomeProjectTests testAnotherNameGiven]' passed (0.000 seconds).
// swift-tools-version:4.0
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "MyAwesomeProject",
dependencies: [
// Dependencies declare other packages that this package depends on.
// .package(url: /* package url */, from: "1.0.0"),
@funky-monkey
funky-monkey / clean-up-boot-partition-ubuntu.md
Created February 8, 2018 22:17 — forked from ipbastola/clean-up-boot-partition-ubuntu.md
Safest way to clean up boot partition - Ubuntu 14.04LTS-x64

Safest way to clean up boot partition - Ubuntu 14.04LTS-x64

Reference

Case I: if /boot is not 100% full and apt is working

1. Check the current kernel version

$ uname -r