记录精彩的程序人生
存档:
2021 年 02 月 (9)
@ECHO ON ECHO 该文件由轻松矿工(www.qskg.top)自动生成,仅供排查错误使用. ECHO 使用之前请先停止挖矿. cd "C:\轻松矿工\exts\t-rex-0_19_7_cuda11_1" C: "t-rex.exe" -a octopus -o stratum+tcp://cfx.ss.poolflare.com:3366 -u 0x10000004f223caa220e9e58418324e38894b3886.002 --log-path "C:\轻松矿工\log\20210219_202535_CFX_log.txt" -p x PAUSE https://github.com/trexminer/T-Rex/releases 0x10000004f223caa220e9e58418324e38894b3886 0xb73cb8130681d8553a822aa4f491f782fc2fd0d9
flintos https://os.flintos.cn/ 公众号:星火矿池
https://blog.csdn.net/w815878564/article/details/79699559 JxBrowser是一个基于chromium的Java浏览器组件,同时支持Swing以及JavaFx。因为是基于chromium开发的,所以JxBrowser对于H5以及CSS3的支持非常良好,兼容性也不错,完全可以代替JavaFx自带的Webview。但是在有一些使用场景上,JxBrowser会出现一些问题,比如我希望在布局容器上除了添加JxBrowser还想添加一些其他控件,按照正常情况来讲,哪个控件最后添加就会显示在最上层从而覆盖其他控件,但是JxBrowser始终会出现在最上层。 查看源码得知,JxBrowser在创建浏览器控件的时候有两个类型,一个是light一个是heavy,默认情况是创建heavy。我们将这个type改为light即可。代码如下所示: BrowserContextParams params = new BrowserContextParams(path); BrowserContext context = new BrowserContext....
Following on from my earlier Options Window Color Analysis, here's the Search field in the Options window, also darkened, important for air traffic systems that need to avoid the white glare of default UI text fields. The key to this is this: UIManager.put("TextField.background", Color.LIGHT_GRAY); Below is code for a runtime look and feel swither. @OnShowing @ActionID(category = "Switcher", id = "org.m1.Startable") @ActionRegistration(displayName = "Switcher") @ActionReference(path = "Toolbar....
我的2020 今天我和爸爸一起去动物园海洋馆看海豚的表演,表演馆里有两个训练员和一个海豚。海豚游得很快而且是倒着游的,它时而游到训练员的脚边,此时训练员就会给它一些吃的,就像给它一些奖励一样。训练员把手往上举,海豚也跟着喷出一道水柱,就和喷泉喷出来的水柱一样。训练员又转了几圈,海豚也跟着一起转,虽然在普通人眼里,海豚只不过是简单的转了几个圈,但在细心人的眼中,海豚就像在跳着自己发明的舞蹈。第二个训练员从桥上跳到水里开始游泳,无论训练员游到哪里,小海豚也跟着游到哪里。有时小海豚还像水上飞艇一样用头顶着训练员在水上飞驰。训练员上了岸,用手打着拍子,小海豚跟着拍子的节奏用自己的叫声应和着,仿佛在唱着美妙的歌声。我和爸爸看完了小海豚精彩的表演,才依依不舍的离开了海洋馆。这真是令人难忘的一天啊!
package com.xxx; import com.google.zxing.BarcodeFormat; import com.google.zxing.EncodeHintType; import com.google.zxing.MultiFormatWriter; import com.google.zxing.WriterException; import com.google.zxing.client.j2se.MatrixToImageWriter; import com.google.zxing.common.BitMatrix; import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel; import java.awt.Color; import java.awt.Font; import java.awt.FontMetrics; import java.awt.Graphics; import java.awt.Graphics2D; import java.awt.image.BufferedIm....
https://www.jianshu.com/p/8ae984e6bafc?utm_campaign=maleskine&utm_content=note&utm_medium=seo_notes&utm_source=recommendation 上章讲到账户的查询,本章讲述账户转账。 以太坊转账 We3j web3j = Web3j.build(new HttpService(ConstantLibs.WEB3_ADDRESS)); Credentials credentials = WalletTool.loadCredentials(fromAddress); EthGetTransactionCount ethGetTransactionCount = web3j.ethGetTransactionCount( fromAddress, DefaultBlockParameterName.LATEST).sendAsync().get(); BigInteger nonce = ethGetTransactionCount.getTransact....
https://www.cnblogs.com/it-tsz/p/11696261.html 比特币BTC 水龙头: https://coinfaucet.eu/en/btc-testnet/ 正式网浏览器地址: https://btc.com/ https://explorer.bitcoin.com/btc https://chain.so/btc https://live.blockcypher.com/btc/ https://www.blockchain.com/zh/explorer 测试网浏览器地址: https://live.blockcypher.com/btc-testnet/ https://explorer.bitcoin.com/tbtc https://chain.so/testnet/btc 比特币现金BCH 水龙头: https://coinfaucet.eu/en/bch-testnet/ 正式网浏览器地址: https://explorer.bitcoin.com/bch https://bch.btc.com/ https://www.bl....
https://blogs.oracle.com/geertjan/integrating-a-progress-bar-into-a-wizard Normally, when you create a wizard, as described here, and you have your own iterator, you'll have a class signature like this: public final class MyWizardWizardIterator implements WizardDescriptor.InstantiatingIterator<WizardDescriptor> { Let's now imagine that you've got some kind of long running process your wizard needs to perform. Maybe the wizard needs to connect to something, which could take some time. Sta....