逆向工程说明: 本文档基于 nof1.ai Alpha Arena 的公开文档、交易行为模式、API 响应格式和社区讨论,系统性地逆向推导出其 System Prompt 和 User Prompt 的完整结构,欢迎各路大佬戳戳评论,一起来进行这个有趣的实验。
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
| <?php | |
| /* These are two points in New York City */ | |
| $point1 = array('lat' => 40.770623, 'long' => -73.964367); | |
| $point2 = array('lat' => 40.758224, 'long' => -73.917404); | |
| $distance = getDistanceBetweenPoints($point1['lat'], $point1['long'], $point2['lat'], $point2['long']); | |
| foreach ($distance as $unit => $value) { | |
| echo $unit.': '.number_format($value,4).'<br />'; | |
| } |
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
| // SPDX-License-Identifier: MIT | |
| pragma solidity >=0.4.22 <0.8.0; | |
| pragma experimental ABIEncoderV2; | |
| contract Wallet { | |
| address[] public approvers; | |
| uint8 public quorum; | |
| struct Transfer { |
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
| // SPDX-License-Identifier: MIT | |
| pragma solidity =0.7.6; | |
| pragma abicoder v2; | |
| import "https://github.com/Uniswap/uniswap-v3-periphery/blob/main/contracts/interfaces/ISwapRouter.sol"; | |
| import "https://github.com/Uniswap/uniswap-v3-periphery/blob/main/contracts/interfaces/IQuoter.sol"; | |
| import {IERC20, SafeERC20} from "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v3.4-solc-0.7/contracts/token/ERC20/SafeERC20.sol"; | |
| interface IUniswapRouter is ISwapRouter { |
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
| pragma solidity ^0.4.23; | |
| /** | |
| * @title Ownable | |
| * @dev The Ownable contract has an owner address, and provides basic authorization control | |
| * functions, this simplifies the implementation of "user permissions". | |
| */ | |
| contract Ownable { | |
| address public owner; |
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
| // @flow | |
| // https://twitter.com/jevakallio/status/941258932529614848 | |
| import React, { Component, type Node } from 'react'; | |
| import styled from 'styled-components/native'; | |
| import Touchable from 'react-native-platform-touchable'; | |
| import Carousel from 'react-native-snap-carousel'; | |
| // $FlowFixMe | |
| import { LinearGradient } from 'expo'; |
This is a simple guide to get you started with using the Ethereum Javascript API (web3.js) with the Create React Native App project. This is not an in-depth guide.
-
Make sure you have Node version 6 or later installed, if not, get it on the Node website
node --version -
Install Create React Native App
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
| 0499337577c5792125e91f84232d1f3af7a53dee19f2946504ff8d4e14986d371388a21766e8ba10352c193c764ad0f2f96ffb0422d1cde62fb30f2371660502df discountry |
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 edu.liu.shapefileexample; | |
| // Note: | |
| // This is my modified version for educational purpose by Kiichi Takeuchi. I removed swing dependency and changed class name. | |
| // | |
| // ********************************************************************** | |
| // | |
| // <copyright> | |
| // |
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 mobi.dzs.util; | |
| /** | |
| * 16进制值与String/Byte之间的转换 | |
| * @author JerryLi | |
| * @email lijian@dzs.mobi | |
| * @data 2011-10-16 | |
| * */ | |
| public class CHexConver | |
| { |
NewerOlder