Bitcoin Forum
June 30, 2024, 05:29:27 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 [380] 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 ... 763 »
7581  Bitcoin / Wallet software / Re: Exodus wallet + Trezor Hardware wallet on: July 09, 2020, 05:24:04 PM
If all you want to do is hold USDT and other cheaper altcoins, then it's probably ok. There are better alternatives, though. They lack a few basic *advanced* features like fees customization and are not open-source, so they only seem like a "good alternative" if you really want a simple user-friendly wallet.

If you are holding the ERC-20 USDT token, you can use pretty much any Ethereum wallet, which includes the Trezor wallet itself (Beta), MyEtherWallet, Metamask, etc...
7582  Local / Brasil / Re: Hi friends Network ( Nova rede social brasileira ) on: July 09, 2020, 04:39:54 PM
Esse "marketing" não vai servir aqui. Você quebra as regras fazendo isso, o que não inspira confiança. Tongue

Specifically, you are not allowed to give people any incentive to post insubstantial posts in your threads. You can't offer to pay people who post their addresses, usernames, etc. You can do giveaways off-site and link to the giveaway page in a thread, but you can't give people any bonus for replying to your thread.
7583  Bitcoin / Electrum / Re: How can I know the bytes of a transaction? on: July 09, 2020, 03:44:58 PM
On Electrum, you can click "Preview" (versions < 4.0) or "Pay -> Advanced" (versions > 4.0) before sending a transaction to check the transactions details, such as size. Electrum already shows you (and lets you change) how much you are paying in satoshis and sat/byte. If you just want to calculate how much a supposed transaction would weight, you can use http://coinb.in/#fees to play around with it.

(Not sure if the x satoshis per byte happens only on electrum)
X sat/bytes (or kb/vB) are a norm. That's how fees are calculated (based on the weight of the transaction).
7584  Other / Meta / Re: [Updated July 4] LoyceV's Trust list viewer - Create your own Trust list! on: July 08, 2020, 05:17:51 PM
Try again: I've added suchmoon's exact code to apache2.conf.
Nope. Tongue

Edit: It worked now. Maybe it was a cache issue? I will update the script with your website url.
7585  Local / Brasil / Re: Aplicativo TikTok rouba seus dados, chave privada, Alerta vermelho! on: July 08, 2020, 05:09:34 PM
Falando em TikTok, ele (e a ignorancia) foi o responsável pelo pump da DOGE Roll Eyes
"Todo mundo, por favor, me escute. Este é o Dogecoin. Se você não sabe nada sobre investimento, isso realmente não importa. Coloque US$ 25 nisso e terá em breve US$ 10.000, ok? E se isso chegar a US$ 1, você ganhará dez mil. Por favor, apenas experimente. Vai bombar!"
- https://cointelegraph.com.br/news/dogecoin-gains-20-amidst-tiktok-pumping-challenge

7586  Other / Meta / Re: [Updated July 4] LoyceV's Trust list viewer - Create your own Trust list! on: July 08, 2020, 05:04:58 PM
@TryNinja: does it work now?
No. I still get the same error.
7587  Other / Meta / Re: [Updated July 4] LoyceV's Trust list viewer - Create your own Trust list! on: July 08, 2020, 02:46:10 PM
Update: Done! I have installed certbot.
Thank you. But now I have another request. Cheesy

I still can't make requests to your website from a browser because of CORS.

Code:
Access to fetch at 'https://loyce.club/trust/latestversion.txt' from origin 'https://bitcointalk.org' has been blocked by
CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. If an opaque response serves your
needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled.

