sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
- Download zsh-autosuggestions by
| # download this file to your project folder and excute | |
| # chmod +x generate-ios.sh | |
| # then run using | |
| # ./generate-ios.sh | |
| # flutter build defaults to --release | |
| flutter build ios | |
| # make folder, add .app then zip it and rename it to .ipa | |
| mkdir -p Payload |
| <template> | |
| <div> | |
| <v-btn | |
| @click.native="selectFile" | |
| v-if="!uploadEnd && !uploading"> | |
| Upload a cover image | |
| <v-icon | |
| right | |
| aria-hidden="true"> | |
| add_a_photo |
| /* global gapi */ | |
| const API_KEY = 'YOURAPIKEYHERE'; | |
| import React, { Component } from 'react'; | |
| class App extends Component { | |
| loadYoutubeApi() { | |
| const script = document.createElement("script"); |
| package main | |
| import ( | |
| "log" | |
| "net/http" | |
| "sync" | |
| "github.com/garyburd/redigo/redis" | |
| "github.com/gorilla/websocket" | |
| uuid "github.com/satori/go.uuid" |
| /** | |
| * Think of this "main.js" file as your application bootstrap. | |
| */ | |
| import Vue from 'vue' | |
| import Resource from 'vue-resource' | |
| import VueRouter from 'vue-router' | |
| import routes from './routes' | |
| import middleware from './middleware' |
| package main | |
| import ( | |
| "fmt" | |
| "reflect" | |
| ) | |
| // Name of the struct tag used in examples | |
| const tagName = "validate" |
| typedef std::vector<char *> Vstring; | |
| Vstring split(char *cadena_str, char *delimitador){ | |
| Vstring vector_tmp; | |
| char *pch; | |
| pch = strtok(cadena_str, delimitador); | |
| while(pch != NULL){ |
| /* | |
| * Genarate rsa keys. | |
| */ | |
| package main | |
| import ( | |
| "crypto/rand" | |
| "crypto/rsa" | |
| "crypto/x509" |
| package main | |
| import ( | |
| "bufio" | |
| "fmt" | |
| "net" | |
| ) | |
| func check(err error, message string) { | |
| if err != nil { |