Konstantin Ivanov

Results 44 comments of Konstantin Ivanov

AFAIK, MD supports HTML tags like sub, sup, etc. For example `Text`, or ``` 238U is Uranium ``` 238U is Uranium

```go package main import ( "fmt" "log" "net" "unsafe" "golang.org/x/sys/windows" ) type ( DWORD uint32 ULONG uint32 NET_IFINDEX ULONG IF_INDEX NET_IFINDEX NL_ROUTE_PROTOCOL int32 MIB_IPFORWARD_PROTO NL_ROUTE_PROTOCOL MIB_IPFORWARD_TYPE int32 ) type MIB_IPFORWARDROW...

##### IPv6 [GetBestRoute2](https://docs.microsoft.com/en-us/windows/desktop/api/netioapi/nf-netioapi-getbestroute2) handles IPv6, but it appeared in Vista. ##### XP + IPv6 Probably, [GetBestInterfaceEx](https://docs.microsoft.com/en-us/windows/desktop/api/iphlpapi/nf-iphlpapi-getbestinterfaceex) can be used with a workaround or as a combination with the > calmh/syncthing@6a6ec72...

Аnyway, it turned out that the `GetAdaptersInfo` works only for IPv4.

Hi, there. There are a few questions about directives. Commonly most about INPUT_FIELD_DEFINITION. It is marked with a check mark and its input object is a parent object. 1. The...

> Is there an ETA for this? Seems, its abandoned.

```go import ( aurorapkg "github.com/logrusorgru/aurora" ) var aurora aurorapkg.Aurora // setup ``` That's all you need.

Ref.: https://github.com/logrusorgru/aurora#enabledisable-colors

And you can't the ```go func init(){ fmt.Println(aurora.colors.Bold("foo")) } ``` anyway. Please, learn Go basics at [tour.golang.org](https://tour.golang.org/welcome/1) first.