It's also a simple fix, but I'm not sure what do you use for your website. Other than that, I have already created a script (with a lot of copy pasting from BPIP's extension) that adds a button to your Trust List on everyone's profile/posts.

edit:

For now, I made so the requests go through my proxy server, which makes the request to your page, bypassing CORS. It also needs a cool icon. Right now, I'm using one I downloaded from google after searching for "trust favicon". Big credits to BPIP's extension and their coders, since I just took a big chunk of code from their extension.

The "latestversion" link is cached for 1 hour to avoid making a new request for every page refresh.

Code:
// ==UserScript==
// @name         Loyce Trust List Viewer Button
// @version      0.1
// @description  adds a button under each user's profile with the latest link to Loyce's Trust Viewer list.
// @author       TryNinja
// @match        https://bitcointalk.org/index.php?topic=*
// @match        https://bitcointalk.org/index.php?action=profile;u=*
// @grant        none
// @credits      A big part of the code was taken (copy-pasted and modified) from BPIP's extension. https://bitcointalk.org/index.php?topic=5224821.0
// ==/UserScript==

(function() {
    const MAX_VALID_USER_ID = 1500000000;
    const PROFILE_URL_PREFIX = "https://bitcointalk.org/index.php?action=profile;u=";
    const LOYCE_TRUST_LAST_VERSION_URL = "https://loyce.club/trust/latestversion.txt";

    let LOYCE_TRUST_URL;
    let LOYCE_TRUST_URL_PROFILE;
    let LOYCE_TRUST_PROFILE_BUTTON_HTML;

    function injectLoyceTrustButtons() {
        LOYCE_TRUST_URL_PROFILE = LOYCE_TRUST_URL + "%%USERID%%.html";
        LOYCE_TRUST_PROFILE_BUTTON_HTML = '<a href="' + LOYCE_TRUST_URL_PROFILE + '" target="_blank"><img src="https://talkimg.com/images/2023/05/14/blobf2a1ef7d63fd727a.png" style="width: 16px; height: 16px;" title="Loyce\'s Trust Viewer" /></a>';

        if (window.location.href.startsWith(PROFILE_URL_PREFIX)) {
            const user_id = window.location.href.replace(PROFILE_URL_PREFIX, "");
            const user_name_cell = document.querySelector("tr.titlebg ~ tr td.windowbg table tr").lastElementChild;
            LOYCE_TRUST_PROFILE_BUTTON_HTML = LOYCE_TRUST_PROFILE_BUTTON_HTML.replace("%%USERID%%", user_id);
            setTimeout(() => {
                user_name_cell.innerHTML = user_name_cell.innerHTML + " " + LOYCE_TRUST_PROFILE_BUTTON_HTML;
            }, 50)
        } else {
            document.querySelectorAll("img[title='View Profile']")
                .forEach(img => {
                    let profile_box = img.parentElement.parentElement.parentElement;
                    let user_name_link = profile_box.querySelector("b > a");
                    let profile_link = profile_box.querySelector("div.smalltext a[href*='action=profile']");
                    if (user_name_link && profile_link) {
                        let user_id = user_name_link.getAttribute("href")
                            .replace(PROFILE_URL_PREFIX, "");
                        if (user_id > MAX_VALID_USER_ID) {
                            return;
                        }
                        const loyceTrustProfileFullURL = LOYCE_TRUST_URL_PROFILE.replace("%%USERID%%", user_id);

                        const loyceTrustButtonElement = document.createElement("a");
                        loyceTrustButtonElement.setAttribute('href', loyceTrustProfileFullURL);
                        loyceTrustButtonElement.setAttribute('target', '_blank');

                        const loyceTrustButtonImageElement = document.createElement("img");
                        loyceTrustButtonImageElement.setAttribute('src', 'https://talkimg.com/images/2023/05/14/blobf2a1ef7d63fd727a.png');
                        loyceTrustButtonImageElement.setAttribute('style', 'width: 16px; height: 16px;');
                        loyceTrustButtonImageElement.setAttribute('title', 'Loyce\'s Trust Viewer');

                        loyceTrustButtonElement.appendChild(loyceTrustButtonImageElement);
                        profile_link.before(loyceTrustButtonElement);
                    }
                });
        }
    }

    function getLatestLoyceTrustURL() {
        let cached = JSON.parse(localStorage.getItem('@btt-ninja-cache/loyce-trust-link'));

        if (!cached) {
            fetch(LOYCE_TRUST_LAST_VERSION_URL)
                .then((response) => response.text())
                .then(data => {
                    LOYCE_TRUST_URL = data;
                    cached = {
                        last_url: data,
                        time: Date.now()
                    };
                    localStorage.setItem('@btt-ninja-cache/loyce-trust-link', JSON.stringify(cached));
                    injectLoyceTrustButtons();
                });
        } else {
            LOYCE_TRUST_URL = cached.last_url;
            const oneHourAgo = Date.now() - 1000 * 60 * 60;

            if (cached.time < oneHourAgo) {
                localStorage.setItem('@btt-ninja-cache/loyce-trust-link', null);
            }

            injectLoyceTrustButtons();
        }
    }

    getLatestLoyceTrustURL();
})();
7588  Other / Meta / Re: Merit & new rank requirements on: July 08, 2020, 02:06:41 PM
Wait, if the thread you had created and received many merits gets deleted, do you lose them?
No. Once a merit is sent, the only way it can be "reversed/unsent" is if theymos manually revert them from your account. If the thread/post is deleted, it will show: X merits received for (Deleted).

edit: was not in the last page...

You moved it to https. Doesn't the old http works? Does it direct to https?
It does redirect to HTTPS automatically.
7589  Other / Meta / Re: [TELEGRAM] Yet Another BitcoinTalk Notification BOT (merits, mentions, topics,+) on: July 08, 2020, 02:02:42 PM
Topic tracking is great but can we have a Section tracking??? Like for instance, if you want to buy some nice physical coin, then you can keep an eye on what people sell and you get notification for every new topic in Collectables Smiley
It's possible. I will take a look on how I can do this. Thanks!
7590  Local / Brasil / Re: Aplicativo TikTok rouba seus dados, chave privada, Alerta vermelho! on: July 08, 2020, 04:20:53 AM
Acho que isso responde a sua própria pergunta de como eles podem roubar chaves privadas Tongue
Mas ai o cidadão ficar com a chave-privada no clipboard do celular é complicado, né? E eu pensando que eles conseguiam utilizar de técnicas para roubar dados de carteiras conhecidas com Mycelium, Electrum, etc... além do mais, não encontrei nenhuma ligação TikTok invadindo privacidade <> Bitcoin. Parece mais um clipbait do cara das lives no facebook.

Sim Grin
Angry Vou querer minhas cartas de volta.
7591  Local / Brasil / Re: Aplicativo TikTok rouba seus dados, chave privada, Alerta vermelho! on: July 08, 2020, 03:48:20 AM
Já não vou usar mais o TikTok. Pensava em ganhar uma graninha com vídeos no aplicativo e com afiliados.  Cry Cry Cry Agora terei que ficar somente no youtube. Prezo muito por minha privacidade.  Shocked Shocked Shocked
Nunca entendi essa de ganhar dinheiro com o TikTok. Também nunca entendi como ele funciona e qual a graça de usá-lo. Será que estou me tornando um boomer? Tongue

A verdade é que não é só o TikTok. Aplicativos gigantes como Plants vs. Zombies, PUBG Mobile, Fruit Ninja, AliExpress, etc... todos eles te espionam de alguma forma. Acho que a polemica mais recente, que inclusive é o motivo dessa crítica encima do TikTok, é de que eles estavam roubando os textos que você tinha no Ctrl C + Ctrl V e ainda estavam usando seu microfone sem motivo.

Por isso gosto muito do iOS e sua política de privacidade. Essas artimanhas só foram descobertas por causa do novo iOS 14 Beta que agora mostra quando um aplicativo "cola" o seu Ctrl C + Ctrl V e usa camera/mic. Usuários de android que sofram com a espionagem sem fim e falta de segurança e controle de qualidade na loja de aplicativos.
7592  Local / Brasil / Re: Aplicativo TikTok rouba seus dados, chave privada, Alerta vermelho! on: July 07, 2020, 10:44:26 PM
Roubam dados? Sim.

Mas onde diz que eles roubam chaves privadas? O app não é um vírus, apenas um grande invasor da privacidade, tal como o Facebook. Em nenhum lugar é citado o roubo de senhas ou chaves privadas. Tongue
7593  Other / Meta / Re: Is this a bug? on: July 07, 2020, 05:41:49 PM
@LFC_Bitcoin could have been trying to update his signature codes and copied it wrongly initially (as the code inserts are not meant to be added), hence how it was displayed the first time before you reloaded the page.
That's what happened. If it was an CSS issue, you would see the signature in plain text instead of the actual signature BBCode inside the "code" tag.
7594  Local / Primeiros Passos (Iniciantes) / Re: Dica para iniciante subir de nivel. on: July 07, 2020, 01:36:13 AM
Alguem sabe se compensa virar Copper ?
Estou com dúvida se as campanhas vão me aceitar ?
https://bitcointalk.org/index.php?action=credit;promote
O único proposito do Copper Member é remover algumas restrições dos usuários novos, sem rank. Muitas empresas, por exemplo, precisam fazer um tópico bem feito, com imagens, para promover seu negócio. Porém, as imagens são restritas à usuários com o rank Jr. Member ou acima. Nesse caso, eles podem pagar o upgrade para poder postar essas imagens sem precisar "gaster tempo" no fórum, já que a conta talvez seja "corporativa".

Pagar Copper Member para tentar "burlar" o requerimento de membros quase nunca funciona, e é meio... quer dizer, 1 merit você pega Jr. Member. Se você for um usuário real, participar aqui não só é extremamente fácil, como é essencial.
7595  Local / Primeiros Passos (Iniciantes) / Re: Quais os beneficions dos rankings? on: July 07, 2020, 01:22:57 AM
Grin Ta bem difícil subir com as novas regras do Forum, sou Newbie e não consigo chegar a Jr. Member, alguma dica ?
Sendo bem honesto, dê uma olhada nos seus posts. Páginas e mais páginas de bounties. Passei rápido mas não vi um ÚNICO post sequer que contenha alguma discussão, troca de ideia, ajuda a algum usuário, etc... nada.

Agora se faça essa pergunta: Você daria algum merit para um post que basicamente é: "Bounty X <links do facebook> <links do twitter> [...]"?
7596  Other / Serious discussion / Re: Long shot... but does such an Android wallet app exist ? on: July 06, 2020, 03:09:00 PM
Just checking in :-)
I started working on it but stopped to focus on my own project. Cheesy

