$ uname -r
This file contains 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
--- | |
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" /> |
This file contains 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
#! /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... |
This file contains 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
private func applyLayout() { | |
self.scrollView.widthAnchor.constraint(equalTo: view.widthAnchor).isActive = true | |
self.scrollView.heightAnchor.constraint(equalTo: view.heightAnchor).isActive = true | |
} |
This file contains 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
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 |
This file contains 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
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' |
This file contains 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
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 |
This file contains 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
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"; |
This file contains 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
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). |
This file contains 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
// 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"), |