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
.idea/ | |
secret |
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
// 大推❤️❤️ // | |
戽斗魯肉飯(仁德街):大推❤️❤️魯肉飯、半熟蛋都非常好吃,必點。生意很好,店員都很客氣。 | |
泰貓了 Thai Cafe(中正路96巷):大推❤️❤️很喜歡綠咖哩雞飯、正宗泰式綠奶茶!價位不高、環境漂亮又乾淨、店員也很客氣,很棒的用餐體驗。生意很好,要提前訂位,不然可能吃不到。 | |
艷麗 南洋鹹甜食(南大路):大推❤️❤️飯類、甜點都非常好吃。特別喜歡大黃蜂咖椰娘惹糕、原味千層派。 | |
小方桌 La Petite Table(學府路):大推❤️❤️綜合起司披薩、波隆那肉醬千層麵非常好吃!很喜歡! | |
4.8坪 한국 비빔밥(東門市場):大推❤️❤️韓式拌飯很好吃,海鮮煎餅、蘿蔔湯也還不錯,魚板串普通。候位動線混亂,晚餐內用的話,尖峰時段過後(八點後)再來比較好。 | |
小次郎(東門市場):大推❤️❤️雞排咖哩飯好吃!炸雞排皮酥肉嫩,咖哩微辣。 | |
小鵲sing紅豆餅(東南街):大推❤️❤️非常好吃。生意很好,剛營業就去買就要等半小時,不想等可以提前預訂。更新:買過好幾次了,我最喜歡香草牛奶、起司薯薯、黑糖牛奶麻糬、熔岩可可。平日不太需要等。 |
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
既然來到台南,當然除了工作之外,還有一件很重要的事一定要做…就是吃! | |
記錄一下所有我吃過的小吃~ | |
雖然有很多店當地人可能都不太會去了,不過反正我本來就算是個觀光客嘛XDD | |
也非常歡迎熟悉台南美食的人推薦一下更多好吃的店~ | |
我覺得我回新竹以後一定會很想念這裡的食物的… | |
(一)牛肉湯 | |
1. 府城牛肉湯(府前路二段):大推❤️❤️超好吃!!牛肉很嫩,湯頭很棒,醬料味道也很好!觀光客比較少,不用排隊人擠人,但是好吃的程度卻不輸那些排隊名店! | |
2. 西羅殿牛肉湯(公園南路):大推❤️❤️超好吃!!特別是他的湯,真的非常好喝! |
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
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH=/Users/ywpu/.oh-my-zsh | |
# Set name of the theme to load. Optionally, if you set this to "random" | |
# it'll load a random theme each time that oh-my-zsh is loaded. | |
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes | |
ZSH_THEME="agnoster" |
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
module four(clk, set, out); | |
// An example for counter | |
input clk, set; | |
output [3:0] out; | |
reg [3:0] out; | |
always @ (posedge clk) | |
begin | |
if (set) |
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
#include <QtGui> | |
#include "dialog.h" | |
Dialog::Dialog(QWidget *parent) : QDialog(parent) { | |
label = new QLabel(tr("Find &what")); | |
lineEdit = new QLineEdit; | |
label->setBuddy(lineEdit); | |
caseCheckBox = new QCheckBox(tr("Case &sensitive")); | |
backwardCheckBox = new QCheckBox(tr("Search &backward")); |
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
#include <QApplication> | |
#include <QLabel> | |
#include <QPushButton> | |
#include <QSpinBox> | |
#include <QSlider> | |
#include <QHBoxLayout> | |
int main(int argc, char *argv[]) { | |
QApplication *application = new QApplication(argc, argv); |