Coder Social home page Coder Social logo

idea_flutter_json_format's Introduction

Update

ver 2.1

generate 『toJson』 function to support converting object to map

{
  "name": "zll",
  "age": 29,
  "star": 4.5,
  "married": true
}
class Test {
  String name;
  int age;
  double star;
  bool married;

  static Test fromMap(Map<String, dynamic> map) {
    if (map == null) return null;
    Test testBean = Test();
    testBean.name = map['name'];
    testBean.age = map['age'];
    testBean.star = map['star'];
    testBean.married = map['married'];
    return testBean;
  }

  Map toJson() => {
    "name": name,
    "age": age,
    "star": star,
    "married": married,
  };
}
import 'dart:convert'

var json = JsonEncoder().convert(obj);

Install

1. Download jar

https://plugins.jetbrains.com/plugin/11551-dart-json-format

2. Search in IDE

Plugins -> Browse repositories -> input "dart_json_format"

Generate

gif

Examples

1. Simple data

{
  "name": "zll",
  "age": 29,
  "star": 4.5,
  "married": true
}
class Test {
  String name;
  int age;
  double star;
  bool married;

  static Test fromMap(Map<String, dynamic> map) {
    if (map == null) return null;
    Test testBean = Test();
    testBean.name = map['name'];
    testBean.age = map['age'];
    testBean.star = map['star'];
    testBean.married = map['married'];
    return testBean;
  }
}

2. Ojbect

{
  "programmer": {
    "name": "zll",
    "age": 29,
    "star": 4.5,
    "married": true
  }
}
class Test {
  ProgrammerBean programmer;

  static Test fromMap(Map<String, dynamic> map) {
    if (map == null) return null;
    Test testBean = Test();
    testBean.programmer = ProgrammerBean.fromMap(map['programmer']);
    return testBean;
  }
}

class ProgrammerBean {
  String name;
  int age;
  double star;
  bool married;

  static ProgrammerBean fromMap(Map<String, dynamic> map) {
    if (map == null) return null;
    ProgrammerBean programmerBean = ProgrammerBean();
    programmerBean.name = map['name'];
    programmerBean.age = map['age'];
    programmerBean.star = map['star'];
    programmerBean.married = map['married'];
    return programmerBean;
  }
}

3. Array

{
  "names": ["zll", "kfc"],
  "ages": [29, 25],
  "stars": [4.5, 4.4],
  "marrieds": [true, false]
}
class Test {
  List<String> names;
  List<int> ages;
  List<double> stars;
  List<bool> marrieds;

  static Test fromMap(Map<String, dynamic> map) {
    if (map == null) return null;
    Test testBean = Test();
    testBean.names = List()..addAll(
      (map['names'] as List ?? []).map((o) => o.toString())
    );
    testBean.ages = List()..addAll(
      (map['ages'] as List ?? []).map((o) => int.tryParse(o.toString()))
    );
    testBean.stars = List()..addAll(
      (map['stars'] as List ?? []).map((o) => double.tryParse(o.toString()))
    );
    testBean.marrieds = List()..addAll(
      (map['marrieds'] as List ?? []).map((o) => o.toString() == 'true')
    );
    return testBean;
  }
}

4. Array of Object

{
  "programmers": [
    {
      "name": "zll",
      "age": 29,
      "star": 4.5,
      "married": true
    },{
      "name": "kfc",
      "age": 25,
      "star": 4.1,
      "married": false
    }
  ]
}
class Test {
  List<ProgrammersBean> programmers;

  static Test fromMap(Map<String, dynamic> map) {
    if (map == null) return null;
    Test testBean = Test();
    testBean.programmers = List()..addAll(
      (map['programmers'] as List ?? []).map((o) => ProgrammersBean.fromMap(o))
    );
    return testBean;
  }
}

class ProgrammersBean {
  String name;
  int age;
  double star;
  bool married;

  static ProgrammersBean fromMap(Map<String, dynamic> map) {
    if (map == null) return null;
    ProgrammersBean programmersBean = ProgrammersBean();
    programmersBean.name = map['name'];
    programmersBean.age = map['age'];
    programmersBean.star = map['star'];
    programmersBean.married = map['married'];
    return programmersBean;
  }
}

5. Nested Array

{
  "something": [[[[[1]]]]]
}
class Test {
  List<List<List<List<List<int>>>>> something;

  static Test fromMap(Map<String, dynamic> map) {
    if (map == null) return null;
    Test testBean = Test();
    testBean.something = List()..addAll(
      (map['something'] as List ?? []).map((o) => List()..addAll((o as List ?? []).map((oo) => List()..addAll((oo as List ?? []).map((ooo) => List()..addAll((ooo as List ?? []).map((oooo) => List()..addAll((oooo as List ?? []).map((ooooo) => int.tryParse(ooooo.toString()))))))))))
    );
    return testBean;
  }
}

5. Nested Array of Object

{
  "something": [[[[[{
    "name": "zll",
    "age": 29,
    "star": 4.5,
    "married": true
  }]]]]]
}
class Test {
  List<List<List<List<List<SomethingBean>>>>> something;

  static Test fromMap(Map<String, dynamic> map) {
    if (map == null) return null;
    Test testBean = Test();
    testBean.something = List()..addAll(
      (map['something'] as List ?? []).map((o) => List()..addAll((o as List ?? []).map((oo) => List()..addAll((oo as List ?? []).map((ooo) => List()..addAll((ooo as List ?? []).map((oooo) => List()..addAll((oooo as List ?? []).map((ooooo) => SomethingBean.fromMap(ooooo))))))))))
    );
    return testBean;
  }
}

class SomethingBean {
  String name;
  int age;
  double star;
  bool married;

  static SomethingBean fromMap(Map<String, dynamic> map) {
    if (map == null) return null;
    SomethingBean somethingBean = SomethingBean();
    somethingBean.name = map['name'];
    somethingBean.age = map['age'];
    somethingBean.star = map['star'];
    somethingBean.married = map['married'];
    return somethingBean;
  }
}

6. Empty or Null

{
  "obj": null,
  "emptyList": [],
  "nullList": [null]
}
class Test {
  dynamic obj;
  List<dynamic> emptyList;
  List<dynamic> nullList;

  static Test fromMap(Map<String, dynamic> map) {
    if (map == null) return null;
    Test testBean = Test();
    testBean.obj = map['obj'];
    testBean.emptyList = map['emptyList'];
    testBean.nullList = map['nullList'];
    return testBean;
  }
}

7. Root Array

[
  {
    "name": "zll",
    "age": 29,
    "star": 4.5,
    "married": true
  },
  {
	"name": "kfc",
	"age": 25,
	"star": 4.1,
	"married": false
  }
]
Take only array[0] to use
class Test {
  String name;
  int age;
  double star;
  bool married;

  static Test fromMap(Map<String, dynamic> map) {
    if (map == null) return null;
    Test testBean = Test();
    testBean.name = map['name'];
    testBean.age = map['age'];
    testBean.star = map['star'];
    testBean.married = map['married'];
    return testBean;
  }
}

idea_flutter_json_format's People

Contributors

neverwoodss avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

idea_flutter_json_format's Issues

JSON嵌套的数组无法生成

如下

