<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
    <channel>
        <title>howit</title>
        <link>https://paragraph.com/@howit</link>
        <description>doit</description>
        <lastBuildDate>Wed, 12 Aug 2026 22:28:18 GMT</lastBuildDate>
        <docs>https://validator.w3.org/feed/docs/rss2.html</docs>
        <generator>https://github.com/jpmonette/feed</generator>
        <language>en</language>
        <image>
            <title>howit</title>
            <url>https://storage.googleapis.com/papyrus_images/8c39d37d6c8deb49c2b765d8f6c38765b727bb626b48c9856bb0183db34fb8e7.png</url>
            <link>https://paragraph.com/@howit</link>
        </image>
        <copyright>All rights reserved</copyright>
        <item>
            <title><![CDATA[$5000 Per Hour Web Scraping Legal Site - Python in Plain English]]></title>
            <link>https://paragraph.com/@howit/5000-per-hour-web-scraping-legal-site-python-in-plain-english</link>
            <guid>2C5SG0BwX6aN94sovGqV</guid>
            <pubDate>Sat, 10 Jun 2023 14:12:23 GMT</pubDate>
            <description><![CDATA[I answered a an advertisement on Craigslist to build a web scraper for a law firm. I actually built the web scraper in about 30 minutes. The request was to scrape definite data from a legal site and to place the information into an Excel spreadsheet. Photo by Tingey Injury Law Firm on Unsplash This is how I arrived the price. The customer told me that he does the task daily, it takes about 45 minutes and would pay some $20 per hour to perform it on a regular basis. To this I replied, there ar...]]></description>
            <content:encoded><![CDATA[<br><br><p>I answered a an advertisement on Craigslist to build a web scraper for a law firm. I actually built the web scraper in about 30 minutes. The request was to scrape definite data from a legal site and to place the information into an Excel spreadsheet.</p><p>Photo by <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://unsplash.com/@tingeyinjurylawfirm?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText">Tingey Injury Law Firm</a> on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://unsplash.com/s/photos/legal?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText">Unsplash</a></p><p>This is how I arrived the price. The customer told me that he does the task daily, it takes about 45 minutes and would pay some $20 per hour to perform it on a regular basis. To this I replied, there are about 200 working days in a year which amount to $4000. I told him that I would build the scraper for a little over 60% of that or $2500 which is equivalent to $5000 per hour based on my development time. To this he happily agreed. I promised him that I would send him a sample later tonight but I wrapped up during my lunch at work and sent it to him that afternoon. Had to wait a little did not want him to know that it was little to no effort on my part. But as I explained to him, he is paying for my expertise not my time. Lawyers are not the only ones who can get great pay for their services lol.</p><p>I build the scraper during lunch. The only challenge with the scraper is the output of the columns change and we don’t know what the correct order will be. To handle this nuance, I used a dictionary.</p><p>First, I loaded my normal imports. I used an existing scraper to speed up the process.</p><pre data-type="codeBlock" text="import pandas as pd
import os, re, requests, urllib
from selenium import webdriver
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.chrome.service import Service
from selenium.webdriver.common.by import By
from datetime import datetime, date, timedelta
from selenium.webdriver.support.select import Select
from selenium.common.exceptions import NoSuchElementException
import datetime
from dateparser.search import search_dates 
from bs4 import BeautifulSoup
import glob as glob
from time import sleep
"><code><span class="hljs-keyword">import</span> pandas <span class="hljs-keyword">as</span> pd
<span class="hljs-keyword">import</span> os, re, requests, urllib
<span class="hljs-keyword">from</span> selenium <span class="hljs-keyword">import</span> webdriver
<span class="hljs-keyword">from</span> selenium.<span class="hljs-property">webdriver</span>.<span class="hljs-property">support</span>.<span class="hljs-property">ui</span> <span class="hljs-keyword">import</span> <span class="hljs-title class_">WebDriverWait</span>
<span class="hljs-keyword">from</span> selenium.<span class="hljs-property">webdriver</span>.<span class="hljs-property">chrome</span>.<span class="hljs-property">service</span> <span class="hljs-keyword">import</span> <span class="hljs-title class_">Service</span>
<span class="hljs-keyword">from</span> selenium.<span class="hljs-property">webdriver</span>.<span class="hljs-property">common</span>.<span class="hljs-property">by</span> <span class="hljs-keyword">import</span> <span class="hljs-title class_">By</span>
<span class="hljs-keyword">from</span> datetime <span class="hljs-keyword">import</span> datetime, date, timedelta
<span class="hljs-keyword">from</span> selenium.<span class="hljs-property">webdriver</span>.<span class="hljs-property">support</span>.<span class="hljs-property">select</span> <span class="hljs-keyword">import</span> <span class="hljs-title class_">Select</span>
<span class="hljs-keyword">from</span> selenium.<span class="hljs-property">common</span>.<span class="hljs-property">exceptions</span> <span class="hljs-keyword">import</span> <span class="hljs-title class_">NoSuchElementException</span>
<span class="hljs-keyword">import</span> datetime
<span class="hljs-keyword">from</span> dateparser.<span class="hljs-property">search</span> <span class="hljs-keyword">import</span> search_dates 
<span class="hljs-keyword">from</span> bs4 <span class="hljs-keyword">import</span> <span class="hljs-title class_">BeautifulSoup</span>
<span class="hljs-keyword">import</span> glob <span class="hljs-keyword">as</span> glob
<span class="hljs-keyword">from</span> time <span class="hljs-keyword">import</span> sleep
</code></pre><p>This is the core part of the scraper — really easy to build:</p><pre data-type="codeBlock" text="records = []
for count in range(1, 5):
    data = {}
    for i in range(1, 10):
        label = driver.find_element(By.XPATH, f&apos;/html/body/div/table[4]/thead/tr/th[{str(i)}]/a&apos;).text
        value = driver.find_element(By.XPATH, f&apos;/html/body/div/table[4]/tbody/tr[{str(count)}]/td[{str(i)}]&apos;).text
        data.update({label:value})
    records.append(data)
"><code>records <span class="hljs-operator">=</span> []
<span class="hljs-keyword">for</span> count in range(<span class="hljs-number">1</span>, <span class="hljs-number">5</span>):
    data <span class="hljs-operator">=</span> {}
    <span class="hljs-keyword">for</span> i in range(<span class="hljs-number">1</span>, <span class="hljs-number">10</span>):
        label <span class="hljs-operator">=</span> driver.find_element(By.XPATH, f<span class="hljs-string">'/html/body/div/table[4]/thead/tr/th[{str(i)}]/a'</span>).text
        value <span class="hljs-operator">=</span> driver.find_element(By.XPATH, f<span class="hljs-string">'/html/body/div/table[4]/tbody/tr[{str(count)}]/td[{str(i)}]'</span>).text
        data.update({label:value})
    records.append(data)
</code></pre><p>And finally, here is a sample out of the columns — can’t show actual data contains PII and I don’t want to personally responsible.</p><pre data-type="codeBlock" text="[&apos;Case Number&apos;, &apos;Name&apos;, &apos;Date of Birth&apos;, &apos;Party Type&apos;, &apos;Court&apos;,
       &apos;Case Type&apos;, &apos;Case Status&apos;, &apos;Filing Date&apos;, &apos;Case Caption&apos;]
"><code><span class="hljs-selector-attr">[<span class="hljs-string">'Case Number'</span>, <span class="hljs-string">'Name'</span>, <span class="hljs-string">'Date of Birth'</span>, <span class="hljs-string">'Party Type'</span>, <span class="hljs-string">'Court'</span>,       <span class="hljs-string">'Case Type'</span>, <span class="hljs-string">'Case Status'</span>, <span class="hljs-string">'Filing Date'</span>, <span class="hljs-string">'Case Caption'</span>]</span>
</code></pre><p>Yes it was really that easy. I imagine a lot of other law firms have similar need to I will use them as a target market going forward.</p><p><em>More content at </em><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://plainenglish.io/"><strong><em>PlainEnglish.io</em></strong></a><em>. Sign up for our </em><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="http://newsletter.plainenglish.io/"><strong><em>free weekly newsletter</em></strong></a><em>. Follow us on </em><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/inPlainEngHQ"><strong><em>Twitter</em></strong></a><em>, </em><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.linkedin.com/company/inplainenglish/"><strong><em>LinkedIn</em></strong></a><em>, </em><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.youtube.com/channel/UCtipWUghju290NWcn8jhyAw"><strong><em>YouTube</em></strong></a><em>, and </em><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.gg/GtDtUAvyhW"><strong><em>Discord</em></strong></a><em>.</em>**</p><p><strong><em>Interested in scaling your software startup</em></strong><em>? Check out </em><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://circuit.ooo/?utm=publication-post-cta"><strong><em>Circuit</em></strong></a><em>.</em></p>]]></content:encoded>
            <author>howit@newsletter.paragraph.com (howit)</author>
        </item>
        <item>
            <title><![CDATA[加密狗整编空投第203篇：Masa Finance主网域名领取指南（明牌空投） - 加密狗 - Medium]]></title>
            <link>https://paragraph.com/@howit/203-masa-finance-medium</link>
            <guid>Q7rWMhbAa8noS8lfPpA3</guid>
            <pubDate>Wed, 03 May 2023 15:57:06 GMT</pubDate>
            <description><![CDATA[之前一直在写Masa的节点挖矿教程，如果你不参与节点挖矿，Mint域名也是可以获得Masa Finance空投的。Masa 是世界上第一个 Soulbound Token (SBT) 身份协议。 Soulbound Tokens (SBT) 是代表个人或物体的特征、特征和成就的数字标识。 Masa 是从 1,500 名申请者中选出参与币安最有价值建设者 (MVB) 加速器计划的12个项目之一。Masa官方表示前 50,000 个铸造 .Soul 域名的钱包将有资格获得空投。我们今天就来看着怎么注册.Soul 域名，.Soul 域名是在以太坊区块链上部署的，请提前准备好Gas费。 下图是 .Soul 域名和价格的概览：任务1、以太坊主网域名进入官网，链接钱包（将钱包切换到ETH主网）选择名称（单词越短成本越高）；选择注册期；点击“Claim your soul”钱包确认铸造完成后，点击“See in OpenSea”在OpenSea中就可以看到你的域名，目前有人在OpenSea中挂5E；到了这一步，说明你已经进入Masa空投的门槛了，还有其他任务可以做：通过 Masa Green ...]]></description>
            <content:encoded><![CDATA[<p>之前一直在写Masa的节点挖矿教程，如果你不参与节点挖矿，Mint域名也是可以获得Masa Finance空投的。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/8f3b5613ba9ecc07cb8993ee2445398e8aa4385ef1ad1aa5f78f1dfeff19ea6f.webp" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>Masa 是世界上第一个 Soulbound Token (SBT) 身份协议。<br>Soulbound Tokens (SBT) 是代表个人或物体的特征、特征和成就的数字标识。</p><p>Masa 是从 1,500 名申请者中选出参与币安最有价值建设者 (MVB) 加速器计划的12个项目之一。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/ad1e01b6ee292432758d49fe2407e5a8328da636ab1daa9897f42379e05f1c19.jpg" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>Masa官方表示前 50,000 个铸造 .Soul 域名的钱包将有资格获得空投。我们今天就来看着怎么注册.Soul 域名，.Soul 域名是在<strong>以太坊</strong>区块链上部署的，请提前准备好Gas费。</p><p>下图是 .Soul 域名和价格的概览：</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/58877ba7ca76f4ca29cc2419c2736dcf447a25f9e362ccded0ce7fc4a8b7d728.webp" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><h2 id="h-1" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">任务1、以太坊主网域名</h2><p>进入<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://referrals.masa.finance/QqPh6g/join">官网</a>，链接钱包（将钱包切换到ETH主网）</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/5c31a3b919b7d81fd2b984212ecb76b44bcaff76aa5573b2fd1b177120a743b2.webp" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><ul><li><p>选择名称（单词越短成本越高）；</p></li><li><p>选择注册期；</p></li><li><p>点击“Claim your soul”</p></li><li><p>钱包确认</p></li><li><p>铸造完成后，点击“See in OpenSea”</p></li></ul><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/6a176c663689f505e189660332c688cb8c17db6c0823c621e612415261312c04.webp" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>在OpenSea中就可以看到你的域名，目前有人在OpenSea中挂5E；</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/8e601ea637e23a6227579020f14f92725e6b5bb04ebcbb11ea80274b1019a348.webp" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>到了这一步，说明你已经进入Masa空投的门槛了，还有其他任务可以做：</p><ul><li><p>通过 Masa Green SBT 验证；</p></li><li><p>在 Celo 上铸造Prosperity Passport；</p></li><li><p>在Base Testnet上铸造Masa Base Camp。</p></li><li><p>获得公会角色。</p></li></ul><h2 id="h-masa-green-sbt" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">任务二、通过 Masa Green SBT 验证（可选）</h2><p>1、点击“Earn rewards”</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/c3271f71fedcb085f8ae19c2db5128d3e80392339c5609c18679258890d70a92.webp" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>2、选择任意一个链，然后钱包确认；</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/69fd5a64cb5ff29f2c18143a8bdc59221015ccfcf24e43f1ff417b52a270c752.webp" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>3、完成二次验证</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/af8ea8ecb229e9e5df14658344f968f23ccce0e71e594b232191f290e65562c9.webp" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/c73b2ee22e2d7dcdc90e20ed7d1dabd10a5ab42d7d5fe55ba22efa528c53abae.webp" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><ul><li><p>点击“Mint Masa Green SBT”。</p></li><li><p>输入验证码</p></li></ul><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/bcf4cc3f55764c6aad41404cc44e979c98f83a5a143d5645910b25a41fdef323.webp" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><ul><li><p>钱包确认</p></li></ul><h2 id="h-celomint-prosperity-domain" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">任务三、在<strong>Celo上Mint Prosperity Domain</strong></h2><p>这里需要不到 2 美元</p><p>1、相关链接：<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://referrals.masa.finance/o6KTMX/join">https://app.prosperity.global/</a></p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/cfd2ac52676796fb1e5b94faafc5b7fe4b5e12811bce98445e806351a99c74f3.webp" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><ul><li><p>连接钱包，切换到 Celo 网络；</p></li><li><p>选择一个域名；</p></li><li><p>选择“日期”；</p></li><li><p>点击“Register your domain”；</p></li><li><p>钱包确认</p></li></ul><h2 id="h-" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">任务四、<strong>获得公会角色</strong></h2><p>公会链接：<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://guild.xyz/masa">https://guild.xyz/masa</a>，点击“Join Guild to get roles”，验证；</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/8a633081a57c726d8d1006dd65c846c45b522a301679f2e9e15b36b9774143c1.webp" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>通过自动验证后，如果你有.soul和.celo域名，会有如下显示：</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/0d9fab0861032f25bbfa30724633f284bb1d78f82da8b607d77054b731efb12a.webp" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><h2 id="h-base" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">任务五、注册.base测试网域名</h2><p>Masa Base Camp 用户可以在测试网上创建 .base soulnames;</p><p>在测试网上创建的.base域名不会转移到主网上，但你有机会进入base白名单；</p><p>在申请白名单前，请确保你的钱包已切换到Base Goerli Testnet；</p><p>1、进入<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://app.basecamp.global/">app.basecamp.global</a>；</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/ed573d18c52235e8a4949a05aeeafbfb2c0a2ffdb90f4759eb3c0a54ec5a6074.webp" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>2、输入你要申请的域名，钱包确认</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/3376c654c79d0e0a68798fe6db6207e66cf7f10e52e76ee8a4744e034a777550.webp" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>可以多申请几个，比如我把tencent、sougou、kugou的域名都给申请。</p>]]></content:encoded>
            <author>howit@newsletter.paragraph.com (howit)</author>
        </item>
        <item>
            <title><![CDATA[Pantos Testnet 500$ Airdrop Guide - Air-dollar - Medium]]></title>
            <link>https://paragraph.com/@howit/pantos-testnet-500-airdrop-guide-air-dollar-medium</link>
            <guid>cHkHMugbU4LrQalY2fFz</guid>
            <pubDate>Thu, 27 Apr 2023 05:57:22 GMT</pubDate>
            <description><![CDATA[For more earning opportunity & airdrop updates, please join our Telegram Channel. Also I am there always to support you guys.Pantos Testnet is a multi-blockchain token system that aims to solve interoperability issues between different blockchains. It is a research project led by the Vienna University of Technology and is backed by Bitpanda, a cryptocurrency exchange. If there is an airdrop related to Pantos Testnet, it would likely involve the distribution of Pantos tokens to individuals who...]]></description>
            <content:encoded><![CDATA[<figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/789376e0b81f9a87e95d3e0c65f9e4675df04b268c65a081b4259fc405956920.webp" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><blockquote><p>For more earning opportunity &amp; airdrop updates, please join our <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.me/airdrophunter097">Telegram</a> Channel. Also I am there always to support you guys.</p></blockquote><p>Pantos Testnet is a multi-blockchain token system that aims to solve interoperability issues between different blockchains. It is a research project led by the Vienna University of Technology and is backed by Bitpanda, a cryptocurrency exchange.</p><p>If there is an airdrop related to Pantos Testnet, it would likely involve the distribution of Pantos tokens to individuals who meet certain criteria, such as holding a certain amount of a specific cryptocurrency or participating in specific activities related to the project.</p><p>However, it’s important to note that airdrops can sometimes be fraudulent or scams, so it’s important to exercise caution and do your own research before participating in any airdrop.</p><p>Lets Start:-</p><h2 id="h-wallet-setup" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Wallet Setup:</h2><ul><li><p>Add to metamask: <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://chainlist.org/chain/5">https://chainlist.org/chain/5</a></p></li><li><p>Take test ETH: <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://goerlifaucet.com/">https://goerlifaucet.com/</a> or <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://goerli-faucet.pk910.de/">https://goerli-faucet.pk910.de/</a></p></li><li><p>Go <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://faucet.testnet.pantos.io/">https://faucet.testnet.pantos.io/</a> then see picture. same way take another token because its test net you should use weekly.</p></li></ul><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/9f295c744b119758d271ae5c4ad7f61668ac43063cbc3d8d44449c3d52ac463d.webp" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><h2 id="h-dapp-testing" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Dapp Testing:</h2><ul><li><p>Go to <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://app.testnet.pantos.io/wrap">https://app.testnet.pantos.io/wrap</a> select wallet from wallet</p></li></ul><p>work by Seeing the picture &gt;&gt;. wrap</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/0b7e08bab1ef18337124c4c6b8ff4a362652f0c8671173da2bc2a0b30d570460.webp" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>Unwrap</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/dd872a5fb348d7a8a3efa19e8fb9bbeac2dee8f7a6fb13723e1d48f22e9cedd5.webp" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>ADD Phantom to matamask:</p><p>Go to <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://app.testnet.pantos.io/tokens">https://app.testnet.pantos.io/tokens</a> &gt; ‘Add to Metamask’ on Pantos.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/e9e0b773d7e1cb9ce0b863152b2c38424d5a5c9bdc1a9dba8a1e48c3237bae19.webp" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><ul><li><p>Go to <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://app.testnet.pantos.io/transfer">https://app.testnet.pantos.io/transfer</a></p></li><li><p>&gt;&gt; transfer destination blockchain Polygon &lt;as your wish&gt; &gt; Click Same as Sending address &gt; Bid as Fast &lt;sometime use slow&gt;&gt; Select PAN-Pantos as token &gt; amount &gt; ‘Transfer’.</p></li></ul><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/a767df2b5ea9db35b588615cba61952f370c8294fc27b4fffa0a2634bc1906c0.webp" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>Wait its take some time to confirm OK mate</p><p>Use Another blockchain for tasting . Use it weekly please to be <strong>eligible</strong></p><p>Give Feedback here : — <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://bitpanda.typeform.com/to/rDX50N0j?typeform-source=4qxg6jtcvnv.typeform.com">https://bitpanda.typeform.com/to/rDX50N0j?typeform-source=4qxg6jtcvnv.typeform.com</a></p><p>Mirror:- Collect this post for future airdrop <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://mirror.xyz/0x2b1b62C129B570A15b84e5002abA7BC56EB0165d/H23UDm-VZsKnmAwMdba1ntMg52iuOh3g_ngPtH8Zn1I">https://mirror.xyz/0x2b1b62C129B570A15b84e5002abA7BC56EB0165d/H23UDm-VZsKnmAwMdba1ntMg52iuOh3g_ngPtH8Zn1I</a></p><p>For more earning opportunity &amp; airdrop updates, please join our <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.me/airdrophunter097">Telegram</a> Channel. Also I am there always to support you guys</p>]]></content:encoded>
            <author>howit@newsletter.paragraph.com (howit)</author>
        </item>
        <item>
            <title><![CDATA[Wow and Whatever - The Generator - Medium]]></title>
            <link>https://paragraph.com/@howit/wow-and-whatever-the-generator-medium</link>
            <guid>8CVUQ7ipUHxUaeOIuWCq</guid>
            <pubDate>Sun, 16 Apr 2023 03:51:17 GMT</pubDate>
            <description><![CDATA[And Why I’m Not Scared of AIOne of the women below is the mother to my children. The other three… AI-created portraits. I’ll tell you which one is real at the end. Three of these things are not like the other. 1 photograph, 3 AI-created portraits. AI has been raising emotions lately on Instagram. My last few posts have used AI-created images and the response has been all over the place. There’s everything from anger to awe seeping through in the comments. One person was…]]></description>
            <content:encoded><![CDATA[<h2 id="h-and-why-im-not-scared-of-ai" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">And Why I’m Not Scared of AI</h2><p>One of the women below is the mother to my children. The other three… AI-created portraits. I’ll tell you which one is real at the end.</p><p>Three of these things are not like the other. 1 photograph, 3 AI-created portraits.</p><p>AI has been raising emotions lately on Instagram. My last few posts have used AI-created images and the response has been all over the place. There’s everything from anger to awe seeping through in the comments. One person was…</p>]]></content:encoded>
            <author>howit@newsletter.paragraph.com (howit)</author>
        </item>
        <item>
            <title><![CDATA[加密狗整编空投第162篇：Script Network 测试网空投教程（明牌空投） - 加密狗 - Medium]]></title>
            <link>https://paragraph.com/@howit/162-script-network-medium</link>
            <guid>vIIrvXPTJtA0sJk7FE0X</guid>
            <pubDate>Tue, 04 Apr 2023 05:59:57 GMT</pubDate>
            <description><![CDATA[Script TV 是一个去中心化的视频传输网络，它提供范围广泛的支持区块链的解决方案，以解决与传统视频流媒体领域相关的问题。 目前官方已确认发空投，具体步骤如下：第1步、创建钱包钱包链接：https://wallet.script.tv/unlock/keystore-file点击创建新钱包保存好密钥、助记词第2步、获取 $SPAY 和 $SCPT 测试代币在原钱包中点击Receive点击Faucet点击Faucet后可能没有水，可以去Discord领：https: //discord.gg/WxCySaBm > 进入#token-facuet 频道 > 发送你的地址，你将在数小时内收到测试令牌。第3步、测试钱包功能质押 SCPT 或 SPAY 代币（只有节点挖矿的用户才能质押代币），如果你想运行节点或轻节点，点这两个链接就行普通用户测试钱包转账就行，你可以在Discord中找到很多地址，将测试代币转给他们。第4步、积分计划注册 script.tv 帐户输入代码GdBcSP341I链接小狐狸钱包输入邮箱地址转到主页找打Daily Tasks每天有 5 项任务，完成任务尽可能赚取...]]></description>
            <content:encoded><![CDATA[<figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/2e613b1dae14a327fc6e359c44815fa005b18b99f1b244a1657eef7db8f3f174.jpg" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>Script TV 是一个去中心化的视频传输网络，它提供范围广泛的支持区块链的解决方案，以解决与传统视频流媒体领域相关的问题。</p><p>目前官方已确认发空投，具体步骤如下：</p><h2 id="h-1" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">第1步、创建钱包</h2><ul><li><p>钱包链接：<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://wallet.script.tv/unlock/keystore-file">https://wallet.script.tv/unlock/keystore-file</a></p></li><li><p>点击创建新钱包</p></li></ul><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/76580f829ee2fc60d7dfe8345bec66387ce15288862f8ebc951ca453789fcf48.webp" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><ul><li><p>保存好密钥、助记词</p></li></ul><h2 id="h-2-dollarspay-dollarscpt" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">第2步、获取 $SPAY 和 $SCPT 测试代币</h2><p>在原钱包中</p><ul><li><p>点击<strong>Receive</strong></p></li><li><p>点击<strong>Faucet</strong></p></li></ul><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/f15c8a9eecb3e6dbb84d0754bd2efcc96692041998477818c4dacf603e2e49fe.webp" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><ul><li><p>点击Faucet后可能没有水，可以去Discord领：</p></li></ul><p>https: <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.gg/WxCySaBm">//discord.gg/WxCySaBm</a> &gt;</p><p>进入#token-facuet 频道 &gt; 发送你的地址，你将在数小时内收到测试令牌。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/28c27bf44b08bdc2322c994871f5f86238cfae66dc63d3f8f1bfcac81ce6a381.webp" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><h2 id="h-3" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">第3步、测试钱包功能</h2><ul><li><p>质押 SCPT 或 SPAY 代币（只有节点挖矿的用户才能质押代币），如果你想运行<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://whitepaper.script.tv/nodes/lightning-node-overview/to-become-a-lightning-node-setup">节点</a>或轻<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://whitepaper.script.tv/nodes/lightning-node-overview/to-become-a-lightning-node-setup">节点</a>，点这两个链接就行</p></li></ul><p>普通用户测试钱包转账就行，你可以在Discord中找到很多地址，将测试代币转给他们。</p><h2 id="h-4" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">第4步、积分计划</h2><ul><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://token.script.tv/">注册 script.tv 帐户</a></p></li><li><p>输入代码GdBcSP341I</p></li><li><p>链接小狐狸钱包</p></li><li><p>输入邮箱地址</p></li></ul><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/92aa843d427bcf697efe7800f2790c83fd851ddee0227f5ef084d7732169b9cb.webp" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><ul><li><p>转到主页</p></li><li><p>找打Daily Tasks</p></li></ul><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/23cc1c8088d6cb348fdd6b762befde25607b232d2d72e09de06961c2b0c9d6a3.webp" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><ul><li><p>每天有 5 项任务，完成任务尽可能赚取积分，到时候积分可能会变成 $SPAY 或 $SCPT 令牌</p></li></ul><h2 id="h-crew3" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">加入 Crew3 任务</h2><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/d9c9b6871dfdd2f7e46495db419027252ba4e7406d62ad87e1e81fbc16f0ffd8.webp" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><ul><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://crew3.xyz/c/scriptnetwork/invite/cKq5bRP7PQdGRBJrTrMPP">注册 crew3 任务</a></p></li><li><p>首先完成“入门”任务</p></li><li><p>然后另一个任务</p></li></ul><h2 id="h-" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">加入公会</h2><p>🔗公会链接： https: <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://guild.xyz/script-network">//guild.xyz/script-network</a></p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/63c29d534d50bda525c5f8d934355ecc6d596e577af65ea66682b0af5ba88d99.webp" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>以上任务全部做完后，进入官方Discord**#testnet-feedback**频道反馈</p><p>本篇内容就到这里，更多信息请关注：</p><p>加密狗推特：<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/JiamigouCn">https://twitter.com/JiamigouCn</a></p><p>电报：<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.me/JIAMIGOU002">https://t.me/JIAMIGOU002</a></p>]]></content:encoded>
            <author>howit@newsletter.paragraph.com (howit)</author>
        </item>
    </channel>
</rss>