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 ASAzpyaHbSveWBqqL4PreVTv5mCZgmqwn47gJ5W6I7jujgo
To claim this, I am signing this object:
| *SOURCE EDITOR* | |
| Plain - #FFFFFF - SF Mono Regular 14.0 | |
| Comments - #7F7F7F - SF Mono Regular Italic 14.0 | |
| Strings - #F9EC12 - SF Mono Regular 14.0 | |
| Characters / Numbers - #786DFF - SF Mono Regular 14.0 | |
| Keywords - #F100FF - SF Mono Regular 14.0 | |
| Processor Statements - #E47C48 - SF Mono Regular 14.0 | |
| URLs - #4164FF - SF Mono Regular 14.0 | |
| Attributes - #2D449B - SF Mono Regular 14.0 | |
| Project - #2CFF33 - SF Mono Regular 14.0 |
| struct CurrencyResult: Codable { | |
| let success: Bool | |
| let name: String | |
| let date: String | |
| let rawCurrencies: [String: Float] | |
| var currencies: [Currency] { | |
| var currencies = [Currency]() |
I hereby claim:
To claim this, I am signing this object:
| import Foundation | |
| // JSON response converted to Data | |
| let response = """ | |
| { | |
| "name": "Kilo Loco", | |
| "pets": { | |
| "0": { | |
| "name": "Doggo" | |
| }, |
| 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 |
| struct TeamFaceOffView: View { | |
| let teams = Animal.all | |
| var body: some View { | |
| List { | |
| let indecies = Array(0 ..< teams.count) | |
| .filter { $0.isMultiple(of: 2) } | |
| #!/bin/bash | |
| echo "🤔 Enter a video name:" | |
| read name | |
| name="${name}.mp4" | |
| echo | |
| echo "📹 Recording $name" | |
| echo |
I hereby claim:
To claim this, I am signing this object:
| // 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"); | |
| _; |
| // 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 |