{
    "jsonrpc": "2.0",
    "method": "aria2.tellActive",
    "id": "QXJpYU5nXzE1NTcwNDE5MzdfMC4xMTk5MDc2NTM4NjM5MTE2Nw==",
    "params": [
        [
            "completedLength",
            "connections",
            "dir",
            "downloadSpeed",
            "files",
            "gid",
            "infoHash",
            "numPieces",
            "numSeeders",
            "pieceLength",
            "seeder",
            "status",
            "totalLength",
            "uploadLength",
            "uploadSpeed"
        ]
    ]
}

error:unknown

感谢这么好的插件,但是在使用过程中自动生成如下格式的json时提示error:unknown
{
"code": 200,
"message": "SUCCESS",
"data": {
"pageNum": 0,
"pageSize": 0,
"size": 3,
"orderBy": 5,
"startRow": 1,
"endRow": 3,
"total": 3,
"pages": 0,
"list": [{
"id": 1,
"cover": "https://images.rapgenius.com/4xo4vvlzcnbsluagktti85tf1.1000x1000x1.jpg",
"title": "有伴英语第一课",
"content": "本课的主要内容有本课的主要内容有本课的主要内容有本课的主要内容有本课的主要内容有本课的主要内容有本课的主要内容有",
"audio": "https://ia801000.us.archive.org/22/items/MagnaCarta/13.Bbc.mp3",
"type": 0,
"audioDuration": 123,
"createTime": 1550131610000
},
{
"id": 2,
"cover": "https://images.rapgenius.com/4xo4vvlzcnbsluagktti85tf1.1000x1000x1.jpg",
"title": "有伴英语第一课",
"content": "本课的主要内容有本课的主要内容有本课的主要内容有本课的主要内容有本课的主要内容有本课的主要内容有本课的主要内容有",
"audio": "https://ia801000.us.archive.org/22/items/MagnaCarta/13.Bbc.mp3",
"type": 0,
"audioDuration": 123,
"createTime": 1550131610000
},
{
"id": 3,
"cover": "https://images.rapgenius.com/4xo4vvlzcnbsluagktti85tf1.1000x1000x1.jpg",
"title": "有伴英语第一课",
"content": "本课的主要内容有本课的主要内容有本课的主要内容有本课的主要内容有本课的主要内容有本课的主要内容有本课的主要内容有",
"audio": "https://ia801000.us.archive.org/22/items/MagnaCarta/13.Bbc.mp3",
"type": 0,
"audioDuration": 123,
"createTime": 1550131610000
}
],
"prePage": 0,
"nextPage": 0,
"isFirstPage": false,
"isLastPage": true,
"hasPreviousPage": false,
"hasNextPage": false,
"navigatePages": 8,
"navigatepageNums": [],
"navigateFirstPage": 0,
"navigateLastPage": 0,
"firstPage": 0,
"lastPage": 0
}
}

Does not work for a list in json

Suppose there is a json list with multiple json objects then this plugin only takes its first object and does not deal with others. It is bad when there is a root list of multiple objects. I can look into this if you allow me to.

json 不能解析

