Skip to content

Check for broken links in the CI test job #369

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 12 commits into
base: main
Choose a base branch
from
Draft
Prev Previous commit
Next Next commit
Fix broken links
  • Loading branch information
natikgadzhi committed Sep 15, 2023
commit 0152b15d547472eaff9404b51430ececc23e8eeb
6 changes: 5 additions & 1 deletion CONTRIBUTORS.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
---
layout: page
title: Swift Contributors
permalink: /CONTRIBUTORS

# Weirdly, CONTRIBUTORS.md is getting rendered as CONTROBUTORS.html.
# That permalink setting, though, is getting rendered in it's rel=canonical,
# and we don't want it to be broken.
permalink: /CONTRIBUTORS.html
---

{% include_relative CONTRIBUTORS.txt %}
4 changes: 2 additions & 2 deletions _posts/2021-02-22-black-history-month.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ There are many Black developers in the Swift community creating educational reso

## Pushing Swift in new directions

[Marc Aupont](https://twitter.com/digimarktech) is pushing the boundaries of the Swift ecosystem by using Swift in embedded systems. Learn about how Marc built a robot car using a Raspberry Pi running Swift in his talk from try! Swift NYC 2019: [Swift Without Screens - Powering Connected Devices](https://www.youtube.com/watch?v=VILUaec-sCs). Marc goes into greater detail on writing Swift code for Raspberry Pi in the iPhreaks podcast episode: [iPS 296: Swift on Raspberry PI](https://devchat.tv/iphreaks/ips-296-swift-on-raspberry-pi-with-marc-aupont/).
[Marc Aupont](https://twitter.com/digimarktech) is pushing the boundaries of the Swift ecosystem by using Swift in embedded systems. Learn about how Marc built a robot car using a Raspberry Pi running Swift in his talk from try! Swift NYC 2019: [Swift Without Screens - Powering Connected Devices](https://www.youtube.com/watch?v=VILUaec-sCs). Marc goes into greater detail on writing Swift code for Raspberry Pi in the iPhreaks podcast episode: [iPS 296: Swift on Raspberry PI](https://podcasts.apple.com/pl/podcast/ips-296-swift-on-raspberry-pi-with-marc-aupont/id634022060?i=1000480314894).

[Ish ShaBazz](https://twitter.com/ishabazz) is presenting the Swift community with a different perspective by emphasizing the human side of programming. In his powerful talk from SwiftFest Boston 2019, [Programming with a Purpose](https://www.youtube.com/watch?v=M-7DQJbMapI&feature=youtu.be), Ish tells his inspirational story of how he discovered his purpose, and the valuable lessons he learned along the way, including conquering imposter syndrome with curiosity, and overcoming fear in programming, public speaking, and life.

Expand All @@ -25,4 +25,4 @@ To help young readers discover books written by and featuring people of color, [

## Join in on the celebration!

We are grateful for the perspectives, resources, and innovation that the Black community has brought to Swift. Please join in on the Black History Month celebration over on the [Community Showcase forum](https://forums.swift.org/c/community-showcase/) and share how the Black community has made a positive impact on your journey with Swift. If you are a member of the Black Swift community, we highly encourage you to [join Black in Swift](/diversity/#community-groups) to connect with others in the community!
We are grateful for the perspectives, resources, and innovation that the Black community has brought to Swift. Please join in on the Black History Month celebration over on the [Community Showcase forum](https://forums.swift.org/c/community-showcase/) and share how the Black community has made a positive impact on your journey with Swift. If you are a member of the Black Swift community, we highly encourage you to [join Black in Swift](/diversity/#community-groups) to connect with others in the community!
2 changes: 1 addition & 1 deletion migration-guide-swift3/se-0107-migrate.md
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ extension String {
The above techniques all copy the string representation. If the goal
is interoperability between the two types of C strings without copying
the String, then it is necessary to bind memory to the correct type
each time the String is accessed, as described in [UnsafeRawPointer.bindMemory(to:capacity:)](unsafeRawPointer.bindMemory(to:capacity:)).
each time the String is accessed, as described in [UnsafeRawPointer.bindMemory(to:capacity:)](#unsaferawpointerbindmemorytocapacity).

### Untyped Buffers ("raw" vs. UInt8)

Expand Down