下载地址:https://pan.baidu.com/s/1qh49NXUm0K0VlJo82d723A
提取码:4p8h
激活方式见:Patch/jetbrains-agent/README.txt
- 如果你下载的jetbrains-agent.jar小于2M,肯定是没有下载完全(可对照sha1sum.txt)。
- 请保留压缩包内的important.txt和jetbrains-agent.jar放在同一个目录,且不要改动内容!
- 传统的vmoptions配置同样可用,但我还是推荐你按照本文档的方式配置!
Usage: 0. Download the zip package and get jetbrains-agent.jar first. Download page: https://zhile.io/2018/08/17/jetbrains-license-server-crack.html
- Run the IDE and evalutate for free. You can reset eval by using: reset_eval script.
- Drag the jetbrains-agent.jar into the IDE window (Or install it as an IDE plugin). (Actually you can drag jetbrains-agent-latest.zip too) Click “Restart” button to restart your IDE.
- You will see the JetbrainsAgent Helper dialog. Select license type and click install button.
- Restart IDE, and all done. x. Support “License server” and “Activation code”: 1). Entry license server address: https://fls.jetbrains-agent.com (Or http, if failed see no.2 [below]) 2). Active offline with the activation code file: ACTIVATION_CODE.txt License key is in legacy format == Key invalid,check your agent’s config again If you need a custom license name, visit: https://zhile.io/custom-license.html 3). Now you can activate jetbrains paid plugin with jetbrains-agent + activation code/license server! Jetbrains paid plugins activation code: https://zhile.io/jetbrains-paid-plugins-license.html All paid plugins: https://plugins.jetbrains.com/search?isPaid=true
使用方法: 0. 先下载压缩包解压后得到jetbrains-agent.jar。 下载页面:https://zhile.io/2018/08/17/jetbrains-license-server-crack.html
- 启动你的IDE,如果上来就需要注册,选择:试用(Evaluate for free)进入IDE。 如果你的IDE试用已过期可以使用reset_eval文件夹内的脚本重置一下。
- 将 jetbrains-agent.jar 拖进IDE窗口(或者当作IDE插件安装),点 “Restart” 按钮重启IDE。 (事实上你拖 jetbrains-agent-latest.zip 进去IDE窗口也没问题)
- 在弹出的JetbrainsAgent Helper对话框中,选择激活方式,点击安装按钮。
- 重启IDE,搞定。 x. 支持两种注册方式:License server 和 Activation code: 1). 选择License server方式,地址填入:https://fls.jetbrains-agent.com (HTTP也可用,网络不佳用第2种方式) 2). 选择Activation code方式离线激活,请使用:ACTIVATION_CODE.txt 内的注册码激活 License key is in legacy format == Key invalid,表示agent配置未生效。 如果你需要自定义License name,请访问:https://zhile.io/custom-license.html 3). 现在你可以使用jetbrains-agent + activation code/license server激活jetbrains平台的付费插件了! 现有Jetbrains付费插件Activation code: https://zhile.io/jetbrains-paid-plugins-license.html 现在有这些付费插件:https://plugins.jetbrains.com/search?isPaid=true
本项目在最新2020.1上测试通过。
理论上适用于目前Jetbrains全系列所有新老版本。
IDE升级会从旧版本导入以上设置,导入配置后可能提示未注册(因为刚导入的vmoptions未生效),直接重启IDE即可,无需其他操作。
=========================================================
======= Jetbrains Activation Code And License Server Crack =======
======= https://zhile.io =======
======= v3.2.0, Build Date: 2020-04-10 =======
package db
import (
"fmt"
_ "github.com/globalsign/mgo/bson"
"github.com/jinzhu/gorm"
_ "github.com/jinzhu/gorm/dialects/mysql"
"ningtogo/model"
"os"
"strings"
)
type Post struct {
gorm.Model
PostId string `gorm:"column:pid"`
Author string `gorm:"column:author"`
Title string `gorm:"column:title"`
Content string `gorm:"column:content"`
Pv int `gorm:"column:pv"`
Tags string `gorm:"column:tags"`
Type int `gorm:"column:type"`
}
type User struct {
gorm.Model
}
func(Post) TableName() string {
return "posts"
}
var db *gorm.DB
func getType(t string) int {
if t == "译" {
return 1
} else if t == "转" {
return 2
} else {
return 0
}
}
func init() {
fmt.Println("hello")
db, err := gorm.Open("mysql", "root:Fighting321@tcp(118.24.4.114:3306)/blog?charset=utf8")
if err != nil {
panic(err)
}
var posts []model.Post
err = model.PostC.Find(nil).All(&posts)
if err != nil {
panic(err)
}
fmt.Println(len(posts))
newPosts := make([]Post, 0, len(posts))
for i := 0; i < len(posts); i++ {
newPost := Post{}
newPost.PostId = posts[i].Id.Hex()
newPost.Author = posts[i].Author.Hex()
newPost.Title = posts[i].Title
newPost.Content = posts[i].Content
newPost.Pv = posts[i].PV
newPost.Tags = strings.Join(posts[i].Tags, ";")
newPost.Type = getType(posts[i].Type)
newPosts = append(newPosts, newPost)
}
for i, post := range newPosts {
fmt.Println(i)
err = db.Create(&post).Error
if err != nil {
panic(err)
}
}
os.Exit(0)
}