Bitcoin Forum
July 01, 2024, 09:28:11 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 [260] 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 ... 920 »
5181  Local / Хайпы / MOVED: Скоро выходим на ICO on: July 28, 2019, 06:56:43 PM
Тема перемещена в Trashcan
 
https://bitcointalk.org/index.php?topic=5169802.0
Причина: дубль темы https://bitcointalk.org/index.php?topic=5162708.0
5182  Local / Русский (Russian) / Re: 📌 Подборка скриптов для форума on: July 27, 2019, 10:19:15 PM
Модификация скрипта по работе с меритом для меритсоросов от ETFbitcoin.

Code:
// ==UserScript==
// @name        bitcointalk merit
// @namespace   grue
// @include     https://bitcointalk.org/index.php?topic=*
// @require     https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.3.1.min.js
// @version     1.1.1
// @downloadURL https://grue.blob.core.windows.net/scripts/Merit.user.js?sv=2014-02-14&si=1&sr=c&sig=k%2BqstGBI3oQ8TrHfPWjS5HgjrazuDPmKJ6rYNs7rvRk%3D&.user.js
// @grant none
// ==/UserScript==

(() => {
  var sMerit;
  var source_sMerit;

  //get csrf token from the logout link
  let sc = $('td.maintab_back a[href*="index.php?action=logout;sesc="').attr("href");
  sc = /;sesc=(.*)/.exec(sc)[1];

  //Added by EcuaMobi: Get remaining sMerit
  $.post(
"https://bitcointalk.org/index.php?action=merit;msg=29048068"
  ).then((data) => {
    sMerit = /You have <b>([0-9]+)<\/b> sendable/.exec(data)[1];
    source_sMerit = /The next ([0-9]+) merit you spend will come from your source/.exec(data)[1];
  }).catch(() => sMerit = null);

  //selector for the "+Merit" link
  $('td.td_headerandpost div[id^=ignmsgbttns] a[href*="index.php?action=merit;msg="]')
  .each((i, e) => {
    const msgId = /msg=([0-9]+)/.exec(e.href)[1];

    const $popup = $(['<div id="grue-merit-popup' + msgId +'" class="grue-merit-popup" style="position: absolute; right: 40px; background-color: #ddd; font-size: 13px; padding: 8px;border-width: 1px;border-color: black;border-style: solid;">',
      '  <form>',
      '    <div>',
      '      Merit points: <input size="6" name="merits" value="1" type="text"/>',
      '    </div>',
  // Modified by EcuaMobi
      '    <div style="margin-top: 6px; "><span id="em-smerit-count' + msgId +'" style="font-size:11px;" /> <input value="Send" type="submit"></div>',
      '  </form>',
      '</div>'
    ].join("\n"));
    $popup.find("form").submit( (e) => {
      e.preventDefault();
      $popup.find('input[type="submit"]')
        .prop("disabled", true)
        .val("Sending...");
      const merits = e.target.elements["merits"].value;

      $.post(
        "https://bitcointalk.org/index.php?action=merit",
        {merits, msgID: msgId, sc}
      ).then((data) => {
        //Error pages usually have this (rough heuristic)
        if(data.includes("<title>An Error Has Occurred!</title")) {
          throw "error";
        }
        //double check and see whether the post we merited was added to the list. Its msgId should be visible in the page source.
        if(data.includes("#msg" + msgId)) {
          alert("Merit added.");
          $("#grue-merit-popup" + msgId).toggle(false);
  // Added by EcuaMobi
  if(sMerit!=null) { sMerit -= merits }
          return;
        }
        alert("Server response indeterminate.");
      })
      .catch(() => alert("Failed to add merit."))
      .always(() => {
        $popup.find('input[type="submit"]')
        .prop("disabled", false)
        .val("Send");
      });
    });
    $popup.insertAfter(e);

    $(e).click((e) => {
      e.preventDefault();
      $("#grue-merit-popup" + msgId).toggle();
  // Added by EcuaMobi
  if(sMerit!=null && source_sMerit==null) {
      $("#em-smerit-count" + msgId).html('<a href="https://bitcointalk.org/index.php?action=merit;msg='+msgId+'" target="_blank">Available:</a> <b>'+sMerit+'</b> &nbsp;&nbsp;&nbsp;')
    } else if (sMerit!=null && source_sMerit!=null) {
      $("#em-smerit-count" + msgId).html('<a href="https://bitcointalk.org/index.php?action=merit;msg='+msgId+'" target="_blank">Available (yours | source):</a> <b>'+sMerit+' | '+source_sMerit+'</b> &nbsp;&nbsp;&nbsp;')
    };
    });
  });
   $(".grue-merit-popup").toggle(false);
})();


