https://avatars.githubusercontent.com/u/6058558

程式狂想筆記

nth-of-type不能用在class selector

今天踩雷,想用CSS控制class第以個做操控
nth-of-type 跟nth-child
nth-of-type是找 第幾個子元素
nth-child是找位置(位置是指所有元素)

不能抓.aaa:first-of-type不能正常跑
只能對html元素
不能對class

這個雷不要再踩到!!!

php可以做陣列比較

今天無聊試著用array比較
發現竟然var_dump東西竟然是true

依我印象中Java、JavaScript都不能直接做array比較
但是php竟然可以….
太神奇了

[PHP]basename採雷記

最近跟同事看smarty,覺得怪怪….
display(basename(‘xxxx.php’,php));

後來參發現basename第二個參數不會帶.php
真的 點點點…

不熟這個function,一眼真的會猜錯…
這種小雷希望不要再採到

[JAVA]IntelliJ IDEA Cannot find declaration to go to

最近使用IntelliJ IDEA看程式,目前使用裝進去發現沒有自動移置定義功能
Google找一下,發現不能直接開資料夾
要用import方式開啟檔案
IntelliJ IDEA Cannot find declaration to go to - 请叫我头头哥 - 博客园
Intellij IDEA ,按Ctrl+左键,不能进入类或方法的【解决办法】,提示Cannot find declaration to go to - CSDN博客

git同步分支衝突解決方法

之前副理叫我push上去他加入的gitlab空repo
我push竟然跑出fatal: refusing to merge unrelated histories
好在Google一下有找到答案