Show Posts
|
Pages: [1] 2 »
|
I have just suggested this one on PowerGlave thread Little things that bug you/me about the forum earlier, after i posted it there, I thought it would be great to read your thoughts about this to be implemented.
Here's my actual post (edited some text)... Idk if this was suggested before, but i noticed that most merited (by users) thread/reply with multiple rows is a mess. While its good way to show off the merits received and the ones who give merits on that thread/reply. This will be more mess when time goes by knowing we have thousands of users here, imagine if half of all the members give merits to a thread/reply, it will be a long list/rows to show. That's why I would like to suggest about the showing of received merits from users on a thread/reply to be limited by one row or two three with others as collapsible content, with collapse button/anchor "Show More..." by default, then "Show Less..." Check the difference of the image result below how neat a two three rows showing merits received from this thread Merit & new rank requirements
I did some tweaking on the codes using CSS for ellipsis and JS for toggle button Insert HTML class and id with the "Show more..." button HTML elements to be added: id="collapsible-content" class="merit-content" html: <span class="toggle-button" id="toggle-button">Show more...</span> <td valign="middle" id="collapsible-content"> <div class="smalltext merit-content"> <i><span style="color:green">Merited</span> ..... </i> <div> <span class="toggle-button" id="toggle-button">Show more...</span> </td>
CSS .merit-content { overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 3; /* Limit to 3 rows/lines */ -webkit-box-orient: vertical; }
.expanded .merit-content { height: auto; /* Show full content when expanded */ -webkit-line-clamp: unset; /* Remove line clamp when expanded */ }
.toggle-button { display: inline-block; color: #476C8E; cursor: pointer; font-size: 11px; margin-top: 5px; }
JS const toggleButton = document.getElementById('toggle-button'); const collapsibleContent = document.getElementById('collapsible-content');
toggleButton.addEventListener('click', function() { if (collapsibleContent.classList.contains('expanded')) { collapsibleContent.classList.remove('expanded'); toggleButton.textContent = 'Show more...'; } else { collapsibleContent.classList.add('expanded'); toggleButton.textContent = 'Show less...'; } });
Updated code to be used on userscript extension for three rows. // ==UserScript== // @name Collapsible Received Merits // @description Collapse multiple rows of received merits in Bitcointalk // @author PX-Z // @match https://bitcointalk.org/index.php?topic=* // @version 1 // @grant none // @run-at document-end // ==/UserScript==
(function() { 'use strict';
function injectToggleButtonScript() { const script = document.createElement('script'); script.textContent = ` window.toggleFunc = function(id) { const collapsibleContent = document.getElementById(\`collapsible_content_\${id}\`); const toggleButtonId = document.getElementById(\`clickid_\${id}\`); if (collapsibleContent.classList.contains('expanded')) { collapsibleContent.classList.remove('expanded'); toggleButtonId.textContent = 'Show more...'; } else { collapsibleContent.classList.add('expanded'); toggleButtonId.textContent = 'Show less...'; } }; `; document.body.appendChild(script); } injectToggleButtonScript();
let url = window.location.href; if( url.indexOf("bitcointalk.org/index.php?topic=") > 0){ console.log('Collapsible Received Merits Initialized'); // Select all div elements with IDs starting with "subject_" const subjectDivs = document.querySelectorAll('div[id^="subject_"]'); // Iterate through each div and process the ID subjectDivs.forEach(div => { const fullId = div.id; const msgId = fullId.replace('subject_', ''); const collpaseId = `collapsible_content_${msgId}`; let tbodyTr = div.closest('td.td_headerandpost table tbody tr'); if (tbodyTr) { let tds = tbodyTr.querySelectorAll('td[valign="middle"]'); let secondTd = tds[1]; secondTd.setAttribute('id', collpaseId); let smalltextDivs = secondTd.querySelectorAll('div.smalltext'); if (smalltextDivs.length === 2) { let secondSmalltextDivs = smalltextDivs[1]; secondSmalltextDivs.setAttribute('class', `smalltext merit-content merit-h-${msgId}`); const dynamicDiv = document.querySelector(`.merit-h-${msgId}`); const height = dynamicDiv.offsetHeight; if(height > 45){ secondSmalltextDivs.insertAdjacentHTML('afterend', `<span class="toggle-button" onclick="toggleFunc('${msgId}')"><span id="clickid_${msgId}">Show more...</span></span>`); } else{ // To avoid id errors secondSmalltextDivs.insertAdjacentHTML('afterend', `<span class="toggle-button" id="toggle_button"></span>`); } } } });
document.getElementById('toggle_button').addEventListener('click', function() { const id = this.getAttribute('data-msgid'); const collapsibleContent = document.getElementById(`collapsible_content_${id}`); const toggleButtonId = document.getElementById(`clickid_${id}`); if (collapsibleContent.classList.contains('expanded')) { collapsibleContent.classList.remove('expanded'); toggleButtonId.textContent = 'Show more...'; } else { collapsibleContent.classList.add('expanded'); toggleButtonId.textContent = 'Show less...'; } });
const style = document.createElement('style'); style.textContent = ` .merit-content { overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 3; /* Limit to 3 rows/line */ -webkit-box-orient: vertical; } .expanded .merit-content { height: auto; /* Show full content when expanded */ -webkit-line-clamp: unset; /* Remove line clamp when expanded */ } .toggle-button { display: inline-block; color: #476C8E; cursor: pointer; font-size: 11px; margin-top: 2px; } `; document.head.appendChild(style); } })();
What's your thoughts on this... Note: This is only a temporary solution, there will be much better approach if sever-side script is included to enhance the code...
|
|
|
Loan application, for 5 days Loan Amount: 55 usdt Loan Purpose: Personal Loan Repay Amount: 60 (or name your price) Loan Repay Date: On 4-5 days Type of Collateral: None TRC20 - USDT address: TUspDti4fsGuKNXduGwr9u2As6D2xXeKPN I will pay after i received campaign payment on bitcointalk ( bc.game campaign) and altcoinstalks ( mixer campaign) on monday or tuesday but usually i received it on monday. I'm just short hand as i need it this sunday yet i will have my additional money in monday so no good. Thank you.
|
|
|
New Update: Chart bar will only turn red if the downtime is 5 mins and above but it will still show the downtime minutes if hovered, the same thing downtime records will be showed in the -activity section. Update: Timezone is added I just created a webpage for uptime status monitor for bitcointalk. It might not be so useful everyday but it will be soon This works on visiting the forum website for 1 minute interval and capture response time and status code in every visit. Status code >=200 && <300 is good while >=300 && <=511 is bad which always considered as downtime error. The Current status will show if the website is Up (Operational) or down (Downtime) with green and red indicators. It will record and show the last 60 days of uptime status of the website in desktop mode and 30 days in mobile mode by default. Screen capture URL: https://pxzone.online/uptime/bitcointalkGithub: https://github.com/pxzone/pxzone.online
|
|
|
What happened: As the title said, spammers now learned how to bypass spam emails and phishing URLs at least in gmail (which i currently use) to avoid redirecting it spam folder. This is a related thread posted in reddit https://www.reddit.com/r/patreon/s/JZquBZKFW2Scammers Profile Link: radarappd6.site -> radar-dapp.net
Additional Notes: The moment i received email from Patreon wonders me why i'm receiving this when i never have subscribe to someone's Patreon before. This avert me to check everything sent on the email. I thought this also a case of spoofed email but it looks like it was sent using patreon's email server. This is the email content: The URL in question (scammer profile link) that redirects to other site. I searched about "radar dapp" and I found one in cmc the "RADAR" token with its website (below) which is the main website dappradar.com
So this is just another story of giveaway scam in emails but with a twist.
|
|
|
"This move comes just after the SEC recently said it will start naming unlicensed exchanges in its advisories going forward, as well as working with the National Telecommunications Commission (NTC) to block access to the exchanges’ websites." "The SEC warned that those acting as salesmen, brokers, dealers, agents, or promoters for Binance within the Philippines could face criminal liability under Section 28 of the SRC. The penalties include a fine of up to five million pesos or imprisonment of up to twenty-one years, or both." Source: https://bitpinas.com/regulation/ph-sec-binance-advisory/
After the recent international news regarding sa binance, now, dito naman satin. Surely, this will have a huge effect dito satin lalo na sa mga p2p traders if ma block ang binance site, maybe hindi lang website nila ang ma ba-block pati nadin ang sms access like sms 2fa. At i bet na halos lahat ng crypto users dito satin ay may account sa binance compare sa ibang local exchanges. Also, may penalties pa na pwedeng ipataw sa mga promoters nito based sa Section 28 of the SRC.
|
|
|
So i end up creating this thing after i found out that some other alternatives are not working anymore. Although i found 2 that but lacking some features. Segwit and Legacy wallet address are supported. Background is transparent and color black #000000 is the default font color. Supported Currency: ?currency=ticker - USD - EUR - GBP - PHP Color: ?color=hex_code 6-digit hex codes codes not including the hash sign "#". Default value are in USD/BTC Currency and Color are optional Bitcoin Address Balancehttps://pxzone.online/balance/wallet_address
Sample: https://pxzone.online/balance/1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa?color=000000 Result: Bitcoin to Fiat Conversionhttps://pxzone.online/btc/price/bitcoin_value
Sample: https://pxzone.online/btc/price/0.001?color=59a210¤cy=eur Result: Fiat to Bitcoin Conversionhttps://pxzone.online/fiat/btc/fiat_value
Sample: https://pxzone.online/fiat/btc/2500?color=000000 Result: Bitcoin Price Historyhttps://pxzone.online/btc/history/dd-mm-yyyy
Sample: https://pxzone.online/btc/history/04-12-2022?color=000000 Result: MISCI added some stats which can be accessed using the link below with some parameters ( ?misc=param) used and sample results in the table https://pxzone.online/bitcoin?misc=param
Descriptions | | Parameter | | Sample Results | Unconfirmed_Transactions | | unconfirmed_tx | | | Transactions in the past 24 hours | | 24h_tx_count | | | Bitcoins sent in the past 24 hours | | 24h_btc_sent | | | Latest Block Hash | | latest_hash | | | Hash on specific block height | | misc=block_height&block=(block_number) | | | Fastest Fee sat/vB | | fastest_fee | | | Economy Fee sat/vB | | economy_fee | | | Minimum Fee sat/vB | | minimum_fee | | |
The conversion used came from Coingecko, APIs are from blockchain.com and Mempool.space Let me know your thoughts, issues, anything in the comments/reply. Thanks.
|
|
|
New version of Electrum just released, this update includes several bug fixes, payserver and trampoline improvement, check the release notes for more information. Release Notes # Release 4.3.4 - Copyright is Dubious (January 26, 2023) * Lightning: - make sending trampoline payments more reliable (5251e7f8) - use different trampoline feature bits than eclair (#8141) * invoice-handling: fix get_request_by_addr incorrectly mapping addresses to request ids when an address was reused (#8113) * fix a deadlock in wallet.py (52e2da3a) * CLI: detect if daemon is already running (c7e2125f) * add an AppStream metainfo.xml file for Linux packagers (#8149) * payserver plugin: -replaced vendored qrcode lib -added tabs for on-chain and lightning invoices -revamped html and javascript
electrum/RELEASE-NOTESReminder:Only download electrum from the main website [1] and don't forget to verify [2] before installing it. [1] https://electrum.org/#download[2] https://bitcointalk.org/index.php?topic=5240594.0
|
|
|
I found this tweet earlier today. I don't know how true this post is and if there should to be worry about talking about chatGPT in programming space. I just want to ask coz this sounds like sarcasm to me lol. About the improved payserver, well, that's all good to me though. https://twitter.com/ElectrumWallet/status/1616542181115990016
|
|
|
DNP3 confessed to having gambled away all investors’ funds, the result of debilitating gambling addiction which forced him into desperation. DNP3 said that his addiction began unexpectedly, and it quickly took a hold of him.
DNP3 confessed to having spent all money he could find on a popular crypto gambling brand, chasing elusive big wins. “Even when the big wins did happen it wasn’t enough,” the streamer said. He admitted to having lost everything – including not only the investors’ funds but also his own savings.
I knew this guy because i followed him on twitter on his philanthropist activities on the platform also on twitch, that was a year ago, i guess. And was surprised after reading this news. The act of using the investors funds without their consent is illegal in any way, worst if you gamble it all. Well, when gambling addiction hits you, no matter how rich or poor you are, this will be a possible illness to every gambler. That's why gambling moderately. I just read this news which has posted few days ago but never saw this topic on gambling related boards from 1-5 pages. Let me know if there's an existing discussion related to this so i can lock this instead. Source: Gamblingnews.com
|
|
|
Even at this early days of the year after a long holiday devs still deliver its newest update of the app to its newest version. And yeah, with lots of fixed bugs this includes lightning, hardware wallets connection, binaries, etc. Release notes # Release 4.3.3 - (January 3, 2023) * Lightning: - fix handling failed HTLCs in gossip-based routing (#7995) - fix LN cooperative-chan-close to witness v1 addr (#8012) * PSBTs: - never put ypub/zpub in psbts, only plain xpubs (#8036) - for witness v0 txins, put both UTXO and WIT_UTXO in psbt (#8039) * Hardware wallets: - Trezor: optimize signing speed by not serializing tx (#8058) - Ledger: - modify plugin to support new bitcoin app v2.1.0 (#8041), - added a deprecation warning when using Ledger HW.1 devices. Ledger itself stopped supporting HW.1 some years ago, and it is becoming a maintenance burden for us to keep supporting it. Please migrate away from these devices. Support will be removed in a future release. * Binaries: - tighten build system to only use source pkgs in more places (#7999, #8000) - Windows: - use debian makensis instead of upstream windows exe (#8057) - stop using debian sid, build missing dep instead (98d29cba) - AppImage: fix failing to run on certain systems (#8011) * commands: - getinfo() to show if running in testnet mode (#8044) - add a "convert_currency" command (for fiat FX rate) (#8091) * Qt wizard: fix QR code not shown during 2fa wallet creation (#8071) * rework Tor-socks-proxy detection to reduce Tor-log-spam (#7317) * Android: add setting to enable debug logs (#7409) * fix payserver (merchant) js for electrum 4.3 invoice api (0fc90e07) * bip21: more robust handling of URIs that include a "lightning" key (ac1d53f0, 2fd762c3, #8047)
electrum/RELEASE-NOTESReminder: Only download electrum from the main website [1] and don't forget to verify [2] before installing it. [1] https://electrum.org/#download[2] https://bitcointalk.org/index.php?topic=5240594.0
|
|
|
I just want to brought this topic back since the previous one [1] was locked. Yes as the title said the KBM or Korean Boxing Members Commission change the decision after some reviews and the admittance of Akaho that it's a KO defeat. Source [2]. "Mr. Akaho said that the damage he received was not due to the impact of the punch hit the back of his head," said John Hwang, KBM chairman, in a letter to the Games and Amusement Board (GAB).
"He took a break to fight again, but he gave up because he couldn't, and he admitted that it was KO defeat."
[1] https://bitcointalk.org/index.php?topic=5417421.0[2] https://news.abs-cbn.com/sports/12/21/22/boxing-akaho-admits-he-lost-by-ko-to-casimeroI'll lock this thread later on...
|
|
|
New electrum version is released. No major updates though, more were bugs fixing. Check the release notes for more info. * When creating new requests, reuse addresses of expired requests (fixes #7927). * Index requests by ID instead of receiving address. This affects the following commands: get_request, get_invoice, list_requests, list_invoices, delete_request, delete_invoice * Trampoline routing: remember routes that have failed. Try other routes instead of systematically raising tampoline fees. * Fix sweep to_local output from channel backup (#7959) * Harden build script for macOS binary: avoid using precompiled wheels from PyPI for most packages (#7918) * The Windows/AppImage/Android binaries are now built on debian using the snapshot.debian.org archive instead of ubuntu. This should help with historical reproducibility. (#7926)
Download the app here [1] don't forget to verify signature though. [1] https://electrum.org/#download
|
|
|
A careless mother’s casino time resulted in her children’s death. The neglectful parent had left her kids in a hot car to place a few punts at a local casino without considering the consequences.
This is the saddest news I read today. I knew this case isn't possible when in online gambling but this is possible for other unfortunate circumstances too especially at home or somewhere else when you're doing your online gambling activity. This should be a lesson to take to all parents out there that family is priority first before anything else especially children. I wonder if there are parents who have experienced something like this or someone knew that has the same case, not with the one with a dead case though but something accident happened because of neglect parenting.
|
|
|
New electrum version is released. This release is focused on improvement of Lightning UI and finally the support of the Blockstream Jade hardware wallet [1]. # Release 4.3.0 - (August 5, 2022)
* This version introduces a set of UI modifications that simplify the use of Lightning. The idea is to abstract payments from the payment layer, and to suggest solutions when a lightning payment is hindered by liquidity issues. - Invoice unification: on-chain and lightning invoices have been merged into a unique type of invoice, and the GUI has a single 'create request' button. Unified invoices contain both a lightning invoice and an onchain fallback address. - The receive tab of the GUI can display, for each payment request, a lightning invoice, a BIP21 URI, or an onchain address. If the request is paid off-chain, the associated on-chain address will be recycled in subsequent requests. - The receive tab displays whether a payment can be received using Lightning, given the current channel liquidity. If a payment cannot be received, but may be received after a channel rebalance or a submarine swap, the GUI will propose such an operation. - Similarly, if channels do not have enough liquidity to pay a lightning invoice, the GUI will suggest available alternatives: rebalance existing channels, open a new channel, perform a submarine swap, or pay to the provided onchain fallback address. - A single balance is shown in the GUI. A pie chart reflects how that balance is distributed (on-chain, lightning, unconfirmed, frozen, etc). - The semantics of the wallet balance has been modified: only incoming transactions are considered in the 'unconfirmed' part of the balance. Indeed, if an outgoing transaction does not get mined, that is not going to decrease the wallet balance. Thus, change outputs of outgoing transactions are not subtracted from the confirmed balance. (Before this change, the arithmetic values of both incoming and outgoing transactions were added to the unconfirmed balance, and could potentially cancel each other.)
* In addition, the following new features are worth noting: - support for the Blockstream Jade hardware wallet (#7633) - support for LNURL-pay (LUD-06) (#7839) - updated trampoline feature bit in invoices (#7801) - the claim transactions of reverse swaps are not broadcast until the parent transaction is confirmed. This can be overridden by manually broadcasting the local transaction. - the fee of submarine swap transactions can be bumped (#7724) - better error handling for trampoline payments, which should improve payment success rate (#7844) - channel backups are removed automatically when the corresponding channel is redeemed (#7513)
Although i just heard this new hardware wallet, it looks like neat but like a bulk remote to me. Lol To those who keep collecting hardware wallets, making reviews, using the liquid network, i guess its must to try. [1] https://blockstream.com/jade/
|
|
|
It happens when I'm searching bitcoin/crypto related keywords yet there's no ads showing in the google search using different browsers and starting to wonder why. So I research and found this link from google [1]. It mentioned that it requires the advertisers docs and certificates from the country's central banks or authorized body for having the certificate of having a crypto business in one country. And I said why this wasn't a think before? It will probably lessen the scams from google services' ads (google search and youtube) especially newbies who are trying to make a research and unfortunately clicked the ads where scam or fake websites worst malware and then experienced the dark side of crypto because of scammers/hackers. [1] https://support.google.com/adspolicy/answer/12055790?hl=enI don't know if there is an existing discussion about this, kindly linked the thread here so I can lock the topic.
|
|
|
Electrum new release "New release: Electrum 4.2.1. Mostly bugfixes. We are dropping support for Windows 7. Release notes and downloads: https://electrum.org/#download" https://twitter.com/ElectrumWallet/status/1508127234997075971Here's the release notes # Release 4.2.1 - (March 26, 2022) * Binaries: - Windows: we are dropping support for Windows 7. (#7728) Version 4.2.0 already unintentionally broke compatibility with Win7 and there is no easy way to restore and maintain support. Existing users can keep using version 4.1.5 for now, but should consider upgrading or changing their OS. Win8.1 still works but only Win10 is regularly tested. - bump bundled Python version (win, mac, appimage) to 3.9.11, (android) to 3.8.13 (1bb7ef92, #7721) (note these include a fix to an openssl DOS-vector CVE-2022-0778) - windows: bump pyinstaller to 4.10 and wine to 7.0 (#7721) * Kivy GUI: - fix "Child Pays For Parent" not working on Android (#7723) - revert to defaulting the UI language to English (25fee6a6) * Qt GUI: - macOS: fix opening "Preferences" segfaulting for some (#7725) - more resilient startup: better error-handling and fallback (#7447) * Library: - fix LN error/warning message-handling, and fix regression that errors during channel-open were not properly shown in GUI (a92dede4) - during LN chan open, do not backup wallet automatically (#7733) - Imported wallets: fix delete_address rm-ing too many txs (#7587) - fix potential deadlock in wallet.py (d3476b6b) * Hardware wallets: - ledger: add progress indicator to sign_transaction (#7516) * fix the "--portable" flag for AppImage, and for pip installs (#7732)
Source: https://github.com/spesmilo/electrum/blob/master/RELEASE-NOTESThese updates is more focus in UI/UX, lightning and dropping support of previous windows versionz
|
|
|
Yes, you read it right, I will download what you want on freepik.com.
What you need to do is: 1. Post the freepik file/image URL here 2. I will upload the file in dropmb.com Mega and I will reply the download URL here. Or suggest me any free file hosting to upload the file. *Note that free file hosting is full of ads so I recommend to use ad blocker before visiting those sites.
I will not entertain any PM. Note this is a free service until my subscriptions last and will close this thread once it's expired or so.
|
|
|
This is all about the Crypto.com recent hacked [1], though the news mentioned of the steps of securities added to the exchange, yet it doesn't mentions if the users that were affected are refunded/compensated. This is why "not your keys not your coins" always matter [2]. This is another reminder to everyone whether you're a newbie or not, that using platforms such exchanges which the users doesn't have full control of their assets always have the risk of getting robbed, either the platform refunded it, worst if not. [1] https://cointelegraph.com/news/crypto-com-finally-speaks-out-483-user-accounts-compromised[2] https://notyourkeys.org/
|
|
|
As its 10th birthday and a new year for new future of this tech. Maybe you can share your experiences for the past months/years.
• When and where you encountered bitcoin. • Lowest and highest price you bought bitcoin. • Your highest loss and gain. • Knowledge you get. • Wallet and exchange you're using. • 10 altcoin/token you have besides bitcoin.
Happy new year btw.
|
|
|
China’s ‘Dream City’ Taps Ethereum Dev. Studio ConsenSys for Blockchain PushGovernment officials in Xiongan New Area have announced a partnership with Ethereum development studio ConsenSys to develop blockchain initiatives for China’s “dream city.” According to the South China Morning Post, the Xiongan government has signed a memorandum of understanding (MoU) with the U.S.-based ConsenSys to “establish Xiongan as a next-generation smart city and a leading blockchain innovation hub.” Formally announced in 2017, Xiongan is a pet project of Chinese President Xi Jinping, and the central government has said that it will eventually move a number of “non-core” government agency and research facility headquarters to the region from Beijing. The partnership with ConsenSys — whose founder, Joseph Lubin, also co-founded Ethereum — marks the first time that Xiongan has publicly enlisted the efforts of a foreign development studio to contribute to its blockchain efforts. However, this technological field is central to the city’s agenda. In fact, the government has listed blockchain as one of several cutting-edge technologies that it believes can turn Xiongan into a leading tech center, and it has enlisted the efforts of a number of domestic firms including Tencent and Ant Financial to develop blockchain initiatives for both public and private services in the city. MORE INFO HERE: https://www.ccn.com/chinas-dream-city-taps-ethereum-dev-studio-consensys-for-blockchain-push/
|
|
|
|