5183  Local / Русский (Russian) / Re: Скрипт для работы с Merit. on: July 27, 2019, 10:10:59 PM
Модификация скрипта для меритсоросов от ETFbitcoin.

Code:
// ==UserScript==
// @name        bitcointalk merit
// @namespace   grue
// @include     https://bitcointalk.org/index.php?topic=*
// @require     https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.3.1.min.js
// @version     1.1.1
// @downloadURL https://grue.blob.core.windows.net/scripts/Merit.user.js?sv=2014-02-14&si=1&sr=c&sig=k%2BqstGBI3oQ8TrHfPWjS5HgjrazuDPmKJ6rYNs7rvRk%3D&.user.js
// @grant none
// ==/UserScript==

(() => {
  var sMerit;
  var source_sMerit;

  //get csrf token from the logout link
  let sc = $('td.maintab_back a[href*="index.php?action=logout;sesc="').attr("href");
  sc = /;sesc=(.*)/.exec(sc)[1];

  //Added by EcuaMobi: Get remaining sMerit
  $.post(
"https://bitcointalk.org/index.php?action=merit;msg=29048068"
  ).then((data) => {
    sMerit = /You have <b>([0-9]+)<\/b> sendable/.exec(data)[1];
    source_sMerit = /The next ([0-9]+) merit you spend will come from your source/.exec(data)[1];
  }).catch(() => sMerit = null);

  //selector for the "+Merit" link
  $('td.td_headerandpost div[id^=ignmsgbttns] a[href*="index.php?action=merit;msg="]')
  .each((i, e) => {
    const msgId = /msg=([0-9]+)/.exec(e.href)[1];

    const $popup = $(['<div id="grue-merit-popup' + msgId +'" class="grue-merit-popup" style="position: absolute; right: 40px; background-color: #ddd; font-size: 13px; padding: 8px;border-width: 1px;border-color: black;border-style: solid;">',
      '  <form>',
      '    <div>',
      '      Merit points: <input size="6" name="merits" value="1" type="text"/>',
      '    </div>',
 // Modified by EcuaMobi
      '    <div style="margin-top: 6px; "><span id="em-smerit-count' + msgId +'" style="font-size:11px;" /> <input value="Send" type="submit"></div>',
      '  </form>',
      '</div>'
    ].join("\n"));
    $popup.find("form").submit( (e) => {
      e.preventDefault();
      $popup.find('input[type="submit"]')
        .prop("disabled", true)
        .val("Sending...");
      const merits = e.target.elements["merits"].value;

      $.post(
        "https://bitcointalk.org/index.php?action=merit",
        {merits, msgID: msgId, sc}
      ).then((data) => {
        //Error pages usually have this (rough heuristic)
        if(data.includes("<title>An Error Has Occurred!</title")) {
          throw "error";
        }
        //double check and see whether the post we merited was added to the list. Its msgId should be visible in the page source.
        if(data.includes("#msg" + msgId)) {
          alert("Merit added.");
          $("#grue-merit-popup" + msgId).toggle(false);
 // Added by EcuaMobi
 if(sMerit!=null) { sMerit -= merits }
          return;
        }
        alert("Server response indeterminate.");
      })
      .catch(() => alert("Failed to add merit."))
      .always(() => {
        $popup.find('input[type="submit"]')
        .prop("disabled", false)
        .val("Send");
      });
    });
    $popup.insertAfter(e);

    $(e).click((e) => {
      e.preventDefault();
      $("#grue-merit-popup" + msgId).toggle();
 // Added by EcuaMobi
 if(sMerit!=null && source_sMerit==null) {
      $("#em-smerit-count" + msgId).html('<a href="https://bitcointalk.org/index.php?action=merit;msg='+msgId+'" target="_blank">Available:</a> <b>'+sMerit+'</b> &nbsp;&nbsp;&nbsp;')
    } else if (sMerit!=null && source_sMerit!=null) {
      $("#em-smerit-count" + msgId).html('<a href="https://bitcointalk.org/index.php?action=merit;msg='+msgId+'" target="_blank">Available (yours | source):</a> <b>'+sMerit+' | '+source_sMerit+'</b> &nbsp;&nbsp;&nbsp;')
    };
    });
  });
   $(".grue-merit-popup").toggle(false);
})();



