I hereby claim:
- I am kilo-loco on github.
- I am kilo_loco (https://keybase.io/kilo_loco) on keybase.
- I have a public key ASDRWDLZRY6QzlM48YmXfB07iJFubgkYKKPzyxA4Y0BkdAo
To claim this, I am signing this object:
| import SwiftUI | |
| enum Color: Int { | |
| case red | |
| case blue | |
| case yellow | |
| } | |
| enum Decision { | |
| case yes |
| // SPDX-License-Identifier: MIT | |
| pragma solidity >=0.4.22 <0.9.0; | |
| library console { | |
| address constant CONSOLE_ADDRESS = | |
| 0x000000000000000000636F6e736F6c652e6c6f67; | |
| function _sendLogPayloadImplementation(bytes memory payload) internal view { | |
| address consoleAddress = CONSOLE_ADDRESS; | |
| /// @solidity memory-safe-assembly |
| // SPDX-License-Identifier: MIT | |
| pragma solidity ^0.8.24; | |
| contract EtherWallet { | |
| address payable public owner; | |
| modifier onlyOwner { | |
| require(msg.sender == owner, "Only the owner can complete this opporation"); | |
| _; |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| echo "🤔 Enter a video name:" | |
| read name | |
| name="${name}.mp4" | |
| echo | |
| echo "📹 Recording $name" | |
| echo |
| struct TeamFaceOffView: View { | |
| let teams = Animal.all | |
| var body: some View { | |
| List { | |
| let indecies = Array(0 ..< teams.count) | |
| .filter { $0.isMultiple(of: 2) } | |
| git branch -m master main | |
| git push -u origin main | |
| git checkout master | |
| git branch -m master main | |
| git fetch | |
| git branch --unset-upstream | |
| git branch -u origin/main | |
| git symbolic-ref refs/remotes/origin/HEAD refs/remotes/origin/main |
| import Foundation | |
| // JSON response converted to Data | |
| let response = """ | |
| { | |
| "name": "Kilo Loco", | |
| "pets": { | |
| "0": { | |
| "name": "Doggo" | |
| }, |
I hereby claim:
To claim this, I am signing this object:
| struct CurrencyResult: Codable { | |
| let success: Bool | |
| let name: String | |
| let date: String | |
| let rawCurrencies: [String: Float] | |
| var currencies: [Currency] { | |
| var currencies = [Currency]() |