Flutter 09

Column Basically column widget works like rows widget but in different direction. In the column widget, we insert three container with different sizes, texts and colors. body: Column( children: Widget[
Yoast 宣布收购知名外挂 [Duplicate Post] 对我们有什么影响?

对我们有什么影响?会不会变成付费版外挂?会和 Yoast SEO 綑绑销售吗? Duplicate Post 是不少站长推荐的外挂,它可以轻鬆複制任何的 文章 (Post) 和页面 (P
JS30 Day 12 - Key Sequence Detection学习笔记

今天要来做的功能是,按下指定键盘按键,就会输出彩蛋。 而我们设置的彩蛋按钮是,上上下下左右左右BABA。 成果如下图: 首先,我们先创建彩蛋的code,
笔记 - 更简单的使用 LINE Notify

最近帮客户写的功能上要用到 LINE Notify,先前主要都在玩 LINE BOT 就没有特别去理解这一块。当我去翻官方文件,觉得排版有点糟糕,都会看到忘记在看哪个
[JavaScript 小笔记] 变数与内建型别之基本型别

变数 用来储存资料和进行运算的单位。 命名规则 字首必为大小写英文字母(大小写区分)、底线、$,后面可接大小写英文字母、底线、$或是数字。命
DC 个人笔记 - 準备资料 及 指令

开启软体 run_dc(C shell script): /bin/rm -rf *.syn *.pvl *.mr *.svf dc_shellXXXX -f ./xxx.tcl | tee dc_xxx.log /bin/rm -rf *.syn *.pvl *.mr *.svf dc_shellXXXX :开启软体xxx.tcl :合成时所下的
Why Is My Gmail not receiving emails on android?

Gmail is popularly known for sending and receiving emails instantly. However, reportedly, many users are facing the issue of Gmail not receiving emails android. If you are the one, facing same, get con
Android 基本(2) - Intent 基本观念与使用釐清

前言 近期想要好好地归纳与釐清一些基础观念,因此整理加分享的同步把东西整理放上来,有的部分可能比较基础请见谅 当我们有了多个 Activity 的时候我
Git merge&rebase

今天要来分享一个关于merge与rebase的差别。 此为两者的示意图:左为rebase,右为merge。 merge: 首先在master分支上做两次commit,然后再额外创建一个分支feature,