5184  Local / Работа / MOVED: Бесплатные сигналы для бинарных опционо on: July 27, 2019, 05:35:03 PM
Тема перемещена в Trashcan
 
https://bitcointalk.org/index.php?topic=2775262.0
Причина: оффтопик, спам.
5185  Local / Работа / MOVED: Birdchain is looking for Community Manager & Translators on: July 27, 2019, 05:33:53 PM
Тема перемещена в Trashcan
 
https://bitcointalk.org/index.php?topic=2709409.0
Причина: в русском разделе информация должна предоставляться на русском языке. In Russian section information should be provided in Russian.
5186  Local / Работа / MOVED: Open vacancy - Communication manager/Public Relations Manager on: July 27, 2019, 05:33:14 PM
Тема перемещена в Trashcan
 
https://bitcointalk.org/index.php?topic=2543526.0
Причина: в русском разделе информация должна предоставляться на русском языке. In Russian section information should be provided in Russian.
5187  Local / Работа / MOVED: finding coders be familiar with IOT/DAG tech in EU on: July 27, 2019, 05:32:42 PM
Тема перемещена в Trashcan
 
https://bitcointalk.org/index.php?topic=2483893.0
Причина: в русском разделе информация должна предоставляться на русском языке. In Russian section information should be provided in Russian.
5188  Local / Работа / MOVED: Russian Ambassador needed for Signals - Data Science Powered signals for Trading on: July 27, 2019, 05:32:09 PM
Тема перемещена в Trashcan
 
https://bitcointalk.org/index.php?topic=2250877.0
Причина: в русском разделе информация должна предоставляться на русском языке. In Russian section information should be provided in Russian.
5189  Local / Работа / MOVED: Зарабаток на битках on: July 27, 2019, 03:32:16 PM
Тема перемещена в Trashcan
 
https://bitcointalk.org/index.php?topic=3175014.0
Причина: реферальный спам.
5190  Local / Русский (Russian) / Re: Репутация в Русском локальном разделе on: July 27, 2019, 02:57:06 PM
Ко мне в личные сообщения обратился пользователь sergey1980, чтобы я помог проверить посты markiz73.
После рассмотрения профиля markiz73 у меня сформировалось мнение, что он продолжительное время водит форум за нос под разными именами.

Надеюсь, не влез "поперед батька..." Smiley

Бегло пробежался по постам markiz73:

- нет ссылки на источник, хотя, IMHO, понятно, что это не его слова:
Копия:
-snip-
вчера же написали
Хардфорк Metropolis, при развёртывании которого более ранние его версии станут несовместимы с сетью, будет выпущен в два этапа – «Византия» и «Константинополь».
Кизантия скоро, Константинополь пока молчат, тестируют видимо
Оригинал:
Хардфорк Metropolis, при развёртывании которого более ранние его версии станут несовместимы с сетью, будет выпущен в два этапа – «Византия» и «Константинополь».

