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 JavaScriptCore | |
import Foundation | |
let context = JSContext()! | |
import JavaScriptCore | |
@objc protocol MovieJSExports: JSExport { | |
var title: String { get set } | |
var price: String { get set } |
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
package wallet | |
import ( | |
"fmt" | |
"github.com/LuisAcerv/btchdwallet/config" | |
"github.com/LuisAcerv/btchdwallet/crypt" | |
"github.com/blockcypher/gobcy" | |
"github.com/brianium/mnemonic" | |
"github.com/wemeetagain/go-hdwallet" |
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
package hdwallet | |
import ( | |
"crypto/ecdsa" | |
"errors" | |
"fmt" | |
"github.com/btcsuite/btcd/chaincfg" | |
"github.com/btcsuite/btcutil/hdkeychain" | |
"github.com/ethereum/go-ethereum/accounts" |
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
package main | |
import ( | |
"bytes" | |
"encoding/hex" | |
"fmt" | |
"github.com/btcsuite/btcd/btcec" | |
"github.com/btcsuite/btcd/chaincfg" | |
"github.com/btcsuite/btcd/chaincfg/chainhash" |
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
package main | |
import ( | |
"bytes" | |
"encoding/hex" | |
"fmt" | |
"github.com/btcsuite/btcd/chaincfg" | |
"github.com/btcsuite/btcd/chaincfg/chainhash" | |
"github.com/btcsuite/btcd/txscript" | |
"github.com/btcsuite/btcd/wire" |
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 'package:flutter/material.dart'; | |
import 'package:flutter_localizations/flutter_localizations.dart'; | |
import 'package:flame/components/component.dart'; | |
import 'package:flame/sprite.dart'; | |
import 'package:flame/flame.dart'; | |
import 'package:audioplayers/audioplayers.dart'; | |
import 'package:shared_preferences/shared_preferences.dart'; | |
import 'package:firebase_admob/firebase_admob.dart'; | |
// Create the following file with this command: flutter pub run flappy_translator | |
import 'i18n.dart'; |
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 'package:flutter/material.dart'; | |
class ListViewDataSource { | |
/// The number of items that will be displayed in the ListView. | |
int get numItems => 0; | |
/// The height of the widget at [index]. | |
double itemHeight(int index) => 0; | |
/// Generate the widget at [index]. |
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
#!/bin/bash | |
# current workstation architecture (values: MACOSX, MACOSX32, MACOSX64, LINUX, LINUX32, LINUX64, WIN32, WIN64) | |
WORKSTATION_ACTIVE_ARCH="MACOSX" | |
# android ndk (revision version, workstation arch, install prefix path) | |
ANDROID_NDK_VERSION="r10e" | |
ANDROID_NDK_PLATFORM="darwin" | |
ANDROID_NDK_PLATFORM_ARCH="x86_64" |
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
/**************************************************************************** | |
Copyright (c) 2010-2013 cocos2d-x.org | |
http://www.cocos2d-x.org | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is |
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
Shader "Unlit/DissolveEffectShader" | |
{ | |
Properties | |
{ | |
_MainTex ("Texture", 2D) = "white" {} | |
_NoiseTex ("Texture", 2D) = "white" {} | |
[MaterialToggle] PixelSnap ("Pixel snap", Float) = 0 | |
_EdgeColour1 ("Edge colour 1", Color) = (1.0, 1.0, 1.0, 1.0) | |
_EdgeColour2 ("Edge colour 2", Color) = (1.0, 1.0, 1.0, 1.0) | |
_Level ("Dissolution level", Range (0.0, 1.0)) = 0.1 |