I will try to separate some free time for it soon.
7597  Local / Brasil / Re: MP investiga fraude de R$ 35 mi em empresas e na Bolsa para comprar Bitcoin. on: July 06, 2020, 04:06:16 AM
E o montante envolvido?
Honestamente, nem sei. O relatório deles exige um email profissional (na verdade, terminando com um domínio não genérico). Se quiser ver mais a fundo: https://info.elliptic.co/whitepaper-fdd-bitcoin-laundering
7598  Local / Brasil / Re: MP investiga fraude de R$ 35 mi em empresas e na Bolsa para comprar Bitcoin. on: July 05, 2020, 11:30:09 PM
no fim das contas vale lembrar que a maioria dos crimes são cometidos com fiat, não com crypto...
Lembrando que:

- Segundo a Elliptic, 1% das transações BTC para exchanges são ilicitas.
- 92% das notas de dólar, pegas de 5 cidades e testadas em um estudo continham traços de cocaina.
7599  Local / Português (Portuguese) / Re: [1º Leilão de Arte na aba PT] Leve "Be Your Own Bank" pra sua casa. on: July 05, 2020, 07:47:40 PM
Beleza! se encontrar posta aqui sim!
fiquei curioso para saber mais.
http://www.falandodeartes.com.br/2014/05/como-analisar-obras-de-arte.html

Foi só procurar um trecho entre aspas no Google (procura pela frase exata).
7600  Economy / Service Announcements / Re: [ANN] ChipMixer.com - Bitcoin mixer / Bitcoin tumbler - mixing reinvented on: July 04, 2020, 03:25:14 PM
Got "502 Bad Gateway" error. Is it an error on my side or yours?
https://talkimg.com/images/2023/05/14/blobd931aac00c945895.png
It's working fine for me.

I went through Step 1 without any issues. Try again?
Pages: « 1 ... 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 [380] 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 ... 763 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!