目录

我的学习分享

记录精彩的程序人生

【Netbeans】project.properties未同步更新导致项目无法编译 有更新!

现象:执行clean and build platform.download: ant -f D:\\GitHub\\acuibc clean build D:\NetBeans82\harness\suite.xml:130: Cannot open D:\GitHub\acuibc\${project.com.acuilab.bc.cfx.flappeebee}\nbproject\project.xml BUILD FAILED (total time: 0 seconds) 这个项目已经移除了,不知为何没同步删除,手动删除后正常编译

【Conflux】备忘 有更新!

Conflux是一个在不牺牲任何去中心化程度及安全性的情况下,以PoW共识机制率先实现高 TPS 的公有链。2018年11月Conflux完成首轮3500万美金融资,投资方包括红杉资本、顺为资本、百度风投、峰瑞资本、IMO Ventures、MetaStable、Fundamental Labs 等。测试网于19年4月正式上线,公链主网预计会在2020年第2季度上线。 官方网站: https://www.conflux-chain.org GitHub: https://github.com/Conflux-Chain Conflux区块浏览器: http://www.confluxscan.io Conflux钱包web版: https://wallet.confluxscan.io/ Conflux钱包桌面版: https://forum.conflux.fun/t/topic/2020 Conflux赏金计划: https://bounty.conflux-chain.org Conflux论坛: https://forum.conflux.fun/ Conflux赏金计划注册....

【Netbeans Platform】去掉启动时自动更新

经过几天的研究,发现去掉启动时自动检查更新的最好方式是完全移除Auto Update UI模块。 当然副作用是,“工具”菜单里没有插件管理选项,而对于特定的应用程序来说,这个插件管理也不是必要的,有时去掉反而是更合适。至于所需的更新功能,在UI这一块需要开发人员自己去实现(调用Auto Update Services提供的功能)。 @see org.netbeans.modules.autoupdate.ui.actions.Installer @see org.netbeans.modules.autoupdate.ui.actions.AutoupdateCheckScheduler @see org.netbeans.modules.autoupdate.ui.actions.CheckForUpdatesProviderImpl

框里个框 有更新!

2070s 5 3300 2060s 3 2600 2060 7 2300 3070 2 4500 平台 2 2200 847平台 1 1300 2060 8 2600 847平台 1 2750 3070 14 81200(5800x14) 2060 4 10000(2500x4) 平台 1 1500 847平台 2 4700(2350*2) ------------ 53800+1300=55100 55100+2600*8=55100+20800=75900 75900+86450=162350 162350+4700=167050 20210301 3060 4 18400(4600*2) 固态硬盘 300 预付电费=(软显功率+300)/1000 * 24 * 0.6 * 天数(每月按30.5计算) 20210201电费 1272 20210301电费 1486 待分摊项: 电工 200 冷风机 1296 材料695 (一捆10平方铜线,630,两个电箱,65) 20210316 3060 8400(2*4200) ###############################....

lp 有更新!

20210301 20210312 20210313 20210314 20210315

Creating Browser

https://jxbrowser.support.teamdev.com/support/solutions/articles/9000012878-creating-browser

如何维护更新日志 有更新!

https://keepachangelog.com/zh-CN/1.0.0/ markdown在线编辑器:http://jbt.github.io/markdown-editor/

【conflux】关于批量转账 有更新!

/** * 批量转账 * @param privateKey 私钥 * @param to 接收地址列表 * @param value 转账数量列表 * @param gas 矿工费 * @throws java.lang.Exception */ @Override public void batchTransfer(String privateKey, String[] tos, BigInteger[] values, BigInteger gas, BatchTransferCallback callback) throws Exception { if(tos.length != values.length) { throw new java.lang.IllegalArgumentException("tos.length must equal with values.length"); } CFXBlockChain bc = Lookup.getDefault().lookup(CFXBlockChain.class); Cfx cfx = bc.getCfx(); A....

【conflux】关于交易状态

该文章已经加密。

Stop/cancel SwingWorker thread?

https://stackoverflow.com/questions/8083768/stop-cancel-swingworker-thread

xxx 有更新!

@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/ 公众号:星火矿池

解决JxBrowser中BrowserView控件覆盖其他控件的办法

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....

【NetbeansRCP】Runtime Look and Feel Switching 有更新!

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

我的2020 今天我和爸爸一起去动物园海洋馆看海豚的表演,表演馆里有两个训练员和一个海豚。海豚游得很快而且是倒着游的,它时而游到训练员的脚边,此时训练员就会给它一些吃的,就像给它一些奖励一样。训练员把手往上举,海豚也跟着喷出一道水柱,就和喷泉喷出来的水柱一样。训练员又转了几圈,海豚也跟着一起转,虽然在普通人眼里,海豚只不过是简单的转了几个圈,但在细心人的眼中,海豚就像在跳着自己发明的舞蹈。第二个训练员从桥上跳到水里开始游泳,无论训练员游到哪里,小海豚也跟着游到哪里。有时小海豚还像水上飞艇一样用头顶着训练员在水上飞驰。训练员上了岸,用手打着拍子,小海豚跟着拍子的节奏用自己的叫声应和着,仿佛在唱着美妙的歌声。我和爸爸看完了小海豚精彩的表演,才依依不舍的离开了海洋馆。这真是令人难忘的一天啊!

Java打印

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....

以太坊入门(三)用web3j进行以太转账及代币转账

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....

Integrating a Progress Bar into a Wizard

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....

https://www.gamedeveloperstudio.com

https://www.gamedeveloperstudio.com 78429471@qq.com 你懂的