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
sudo grub-reboot "$(grep -i windows /boot/grub/grub.cfg|cut -d"'" -f2)" && sudo reboot |
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
bądź spoko | |
nie wyzywaj OK | |
Cool | |
to jest eksperyment |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>#WARNING - 1</key> | |
<string>This is just a sample. Do NOT try loading it.</string> | |
<key>#WARNING - 2</key> | |
<string>Ensure you understand EVERY field before booting.</string> | |
<key>#WARNING - 3</key> | |
<string>In most cases recommended to use Sample.plist</string> |
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
<!-- changed:100;added:1028;removed:1110;moved:1015;renamed:0;changed:0;tool_version:1.7.2 --> | |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<meta name="keywords" content="swift, changes, report" /> | |
<meta name="description" content="Changes report for the swift package between 5.8.1-RELEASE-ubuntu22.04 and 5.8.1-1.0.0-ubuntu-jammy versions" /> | |
<title> | |
swift: 5.8.1-RELEASE-ubuntu22.04 to 5.8.1-1.0.0-ubuntu-jammy changes report | |
</title> |
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
#Preview { | |
do { | |
let config = ModelConfiguration(isStoredInMemoryOnly: true) | |
let container = try ModelContainer(for: Item.self, configurations: config) | |
let example = Item("Insert Item Parameters") | |
return PostView(Item: example) | |
.modelContainer(container) | |
} | |
catch { |
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
import SwiftData | |
import SwiftUI | |
@available(iOS 17, *) | |
@Model | |
class TestData { | |
var id: UUID | |
var text: String | |
init(id: UUID, text: String) { |
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
#include <iostream> | |
int main() | |
{ | |
std::string CardNumba; | |
int CardNumbers[16]; | |
int SecondCardNumbers[8]; |