This file contains hidden or 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
class SuperDict(dict): | |
def convert_dict_to_SuperDict(self, key, value): | |
if type(value) == dict: | |
self[key] = self.__class__(value) | |
if type(value) == list: | |
for n, item in enumerate(value): | |
if type(item) == dict: | |
self[key][n] = self.__class__(item) |
This file contains hidden or 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
from __future__ import annotations | |
def return_func( | |
all_value: Optional = None, | |
reminder: bool = True | |
) -> Callable: | |
""" | |
Initialize: | |
returns = return_func() |
This file contains hidden or 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
class SuperDict(dict): | |
def convert_dict_to_SuperDict(self, key, value): | |
if type(value) == dict: | |
self[key] = self.__class__(value) | |
if type(value) == list: | |
for n, item in enumerate(value): | |
if type(item) == dict: | |
self[key][n] = self.__class__(item) |
This file contains hidden or 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 { | |
animateChild, | |
query, | |
group, | |
style, | |
animate, | |
trigger, | |
transition, | |
} from "@angular/animations" |
This file contains hidden or 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 { | |
Component, | |
OnInit, | |
Input, | |
HostBinding, | |
HostListener, | |
} from "@angular/core" | |
import { | |
animateChild, |
This file contains hidden or 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 { | |
Component, | |
OnInit, | |
Input, | |
HostBinding, | |
HostListener, | |
} from "@angular/core" | |
// @Input |
This file contains hidden or 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
:host | |
cursor: pointer | |
div.container | |
display: grid | |
height: 100% | |
div.hamburger | |
justify-items: center | |
display: grid |
This file contains hidden or 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
https://www.sec.gov/Archives/edgar/data/1935555/000193555522000001/xslFormDX01/primary_doc.xml | |
https://labsnews.com/en/news/business/brazils-clubbi-snags-12m-series-a-to-scale-up-its-grocery-supply-marketplace/ | |
https://yourstory.com/2022/06/funding-vernacular-short-news-app-way2news-westbridge-capital/amp | |
https://www.yahoo.com/now/webio-secures-4m-scale-conversational-120000825.html | |
https://www.wtae.com/article/pat-mcafee-plum-athletics-donation/40452304 | |
https://www.wamda.com/2022/06/huspy-raises-37-million-series-led-sequoia-capital-india | |
https://www.venturecapitaljournal.com/getquin-snags-15m-series-a/ | |
https://www.vccircle.com/affle-picks-up-13-stake-in-indus-os-at-90mn-valuation | |
https://www.reuters.com/markets/deals/uk-green-supply-chain-startup-circulor-raises-25mln-us-expansion-2022-06-28/ | |
https://labsnews.com/en/articles/business/brazils-zippi-attracts-tiger-global-to-16m-series-a/ |
This file contains hidden or 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 SafariServices | |
import SwiftUI | |
struct Popover: View { | |
@State private var content = "" | |
var body: some View { | |
VStack(spacing: 16) { | |
Text("URL") | |
.font(.headline) |
This file contains hidden or 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 Foundation | |
func createMessageData(_ messsagePayload: [Int]) -> String { | |
let encoder = JSONEncoder() | |
let data = try! encoder.encode(messsagePayload) | |
let messsagePayloadString = String(data: data, encoding: .utf8)! | |
return String(messsagePayloadString) | |
} |
OlderNewer