This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
這個社會上很多很多的人,他們對於人生從來沒有自己的想法,但卻完全沒有自覺,只知 | |
道隨著社會的價值觀前進,在成長的過程中,不斷的將社會的價值觀內化成自己的價值觀 | |
,然後當作是人生理所當然的道路,日復一日地過著生活,直到死亡。 | |
社會的價值觀告訴我們: | |
「畢業後要找份高薪的工作」 | |
「興趣不能當飯吃」 | |
「賺了錢之後就要買屬於自己的車子和房子」 | |
「工作穩定之後就要成家」 | |
「成家之後要生孩子」 | |
「努力工作努力存錢,等到退休就可以享福了」 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
只有勞方成員團結,反抗才有威脅性。不然資方永遠不會當一回事,因為妳不幹,後面有人等著幹 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
華航罷工是因為有工會才可以為下面的人爭取權益,唇亡齒寒,今天你不願意支持合法的工會罷工,你就是支持在一個高風險的過勞社會下承擔風險,包含醫療人員、警消、台鐵、各種乘運員都是,他們不只擔負自己的職涯,還有社會公眾的安全與性命,切勿用個人的自私來衡量合法的權益抗爭。 | |
講白話文,你才罔顧其他人的權益,犧牲其他人的性命,只為你自己的方便。 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Document</title> | |
<style> | |
body{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let ScheList = [ | |
{ //第1個人的上班班表 | |
empno:'01', | |
date_list: [ //這個人每一天的班表 | |
{ //第1個人在2018/01/01 上班班表代碼是A | |
date: '20180101', | |
type: 'A' | |
}, | |
{ //第1個人在2018/01/02 班表代碼是B |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
igKey_list.map( igKey=>{ | |
return […Array( props.ingredients[igKey] )] | |
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const BurgerIngredient_list = igKey_list.map(igKey=>{ | |
return [...Array(props.ingredients[igKey])].map( (_, i)=>{ | |
return <BurgerIngredient type={igKey} key={igKey + i} /> | |
}); | |
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
igKey_list.map( igKey=>{ | |
Return […Array( props.ingredients[igKey] )] | |
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import telnetlib | |
import sys | |
import Account #My file. It contains Account.id, Account.password | |
import time | |
tn = telnetlib.Telnet('ptt.cc') | |
time.sleep(1) | |
content = tn.read_very_eager().decode('big5','ignore') | |
print("首頁顯示...") | |
if "請輸入代號" in content: | |
print("輸入帳號...") |