Skip to content

Instantly share code, notes, and snippets.

View hu-qi's full-sized avatar
🏠
Working from home

huqi hu-qi

🏠
Working from home
  • Canton
  • 08:25 (UTC +08:00)
  • X @huqii
View GitHub Profile
@hu-qi
hu-qi / TangPoetry.json
Created August 10, 2017 02:20
TangPoetry 唐诗
[
{
"detail_text": "寥落古行宫,宫花寂寞红。白头宫女在,闲坐说玄宗。",
"title": "行宫",
"detail_translate_text": [
"译文",
"空旷冷落的古旧行宫,只有宫花寂寞地艳红。",
"几个满头白发的宫女,闲坐无事谈论唐玄宗。",
"注释",
"(1)寥(liáo)落:寂寞冷落。",
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<style id="jsbin-css">
div{
margin: 100px auto;
width: 200px;
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<style id="jsbin-css">
div{
margin: 100px auto;
width: 200px;
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<style id="jsbin-css">
div{
margin: 100px auto;
width: 200px;
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<style id="jsbin-css">
div{
margin: 100px auto;
width: 200px;
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<style id="jsbin-css">
div{
margin: 100px auto;
width: 200px;
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<style id="jsbin-css">
div{
margin: 100px auto;
width: 200px;
{
"fromXianzhe": [{
"id": "0000",
"details": [
["很高兴遇见你"]
],
"responses": [{
"content": "我也是!",
"nextXianzhe": ["0003"]
}, {
@hu-qi
hu-qi / Loner_CLA
Last active September 8, 2020 07:50 — forked from CLAassistant/SAP_CLA
Loner Individual Contributor License Agreement
### Loner Individual Contributor License Agreement
Thank you for your interest in contributing to open source software projects (“Projects”) made available by Loner SE or its affiliates (“SAP”). This Individual Contributor License Agreement (“Agreement”) sets out the terms governing any source code, object code, bug fixes, configuration changes, tools, specifications, documentation, data, materials, feedback, information or other works of authorship that you submit or have submitted, in any form and in any manner, to SAP in respect of any of the Projects (collectively “Contributions”). If you have any questions respecting this Agreement, please contact opensource@sap.com.
You agree that the following terms apply to all of your past, present and future Contributions. Except for the licenses granted in this Agreement, you retain all of your right, title and interest in and to your Contributions.
**Copyright License.** You hereby grant, and agree to grant, to Loner a non-exclusive, perpetual, irrevocable, w
@hu-qi
hu-qi / App.web.tsx
Last active April 19, 2022 08:07 — forked from arrygoo/App.web.tsx
React Native Web configuration
import React, {useState} from 'react';
import {View, Text, TouchableOpacity, StyleSheet} from 'react-native';
const App = () => {
const [count, setCount] = useState(0);
return (
<View style={styles.container}>
<Text style={styles.title}>Hello from {'\n'}React Native Web!</Text>
<TouchableOpacity
onPress={() => setCount(count + 1)}