1,calc2.zipA very Simple Calculator, i made this to learn VB. Nothing special, though worth giving a look.2,Callbacks.zipIt is nice little application, which demonstrates WinAPI Callbacks. It hides and restors all Yahoo c hatting window in a single
/*jslint bitwise: true, node: true */ 'use strict'; var express = require('express'); var app = express(); var http = require('http').Server(app); var io = require('socket.io')(http); var SAT = require('sat'); // Import game settings. var c = requir
转换
将值转换为另一种类型。
go get -u github.com/Eun/go-convert
用法
package main
import (
"fmt"
"github.com/Eun/go-convert"
)
func main () {
// convert a int to a string
var s string
convert . MustConvert ( 1 , & s )
fmt . Printf ( "%s \n " , s )
// conve
锂
wc3 1.26a的竞技场中的生活地图
使用地图优化器混淆后的代码恢复工作
发展:
目前,由于之前已进行过优化,因此我们无法使用默认的WE来更改地图。 在WE中对地图所做的任何更改都会破坏所有现有触发器
因此,进行更改的主要方法是:
1. Change WE objects, make whatever u want with landscape
2. Save map
3. Open map with MPQEditor and replace war3map.jscr ipt wit
Gemoji国家
转到软件包以从文字表情符号中提取国家/地区名称和代码
安装
确保已设置并安装$GOPATH
$ export GOPATH= ~ /go # Or your gopath location
$ go get -u github.com/octohedron/gemojicountries
总览
例如,假设您具有字符串"Bonjour la france :France: :France: c'est bon, aussi la chine :China:"
GetAmoun
简单的GoRPC
通过从头开始在Golang中构建一个简单的RPC框架来学习RPC基本构建块。
RPC
在简单术语中,服务A希望调用服务B的功能。 但是,这两个服务不在同一内存空间中。 因此,不能直接调用它。
因此,为了进行此调用,我们需要表达如何调用以及如何通过网络传递通信的语义。
让我们想一想当我们在相同的内存空间中调用函数(本地调用)时该怎么做
type User struct {
Name string
Age int
}
var userDB = map [ int ] Us