Thank you for your interest in contributing to CSZ Ltd. ("We" or "Us").
The purpose of this contributor agreement ("Agreement") is to clarify and document the rights granted by contributors to Us.
package fdcache | |
import ( | |
"fmt" | |
"io" | |
"log" | |
"os" | |
"sync" | |
"sync/atomic" | |
"time" |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Random Hex Colors in XML</title> | |
</head> | |
<body> | |
<label for="file-input">Select XML file:</label> | |
<input type="file" id="file-input"> | |
<button id="randomize-btn" disabled>Randomize Hex Colors</button> |
Thank you for your interest in contributing to CSZ Ltd. ("We" or "Us").
The purpose of this contributor agreement ("Agreement") is to clarify and document the rights granted by contributors to Us.
package main | |
import ( | |
"bufio" | |
"crypto/tls" | |
"io" | |
"log" | |
"net" | |
"net/url" | |
"os" |
module RCFiveGenerator | |
go 1.16 | |
require ( | |
github.com/yeqown/go-qrcode v1.5.5 | |
golang.org/x/tools v0.1.4 | |
) | |
replace github.com/yeqown/go-qrcode => ./go-qrcode |
package main | |
import ( | |
"bytes" | |
"context" | |
"encoding/json" | |
"flag" | |
"fmt" | |
"io/ioutil" | |
"log" |
package main | |
import ( | |
"encoding/json" | |
"fmt" | |
"log" | |
"net/http" | |
"strings" | |
"time" | |
) |
package main | |
import ( | |
"fmt" | |
"log" | |
"sync" | |
"sync/atomic" | |
"time" | |
"golang.org/x/net/websocket" |
using System; | |
using System.IO; | |
using System.Security.Cryptography; | |
using System.Text; | |
namespace ConsoleApp1 | |
{ | |
class Program | |
{ | |
private byte[] bDebug = new byte[16] |