<?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>Moe</title>
        <link>https://paragraph.com/@agaue</link>
        <description>undefined</description>
        <lastBuildDate>Thu, 28 May 2026 09:28:54 GMT</lastBuildDate>
        <docs>https://validator.w3.org/feed/docs/rss2.html</docs>
        <generator>https://github.com/jpmonette/feed</generator>
        <language>en</language>
        <image>
            <title>Moe</title>
            <url>https://storage.googleapis.com/papyrus_images/cc1dc512e8926283b7db57ac91fa0ba8e451df1c578030643ded9063cb891a8f.jpg</url>
            <link>https://paragraph.com/@agaue</link>
        </image>
        <copyright>All rights reserved</copyright>
        <item>
            <title><![CDATA[Atlassian Interview Summary]]></title>
            <link>https://paragraph.com/@agaue/atlassian-interview-summary</link>
            <guid>iwFUfnljvsyWZ8crs5a8</guid>
            <pubDate>Wed, 02 Nov 2022 06:26:20 GMT</pubDate>
            <description><![CDATA[面试岗位：Senior Backend Software Engineer 岗位Base：Sydney, Australia 面试形式：zoom视频会议 面试轮次：Loop 1 HR interview 面试时长：11:00-11:45 am 面试语言：全程英文；英文团队在澳洲，都是本地的团队成员来面试 https://www.atlassian.com/company/careers/detail/0215cbe9-416a-4236-a911-1ed127d0d30f 一直想通过国内找工作的机会来获得澳洲工作签证，所以投递了很多澳洲支持 visa sponsorship 的公司。Atlassian 是第一家拿到面试机会的公司，今天完成了一轮面试，对问题做个简单的总结。 问题1：对自己的职业生涯做个总结。 问题2：你了解Atlassian这家公司吗，你是怎么知道的，用过我们的产品没有？ 问题3：说一说你经历过的一个复杂项目。 问题4：你用到了哪些技术（例如 Java, Springboot这种） 问题5：你经历过TDD开发方式吗？ 问题6：你是怎么测试你自己编写的代码的？ 问题...]]></description>
            <content:encoded><![CDATA[<p>面试岗位：Senior Backend Software Engineer</p><p>岗位Base：Sydney, Australia</p><p>面试形式：zoom视频会议</p><p>面试轮次：Loop 1 HR interview</p><p>面试时长：11:00-11:45 am</p><p>面试语言：全程英文；英文团队在澳洲，都是本地的团队成员来面试</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.atlassian.com/company/careers/detail/0215cbe9-416a-4236-a911-1ed127d0d30f">https://www.atlassian.com/company/careers/detail/0215cbe9-416a-4236-a911-1ed127d0d30f</a></p><p>一直想通过国内找工作的机会来获得澳洲工作签证，所以投递了很多澳洲支持 visa sponsorship 的公司。Atlassian 是第一家拿到面试机会的公司，今天完成了一轮面试，对问题做个简单的总结。</p><p>问题1：对自己的职业生涯做个总结。</p><p>问题2：你了解Atlassian这家公司吗，你是怎么知道的，用过我们的产品没有？</p><p>问题3：说一说你经历过的一个复杂项目。</p><p>问题4：你用到了哪些技术（例如 Java, Springboot这种）</p><p>问题5：你经历过TDD开发方式吗？</p><p>问题6：你是怎么测试你自己编写的代码的？</p><p>问题7：在项目中，你会优先考虑什么了， 安全问题？ 系统性能？</p><p>问题8：你每天花在Coding 上的时间是多少了，占你一天的时间百分之多少？</p><p>问题9：你的团队组织架构是怎么样的，有哪些角色？</p><p>问题10：你空余时间会做什么了，可以说一下你空余时间获得哪些成果吗？</p><p>问题11：你现在有在面试其他澳洲的公司吗，你在面试公司的过程中更看重什么了？</p><p>问题12：你有什么想跟我了解的吗？</p><p>大概就聊了以上的问题，还有一些关于签证赞助，费用说明和Atlassian薪资组成说明。</p><div data-type="subscribeButton" class="center-contents"><a class="email-subscribe-button" href="null">Subscribe</a></div>]]></content:encoded>
            <author>agaue@newsletter.paragraph.com (Moe)</author>
        </item>
        <item>
            <title><![CDATA[以太坊链DAPP编写]]></title>
            <link>https://paragraph.com/@agaue/dapp</link>
            <guid>DKRcYRwA70SsEMD3dlDk</guid>
            <pubDate>Tue, 01 Nov 2022 15:21:33 GMT</pubDate>
            <description><![CDATA[怎么写一个DAPP？网上教程比较多，本文结合自己的学习过程，只做信息整理。 智能合约语言Solidity学习，推荐学习平台，跟着教程学习完毕，就对Solidity有基本的了解和编写简单的智能合约代码了。 https://cryptozombies.io/en/course/ Solidity编辑器推荐 Remix IDE。有网页版跟软件，自己根据情况选择。 https://remix-project.org/ 测试链，我是自己启动了一条测试链，然后讲合约代码发布到自己的测试链上。这涉及到geth的安装跟启动 geth mac安装和启动，参考eth社区官网： https://geth.ethereum.org/docs/install-and-build/installing-geth geth的使用，包括如何启动，如何链接到节点，常用命令（创建账号，转账，查余额）等： https://geth.ethereum.org/docs/interface/hardware Remix IDE 链接本地测试链，可以使用本地的测试账号。合约部署，选择好vm，账号，gas limit等配置后...]]></description>
            <content:encoded><![CDATA[<p>怎么写一个DAPP？网上教程比较多，本文结合自己的学习过程，只做信息整理。</p><p>智能合约语言Solidity学习，推荐学习平台，跟着教程学习完毕，就对Solidity有基本的了解和编写简单的智能合约代码了。</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://cryptozombies.io/en/course/">https://cryptozombies.io/en/course/</a></p><p>Solidity编辑器推荐 Remix IDE。有网页版跟软件，自己根据情况选择。</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://remix-project.org/">https://remix-project.org/</a></p><p>测试链，我是自己启动了一条测试链，然后讲合约代码发布到自己的测试链上。这涉及到geth的安装跟启动</p><p>geth mac安装和启动，参考eth社区官网：</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://geth.ethereum.org/docs/install-and-build/installing-geth">https://geth.ethereum.org/docs/install-and-build/installing-geth</a></p><p>geth的使用，包括如何启动，如何链接到节点，常用命令（创建账号，转账，查余额）等：</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://geth.ethereum.org/docs/interface/hardware">https://geth.ethereum.org/docs/interface/hardware</a></p><p>Remix IDE 链接本地测试链，可以使用本地的测试账号。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/ba2404fcd553c8342e088f2b71f490043653e6930c760edf143c4bd0f21776cf.png" 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>合约部署，选择好vm，账号，gas limit等配置后，点击Deploy按钮部署智能合约。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/d7abfcbb78f4dfd44d10101bfc7097bd7d0451624e8861319b2dc92599a21963.png" 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>部署完成后，左下角能看到已发布的合约。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/21c9490de9703344f4aa5fdc159889f30ebeb1b7d708d5a214abd7987be06237.png" 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>]]></content:encoded>
            <author>agaue@newsletter.paragraph.com (Moe)</author>
        </item>
        <item>
            <title><![CDATA[英语句子结构整理]]></title>
            <link>https://paragraph.com/@agaue/PQHaRRoPrJNHTt8hVduJ</link>
            <guid>PQHaRRoPrJNHTt8hVduJ</guid>
            <pubDate>Sat, 08 Oct 2022 16:03:54 GMT</pubDate>
            <description><![CDATA[今天整理的英语句子结构知识点，分享一下。简单句子所有的英文句子，最后都可以拆分成简单句，简单句就包括两部分：什么 怎么样。什么就是主语，怎么样就是谓语。谓语动词有哪些“动作”（谓语动词）？几乎所有的英语句子结构，都是主语+谓语。句子主语后面的余下句子部分就是谓语。所以，谓语动词只是谓语其中一部分。简单句子结构英文句子中除了上面列举的几种情况外，还有定语，状语和同位语。定语（Attributive） 主要用来修饰主语或宾语。The little white rabbit ate a large carrot. The little white就是主语 rabbit 的定语；a large 就是宾语 carrot 的定语。 状语（Adverbial） 主要用来修饰谓语动词。The rabbit ate quickly. quickly就是ate的状语。 同位语（Appositive） 主要用来把主语或宾语再说一遍。Papa Rabbit, an English teacher, eats a carrot. 这里的an English teacher就是把Papa Rabbit用不同...]]></description>
            <content:encoded><![CDATA[<p>今天整理的英语句子结构知识点，分享一下。</p><h2 id="h-" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">简单句子</h2><p>所有的英文句子，最后都可以拆分成简单句，简单句就包括两部分：什么 怎么样。什么就是主语，怎么样就是谓语。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/d51f82aff0e5fbf574056cd18d49243c1d7910900a80bcd8ad3bfb382053906a.png" 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-" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">谓语动词</h2><p>有哪些“动作”（谓语动词）？</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/7089d613be987200c907f6a617ca7540c914372ac07217dc6b81f43f80dba161.png" 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>几乎所有的英语句子结构，都是主语+谓语。句子主语后面的余下句子部分就是谓语。所以，谓语动词只是谓语其中一部分。</p><h2 id="h-" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">简单句子结构</h2><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/8ea572329f14a50882f5072f6909247c61b82608627403e283e6a50623385cfe.png" 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>英文句子中除了上面列举的几种情况外，还有定语，状语和同位语。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/587d880f2624463633fa081ffa7c4b310ad4495dd0bf8a4e22115d294f244973.png" 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>定语（Attributive）</p><p>     主要用来修饰主语或宾语。The little white rabbit ate a large carrot. The little white就是主语 rabbit 的定语；a large 就是宾语 carrot 的定语。</p><p>状语（Adverbial）</p><p>     主要用来修饰谓语动词。The rabbit ate quickly. quickly就是ate的状语。</p><p>同位语（Appositive）</p><p>     主要用来把主语或宾语再说一遍。Papa Rabbit, an English teacher, eats a carrot. 这里的an English teacher就是把Papa Rabbit用不同的方式再说一遍，这里它跟主语有同等地位。</p><p>以上是英语中的简单句子结构。但是在我们平时说话或者写文章时，会把这些简单句相互组合，形成Compound Sentence和Complex Sentence。</p><h2 id="h-compound-sentence" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Compound Sentence（复合句）</h2><p>句子简单叠加，是并列关系</p><h2 id="h-complex-sentence" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Complex Sentence（复杂句）</h2><p>把一个句子套在另外一个句子里，甚至还可以据悉套在另外一个句子里，一直套下去。一个句子套另外一个句子，在英语语法中分别叫主句（main clause）和从句（subordinate clause）。从句其实就是把简单句修改一下来充当另外一个句子的句子成分：</p><ol><li><p>比如修改一个简单句，它就可以充当另外一个句子的主语，这就是主语从句；</p></li><li><p>比如修改一个简单句，它就可以充当另外一个句子的宾语，这就是宾语从句；</p></li><li><p>比如修改一个简单句，它就可以充当另外一个句子的表语，这就是表语从句；</p></li><li><p>等等…</p></li></ol><p>上面几种都具有名词的性质，所以又合称为名词性从句。此外还有定语从句，状语从句。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/eff0c676aee639d371095fe66fd7f14e2f091a03f861bb660461ac594e4f5b25.png" 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-" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">谓语动词的“三大本领”</h2><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/064b1e3fb613d3086054988711bc666bd62f5d76dc705c6e669f9ea10b38211d.png" 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/5808ab8f43160001f1a702bf95fc22484c1b4ee64cec4d1fd26f5906f6aac55c.png" 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/cf72f11a640c1d4ed5923ee8e7d621a940cc2fb37de7d025c4d40d56d0507353.png" 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-auxiliary-verbs" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">助动词（Auxiliary verbs）</h2><p>谓语动词也是需要帮助的时候，英语的谓语动词本身往往不能够独立完成刚才所说的那些本领，而且谓语动词独自也无法完成比如表示否定，可能性，必须性等意思。想要谓语动词充分发挥，我们必须用到另一类经常和动词一起用的词，帮助“完成任务”。它们就是“助动词“ auxiliary verbs。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/3f16611f91cdc607a8871ce18acd89aabf8fb7175a8883e5f4ab470538d36e4e.png" 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>需要注意：以上have, be, can, might等除了做助动词（没有实际意义，只是帮助谓语动词而已）。还可以做实义动词，甚至其他词性。比如have可以是“拥有”。所以千万不要把助动词和它的其它身份（做实义动词）弄混淆。</p><h2 id="h-vs" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">谓语动词 VS. 非谓语动词</h2><p>动词处理充当句子中的谓语动词，还有可能充当主语、宾语、宾语补语，主语补语、定语等，只不过需要把谓语动词修改一下，改成非谓语动词。非谓语动词几乎可以取代所有的从句，从而简化句子。这样的动词就不再具有表示动作时间，状态，语态，语气的功能。</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/3ce17eb9df1706f390e98c3d698789c8c3a0986b8b2539787f1b50c46420b4cf.png" 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>非谓语动词以不同形式出现在句子中，包括：</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/79ebaed96541f87ceb918bf784e65c3b600afe6550e6130ab7606ab195772925.png" 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-" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">总结</h2><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/515bc6fd4356c6ec47c8ee1f1f43137edb67d8c1dbbf44d2a6863b761a809699.png" 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>以上内容来自youtube：</p><div data-type="youtube" videoId="is7vn5URVcc">
      <div class="youtube-player" data-id="is7vn5URVcc" style="background-image: url('https://i.ytimg.com/vi/is7vn5URVcc/hqdefault.jpg'); background-size: cover; background-position: center">
        <a href="https://www.youtube.com/watch?v=is7vn5URVcc">
          <img src="{{DOMAIN}}/editor/youtube/play.png" class="play"/>
        </a>
      </div></div>]]></content:encoded>
            <author>agaue@newsletter.paragraph.com (Moe)</author>
        </item>
    </channel>
</rss>