Content :
- Go to https://hexed.it/
- Click
Open Filein the top left corner, navigate to instalation folder and selectsublime_text.exe - On the
Search forbar in the left panel, input: 0F B6 51 05 83 F2 01 - Now in the editor, click on the first byte (0F) and start replacing each byte by: C6 41 05 01 B2 00 90
- Finally, in the top left corner again, click on
Save asand replace the old executable file with the newly created one.
Enjoy an Unlimited User License!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Auto format changed java files using google-java-format. | |
| # To install, copy this file into $repo/.git/hooks and remove the .sh extension. | |
| # Download the google-java-format JAR from | |
| # https://github.com/google/google-java-format | |
| # A more mature implementation of this would be a plugin for Yelp's pre-commit library: | |
| # http://pre-commit.com/ | |
| echo "Running auto-formatter for any changed Java files" | |
| echo "(formatting changes will be automatically added to your commit)" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package my.netty.http.upload; | |
| import io.netty.channel.Channel; | |
| import io.netty.channel.ChannelInitializer; | |
| import io.netty.channel.ChannelPipeline; | |
| import io.netty.channel.EventLoopGroup; | |
| import io.netty.channel.nio.NioEventLoopGroup; | |
| import io.netty.channel.socket.SocketChannel; | |
| import io.netty.channel.socket.nio.NioServerSocketChannel; | |
| import io.netty.handler.codec.http.HttpRequestDecoder; |
SSH authentication agent does not automatically start when using it from a remote server. This results in the following error message:
$ git pull
Permission denied (publickey).
fatal: The remote end hung up unexpectedly
$ ssh-add ~/my-ssh-key.pem
Could not open a connection to your authentication agent.
To fix it requires manually starting ssh-agent:
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
基于上游仓库某次提交做了修改
----(a)---------------> upstream/up_master
\
------(b)-------------> origin/my_master
一段时间之后,上游仓库更新了
----(a)--(c)--(d)--(e)--(f)--(g)--> upstream/up_master
NewerOlder