I hereby claim:
- I am bithavoc on github.
- I am bithavoc (https://keybase.io/bithavoc) on keybase.
- I have a public key whose fingerprint is 5E3B 423F 90A8 0E0D C08D 927A FC92 26CA EF7B 7CDE
To claim this, I am signing this object:
| import { | |
| Table, | |
| TableBody, | |
| TableCell, | |
| TableHead, | |
| TableHeader, | |
| TableRow, | |
| } from '@/componentsV2/ui/table'; | |
| import { cn } from '@/lib/utils'; | |
| import { |
| module AssetHelper | |
| ## | |
| # Renders a stylesheet asset inline. | |
| def inline_stylesheet( name ) | |
| content_tag :style do | |
| sprockets[ "#{name}.css" ].to_s | |
| end | |
| end |
| sudo certbot certonly -d vault.reeactr.com --manual --preferred-challenges dns-01 |
| open class _ComposableSearchablePushRow<T: Equatable, Cell: CellType> : TableSelectorRow<Cell, ComposableSearchableViewController<T>> where Cell: BaseCell, Cell: TypedCellType, Cell.Value == ComposableSearchableItem<T>, T: SearchableItem, T: CustomStringConvertible { | |
| public required init(tag: String?) { | |
| super.init(tag: tag) | |
| onCreateControllerCallback = { [weak self] _ in | |
| let controller = ComposableSearchableViewController<T>() | |
| controller.searchPlaceholder = self?.searchPlaceholder | |
| return controller | |
| } |
| CREATE OR REPLACE FUNCTION notify_trigger() RETURNS trigger AS $$ | |
| DECLARE | |
| channel_name varchar DEFAULT (TG_TABLE_NAME || '_changes'); | |
| BEGIN | |
| IF TG_OP = 'INSERT' THEN | |
| PERFORM pg_notify(channel_name, '{"id": "' || NEW.id || '"}'); | |
| RETURN NEW; | |
| END IF; | |
| IF TG_OP = 'DELETE' THEN | |
| PERFORM pg_notify(channel_name, '{"id": "' || OLD.id || '"}'); |
| - WARN | source: Git sources should specify a tag. | |
| - ERROR | xcodebuild: Returned an unsuccessful exit code. You can use `--verbose` for more information. | |
| - ERROR | xcodebuild: Target Support Files/RMErrors/RMErrors-prefix.pch:2:1: error: treating #import as an import of module 'UIKit' [-Werror,-Wauto-import] | |
| - ERROR | xcodebuild: RMErrors/RMErrors/RMErrorCodeDefinition.h:9:1: error: treating #import as an import of module 'Foundation' [-Werror,-Wauto-import] | |
| - ERROR | xcodebuild: RMErrors/RMErrors/RMErrorCodeBoundary.h:9:1: error: treating #import as an import of module 'Foundation' [-Werror,-Wauto-import] | |
| - ERROR | xcodebuild: RMErrors/RMErrors/RMErrorDescription.h:9:1: error: treating #import as an import of module 'Foundation' [-Werror,-Wauto-import] | |
| - ERROR | xcodebuild: RMErrors/RMErrors/RMErrorCodeRangeBoundary.h:9:1: error: treating #import as an import of module 'Foundation' [-Werror,-Wauto-import] | |
| - ERROR | [iOS] xcodebuild: RMErrors/RMErrors/RMErrorCodeDefinit |
| package main | |
| import ( | |
| "crypto/tls" | |
| "crypto/x509" | |
| "flag" | |
| "io/ioutil" | |
| "log" | |
| "net/http" | |
| ) |
I hereby claim:
To claim this, I am signing this object:
| // example of Rocka: An interpreted, duck-typed, Object-Oriented and Functional programming language | |
| // Example source code of Rocka | |
| // #$RKROOT/lib/standard/io.rk | |
| // | |
| namespace Standard.IO; | |
| // defined in standard_io.cpp | |
| extern public print(msg string) bool; |
| // | |
| // NSString+UnicodeString.m | |
| // | |
| // Created by Johan Hernandez on 1/18/15. | |
| // Copyright (c) 2015 Bithavoc.io - All rights reserved. | |
| // | |
| #import "NSString+UnicodeString.hh" | |
| #include <string> |