- нет ссылки на источник:
Копия:
Кpyтaя кoмпaния, кpyтыe дaтaцeнтpы.
Кoмпaния «TexнoБит» ocнoвaнa в 2016 гoдy и пpeдocтaвляeт вoзмoжнocти эффeктивнoй paбoты в миpe кpиптoвaлют!
кoмy, нa чeм?:

C 2017 гoдa мы oкaзывaeм кoмплeкcныe ycлyги для жeлaющиx paзвивaтьcя в этoм пepcпeктивнoм нaпpaвлeнии.
гдe, кoмy, ктo иx пapтнepы? caйт cляпaн нa кoлeнкe, в нeтe ни oднoй cтaтьи ни oднoгo oтзывa, ни гpyпп,ни cooбщecтв.

вoзpacт caйтa : 1 мec. 2 д.
Дaтa peгиcтpaции: 1 Ceн. 2017

имxo, пpoeкт в мoeй пoдпиcи нaвepнoe лyчшe выглядит Grin
Оригинал:
Компания «ТехноБит» основана в 2016 году и предоставляет возможности эффективной работы в мире криптовалют!

С 2017 года мы оказываем комплексные услуги для желающих развиваться в этом перспективном направлении.

- нет ссылки на источник:
Копия:
-snip-
Увы,увы.
При́быль — положительная разница между суммарными доходами (в которые входит выручка от реализации товаров и услуг, полученные штрафы и компенсации, процентные доходы и т. п.) и затратами на производство или приобретение, хранение, транспортировку, сбыт этих товаров и услуг. Прибыль = Доходы − Затраты (в денежном выражении).

Я работаю с налогами много лет. Проблема НДФЛ( налог на доходы физлица ) в том, что он очень плохо администрируется. Поэтому в РФ из 80 млн работоспособного населения около 30 нигде не числятся, а безработица в стране 5.5-6%   Grin
Оригинал:
При́быль — положительная разница между суммарными доходами (в которые входит выручка от реализации товаров и услуг, полученные штрафы и компенсации, процентные доходы и т. п.) и затратами на производство или приобретение, хранение, транспортировку, сбыт этих товаров и услуг. Прибыль = Доходы − Затраты (в денежном выражении).

- тут, IMHO, для англомодераторов самое то:
Копия:
-snip-
BTG official network is expected to start on Nov 12 2017. The current mining ports and accounts will be automatically transferred from testnet to main net mining.
батник выложи
Оригинал:
According to http://pool.gold/

BTG official network is expected to start on Nov 12 2017, 7 PM UTC. The current mining ports and accounts will be automatically transferred from testnet to main net mining.
-snip-
5191  Local / Майнеры / MOVED: Monero on: July 27, 2019, 01:45:10 PM
Тема перемещена в Trashcan
 
https://bitcointalk.org/index.php?topic=2174256.0
Причина: оффтопик, есть тема по этой монете, пишите туда https://bitcointalk.org/index.php?topic=597225.0
5192  Local / Трейдеры / MOVED: Хандри - пидарас! on: July 26, 2019, 05:08:04 PM
Тема перемещена в Trashcan
 
https://bitcointalk.org/index.php?topic=5169174.0
Причина: троллинг.
5193  Local / Альтернативные криптовалюты / MOVED: Moon Project token очередной хайп проект, СКАМ? on: July 26, 2019, 02:35:09 PM
Тема перемещена в Trashcan
 
https://bitcointalk.org/index.php?topic=5058151.0
Причина: плагиат.
5194  Local / Трейдеры / MOVED: Анализ и прогнозы OKEX on: July 26, 2019, 02:30:10 PM
Тема перемещена в Trashcan
 
https://bitcointalk.org/index.php?topic=5169018.0
Причина: реферальный спам.
5195  Local / Бизнес / MOVED: Новый способ привлечения клиентов с ROI в 10 000–20 00 on: July 26, 2019, 02:28:05 PM
Тема перемещена в Trashcan
 
