Skip to content

Instantly share code, notes, and snippets.

View michbil's full-sized avatar

Michael Bilenko michbil

  • Florio
  • Germany
View GitHub Profile
// import { requireNativeComponent } from 'react-native';
import { ColorValue, HostComponent, ViewProps } from 'react-native';
import type {
Float,
Int32,
BubblingEventHandler,
// @ts-ignore TODO: remove once there is a .d.ts file with definitions
} from 'react-native/Libraries/Types/CodegenTypes';
// @ts-ignore TODO: remove once there is a .d.ts file with definitions
@michbil
michbil / gist:7843e4b432acdc049806320b277da0c0
Created June 25, 2022 20:30
AIRMapNativeComponent.tsx
// import { requireNativeComponent } from 'react-native';
import { ColorValue, HostComponent, ViewProps } from 'react-native';
import type {
Float,
Int32,
BubblingEventHandler,
// @ts-ignore TODO: remove once there is a .d.ts file with definitions
} from 'react-native/Libraries/Types/CodegenTypes';
// @ts-ignore TODO: remove once there is a .d.ts file with definitions
@michbil
michbil / SimpleTabs.js
Created November 22, 2017 14:34
IOS 11 Tabs problem resolution
/**
* @flow
*/
import React from "react";
import { Button, ScrollView, Platform, StyleSheet, View } from "react-native";
import { SafeAreaView, StackNavigator, TabNavigator } from "react-navigation";
import Ionicons from "react-native-vector-icons/Ionicons";
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="WRIO Internet OS hub">
<meta name="author" content="webRunes">
@michbil
michbil / docker-compose.yml
Last active January 25, 2017 09:56
Webrunes docker-compose.yaml to overcome limitations of virtual box
apache:
build: ./nginx/
ports:
- "80:80"
links:
- titter
- login
- storage
@michbil
michbil / webgold.yml
Created July 27, 2016 05:57
webgold config merge
language: ruby
services:
- docker
before_install:
- docker pull mongo:latest
- docker run --name mongo -p 27017:27017 -d mongo mongod --smallfiles
- docker build --tag webgold .
- docker ps -a
language: ruby
services:
- docker
before_install:
- docker pull mongo:latest
- docker run --name mongo -p 27017:27017 -d mongo mongod --smallfiles
- docker build --tag core .
- docker ps -a

Raw transaction:

f8ae8401048576850df8475800830651cf9461bb0b7df66ab82880c032401a5deb218f8faf3a80b844e69d849d000000000000000000000000e8ac9e205afebc8d038116e383a63b60120b8a75000000000000000000000000000000000000000000000000000000000000044c1ca02ffe7a832d07b9024b1a41fd2d3a9fcba81585429e71b7261afbbd8455102d20a00aabdf39acd2e9bba2056a024a90a87b30a5e9c3b0865be331d8fca3f228615c

Geth accepts transaction

I0721 16:46:05.846100 eth/api.go:1207] Tx(b38550f95272719e01dd7ce8ed667914d6839c984b743662232d78973ad76345) to: &61bb0b7df66ab82880c032401a5deb218f8faf3a

But it's never mined.

apache:
build: ./apache/
ports:
- "80:80"
links:
- titter
- login
- storage
- webgold
- dev
import React from 'react';
import normURL from './stores/normURL';
import {CrossStorageFactory} from './stores/CrossStorageFactory.js';
var storage = new CrossStorageFactory().getCrossStorage();
class GenericListItem extends React.Component {
constructor(props) {
super(props);
}