All of the following information is based on go version go1.17.1 darwin/amd64.
| GOOS | Out of the Box |
|---|---|
aix |
✅ |
android |
✅ |
| class Counter extends React.Component { | |
| constructor(props) { | |
| super(props); | |
| this.state = { | |
| count: 0, | |
| }; | |
| } | |
| increment = () => { | |
| this.setState(prevState => { |
| import {withRouter} from 'react-router-dom'; | |
| class App extends React.Component { | |
| constructor() { | |
| super(); | |
| this.state = {path: ''} | |
| } | |
| componentDidMount() { | |
| let pathName = this.props.location.pathname; |
| # Use this script to test that your Telegram bot works. | |
| # | |
| # Install the dependency | |
| # | |
| # $ gem install telegram_bot | |
| # | |
| # Run the bot | |
| # | |
| # $ ruby bot.rb | |
| # |
| function makePropertyMapper<T>(prototype: any, key: string, mapper: (value: any) => T) { | |
| const values = new Map<any, T>(); | |
| Object.defineProperty(prototype, key, { | |
| set(firstValue: any) { | |
| Object.defineProperty(this, key, { | |
| get() { | |
| return values.get(this); | |
| }, | |
| set(value: any) { | |
| values.set(this, mapper(value)); |
| package main | |
| import ( | |
| "context" | |
| "fmt" | |
| "log" | |
| "net/http" | |
| "os" | |
| "os/signal" | |
| "strconv" |
| # first install pygmentize to the mac OS X or macOS system with the built-in python | |
| sudo easy_install Pygments | |
| # then add alias to your ~/.bash_profile or ~/.bashrc or ~/.zshrc etc. | |
| alias pcat='pygmentize -f terminal256 -O style=native -g' |
npm list -g --depth=0
| package main | |
| import ( | |
| "fmt" | |
| "io" | |
| "log" | |
| "net/http" | |
| "os" | |
| "time" | |
| ) |