[ { "name": "ANSI Common Lisp 中文翻译版.pdf", "path": "ANSI Common Lisp 中文翻译版.pdf", "sha": "632aff70d65a72e282a69182cdffd9c1c6ef60c1", "size": 17701101, "url": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/ANSI%20Common%20Lisp%20%E4%B8%AD%E6%96%87%E7%BF%BB%E8%AF%91%E7%89%88.pdf?ref=master", "html_url": "https://github.com/xyhuangjia/books-pdf/blob/master/ANSI%20Common%20Lisp%20%E4%B8%AD%E6%96%87%E7%BF%BB%E8%AF%91%E7%89%88.pdf", "git_url": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/632aff70d65a72e282a69182cdffd9c1c6ef60c1", "download_url": "https://raw.githubusercontent.com/xyhuangjia/books-pdf/master/ANSI%20Common%20Lisp%20%E4%B8%AD%E6%96%87%E7%BF%BB%E8%AF%91%E7%89%88.pdf", "type": "file", "_links": { "self": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/ANSI%20Common%20Lisp%20%E4%B8%AD%E6%96%87%E7%BF%BB%E8%AF%91%E7%89%88.pdf?ref=master", "git": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/632aff70d65a72e282a69182cdffd9c1c6ef60c1", "html": "https://github.com/xyhuangjia/books-pdf/blob/master/ANSI%20Common%20Lisp%20%E4%B8%AD%E6%96%87%E7%BF%BB%E8%AF%91%E7%89%88.pdf" } }, { "name": "B10-Haskell趣学指南.pdf", "path": "B10-Haskell趣学指南.pdf", "sha": "518f15125388ac034dad0236009f7fefdde115c6", "size": 2947731, "url": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/B10-Haskell%E8%B6%A3%E5%AD%A6%E6%8C%87%E5%8D%97.pdf?ref=master", "html_url": "https://github.com/xyhuangjia/books-pdf/blob/master/B10-Haskell%E8%B6%A3%E5%AD%A6%E6%8C%87%E5%8D%97.pdf", "git_url": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/518f15125388ac034dad0236009f7fefdde115c6", "download_url": "https://raw.githubusercontent.com/xyhuangjia/books-pdf/master/B10-Haskell%E8%B6%A3%E5%AD%A6%E6%8C%87%E5%8D%97.pdf", "type": "file", "_links": { "self": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/B10-Haskell%E8%B6%A3%E5%AD%A6%E6%8C%87%E5%8D%97.pdf?ref=master", "git": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/518f15125388ac034dad0236009f7fefdde115c6", "html": "https://github.com/xyhuangjia/books-pdf/blob/master/B10-Haskell%E8%B6%A3%E5%AD%A6%E6%8C%87%E5%8D%97.pdf" } }, { "name": "C++ Concurrency in Action.pdf", "path": "C++ Concurrency in Action.pdf", "sha": "a5aad26e1943b021735fdee1e70834c509a89ede", "size": 4516178, "url": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/C%2B%2B%20Concurrency%20in%20Action.pdf?ref=master", "html_url": "https://github.com/xyhuangjia/books-pdf/blob/master/C%2B%2B%20Concurrency%20in%20Action.pdf", "git_url": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/a5aad26e1943b021735fdee1e70834c509a89ede", "download_url": "https://raw.githubusercontent.com/xyhuangjia/books-pdf/master/C%2B%2B%20Concurrency%20in%20Action.pdf", "type": "file", "_links": { "self": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/C%2B%2B%20Concurrency%20in%20Action.pdf?ref=master", "git": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/a5aad26e1943b021735fdee1e70834c509a89ede", "html": "https://github.com/xyhuangjia/books-pdf/blob/master/C%2B%2B%20Concurrency%20in%20Action.pdf" } }, { "name": "C++primer第五版(英文版).pdf", "path": "C++primer第五版(英文版).pdf", "sha": "38e943f30d6b1bb23cd61ff1c1a5c3ca99f1f2a9", "size": 52803022, "url": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/C%2B%2Bprimer%E7%AC%AC%E4%BA%94%E7%89%88%EF%BC%88%E8%8B%B1%E6%96%87%E7%89%88%EF%BC%89.pdf?ref=master", "html_url": "https://github.com/xyhuangjia/books-pdf/blob/master/C%2B%2Bprimer%E7%AC%AC%E4%BA%94%E7%89%88%EF%BC%88%E8%8B%B1%E6%96%87%E7%89%88%EF%BC%89.pdf", "git_url": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/38e943f30d6b1bb23cd61ff1c1a5c3ca99f1f2a9", "download_url": "https://raw.githubusercontent.com/xyhuangjia/books-pdf/master/C%2B%2Bprimer%E7%AC%AC%E4%BA%94%E7%89%88%EF%BC%88%E8%8B%B1%E6%96%87%E7%89%88%EF%BC%89.pdf", "type": "file", "_links": { "self": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/C%2B%2Bprimer%E7%AC%AC%E4%BA%94%E7%89%88%EF%BC%88%E8%8B%B1%E6%96%87%E7%89%88%EF%BC%89.pdf?ref=master", "git": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/38e943f30d6b1bb23cd61ff1c1a5c3ca99f1f2a9", "html": "https://github.com/xyhuangjia/books-pdf/blob/master/C%2B%2Bprimer%E7%AC%AC%E4%BA%94%E7%89%88%EF%BC%88%E8%8B%B1%E6%96%87%E7%89%88%EF%BC%89.pdf" } }, { "name": "Common.Lisp.The.Language.2nd.E.pdf", "path": "Common.Lisp.The.Language.2nd.E.pdf", "sha": "59f8b6f4cba48784464502fbeb5f3759530c0c98", "size": 4589266, "url": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/Common.Lisp.The.Language.2nd.E.pdf?ref=master", "html_url": "https://github.com/xyhuangjia/books-pdf/blob/master/Common.Lisp.The.Language.2nd.E.pdf", "git_url": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/59f8b6f4cba48784464502fbeb5f3759530c0c98", "download_url": "https://raw.githubusercontent.com/xyhuangjia/books-pdf/master/Common.Lisp.The.Language.2nd.E.pdf", "type": "file", "_links": { "self": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/Common.Lisp.The.Language.2nd.E.pdf?ref=master", "git": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/59f8b6f4cba48784464502fbeb5f3759530c0c98", "html": "https://github.com/xyhuangjia/books-pdf/blob/master/Common.Lisp.The.Language.2nd.E.pdf" } }, { "name": "Common.Lisp_A.Gentle.Introduction.to.Symbolic.Computation.pdf", "path": "Common.Lisp_A.Gentle.Introduction.to.Symbolic.Computation.pdf", "sha": "a236bbc563bcd805407b6740c41ecad5bd7803f5", "size": 1055030, "url": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/Common.Lisp_A.Gentle.Introduction.to.Symbolic.Computation.pdf?ref=master", "html_url": "https://github.com/xyhuangjia/books-pdf/blob/master/Common.Lisp_A.Gentle.Introduction.to.Symbolic.Computation.pdf", "git_url": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/a236bbc563bcd805407b6740c41ecad5bd7803f5", "download_url": "https://raw.githubusercontent.com/xyhuangjia/books-pdf/master/Common.Lisp_A.Gentle.Introduction.to.Symbolic.Computation.pdf", "type": "file", "_links": { "self": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/Common.Lisp_A.Gentle.Introduction.to.Symbolic.Computation.pdf?ref=master", "git": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/a236bbc563bcd805407b6740c41ecad5bd7803f5", "html": "https://github.com/xyhuangjia/books-pdf/blob/master/Common.Lisp_A.Gentle.Introduction.to.Symbolic.Computation.pdf" } }, { "name": "C和指针.pdf", "path": "C和指针.pdf", "sha": "b88cdb8c6e4d7b16a45e1e4fd9a4038b1d3aec70", "size": 20934823, "url": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/C%E5%92%8C%E6%8C%87%E9%92%88.pdf?ref=master", "html_url": "https://github.com/xyhuangjia/books-pdf/blob/master/C%E5%92%8C%E6%8C%87%E9%92%88.pdf", "git_url": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/b88cdb8c6e4d7b16a45e1e4fd9a4038b1d3aec70", "download_url": "https://raw.githubusercontent.com/xyhuangjia/books-pdf/master/C%E5%92%8C%E6%8C%87%E9%92%88.pdf", "type": "file", "_links": { "self": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/C%E5%92%8C%E6%8C%87%E9%92%88.pdf?ref=master", "git": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/b88cdb8c6e4d7b16a45e1e4fd9a4038b1d3aec70", "html": "https://github.com/xyhuangjia/books-pdf/blob/master/C%E5%92%8C%E6%8C%87%E9%92%88.pdf" } }, { "name": "C程序设计语言(K&R)清晰中文版.pdf", "path": "C程序设计语言(K&R)清晰中文版.pdf", "sha": "e1d5bf074fa77da3afad126ad1f0bafaeaf82f62", "size": 993690, "url": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/C%E7%A8%8B%E5%BA%8F%E8%AE%BE%E8%AE%A1%E8%AF%AD%E8%A8%80(K&R)%E6%B8%85%E6%99%B0%E4%B8%AD%E6%96%87%E7%89%88.pdf?ref=master", "html_url": "https://github.com/xyhuangjia/books-pdf/blob/master/C%E7%A8%8B%E5%BA%8F%E8%AE%BE%E8%AE%A1%E8%AF%AD%E8%A8%80(K&R)%E6%B8%85%E6%99%B0%E4%B8%AD%E6%96%87%E7%89%88.pdf", "git_url": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/e1d5bf074fa77da3afad126ad1f0bafaeaf82f62", "download_url": "https://raw.githubusercontent.com/xyhuangjia/books-pdf/master/C%E7%A8%8B%E5%BA%8F%E8%AE%BE%E8%AE%A1%E8%AF%AD%E8%A8%80(K%26R)%E6%B8%85%E6%99%B0%E4%B8%AD%E6%96%87%E7%89%88.pdf", "type": "file", "_links": { "self": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/C%E7%A8%8B%E5%BA%8F%E8%AE%BE%E8%AE%A1%E8%AF%AD%E8%A8%80(K&R)%E6%B8%85%E6%99%B0%E4%B8%AD%E6%96%87%E7%89%88.pdf?ref=master", "git": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/e1d5bf074fa77da3afad126ad1f0bafaeaf82f62", "html": "https://github.com/xyhuangjia/books-pdf/blob/master/C%E7%A8%8B%E5%BA%8F%E8%AE%BE%E8%AE%A1%E8%AF%AD%E8%A8%80(K&R)%E6%B8%85%E6%99%B0%E4%B8%AD%E6%96%87%E7%89%88.pdf" } }, { "name": "Emacs_22_Reference_Card_1.png", "path": "Emacs_22_Reference_Card_1.png", "sha": "64c67878b595f17084f973c4c4ca551d5e6e3a59", "size": 466770, "url": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/Emacs_22_Reference_Card_1.png?ref=master", "html_url": "https://github.com/xyhuangjia/books-pdf/blob/master/Emacs_22_Reference_Card_1.png", "git_url": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/64c67878b595f17084f973c4c4ca551d5e6e3a59", "download_url": "https://raw.githubusercontent.com/xyhuangjia/books-pdf/master/Emacs_22_Reference_Card_1.png", "type": "file", "_links": { "self": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/Emacs_22_Reference_Card_1.png?ref=master", "git": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/64c67878b595f17084f973c4c4ca551d5e6e3a59", "html": "https://github.com/xyhuangjia/books-pdf/blob/master/Emacs_22_Reference_Card_1.png" } }, { "name": "Emacs_22_Reference_Card_2.png", "path": "Emacs_22_Reference_Card_2.png", "sha": "2acb414a8864317c8ed5a05dbdb73fce4fbba7a0", "size": 440538, "url": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/Emacs_22_Reference_Card_2.png?ref=master", "html_url": "https://github.com/xyhuangjia/books-pdf/blob/master/Emacs_22_Reference_Card_2.png", "git_url": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/2acb414a8864317c8ed5a05dbdb73fce4fbba7a0", "download_url": "https://raw.githubusercontent.com/xyhuangjia/books-pdf/master/Emacs_22_Reference_Card_2.png", "type": "file", "_links": { "self": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/Emacs_22_Reference_Card_2.png?ref=master", "git": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/2acb414a8864317c8ed5a05dbdb73fce4fbba7a0", "html": "https://github.com/xyhuangjia/books-pdf/blob/master/Emacs_22_Reference_Card_2.png" } }, { "name": "GNU+Make项目管理(第三版).pdf", "path": "GNU+Make项目管理(第三版).pdf", "sha": "0506cdd393334a0bf8915e255e09d65c204c05b3", "size": 12088089, "url": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/GNU%2BMake%E9%A1%B9%E7%9B%AE%E7%AE%A1%E7%90%86(%E7%AC%AC%E4%B8%89%E7%89%88).pdf?ref=master", "html_url": "https://github.com/xyhuangjia/books-pdf/blob/master/GNU%2BMake%E9%A1%B9%E7%9B%AE%E7%AE%A1%E7%90%86(%E7%AC%AC%E4%B8%89%E7%89%88).pdf", "git_url": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/0506cdd393334a0bf8915e255e09d65c204c05b3", "download_url": "https://raw.githubusercontent.com/xyhuangjia/books-pdf/master/GNU%2BMake%E9%A1%B9%E7%9B%AE%E7%AE%A1%E7%90%86(%E7%AC%AC%E4%B8%89%E7%89%88).pdf", "type": "file", "_links": { "self": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/GNU%2BMake%E9%A1%B9%E7%9B%AE%E7%AE%A1%E7%90%86(%E7%AC%AC%E4%B8%89%E7%89%88).pdf?ref=master", "git": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/0506cdd393334a0bf8915e255e09d65c204c05b3", "html": "https://github.com/xyhuangjia/books-pdf/blob/master/GNU%2BMake%E9%A1%B9%E7%9B%AE%E7%AE%A1%E7%90%86(%E7%AC%AC%E4%B8%89%E7%89%88).pdf" } }, { "name": "GNU_Linux+编程指南(第二版).pdf", "path": "GNU_Linux+编程指南(第二版).pdf", "sha": "8452747ac2286b1d990d8f54f4c1e0d2103303f0", "size": 14954237, "url": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/GNU_Linux%2B%E7%BC%96%E7%A8%8B%E6%8C%87%E5%8D%97%EF%BC%88%E7%AC%AC%E4%BA%8C%E7%89%88%EF%BC%89.pdf?ref=master", "html_url": "https://github.com/xyhuangjia/books-pdf/blob/master/GNU_Linux%2B%E7%BC%96%E7%A8%8B%E6%8C%87%E5%8D%97%EF%BC%88%E7%AC%AC%E4%BA%8C%E7%89%88%EF%BC%89.pdf", "git_url": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/8452747ac2286b1d990d8f54f4c1e0d2103303f0", "download_url": "https://raw.githubusercontent.com/xyhuangjia/books-pdf/master/GNU_Linux%2B%E7%BC%96%E7%A8%8B%E6%8C%87%E5%8D%97%EF%BC%88%E7%AC%AC%E4%BA%8C%E7%89%88%EF%BC%89.pdf", "type": "file", "_links": { "self": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/GNU_Linux%2B%E7%BC%96%E7%A8%8B%E6%8C%87%E5%8D%97%EF%BC%88%E7%AC%AC%E4%BA%8C%E7%89%88%EF%BC%89.pdf?ref=master", "git": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/8452747ac2286b1d990d8f54f4c1e0d2103303f0", "html": "https://github.com/xyhuangjia/books-pdf/blob/master/GNU_Linux%2B%E7%BC%96%E7%A8%8B%E6%8C%87%E5%8D%97%EF%BC%88%E7%AC%AC%E4%BA%8C%E7%89%88%EF%BC%89.pdf" } }, { "name": "Java并发编程实战(中文版).pdf", "path": "Java并发编程实战(中文版).pdf", "sha": "c62ac0c4fca875881a1bf1da6eaf87d5adfd0a5c", "size": 9285432, "url": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/Java%E5%B9%B6%E5%8F%91%E7%BC%96%E7%A8%8B%E5%AE%9E%E6%88%98%EF%BC%88%E4%B8%AD%E6%96%87%E7%89%88%EF%BC%89.pdf?ref=master", "html_url": "https://github.com/xyhuangjia/books-pdf/blob/master/Java%E5%B9%B6%E5%8F%91%E7%BC%96%E7%A8%8B%E5%AE%9E%E6%88%98%EF%BC%88%E4%B8%AD%E6%96%87%E7%89%88%EF%BC%89.pdf", "git_url": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/c62ac0c4fca875881a1bf1da6eaf87d5adfd0a5c", "download_url": "https://raw.githubusercontent.com/xyhuangjia/books-pdf/master/Java%E5%B9%B6%E5%8F%91%E7%BC%96%E7%A8%8B%E5%AE%9E%E6%88%98%EF%BC%88%E4%B8%AD%E6%96%87%E7%89%88%EF%BC%89.pdf", "type": "file", "_links": { "self": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/Java%E5%B9%B6%E5%8F%91%E7%BC%96%E7%A8%8B%E5%AE%9E%E6%88%98%EF%BC%88%E4%B8%AD%E6%96%87%E7%89%88%EF%BC%89.pdf?ref=master", "git": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/c62ac0c4fca875881a1bf1da6eaf87d5adfd0a5c", "html": "https://github.com/xyhuangjia/books-pdf/blob/master/Java%E5%B9%B6%E5%8F%91%E7%BC%96%E7%A8%8B%E5%AE%9E%E6%88%98%EF%BC%88%E4%B8%AD%E6%96%87%E7%89%88%EF%BC%89.pdf" } }, { "name": "Land of Lisp.pdf", "path": "Land of Lisp.pdf", "sha": "b3eed737c80604eac951d99955069d5a8f608698", "size": 19540798, "url": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/Land%20of%20Lisp.pdf?ref=master", "html_url": "https://github.com/xyhuangjia/books-pdf/blob/master/Land%20of%20Lisp.pdf", "git_url": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/b3eed737c80604eac951d99955069d5a8f608698", "download_url": "https://raw.githubusercontent.com/xyhuangjia/books-pdf/master/Land%20of%20Lisp.pdf", "type": "file", "_links": { "self": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/Land%20of%20Lisp.pdf?ref=master", "git": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/b3eed737c80604eac951d99955069d5a8f608698", "html": "https://github.com/xyhuangjia/books-pdf/blob/master/Land%20of%20Lisp.pdf" } }, { "name": "Learn_GNU_Emacs.pdf", "path": "Learn_GNU_Emacs.pdf", "sha": "56c7534a36469c8f335772a1e16d1458efb1af69", "size": 13649800, "url": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/Learn_GNU_Emacs.pdf?ref=master", "html_url": "https://github.com/xyhuangjia/books-pdf/blob/master/Learn_GNU_Emacs.pdf", "git_url": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/56c7534a36469c8f335772a1e16d1458efb1af69", "download_url": "https://raw.githubusercontent.com/xyhuangjia/books-pdf/master/Learn_GNU_Emacs.pdf", "type": "file", "_links": { "self": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/Learn_GNU_Emacs.pdf?ref=master", "git": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/56c7534a36469c8f335772a1e16d1458efb1af69", "html": "https://github.com/xyhuangjia/books-pdf/blob/master/Learn_GNU_Emacs.pdf" } }, { "name": "Paradigms of Artificial Intelligence Programming Case Studies in Common Lisp.pdf", "path": "Paradigms of Artificial Intelligence Programming Case Studies in Common Lisp.pdf", "sha": "7874e2c999faaf8c0eeeb96361ac7e93bd0a52d1", "size": 57795275, "url": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/Paradigms%20of%20Artificial%20Intelligence%20Programming%20Case%20Studies%20in%20Common%20Lisp.pdf?ref=master", "html_url": "https://github.com/xyhuangjia/books-pdf/blob/master/Paradigms%20of%20Artificial%20Intelligence%20Programming%20Case%20Studies%20in%20Common%20Lisp.pdf", "git_url": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/7874e2c999faaf8c0eeeb96361ac7e93bd0a52d1", "download_url": "https://raw.githubusercontent.com/xyhuangjia/books-pdf/master/Paradigms%20of%20Artificial%20Intelligence%20Programming%20Case%20Studies%20in%20Common%20Lisp.pdf", "type": "file", "_links": { "self": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/Paradigms%20of%20Artificial%20Intelligence%20Programming%20Case%20Studies%20in%20Common%20Lisp.pdf?ref=master", "git": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/7874e2c999faaf8c0eeeb96361ac7e93bd0a52d1", "html": "https://github.com/xyhuangjia/books-pdf/blob/master/Paradigms%20of%20Artificial%20Intelligence%20Programming%20Case%20Studies%20in%20Common%20Lisp.pdf" } }, { "name": "ProGit 中文版.pdf", "path": "ProGit 中文版.pdf", "sha": "c63093fc1dadf75eb5d3d8dc12f4a9d4f6a15545", "size": 4764239, "url": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/ProGit%20%E4%B8%AD%E6%96%87%E7%89%88.pdf?ref=master", "html_url": "https://github.com/xyhuangjia/books-pdf/blob/master/ProGit%20%E4%B8%AD%E6%96%87%E7%89%88.pdf", "git_url": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/c63093fc1dadf75eb5d3d8dc12f4a9d4f6a15545", "download_url": "https://raw.githubusercontent.com/xyhuangjia/books-pdf/master/ProGit%20%E4%B8%AD%E6%96%87%E7%89%88.pdf", "type": "file", "_links": { "self": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/ProGit%20%E4%B8%AD%E6%96%87%E7%89%88.pdf?ref=master", "git": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/c63093fc1dadf75eb5d3d8dc12f4a9d4f6a15545", "html": "https://github.com/xyhuangjia/books-pdf/blob/master/ProGit%20%E4%B8%AD%E6%96%87%E7%89%88.pdf" } }, { "name": "Shell脚本学习指南.pdf", "path": "Shell脚本学习指南.pdf", "sha": "e35cb83fb53b9802965e6cbf4987f4790ff3e577", "size": 30219813, "url": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/Shell%E8%84%9A%E6%9C%AC%E5%AD%A6%E4%B9%A0%E6%8C%87%E5%8D%97.pdf?ref=master", "html_url": "https://github.com/xyhuangjia/books-pdf/blob/master/Shell%E8%84%9A%E6%9C%AC%E5%AD%A6%E4%B9%A0%E6%8C%87%E5%8D%97.pdf", "git_url": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/e35cb83fb53b9802965e6cbf4987f4790ff3e577", "download_url": "https://raw.githubusercontent.com/xyhuangjia/books-pdf/master/Shell%E8%84%9A%E6%9C%AC%E5%AD%A6%E4%B9%A0%E6%8C%87%E5%8D%97.pdf", "type": "file", "_links": { "self": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/Shell%E8%84%9A%E6%9C%AC%E5%AD%A6%E4%B9%A0%E6%8C%87%E5%8D%97.pdf?ref=master", "git": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/e35cb83fb53b9802965e6cbf4987f4790ff3e577", "html": "https://github.com/xyhuangjia/books-pdf/blob/master/Shell%E8%84%9A%E6%9C%AC%E5%AD%A6%E4%B9%A0%E6%8C%87%E5%8D%97.pdf" } }, { "name": "UNIX环境高级编程(中文第三版)_扫描版_22.2M.pdf", "path": "UNIX环境高级编程(中文第三版)_扫描版_22.2M.pdf", "sha": "fa9be9b2d497b46600a1ac158f1598d1ef901e88", "size": 23308975, "url": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/UNIX%E7%8E%AF%E5%A2%83%E9%AB%98%E7%BA%A7%E7%BC%96%E7%A8%8B%EF%BC%88%E4%B8%AD%E6%96%87%E7%AC%AC%E4%B8%89%E7%89%88%EF%BC%89_%E6%89%AB%E6%8F%8F%E7%89%88_22.2M.pdf?ref=master", "html_url": "https://github.com/xyhuangjia/books-pdf/blob/master/UNIX%E7%8E%AF%E5%A2%83%E9%AB%98%E7%BA%A7%E7%BC%96%E7%A8%8B%EF%BC%88%E4%B8%AD%E6%96%87%E7%AC%AC%E4%B8%89%E7%89%88%EF%BC%89_%E6%89%AB%E6%8F%8F%E7%89%88_22.2M.pdf", "git_url": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/fa9be9b2d497b46600a1ac158f1598d1ef901e88", "download_url": "https://raw.githubusercontent.com/xyhuangjia/books-pdf/master/UNIX%E7%8E%AF%E5%A2%83%E9%AB%98%E7%BA%A7%E7%BC%96%E7%A8%8B%EF%BC%88%E4%B8%AD%E6%96%87%E7%AC%AC%E4%B8%89%E7%89%88%EF%BC%89_%E6%89%AB%E6%8F%8F%E7%89%88_22.2M.pdf", "type": "file", "_links": { "self": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/UNIX%E7%8E%AF%E5%A2%83%E9%AB%98%E7%BA%A7%E7%BC%96%E7%A8%8B%EF%BC%88%E4%B8%AD%E6%96%87%E7%AC%AC%E4%B8%89%E7%89%88%EF%BC%89_%E6%89%AB%E6%8F%8F%E7%89%88_22.2M.pdf?ref=master", "git": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/fa9be9b2d497b46600a1ac158f1598d1ef901e88", "html": "https://github.com/xyhuangjia/books-pdf/blob/master/UNIX%E7%8E%AF%E5%A2%83%E9%AB%98%E7%BA%A7%E7%BC%96%E7%A8%8B%EF%BC%88%E4%B8%AD%E6%96%87%E7%AC%AC%E4%B8%89%E7%89%88%EF%BC%89_%E6%89%AB%E6%8F%8F%E7%89%88_22.2M.pdf" } }, { "name": "UNIX网络编程第1卷.pdf", "path": "UNIX网络编程第1卷.pdf", "sha": "a8784c0c17cf13ae183951297a4b8a42736ae3b0", "size": 28837819, "url": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/UNIX%E7%BD%91%E7%BB%9C%E7%BC%96%E7%A8%8B%E7%AC%AC1%E5%8D%B7.pdf?ref=master", "html_url": "https://github.com/xyhuangjia/books-pdf/blob/master/UNIX%E7%BD%91%E7%BB%9C%E7%BC%96%E7%A8%8B%E7%AC%AC1%E5%8D%B7.pdf", "git_url": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/a8784c0c17cf13ae183951297a4b8a42736ae3b0", "download_url": "https://raw.githubusercontent.com/xyhuangjia/books-pdf/master/UNIX%E7%BD%91%E7%BB%9C%E7%BC%96%E7%A8%8B%E7%AC%AC1%E5%8D%B7.pdf", "type": "file", "_links": { "self": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/UNIX%E7%BD%91%E7%BB%9C%E7%BC%96%E7%A8%8B%E7%AC%AC1%E5%8D%B7.pdf?ref=master", "git": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/a8784c0c17cf13ae183951297a4b8a42736ae3b0", "html": "https://github.com/xyhuangjia/books-pdf/blob/master/UNIX%E7%BD%91%E7%BB%9C%E7%BC%96%E7%A8%8B%E7%AC%AC1%E5%8D%B7.pdf" } }, { "name": "UserManual.pdf", "path": "UserManual.pdf", "sha": "c86ffd215bdef1cc067eb176b7580d8ad2422286", "size": 6291357, "url": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/UserManual.pdf?ref=master", "html_url": "https://github.com/xyhuangjia/books-pdf/blob/master/UserManual.pdf", "git_url": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/c86ffd215bdef1cc067eb176b7580d8ad2422286", "download_url": "https://raw.githubusercontent.com/xyhuangjia/books-pdf/master/UserManual.pdf", "type": "file", "_links": { "self": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/UserManual.pdf?ref=master", "git": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/c86ffd215bdef1cc067eb176b7580d8ad2422286", "html": "https://github.com/xyhuangjia/books-pdf/blob/master/UserManual.pdf" } }, { "name": "Windows网络编程.pdf", "path": "Windows网络编程.pdf", "sha": "f59d14445d11a7f08d7d9cd0f3777265361c523d", "size": 10911358, "url": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/Windows%E7%BD%91%E7%BB%9C%E7%BC%96%E7%A8%8B.pdf?ref=master", "html_url": "https://github.com/xyhuangjia/books-pdf/blob/master/Windows%E7%BD%91%E7%BB%9C%E7%BC%96%E7%A8%8B.pdf", "git_url": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/f59d14445d11a7f08d7d9cd0f3777265361c523d", "download_url": "https://raw.githubusercontent.com/xyhuangjia/books-pdf/master/Windows%E7%BD%91%E7%BB%9C%E7%BC%96%E7%A8%8B.pdf", "type": "file", "_links": { "self": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/Windows%E7%BD%91%E7%BB%9C%E7%BC%96%E7%A8%8B.pdf?ref=master", "git": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/f59d14445d11a7f08d7d9cd0f3777265361c523d", "html": "https://github.com/xyhuangjia/books-pdf/blob/master/Windows%E7%BD%91%E7%BB%9C%E7%BC%96%E7%A8%8B.pdf" } }, { "name": "[On Lisp]中文完整版.pdf", "path": "[On Lisp]中文完整版.pdf", "sha": "0c3a2236456ca508ab921e8392cadad8e93dac86", "size": 2423917, "url": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/[On%20Lisp]%E4%B8%AD%E6%96%87%E5%AE%8C%E6%95%B4%E7%89%88.pdf?ref=master", "html_url": "https://github.com/xyhuangjia/books-pdf/blob/master/[On%20Lisp]%E4%B8%AD%E6%96%87%E5%AE%8C%E6%95%B4%E7%89%88.pdf", "git_url": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/0c3a2236456ca508ab921e8392cadad8e93dac86", "download_url": "https://raw.githubusercontent.com/xyhuangjia/books-pdf/master/%5BOn%20Lisp%5D%E4%B8%AD%E6%96%87%E5%AE%8C%E6%95%B4%E7%89%88.pdf", "type": "file", "_links": { "self": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/[On%20Lisp]%E4%B8%AD%E6%96%87%E5%AE%8C%E6%95%B4%E7%89%88.pdf?ref=master", "git": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/0c3a2236456ca508ab921e8392cadad8e93dac86", "html": "https://github.com/xyhuangjia/books-pdf/blob/master/[On%20Lisp]%E4%B8%AD%E6%96%87%E5%AE%8C%E6%95%B4%E7%89%88.pdf" } }, { "name": "[SQLite权威指南(第二版)].Grant.Allen.扫描版.pdf", "path": "[SQLite权威指南(第二版)].Grant.Allen.扫描版.pdf", "sha": "81451343bf4035ed583835de91b7a0d7ac7c9cd0", "size": 31921922, "url": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/[SQLite%E6%9D%83%E5%A8%81%E6%8C%87%E5%8D%97%EF%BC%88%E7%AC%AC%E4%BA%8C%E7%89%88%EF%BC%89].Grant.Allen.%E6%89%AB%E6%8F%8F%E7%89%88.pdf?ref=master", "html_url": "https://github.com/xyhuangjia/books-pdf/blob/master/[SQLite%E6%9D%83%E5%A8%81%E6%8C%87%E5%8D%97%EF%BC%88%E7%AC%AC%E4%BA%8C%E7%89%88%EF%BC%89].Grant.Allen.%E6%89%AB%E6%8F%8F%E7%89%88.pdf", "git_url": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/81451343bf4035ed583835de91b7a0d7ac7c9cd0", "download_url": "https://raw.githubusercontent.com/xyhuangjia/books-pdf/master/%5BSQLite%E6%9D%83%E5%A8%81%E6%8C%87%E5%8D%97%EF%BC%88%E7%AC%AC%E4%BA%8C%E7%89%88%EF%BC%89%5D.Grant.Allen.%E6%89%AB%E6%8F%8F%E7%89%88.pdf", "type": "file", "_links": { "self": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/[SQLite%E6%9D%83%E5%A8%81%E6%8C%87%E5%8D%97%EF%BC%88%E7%AC%AC%E4%BA%8C%E7%89%88%EF%BC%89].Grant.Allen.%E6%89%AB%E6%8F%8F%E7%89%88.pdf?ref=master", "git": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/81451343bf4035ed583835de91b7a0d7ac7c9cd0", "html": "https://github.com/xyhuangjia/books-pdf/blob/master/[SQLite%E6%9D%83%E5%A8%81%E6%8C%87%E5%8D%97%EF%BC%88%E7%AC%AC%E4%BA%8C%E7%89%88%EF%BC%89].Grant.Allen.%E6%89%AB%E6%8F%8F%E7%89%88.pdf" } }, { "name": "automake.pdf", "path": "automake.pdf", "sha": "8466917750b8b9e0b3fcd02e74f96bb55b5269f8", "size": 887461, "url": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/automake.pdf?ref=master", "html_url": "https://github.com/xyhuangjia/books-pdf/blob/master/automake.pdf", "git_url": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/8466917750b8b9e0b3fcd02e74f96bb55b5269f8", "download_url": "https://raw.githubusercontent.com/xyhuangjia/books-pdf/master/automake.pdf", "type": "file", "_links": { "self": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/automake.pdf?ref=master", "git": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/8466917750b8b9e0b3fcd02e74f96bb55b5269f8", "html": "https://github.com/xyhuangjia/books-pdf/blob/master/automake.pdf" } }, { "name": "libevent参考手册(中文版).pdf", "path": "libevent参考手册(中文版).pdf", "sha": "fc2caeb950892c026312439f2f5c11f22df9f9dd", "size": 5052440, "url": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/libevent%E5%8F%82%E8%80%83%E6%89%8B%E5%86%8C(%E4%B8%AD%E6%96%87%E7%89%88).pdf?ref=master", "html_url": "https://github.com/xyhuangjia/books-pdf/blob/master/libevent%E5%8F%82%E8%80%83%E6%89%8B%E5%86%8C(%E4%B8%AD%E6%96%87%E7%89%88).pdf", "git_url": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/fc2caeb950892c026312439f2f5c11f22df9f9dd", "download_url": "https://raw.githubusercontent.com/xyhuangjia/books-pdf/master/libevent%E5%8F%82%E8%80%83%E6%89%8B%E5%86%8C(%E4%B8%AD%E6%96%87%E7%89%88).pdf", "type": "file", "_links": { "self": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/libevent%E5%8F%82%E8%80%83%E6%89%8B%E5%86%8C(%E4%B8%AD%E6%96%87%E7%89%88).pdf?ref=master", "git": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/fc2caeb950892c026312439f2f5c11f22df9f9dd", "html": "https://github.com/xyhuangjia/books-pdf/blob/master/libevent%E5%8F%82%E8%80%83%E6%89%8B%E5%86%8C(%E4%B8%AD%E6%96%87%E7%89%88).pdf" } }, { "name": "linux_programming_unleashed.pdf", "path": "linux_programming_unleashed.pdf", "sha": "306675013ed4e6953213fc5f00fd12ba4c912344", "size": 6598006, "url": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/linux_programming_unleashed.pdf?ref=master", "html_url": "https://github.com/xyhuangjia/books-pdf/blob/master/linux_programming_unleashed.pdf", "git_url": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/306675013ed4e6953213fc5f00fd12ba4c912344", "download_url": "https://raw.githubusercontent.com/xyhuangjia/books-pdf/master/linux_programming_unleashed.pdf", "type": "file", "_links": { "self": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/linux_programming_unleashed.pdf?ref=master", "git": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/306675013ed4e6953213fc5f00fd12ba4c912344", "html": "https://github.com/xyhuangjia/books-pdf/blob/master/linux_programming_unleashed.pdf" } }, { "name": "onlisp-cn_20140217.pdf", "path": "onlisp-cn_20140217.pdf", "sha": "066d88ffd04e30371aab2fba1fb143708883e752", "size": 2073342, "url": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/onlisp-cn_20140217.pdf?ref=master", "html_url": "https://github.com/xyhuangjia/books-pdf/blob/master/onlisp-cn_20140217.pdf", "git_url": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/066d88ffd04e30371aab2fba1fb143708883e752", "download_url": "https://raw.githubusercontent.com/xyhuangjia/books-pdf/master/onlisp-cn_20140217.pdf", "type": "file", "_links": { "self": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/onlisp-cn_20140217.pdf?ref=master", "git": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/066d88ffd04e30371aab2fba1fb143708883e752", "html": "https://github.com/xyhuangjia/books-pdf/blob/master/onlisp-cn_20140217.pdf" } }, { "name": "python基础教程(第二版).pdf", "path": "python基础教程(第二版).pdf", "sha": "fd89991dbdec6eda59fcc5bc7369db029f74dc66", "size": 34679310, "url": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/python%E5%9F%BA%E7%A1%80%E6%95%99%E7%A8%8B%EF%BC%88%E7%AC%AC%E4%BA%8C%E7%89%88%EF%BC%89.pdf?ref=master", "html_url": "https://github.com/xyhuangjia/books-pdf/blob/master/python%E5%9F%BA%E7%A1%80%E6%95%99%E7%A8%8B%EF%BC%88%E7%AC%AC%E4%BA%8C%E7%89%88%EF%BC%89.pdf", "git_url": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/fd89991dbdec6eda59fcc5bc7369db029f74dc66", "download_url": "https://raw.githubusercontent.com/xyhuangjia/books-pdf/master/python%E5%9F%BA%E7%A1%80%E6%95%99%E7%A8%8B%EF%BC%88%E7%AC%AC%E4%BA%8C%E7%89%88%EF%BC%89.pdf", "type": "file", "_links": { "self": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/python%E5%9F%BA%E7%A1%80%E6%95%99%E7%A8%8B%EF%BC%88%E7%AC%AC%E4%BA%8C%E7%89%88%EF%BC%89.pdf?ref=master", "git": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/fd89991dbdec6eda59fcc5bc7369db029f74dc66", "html": "https://github.com/xyhuangjia/books-pdf/blob/master/python%E5%9F%BA%E7%A1%80%E6%95%99%E7%A8%8B%EF%BC%88%E7%AC%AC%E4%BA%8C%E7%89%88%EF%BC%89.pdf" } }, { "name": "slime.pdf", "path": "slime.pdf", "sha": "d31a50c9ca9bddeefae9c5933989cf9d1ae53a76", "size": 685543, "url": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/slime.pdf?ref=master", "html_url": "https://github.com/xyhuangjia/books-pdf/blob/master/slime.pdf", "git_url": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/d31a50c9ca9bddeefae9c5933989cf9d1ae53a76", "download_url": "https://raw.githubusercontent.com/xyhuangjia/books-pdf/master/slime.pdf", "type": "file", "_links": { "self": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/slime.pdf?ref=master", "git": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/d31a50c9ca9bddeefae9c5933989cf9d1ae53a76", "html": "https://github.com/xyhuangjia/books-pdf/blob/master/slime.pdf" } }, { "name": "vim_user_manual_603.0.pdf", "path": "vim_user_manual_603.0.pdf", "sha": "d13b4ea3243bf89813f47eb6e5eb50f1deec6cf4", "size": 2341712, "url": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/vim_user_manual_603.0.pdf?ref=master", "html_url": "https://github.com/xyhuangjia/books-pdf/blob/master/vim_user_manual_603.0.pdf", "git_url": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/d13b4ea3243bf89813f47eb6e5eb50f1deec6cf4", "download_url": "https://raw.githubusercontent.com/xyhuangjia/books-pdf/master/vim_user_manual_603.0.pdf", "type": "file", "_links": { "self": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/vim_user_manual_603.0.pdf?ref=master", "git": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/d13b4ea3243bf89813f47eb6e5eb50f1deec6cf4", "html": "https://github.com/xyhuangjia/books-pdf/blob/master/vim_user_manual_603.0.pdf" } }, { "name": "实用Common.Lisp编程.pdf", "path": "实用Common.Lisp编程.pdf", "sha": "25f1a3919754435edfb5f4c3cc62f8c2f7da259f", "size": 50709700, "url": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/%E5%AE%9E%E7%94%A8Common.Lisp%E7%BC%96%E7%A8%8B.pdf?ref=master", "html_url": "https://github.com/xyhuangjia/books-pdf/blob/master/%E5%AE%9E%E7%94%A8Common.Lisp%E7%BC%96%E7%A8%8B.pdf", "git_url": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/25f1a3919754435edfb5f4c3cc62f8c2f7da259f", "download_url": "https://raw.githubusercontent.com/xyhuangjia/books-pdf/master/%E5%AE%9E%E7%94%A8Common.Lisp%E7%BC%96%E7%A8%8B.pdf", "type": "file", "_links": { "self": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/%E5%AE%9E%E7%94%A8Common.Lisp%E7%BC%96%E7%A8%8B.pdf?ref=master", "git": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/25f1a3919754435edfb5f4c3cc62f8c2f7da259f", "html": "https://github.com/xyhuangjia/books-pdf/blob/master/%E5%AE%9E%E7%94%A8Common.Lisp%E7%BC%96%E7%A8%8B.pdf" } }, { "name": "计算机程序的构造和解释(SICP中文第2版).pdf", "path": "计算机程序的构造和解释(SICP中文第2版).pdf", "sha": "bfa8fb4f0b811b5a68c0e6580a6f54628fb6e21c", "size": 26887956, "url": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/%E8%AE%A1%E7%AE%97%E6%9C%BA%E7%A8%8B%E5%BA%8F%E7%9A%84%E6%9E%84%E9%80%A0%E5%92%8C%E8%A7%A3%E9%87%8A%EF%BC%88SICP%E4%B8%AD%E6%96%87%E7%AC%AC2%E7%89%88%EF%BC%89.pdf?ref=master", "html_url": "https://github.com/xyhuangjia/books-pdf/blob/master/%E8%AE%A1%E7%AE%97%E6%9C%BA%E7%A8%8B%E5%BA%8F%E7%9A%84%E6%9E%84%E9%80%A0%E5%92%8C%E8%A7%A3%E9%87%8A%EF%BC%88SICP%E4%B8%AD%E6%96%87%E7%AC%AC2%E7%89%88%EF%BC%89.pdf", "git_url": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/bfa8fb4f0b811b5a68c0e6580a6f54628fb6e21c", "download_url": "https://raw.githubusercontent.com/xyhuangjia/books-pdf/master/%E8%AE%A1%E7%AE%97%E6%9C%BA%E7%A8%8B%E5%BA%8F%E7%9A%84%E6%9E%84%E9%80%A0%E5%92%8C%E8%A7%A3%E9%87%8A%EF%BC%88SICP%E4%B8%AD%E6%96%87%E7%AC%AC2%E7%89%88%EF%BC%89.pdf", "type": "file", "_links": { "self": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/%E8%AE%A1%E7%AE%97%E6%9C%BA%E7%A8%8B%E5%BA%8F%E7%9A%84%E6%9E%84%E9%80%A0%E5%92%8C%E8%A7%A3%E9%87%8A%EF%BC%88SICP%E4%B8%AD%E6%96%87%E7%AC%AC2%E7%89%88%EF%BC%89.pdf?ref=master", "git": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/bfa8fb4f0b811b5a68c0e6580a6f54628fb6e21c", "html": "https://github.com/xyhuangjia/books-pdf/blob/master/%E8%AE%A1%E7%AE%97%E6%9C%BA%E7%A8%8B%E5%BA%8F%E7%9A%84%E6%9E%84%E9%80%A0%E5%92%8C%E8%A7%A3%E9%87%8A%EF%BC%88SICP%E4%B8%AD%E6%96%87%E7%AC%AC2%E7%89%88%EF%BC%89.pdf" } }, { "name": "跟我一起写makefile.pdf", "path": "跟我一起写makefile.pdf", "sha": "31a9625259f39e9476f393953a2bf2414525bc54", "size": 540241, "url": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/%E8%B7%9F%E6%88%91%E4%B8%80%E8%B5%B7%E5%86%99makefile.pdf?ref=master", "html_url": "https://github.com/xyhuangjia/books-pdf/blob/master/%E8%B7%9F%E6%88%91%E4%B8%80%E8%B5%B7%E5%86%99makefile.pdf", "git_url": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/31a9625259f39e9476f393953a2bf2414525bc54", "download_url": "https://raw.githubusercontent.com/xyhuangjia/books-pdf/master/%E8%B7%9F%E6%88%91%E4%B8%80%E8%B5%B7%E5%86%99makefile.pdf", "type": "file", "_links": { "self": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/%E8%B7%9F%E6%88%91%E4%B8%80%E8%B5%B7%E5%86%99makefile.pdf?ref=master", "git": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/31a9625259f39e9476f393953a2bf2414525bc54", "html": "https://github.com/xyhuangjia/books-pdf/blob/master/%E8%B7%9F%E6%88%91%E4%B8%80%E8%B5%B7%E5%86%99makefile.pdf" } }, { "name": "链接器和加载器(扫描版)(jb51.net).pdf", "path": "链接器和加载器(扫描版)(jb51.net).pdf", "sha": "1592c1cd8d9d1359105d9538201459f40687d12b", "size": 22960408, "url": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/%E9%93%BE%E6%8E%A5%E5%99%A8%E5%92%8C%E5%8A%A0%E8%BD%BD%E5%99%A8(%E6%89%AB%E6%8F%8F%E7%89%88)(jb51.net).pdf?ref=master", "html_url": "https://github.com/xyhuangjia/books-pdf/blob/master/%E9%93%BE%E6%8E%A5%E5%99%A8%E5%92%8C%E5%8A%A0%E8%BD%BD%E5%99%A8(%E6%89%AB%E6%8F%8F%E7%89%88)(jb51.net).pdf", "git_url": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/1592c1cd8d9d1359105d9538201459f40687d12b", "download_url": "https://raw.githubusercontent.com/xyhuangjia/books-pdf/master/%E9%93%BE%E6%8E%A5%E5%99%A8%E5%92%8C%E5%8A%A0%E8%BD%BD%E5%99%A8(%E6%89%AB%E6%8F%8F%E7%89%88)(jb51.net).pdf", "type": "file", "_links": { "self": "https://api.github.com/repos/xyhuangjia/books-pdf/contents/%E9%93%BE%E6%8E%A5%E5%99%A8%E5%92%8C%E5%8A%A0%E8%BD%BD%E5%99%A8(%E6%89%AB%E6%8F%8F%E7%89%88)(jb51.net).pdf?ref=master", "git": "https://api.github.com/repos/xyhuangjia/books-pdf/git/blobs/1592c1cd8d9d1359105d9538201459f40687d12b", "html": "https://github.com/xyhuangjia/books-pdf/blob/master/%E9%93%BE%E6%8E%A5%E5%99%A8%E5%92%8C%E5%8A%A0%E8%BD%BD%E5%99%A8(%E6%89%AB%E6%8F%8F%E7%89%88)(jb51.net).pdf" } } ]

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.