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
| 2amigos/egeoip | |
| 2amigos/qrcode-library | |
| 2amigos/resource-manager | |
| 2amigos/transliterator-helper | |
| 2amigos/yii-aws | |
| 2amigos/yii-cdn-asset-management-library | |
| 2amigos/yii-ei18n | |
| 2amigos/yii-helpers | |
| 2amigos/yii2-arrayquery-component | |
| 2amigos/yii2-bootstrap-form-helpers-library |
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
| #!/usr/bin/env python3 | |
| import json | |
| import sys | |
| import xmltodict | |
| import fileinput | |
| def main(): | |
| if len(sys.argv) != 1: | |
| print("Usage: xml-to-json") |
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
| #include <stdio.h> | |
| #include <string.h> | |
| #include <dirent.h> | |
| #include <sys/errno.h> | |
| #include <sys/stat.h> | |
| int main(int argc, char *argv[]) { | |
| DIR *dir; | |
| struct dirent *ent; | |
| struct stat st; |
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
| apiVersion: v1 | |
| kind: Service | |
| metadata: | |
| name: rancher-server | |
| namespace: cattle-system | |
| spec: | |
| ports: | |
| - port: 80 | |
| targetPort: 80 | |
| protocol: TCP |