Skip to content

Instantly share code, notes, and snippets.

View neuroswish's full-sized avatar
🎯
Focusing

Kiran neuroswish

🎯
Focusing
View GitHub Profile
import SwiftUI
struct ChatGPTTextField: View {
// MARK: - State
/// State to hold our `TextField` query.
@State private var queryMessage: String = ""
/// Focus state for our `TextField`.
struct Overlay: View {
@State private var showLive = true
@State private var isAnimationSlowed = false
var body: some View {
VStack {
Spacer()
HStack {
Spacer()
@neuroswish
neuroswish / noggles-red.svg
Created June 10, 2022 14:10
Noggles SVGs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@neuroswish
neuroswish / noggles-grayscale.svg
Last active June 15, 2022 14:46
Noggles SVGs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@neuroswish
neuroswish / Power.sol
Last active February 8, 2022 04:59
Fractional Exponentiation in Solidity based on Bancor formula
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.4;
/**
* @title Power
* @author neuroswish
* @notice Functions to calculate fractional exponents
*/
contract Power {