Skip to content

Instantly share code, notes, and snippets.

View pengqiuyuan's full-sized avatar

pengqiuyuan pengqiuyuan

View GitHub Profile
个人简历
个人基本信息
姓 名: 彭秋源 性 别: 男
联系方式: 15005917185 出生年月: 1989.11.02
电子邮箱: [email protected] 毕业院校: 福建省闽江学院
专 业: 软件工程专业 学 历: 本科
github : https://github.com/pengqiuyuan/
blog : http://blog.pengqiuyuan.com/
gitbook: https://www.gitbook.com/@pengqiuyuan/dashboard
求职意向
@SidneyAllen
SidneyAllen / StackMob.cs
Created August 30, 2012 19:37 — forked from nixbb/StackMob.cs
StackMob OAuth 2.0 Unity 3D Example
using UnityEngine;
using System.Collections;
using System.Security.Cryptography;
using System;
using System.Text;
public class StackMob : MonoBehaviour
{
public const string acceptHeader = "application/vnd.stackmob+json; version=0"; // 0 = development, 1 = production
public const string apiKey = "e78a2646-d479-47b1-9ae5-65732c5eabdc"; // nixApp
@bow-fujita
bow-fujita / json_write.cpp
Created August 7, 2012 07:11
How to encode UTF-8 string in JSON
#include <iostream>
#include <stdexcept>
#include <vector>
#include <string>
#include <cstring>
#include <locale>
#include <boost/property_tree/json_parser.hpp>
using namespace std;
class CodeCvt