https://bitcointalk.org/index.php?topic=5169026.0
Причина: копипаст без указания источника.
5196  Local / Барахолка / MOVED: Сервисы для бесплатной рекламы в интернk on: July 26, 2019, 02:27:44 PM
Тема перемещена в Trashcan
 
https://bitcointalk.org/index.php?topic=5169070.0
Причина: копипаст без указания источника.
5197  Other / Meta / Re: [UNBAN APPEAL] account Vladdirescu87 on: July 25, 2019, 10:41:33 PM
https://bitcointalk.org/index.php?action=profile;u=923025

The only possible of ban is posting actually news on the "News" board and I always added links. And it was maximum 2 articles per day.

No spam, no plagiarism. Of course, I have written to your e-mail and of course, I've had no answer.

Copy:
A female of baronial rank has the title baroness. In the kingdom of England, the medieval Latin word baro, baronis was used originally to denote a tenant-in-chief of the early Norman kings who held his lands by the feudal tenure of "barony" (in Latin per baroniam), and who was entitled to attend the Great Council (Magnum Concilium) which by the 13th century had developed into the Parliament of England. Feudal baronies (or "baronies by tenure") are now obsolete in England and without any legal force but any such historical titles are held in gross, that is to say are deemed to be enveloped within a more modern extant peerage title also held by the holder, sometimes along with vestigial manorial rights and tenures by grand serjeanty.
Original:
A woman of baronial rank has the title baroness. In the Kingdom of England, the medieval Latin word baro, baronis was used originally to denote a tenant-in-chief of the early Norman kings who held his lands by the feudal tenure of "barony" (in Latin per baroniam), and who was entitled to attend the Great Council (Magnum Concilium) which by the 13th century had developed into the Parliament of England.[4] Feudal baronies (or "baronies by tenure") are now obsolete in England and without any legal force but any such historical titles are held in gross, that is to say are deemed to be enveloped within a more modern extant peerage title also held by the holder, sometimes along with vestigial manorial rights and tenures by grand serjeanty.
5198  Local / Русский (Russian) / Re: Неофициальный список официальных прави on: July 25, 2019, 02:37:48 PM
Теперь можно ссылаться не на всю тему по правилам, а на каждый пункт правил отдельно. Используйте для этого общую ссылку:

Code:
https://bitcointalk.org/index.php?topic=994018.0#post_r*

где * - номер пункта правил.

Ссылка на локальный пункт правил:

Code:
https://bitcointalk.org/index.php?topic=994018.0#post_lr1

Также можно ссылаться на конкретные примечания, используя общую ссылку:

Code:
https://bitcointalk.org/index.php?topic=994018.0#post_n*

где * - номер примечания.

Ну и для удобства пользователей готовые ссылки на:

- пункты правил: пункт 1, пункт2, пункт 3, пункт 4, пункт 5, пункт 6, пункт 7, пункт 8, пункт 9, пункт 10, пункт 11, пункт 12, пункт 13, пункт 14, пункт 15, пункт 16, пункт 17, пункт 18, пункт 19, пункт 20, пункт 21, пункт 22, пункт 23, пункт 24, пункт 25, пункт 26, пункт 27, пункт 28, пункт 29, пункт 30, пункт 31, пункт 32, пункт 33, локальное правило;

- примечания: примечание 1, примечание 2, примечание 3, примечание 4, примечание 5, примечание 6, примечание 7, примечание 8, примечание 9.
5199  Local / Новички / MOVED: Туземун on: July 25, 2019, 12:06:39 AM
Тема перемещена в Trashcan
 
https://bitcointalk.org/index.php?topic=5168586.0
Причина: дублирование многочисленных топиков по обсуждению курса биткоина.
5200  Local / Работа / MOVED: Looking for a Russian community manager - Payment will be in BTC, Eth or Tokens on: July 24, 2019, 11:50:48 PM
Тема перемещена в Trashcan
 
https://bitcointalk.org/index.php?topic=2203660.0
Причина: в русском разделе информация должна предоставляться на русском языке. In Russian section information should be provided in Russian.
Pages: « 1 ... 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 [260] 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 ... 920 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!