-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathatom.xml
1232 lines (1011 loc) · 50.8 KB
/
atom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title><![CDATA[Phuoc-Loc 's blog]]></title>
<link href="http://www.trphloc.com/atom.xml" rel="self"/>
<link href="http://www.trphloc.com/"/>
<updated>2016-03-04T14:54:58+07:00</updated>
<id>http://www.trphloc.com/</id>
<author>
<name><![CDATA[trphloc]]></name>
<email><![CDATA[trphloc]]></email>
</author>
<generator uri="http://octopress.org/">Octopress</generator>
<entry>
<title type="html"><![CDATA[Phím tắt thông dụng trên Macbook]]></title>
<link href="http://www.trphloc.com/blog/2016/03/04/phim-tat-tren-macbook/"/>
<updated>2016-03-04T14:41:48+07:00</updated>
<id>http://www.trphloc.com/blog/2016/03/04/phim-tat-tren-macbook</id>
<content type="html"><![CDATA[<ul id="markdown-toc">
<li><a href="#phm-tt-c-bn">Phím tắt cơ bản</a></li>
<li><a href="#phm-tt-trn-trnh-duyt">Phím tắt trên trình duyệt</a></li>
<li><a href="#phm-tt-trn-itunes">Phím tắt trên iTunes</a></li>
</ul>
<!-- ================================================================= -->
<h2 id="phm-tt-c-bn">Phím tắt cơ bản</h2>
<ul>
<li>Command + C => Copy</li>
<li>Command + V => Paste</li>
<li>Command + Alt + V => Cut (Command + C = Chọn file để cut)</li>
<li>Command + Delete => Xoá</li>
<li>Command + Q => Thoát hoàn toàn ứng dụng.</li>
<li>Command + W => Thoát cửa sổ đang làm việc.</li>
<li>Command + M => Minimize.</li>
<li>Command + Shift + 3 => Chụp toàn màn hình.</li>
<li>Command + Shift + 4 + kéo chuột => Chụp màn hình vùng kéo chuột.</li>
<li>Command + Shift + 4 + Space => Chụp màn hình cửa sổ khi được trỏ chuột.</li>
<li>Spacebar => Quick look ( click vào thư mục cần xem trước )</li>
<li>Command + I ( đương nhiên phải click vào cái cần info nhé )</li>
<li>Command + “,” => Thiết lập, chỉnh sửa cài đặt chung</li>
</ul>
<!-- ================================================================= -->
<h2 id="phm-tt-trn-trnh-duyt">Phím tắt trên trình duyệt</h2>
<ul>
<li>Command + T => New tap</li>
<li>Command + R => Refresh</li>
<li>Command + Control + F => Full screen</li>
<li>Command + D => Đánh dấu trang vào Bookmark</li>
<li>Command + Link => Mở link trong tab mới</li>
<li>Command + “+” => Zoom in</li>
<li>Command + “-“ => Zoom out -</li>
<li>Command + 0 => Size mặc định của trang web</li>
</ul>
<!-- ================================================================= -->
<h2 id="phm-tt-trn-itunes">Phím tắt trên iTunes</h2>
<ul>
<li>Command + T => full visualizes</li>
<li>Spacebar => Play/Pause</li>
<li>Command + Shift + M => Mini itunes</li>
</ul>
<!-- ================================================================= -->
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Unity]]></title>
<link href="http://www.trphloc.com/blog/2016/01/20/unity/"/>
<updated>2016-01-20T12:37:18+07:00</updated>
<id>http://www.trphloc.com/blog/2016/01/20/unity</id>
<content type="html"><![CDATA[<ul id="markdown-toc">
<li><a href="#thm-assembly-reference">Thêm assembly reference</a></li>
</ul>
<!-- ================================================================= -->
<h2 id="thm-assembly-reference">Thêm assembly reference</h2>
<ul>
<li>Tham khảo: </li>
</ul>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[HTTP debugging proxy]]></title>
<link href="http://www.trphloc.com/blog/2016/01/08/http-debugging-proxy/"/>
<updated>2016-01-08T11:23:01+07:00</updated>
<id>http://www.trphloc.com/blog/2016/01/08/http-debugging-proxy</id>
<content type="html"><![CDATA[<ul id="markdown-toc">
<li><a href="#tham-kho">Tham khảo</a></li>
</ul>
<!-- ================================================================= -->
<h2 id="tham-kho">Tham khảo</h2>
<ul>
<li>https://mitmproxy.org/</li>
<li>http://www.telerik.com/fiddler</li>
</ul>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Control Panels for Managing a CentOS Server]]></title>
<link href="http://www.trphloc.com/blog/2016/01/04/control-panels-for-managing-a-linux-server/"/>
<updated>2016-01-04T11:18:21+07:00</updated>
<id>http://www.trphloc.com/blog/2016/01/04/control-panels-for-managing-a-linux-server</id>
<content type="html"><![CDATA[<ul id="markdown-toc">
<li><a href="#centos-web-panel">CentOS Web Panel</a></li>
<li><a href="#webmin">Webmin</a></li>
<li><a href="#tham-kho">Tham khảo</a></li>
</ul>
<!-- ================================================================= -->
<h2 id="centos-web-panel">CentOS Web Panel</h2>
<ul>
<li>Cài đặt
<ul>
<li>Thực hiện theo link http://centos-webpanel.com/cwp-installation</li>
<li>Thực hiện các lệnh sau</li>
</ul>
</li>
</ul>
<div class="bogus-wrapper"><notextile><figure class="code"><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class="line-number">1</span>
<span class="line-number">2</span>
<span class="line-number">3</span>
<span class="line-number">4</span>
<span class="line-number">5</span>
<span class="line-number">6</span>
<span class="line-number">7</span>
<span class="line-number">8</span>
</pre></td><td class="code"><pre><code class=""><span class="line">yum -y install wget
</span><span class="line">yum -y update
</span><span class="line">reboot
</span><span class="line">
</span><span class="line">cd /usr/local/src
</span><span class="line">wget http://centos-webpanel.com/cwp-latest
</span><span class="line">sh cwp-latest
</span><span class="line">reboot</span></code></pre></td></tr></table></div></figure></notextile></div>
<ul>
<li>Tham khảo:
<ul>
<li>http://centos-webpanel.com/</li>
</ul>
</li>
</ul>
<!-- ================================================================= -->
<h2 id="webmin">Webmin</h2>
<ul>
<li>Cài đặt
<ul>
<li>Thực hiện theo link http://doxfer.webmin.com/Webmin/Installation</li>
<li>Thực hiện các lệnh sau để cài đặt</li>
</ul>
</li>
</ul>
<div class="bogus-wrapper"><notextile><figure class="code"><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class="line-number">1</span>
<span class="line-number">2</span>
<span class="line-number">3</span>
<span class="line-number">4</span>
<span class="line-number">5</span>
<span class="line-number">6</span>
<span class="line-number">7</span>
</pre></td><td class="code"><pre><code class=""><span class="line">(echo "[Webmin]
</span><span class="line">name=Webmin Distribution Neutral
</span><span class="line">baseurl=http://download.webmin.com/download/yum
</span><span class="line">enabled=1
</span><span class="line">gpgcheck=1
</span><span class="line">gpgkey=http://www.webmin.com/jcameron-key.asc" >/etc/yum.repos.d/webmin.repo;
</span><span class="line">yum -y install webmin)</span></code></pre></td></tr></table></div></figure></notextile></div>
<ul>
<li>Mở port
<ul>
<li>Lấy iptable chuyển vào tập tin tạm</li>
<li>Chỉnh sửa theo nội dung</li>
<li>Ghi đè vào iptable</li>
<li>Khởi động lại tường lửa (firewall)</li>
</ul>
</li>
</ul>
<div class="bogus-wrapper"><notextile><figure class="code"><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class="line-number">1</span>
<span class="line-number">2</span>
</pre></td><td class="code"><pre><code class=""><span class="line">iptables-save > /tmp/tabsav
</span><span class="line">vi /tmp/tabsav</span></code></pre></td></tr></table></div></figure></notextile></div>
<p>Nội dung của file tabsav</p>
<div class="bogus-wrapper"><notextile><figure class="code"><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class="line-number">1</span>
<span class="line-number">2</span>
<span class="line-number">3</span>
<span class="line-number">4</span>
<span class="line-number">5</span>
<span class="line-number">6</span>
<span class="line-number">7</span>
<span class="line-number">8</span>
<span class="line-number">9</span>
<span class="line-number">10</span>
<span class="line-number">11</span>
<span class="line-number">12</span>
<span class="line-number">13</span>
<span class="line-number">14</span>
</pre></td><td class="code"><pre><code class=""><span class="line"># Generated by iptables-save v1.4.7 on Thu Sep 26 00:02:49 2013
</span><span class="line">*filter
</span><span class="line">:INPUT ACCEPT [0:0]
</span><span class="line">:FORWARD ACCEPT [0:0]
</span><span class="line">:OUTPUT ACCEPT [3044:1198306]
</span><span class="line">-A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
</span><span class="line">-A INPUT -p icmp -j ACCEPT
</span><span class="line">-A INPUT -i lo -j ACCEPT
</span><span class="line">-A INPUT -p tcp -m state --state NEW -m tcp --dport 10000 -j ACCEPT
</span><span class="line">-A INPUT -p tcp -m state --state NEW -m tcp --dport 22 -j ACCEPT
</span><span class="line">-A INPUT -j REJECT --reject-with icmp-host-prohibited
</span><span class="line">-A FORWARD -j REJECT --reject-with icmp-host-prohibited
</span><span class="line">COMMIT
</span><span class="line"># Completed on Thu Sep 26 00:02:49 2013</span></code></pre></td></tr></table></div></figure></notextile></div>
<div class="bogus-wrapper"><notextile><figure class="code"><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class="line-number">1</span>
<span class="line-number">2</span>
<span class="line-number">3</span>
</pre></td><td class="code"><pre><code class=""><span class="line">iptables-restore < /tmp/tabsav
</span><span class="line">firewall-cmd --zone=public --add-port=10000/tcp --permanent
</span><span class="line">firewall-cmd --reload</span></code></pre></td></tr></table></div></figure></notextile></div>
<ul>
<li>Sử dụng
<ul>
<li>Mở link https://192.168.1.100:10000/ => ip của máy</li>
<li>User & Pass là mật khẩu đăng nhập của máy</li>
</ul>
</li>
<li>Tham khảo:
<ul>
<li>http://www.webmin.com/</li>
</ul>
</li>
</ul>
<!-- ================================================================= -->
<h2 id="tham-kho">Tham khảo</h2>
<ul>
<li>https://en.wikipedia.org/wiki/Comparison_of_web_hosting_control_panels</li>
<li>http://www.hostingadvice.com/blog/cpanel-vs-plesk-vs-webpanel/</li>
<li>http://www.tecmint.com/web-control-panels-to-manage-linux-servers/</li>
<li>http://www.nuxified.org/article/best-control-panels-if-any-managing-linux-server</li>
<li></li>
</ul>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Swift tutorial]]></title>
<link href="http://www.trphloc.com/blog/2015/08/03/swift-tutorial/"/>
<updated>2015-08-03T14:03:01+07:00</updated>
<id>http://www.trphloc.com/blog/2015/08/03/swift-tutorial</id>
<content type="html"><![CDATA[<ul id="markdown-toc">
<li><a href="#ti-liu-tham-kho">Tài liệu tham khảo</a></li>
</ul>
<!-- ================================================================= -->
<h2 id="ti-liu-tham-kho">Tài liệu tham khảo</h2>
<ul>
<li>https://www.youtube.com/playlist?list=PL6gx4Cwl9DGDgp7nGSUnnXihbTLFZJ79B</li>
<li>https://www.youtube.com/playlist?list=PLxwBNxx9j4PUpjCEVwjqFvNecNvQ6Dj6G</li>
</ul>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[CentOS]]></title>
<link href="http://www.trphloc.com/blog/2015/07/29/centos/"/>
<updated>2015-07-29T12:29:53+07:00</updated>
<id>http://www.trphloc.com/blog/2015/07/29/centos</id>
<content type="html"><![CDATA[<ul id="markdown-toc">
<li><a href="#download-v-ci-t">Download và cài đặt</a></li>
<li><a href="#ci-t-apt-get">Cài đặt apt-get</a></li>
</ul>
<!-- ================================================================= -->
<p>## Các bước khi bắt đầu</p>
<ul>
<li>
<ol>
<li>Cấu hình mạng:
<ul>
<li>centos 7 - http://www.krizna.com/centos/setup-network-centos-7/</li>
<li>centos 6 -
<ul>
<li>https://gist.github.com/fernandoaleman/2172388</li>
<li>http://superuser.com/questions/637798/unable-to-access-the-internet-in-centos-from-a-static-ip</li>
</ul>
</li>
</ul>
</li>
</ol>
</li>
<li>
<ol>
<li>Cài đặt apt: http://everyday-tech.com/apt-get-on-centos/
(sử dụng yum thay vì apt
<div class=’bogus-wrapper’><notextile><figure class="code"><div class=”highlight”><table><tr><td class=”gutter”><pre class=”line-numbers”><span class="line-number">1</span></figure></notextile></li>
</ol>
</li>
</ul>
<p></pre></td><td class=’code’><pre><code class=""><span class="line">yum install apt</span></code></pre></td></tr></table></div></figure></notextile></div></p>
<p>https://www.rackaid.com/blog/linux-screen-tutorial-and-how-to/#switching
https://tournasdimitrios1.wordpress.com/2010/11/04/linux-the-screen-command-a-must-for-ssh/</p>
<!-- ================================================================= -->
<h2 id="download-v-ci-t">Download và cài đặt</h2>
<ul>
<li>…</li>
</ul>
<!-- ================================================================= -->
<h2 id="ci-t-apt-get">Cài đặt apt-get</h2>
<ul>
<li></li>
<li>Tham khảo: http://everyday-tech.com/apt-get-on-centos/</li>
</ul>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Jailbreak iPhone/iPad]]></title>
<link href="http://www.trphloc.com/blog/2015/07/24/jailbreak-iphone-slash-ipad/"/>
<updated>2015-07-24T09:53:15+07:00</updated>
<id>http://www.trphloc.com/blog/2015/07/24/jailbreak-iphone-slash-ipad</id>
<content type="html"><![CDATA[<ul id="markdown-toc">
<li><a href="#hng-dn-jailbreak-trn-macos">Hướng dẫn Jailbreak trên MacOS</a></li>
<li><a href="#ci-t-appsync">Cài đặt appsync</a></li>
<li><a href="#mt-s-tweak-ca-ios-84">Một số tweak của iOS 8.4</a></li>
<li><a href="#x-l-li-khi-b-treo-to">Xử lý lỗi khi bị treo táo</a></li>
<li><a href="#ti-liu-tham-kho">Tài liệu tham khảo</a></li>
</ul>
<!-- ================================================================= -->
<h2 id="hng-dn-jailbreak-trn-macos">Hướng dẫn Jailbreak trên MacOS</h2>
<ul>
<li>B1: Tải phần mềm mới nhất của PP jailbreak trên trang http://www.iphonehacks.com/download-pp-jailbreak .</li>
<li>B2: Kết nối máy tính sử dụng USB cable.</li>
<li>B3: Tắt Passcode trong Settings > Touch ID & Passcode.</li>
<li>B4: Tắt Find my iPhone trong Settings > iCloud > Find my iPhone.</li>
<li>B5: Tắt iTunes và xCode trước khi mở PP Jailbreak.</li>
<li>B6: Mở file PP Jailbreak dmg và copy tập tin app vào thư mục Application.</li>
<li>B7: Mở ứng dụng PP Jailbreak. Sẽ xuất hiện màn hình như bên dưới</li>
</ul>
<p><img src="images/2015-07-24-iOS-jailbreak1.png" /></p>
<ul>
<li>B8: Nhấn nút Jailbreak ở giữa màn hình để bắt đầu jailbreak.</li>
<li>B9: Chờ trong 1 khoảng thời gian để ứng dụng jailbreak máy.</li>
<li>B10: Sau khi jailbreak thành công sẽ có màn hình như bên dưới.</li>
</ul>
<p><img src="images/2015-07-24-iOS-jailbreak2.png" /></p>
<!-- ================================================================= -->
<h2 id="ci-t-appsync">Cài đặt appsync</h2>
<ul>
<li>Mở ứng dụng Cydia</li>
<li>Chọn phần Sources > Edit</li>
<li>Chọn Add để thêm các source sau vào
<ul>
<li>http://repo.appvv.com</li>
<li>http://repocydia.com</li>
<li>http://repo.hackyouriphone.org</li>
<li>http://cydia.angelxwind.net</li>
<li>Nếu có hỏi thì chọn “Add anyway” và update …</li>
</ul>
</li>
<li>Sau đó chọn done</li>
<li>Vào phần Search gõ AppSync > Install</li>
</ul>
<!-- ================================================================= -->
<h2 id="mt-s-tweak-ca-ios-84">Một số tweak của iOS 8.4</h2>
<ul>
<li>Mirmir: mở nhiều ứng dụng cùng lúc</li>
<li>Callbar: thu nhỏ màn hình nghe điện thoại ở góc trên</li>
<li>StickerMe: nhắn tin iMessage giống giống facebook</li>
<li>Applocker/BioProtect: khóa ứng dụng</li>
<li>iFile: quản lý tập tin</li>
<li>Tham khảo: http://cydia.vn/tong-hop-cac-tweak-lam-cho-ios-8-4-cua-ban-hoan-hao/</li>
</ul>
<!-- ================================================================= -->
<h2 id="x-l-li-khi-b-treo-to">Xử lý lỗi khi bị treo táo</h2>
<ul>
<li>B1: Download firmware mới nhất và tương thích với thiết bị iOS của bạn từ liên kết ở trên. Để firmware ở thư mục nào đó mà bạn dễ tìm kiếm.</li>
<li>B2: Kết nối iPhone bị treo táo vào máy tính, lúc này máy tính sẽ không nhận iPhone và bạn cần phải đưa iPhone về chế độ DFU Mode để iTunes có thể nhận iPhone. Nói nôm na ra thì DFU Mode là chế độ đặc biệt mà khi ở chế độ này iTunes sẽ nhận iPhone dù máy có bị treo, nhờ vậy bạn có thể tiến hành restore máy để khắc phục lỗi treo táo. Cách đưa iPhone về DFU
<ul>
<li>Kết nối iPhone bị treo táo vào máy tính</li>
<li>Nhấn đồng thời nút home và nguồn trong vài giây cho tới khi máy tắt hẳn</li>
<li>Sau đó bỏ nút nguồn ra nhưng vẫn tiếp tục giữ phím home cho tới khi iTunes báo có thiết bị iOS đang kết nối ở chế độ “Recovery mode”</li>
<li>Lưu ý là lúc iTunes báo nhận thì màn hình iPhone vẫn đen như đang tắt.</li>
</ul>
</li>
<li>B3: Trên iTunes, bạn có thể nhấn “restore” để iTunes tự download firmware mới nhất từ Apple. Hoặc các bạn có thể nhấn Shift + click vào Restore (Windows) hoặc Option + Restore (OS X) và chọn đường dẫn đến cái firmware mà bạn đã download ở bước 1. Chờ iTunes restore lại thiết bị và máy của bạn sẽ hết bị lỗi treo táo.</li>
</ul>
<!-- ================================================================= -->
<h2 id="ti-liu-tham-kho">Tài liệu tham khảo</h2>
<ul>
<li>http://www.iphonehacks.com/2015/07/how-to-jailbreak-ios-8-4-on-mac-using-pp-jailbreak.html</li>
<li>http://www.techrum.vn/threads/co-ban-cach-khac-phuc-khi-thiet-bi-ios-bi-treo-logo-khoi-dong-loi-treo-tao.18662/</li>
</ul>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Hugo]]></title>
<link href="http://www.trphloc.com/blog/2015/05/18/hugo/"/>
<updated>2015-05-18T13:13:44+07:00</updated>
<id>http://www.trphloc.com/blog/2015/05/18/hugo</id>
<content type="html"><![CDATA[<p>TODO</p>
<ul>
<li>Tham khảo: http://gohugo.io/</li>
</ul>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Android - automation test]]></title>
<link href="http://www.trphloc.com/blog/2015/05/14/android-automation-test/"/>
<updated>2015-05-14T07:12:11+07:00</updated>
<id>http://www.trphloc.com/blog/2015/05/14/android-automation-test</id>
<content type="html"><![CDATA[<h3 id="monkeyrunner">Monkeyrunner</h3>
<h3 id="robotium">Robotium</h3>
<h3 id="scirocco">Scirocco</h3>
<h3 id="robolectric">Robolectric</h3>
<ul>
<li>http://www.softwaretestinghelp.com/5-best-automation-tools-for-testing-android-applications/</li>
<li>
<p>http://stackoverflow.com/questions/12237314/android-test-automation-tools</p>
</li>
<li>http://developer.android.com/training/testing/ui-testing/espresso-testing.html</li>
</ul>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Selenium]]></title>
<link href="http://www.trphloc.com/blog/2015/05/14/selenium/"/>
<updated>2015-05-14T07:00:32+07:00</updated>
<id>http://www.trphloc.com/blog/2015/05/14/selenium</id>
<content type="html"><![CDATA[<ul id="markdown-toc">
<li><a href="#selenium-ide">Selenium IDE</a></li>
<li><a href="#selenium">Selenium</a></li>
<li><a href="#selendroid---selenium-for-android">Selendroid - Selenium for android</a></li>
</ul>
<!-- ================================================================= -->
<p>## Cài đặt</p>
<h3 id="selenium-ide">Selenium IDE</h3>
<ul>
<li>Sử dụng để record và thực thi test</li>
</ul>
<h3 id="selenium">Selenium</h3>
<h3 id="selendroid---selenium-for-android">Selendroid - Selenium for android</h3>
<!-- ================================================================= -->
<p>## Tài liệu tham khảo</p>
<ul>
<li>http://www.seleniumhq.org/download/</li>
<li>http://www.seleniumhq.org/docs/</li>
</ul>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Mono-project]]></title>
<link href="http://www.trphloc.com/blog/2015/04/30/mono-project/"/>
<updated>2015-04-30T10:07:56+07:00</updated>
<id>http://www.trphloc.com/blog/2015/04/30/mono-project</id>
<content type="html"><![CDATA[<ul id="markdown-toc">
<li><a href="#c-trn-mac-os">C# trên mac os</a> <ul>
<li><a href="#download-v-ci-t">Download và cài đặt</a></li>
<li><a href="#s-dng-c-bn">Sử dụng cơ bản</a></li>
<li><a href="#tham-kho-chi-tit">Tham khảo chi tiết:</a> <ul>
<li><a href="#giao-din">Giao diện</a></li>
<li><a href="#web">Web</a></li>
</ul>
</li>
</ul>
</li>
</ul>
<h1 id="c-trn-mac-os">C# trên mac os</h1>
<!-- ================================================================= -->
<h2 id="download-v-ci-t">Download và cài đặt</h2>
<ul>
<li>Trang web: http://www.mono-project.com/download/</li>
<li>Chạy theo hướng dẫn</li>
</ul>
<!-- ================================================================= -->
<h2 id="s-dng-c-bn">Sử dụng cơ bản</h2>
<ul>
<li>Tạo tập tin hello.cs</li>
</ul>
<div class="bogus-wrapper"><notextile><figure class="code"><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class="line-number">1</span>
<span class="line-number">2</span>
<span class="line-number">3</span>
<span class="line-number">4</span>
<span class="line-number">5</span>
<span class="line-number">6</span>
<span class="line-number">7</span>
<span class="line-number">8</span>
<span class="line-number">9</span>
</pre></td><td class="code"><pre><code class=""><span class="line">using System;
</span><span class="line">
</span><span class="line">public class HelloWorld
</span><span class="line">{
</span><span class="line"> static public void Main ()
</span><span class="line"> {
</span><span class="line"> Console.WriteLine ("Hello Mono World");
</span><span class="line"> }
</span><span class="line">}</span></code></pre></td></tr></table></div></figure></notextile></div>
<ul>
<li>Sử dụng lệnh để biên dịch: mcs hello.cs</li>
<li>Thực thi tập tin: mono hello.exe</li>
<li>Tham khảo: http://www.mono-project.com/docs/getting-started/mono-basics/</li>
</ul>
<!-- ================================================================= -->
<h2 id="tham-kho-chi-tit">Tham khảo chi tiết:</h2>
<ul>
<li>http://www.mono-project.com/docs/</li>
</ul>
<h3 id="giao-din">Giao diện</h3>
<ul>
<li>Tham khảo: http://www.mono-project.com/docs/gui/winforms/</li>
</ul>
<h3 id="web">Web</h3>
<ul>
<li>Tham khảo:
<ul>
<li>http://www.mono-project.com/docs/web/aspnet/</li>
<li>http://www.mono-project.com/docs/web/wcf/</li>
</ul>
</li>
</ul>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Bugzilla]]></title>
<link href="http://www.trphloc.com/blog/2015/03/31/bugzilla/"/>
<updated>2015-03-31T14:04:52+07:00</updated>
<id>http://www.trphloc.com/blog/2015/03/31/bugzilla</id>
<content type="html"><![CDATA[<ul id="markdown-toc">
<li><a href="#ci-t-bugzilla-trn-mac-os">Cài đặt bugzilla trên mac os</a></li>
<li><a href="#b1-ci-t-perl">B1: Cài đặt perl</a></li>
<li><a href="#b2-ci-t-make">B2: Cài đặt make</a></li>
<li><a href="#b3-mt-s-gi-cn-ci-t-ty-chn">B3: Một số gói cần cài đặt (tùy chọn)</a></li>
<li><a href="#b4-ci-t-driver-cho-c-s-d-liu">B4: Cài đặt Driver cho cơ sở dữ liệu</a></li>
<li><a href="#b5-ci-t-bugzilla">B5: Cài đặt bugzilla</a></li>
</ul>
<h2 id="ci-t-bugzilla-trn-mac-os">Cài đặt bugzilla trên mac os</h2>
<!-- ================================================================= -->
<h2 id="b1-ci-t-perl">B1: Cài đặt perl</h2>
<ul>
<li>Sử dụng ActivePerl</li>
<li>Hoặc sử dụng Perlbrew
=> Sau khi cài đặt phải tạo biến (symbolic link) của perl tới thư mục mặc định</li>
</ul>
<div class="bogus-wrapper"><notextile><figure class="code"><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class="line-number">1</span>
</pre></td><td class="code"><pre><code class=""><span class="line">sudo ln -s /usr/local/ActivePerl-5.8/bin/perl /usr/bin/perl</span></code></pre></td></tr></table></div></figure></notextile></div>
<p>hoặc</p>
<div class="bogus-wrapper"><notextile><figure class="code"><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class="line-number">1</span>
</pre></td><td class="code"><pre><code class=""><span class="line">sudo ln -s /Users/trphloc/perl5/perlbrew/perls/perl-5.20.1/bin/perl /usr/bin/perl</span></code></pre></td></tr></table></div></figure></notextile></div>
<!-- ================================================================= -->
<h2 id="b2-ci-t-make">B2: Cài đặt make</h2>
<ul>
<li>Thực hiện các lệnh sau (các lệnh sau, phải thực hiện trong cpan</li>
</ul>
<div class="bogus-wrapper"><notextile><figure class="code"><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class="line-number">1</span>
<span class="line-number">2</span>
<span class="line-number">3</span>
<span class="line-number">4</span>
</pre></td><td class="code"><pre><code class=""><span class="line">cpan
</span><span class="line">o conf make '/usr/bin/make'
</span><span class="line">o conf commit
</span><span class="line">exit</span></code></pre></td></tr></table></div></figure></notextile></div>
<ul>
<li>Tham khảo: http://askubuntu.com/questions/161060/how-do-i-install-make</li>
</ul>
<!-- ================================================================= -->
<h2 id="b3-mt-s-gi-cn-ci-t-ty-chn">B3: Một số gói cần cài đặt (tùy chọn)</h2>
<div class="bogus-wrapper"><notextile><figure class="code"><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class="line-number">1</span>
</pre></td><td class="code"><pre><code class=""><span class="line">brew install libgd</span></code></pre></td></tr></table></div></figure></notextile></div>
<div class="bogus-wrapper"><notextile><figure class="code"><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class="line-number">1</span>
<span class="line-number">2</span>
</pre></td><td class="code"><pre><code class=""><span class="line">cpan install patchutils
</span><span class="line">cpan upgrade DBI</span></code></pre></td></tr></table></div></figure></notextile></div>
<!-- ================================================================= -->
<h2 id="b4-ci-t-driver-cho-c-s-d-liu">B4: Cài đặt Driver cho cơ sở dữ liệu</h2>
<ul>
<li>Postgres</li>
</ul>
<div class="bogus-wrapper"><notextile><figure class="code"><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class="line-number">1</span>
</pre></td><td class="code"><pre><code class=""><span class="line">sudo perl -MCPAN -e "install DBD::Pg"</span></code></pre></td></tr></table></div></figure></notextile></div>
<ul>
<li>mysql</li>
</ul>
<div class="bogus-wrapper"><notextile><figure class="code"><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class="line-number">1</span>
</pre></td><td class="code"><pre><code class=""><span class="line">sudo -H cpan DBD::mysql</span></code></pre></td></tr></table></div></figure></notextile></div>
<!-- ================================================================= -->
<h2 id="b5-ci-t-bugzilla">B5: Cài đặt bugzilla</h2>
<ul>
<li>Lấy mã nguồn theo đường dẫn: “sudo git clone –branch bugzilla-4.4-stable https://git.mozilla.org/bugzilla/bugzilla”</li>
<li>Di chuyển vào thư mục bugzilla</li>
<li>Thực thi lệnh</li>
</ul>
<div class="bogus-wrapper"><notextile><figure class="code"><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class="line-number">1</span>
</pre></td><td class="code"><pre><code class=""><span class="line">sudo perl ./checksetup.pl</span></code></pre></td></tr></table></div></figure></notextile></div>
<ul>
<li>Nếu có lỗi (báo thiếu module) thì cài thêm module theo hướng dẫn hoặc có thể thực hiện lệnh sau</li>
</ul>
<div class="bogus-wrapper"><notextile><figure class="code"><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class="line-number">1</span>
</pre></td><td class="code"><pre><code class=""><span class="line">sudo perl install-module.pl --all</span></code></pre></td></tr></table></div></figure></notextile></div>
<ul>
<li>Nếu ko có lỗi (hoặc đã cài bổ sung đủ module) thì thực thi lại lệnh checksetup, lệnh sẽ phát sinh thêm <strong>localconfig</strong> trong cùng thư mục</li>
</ul>
<div class="bogus-wrapper"><notextile><figure class="code"><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class="line-number">1</span>
</pre></td><td class="code"><pre><code class=""><span class="line">sudo perl ./checksetup.pl</span></code></pre></td></tr></table></div></figure></notextile></div>
<ul>
<li>Vào tập tin localconfig sửa các thông tin của database</li>
</ul>
<div class="bogus-wrapper"><notextile><figure class="code"><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class="line-number">1</span>
<span class="line-number">2</span>
<span class="line-number">3</span>
<span class="line-number">4</span>
<span class="line-number">5</span>
<span class="line-number">6</span>
<span class="line-number">7</span>
<span class="line-number">8</span>
<span class="line-number">9</span>
<span class="line-number">10</span>
<span class="line-number">11</span>
<span class="line-number">12</span>
<span class="line-number">13</span>
<span class="line-number">14</span>
<span class="line-number">15</span>
<span class="line-number">16</span>
<span class="line-number">17</span>
<span class="line-number">18</span>
<span class="line-number">19</span>
<span class="line-number">20</span>
<span class="line-number">21</span>
</pre></td><td class="code"><pre><code class=""><span class="line">$db_host = 'localhost';
</span><span class="line">
</span><span class="line"> # The name of the database. For Oracle, this is the database's SID. For
</span><span class="line"> # SQLite, this is a name (or path) for the DB file.
</span><span class="line"> $db_name = 'bugzilla';
</span><span class="line">
</span><span class="line"> # Who we connect to the database as.
</span><span class="line"> $db_user = 'postgres';
</span><span class="line">
</span><span class="line"> # Enter your database password here. It's normally advisable to specify
</span><span class="line"> # a password for your bugzilla database user.
</span><span class="line"> # If you use apostrophe (') or a backslash (\) in your password, you'll
</span><span class="line"> # need to escape it by preceding it with a '\' character. (\') or (\)
</span><span class="line"> # (It is far simpler to just not use those characters.)
</span><span class="line"> $db_pass = '';
</span><span class="line">
</span><span class="line"> # Sometimes the database server is running on a non-standard port. If that's
</span><span class="line"> # the case for your database server, set this to the port number that your
</span><span class="line"> # database server is running on. Setting this to 0 means "use the default
</span><span class="line"> # port for my database server."
</span><span class="line"> $db_port = 5432;</span></code></pre></td></tr></table></div></figure></notextile></div>
<ul>
<li>Thực thi lại lệnh checksetup</li>
</ul>
<div class="bogus-wrapper"><notextile><figure class="code"><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class="line-number">1</span>
</pre></td><td class="code"><pre><code class=""><span class="line">sudo perl ./checksetup.pl</span></code></pre></td></tr></table></div></figure></notextile></div>
<ul>
<li>Thành công thì có thể truy cập vào theo đường dẫn</li>
</ul>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Perl]]></title>
<link href="http://www.trphloc.com/blog/2015/03/31/perl/"/>
<updated>2015-03-31T11:39:38+07:00</updated>
<id>http://www.trphloc.com/blog/2015/03/31/perl</id>
<content type="html"><![CDATA[<ul id="markdown-toc">
<li><a href="#perl-trn-mac-os">Perl trên mac os</a> <ul>
<li><a href="#activeperl">ActivePerl</a> <ul>
<li><a href="#ci-t">Cài đặt</a></li>
<li><a href="#xa">Xóa</a></li>
</ul>
</li>
<li><a href="#perlbrew">Perlbrew</a></li>
</ul>
</li>
</ul>
<h1 id="perl-trn-mac-os">Perl trên mac os</h1>
<!-- ================================================================= -->
<h2 id="activeperl">ActivePerl</h2>
<h3 id="ci-t">Cài đặt</h3>
<ul>
<li>Tải tại đây (http://www.activestate.com/activeperl/downloads) và cài đặt theo chỉ dẫn</li>
<li>Thêm đường dẫn vào biến PATH (sử dụng file .profile)</li>
</ul>
<div class="bogus-wrapper"><notextile><figure class="code"><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class="line-number">1</span>
<span class="line-number">2</span>
</pre></td><td class="code"><pre><code class=""><span class="line">export PATH=/usr/local/ActivePerl-5.8/bin:$PATH
</span><span class="line">export PATH=/usr/local/ActivePerl-5.8/site/bin:$PATH</span></code></pre></td></tr></table></div></figure></notextile></div>
<ul>
<li>Tạo Symbolic link tới /usr/bin/perl và ppm</li>
</ul>
<div class="bogus-wrapper"><notextile><figure class="code"><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class="line-number">1</span>
<span class="line-number">2</span>
</pre></td><td class="code"><pre><code class=""><span class="line">ln -s /usr/local/ActivePerl-5.8/bin/perl /usr/bin/perl
</span><span class="line">ln -s /usr/local/ActivePerl-5.8/bin/ppm /usr/bin/ppm</span></code></pre></td></tr></table></div></figure></notextile></div>
<h3 id="xa">Xóa</h3>
<div class="bogus-wrapper"><notextile><figure class="code"><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class="line-number">1</span>
<span class="line-number">2</span>
</pre></td><td class="code"><pre><code class=""><span class="line">sudo /usr/local/ActivePerl-5.8/bin/ap-uninstall
</span><span class="line">rm /Users/<username>/bin/perl</span></code></pre></td></tr></table></div></figure></notextile></div>
<ul>
<li>Tham khảo:
<ul>
<li><a href="http://docs.activestate.com/activeperl/5.8/install.html#installing activeperl on mac os x (x86, powerpc)">docs.activestate.com</a></li>
</ul>
</li>
</ul>
<!-- ================================================================= -->
<h2 id="perlbrew">Perlbrew</h2>
<ul>
<li>Cài đặt nhiều phiên bản perl trên máy, chọn sử dụng version phù hợp cho mỗi tác vụ</li>
<li>Cài đặt perlbrew</li>
</ul>
<div class="bogus-wrapper"><notextile><figure class="code"><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class="line-number">1</span>
</pre></td><td class="code"><pre><code class=""><span class="line">\curl -L http://install.perlbrew.pl | bash</span></code></pre></td></tr></table></div></figure></notextile></div>
<ul>
<li>Cài đặt và sử dụng 1 phiên bản perl cụ thể</li>
</ul>
<div class="bogus-wrapper"><notextile><figure class="code"><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class="line-number">1</span>
<span class="line-number">2</span>
</pre></td><td class="code"><pre><code class=""><span class="line">perlbrew install perl-5.16.0
</span><span class="line">perlbrew switch perl-5.16.0</span></code></pre></td></tr></table></div></figure></notextile></div>
<ul>
<li>Tham khảo:
<ul>
<li>http://perlbrew.pl/ </li>
</ul>
</li>
</ul>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Nokia X]]></title>
<link href="http://www.trphloc.com/blog/2015/03/16/nokia-x/"/>
<updated>2015-03-16T08:36:17+07:00</updated>
<id>http://www.trphloc.com/blog/2015/03/16/nokia-x</id>
<content type="html"><![CDATA[<!-- ================================================================= -->
<h2 id="ci-t-play-store-khng-cn-root">Cài đặt play store không cần root</h2>
<ul>
<li>Làm theo hướng dẫn: http://lionking853.blogspot.co.uk/2014/07/how-to-install-uninstall-play-store.html</li>
<li>Khi có lỗi trên win 7 trở lên thì xử lý lỗi theo link: http://www.howtogeek.com/167723/how-to-disable-driver-signature-verification-on-64-bit-windows-8.1-so-that-you-can-install-unsigned-drivers/x</li>
<li>Tài liệu tham khảo:
<ul>
<li>http://www.howtogeek.com/167723/how-to-disable-driver-signature-verification-on-64-bit-windows-8.1-so-that-you-can-install-unsigned-drivers/</li>
<li>http://forum.xda-developers.com/nokia-x/general/fix-updated-adb-drivers-nokia-x-v1-2-4-1-t2835827</li>
<li>http://lionking853.blogspot.co.uk/2014/07/how-to-install-uninstall-play-store.html</li>
<li>https://goo.im/gapps/gapps-jb-20121011-signed.zip/</li>
</ul>
</li>
</ul>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[C++]]></title>
<link href="http://www.trphloc.com/blog/2015/03/06/c-plus-plus/"/>
<updated>2015-03-06T15:51:23+07:00</updated>
<id>http://www.trphloc.com/blog/2015/03/06/c-plus-plus</id>
<content type="html"><![CDATA[
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Test management]]></title>
<link href="http://www.trphloc.com/blog/2015/02/04/test-management/"/>
<updated>2015-02-04T14:41:30+07:00</updated>
<id>http://www.trphloc.com/blog/2015/02/04/test-management</id>
<content type="html"><![CDATA[<ul id="markdown-toc">
<li><a href="#ti-liu-tham-kho">Tài liệu tham khảo</a></li>
</ul>
<!-- ================================================================= -->
<h2 id="ti-liu-tham-kho">Tài liệu tham khảo</h2>
<ul>
<li>http://www.softwaretestinghelp.com/testlink-tutorial-1/</li>
<li>http://en.wikipedia.org/wiki/TestLink</li>
</ul>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Diskpart]]></title>
<link href="http://www.trphloc.com/blog/2015/01/15/diskpart/"/>
<updated>2015-01-15T21:31:06+07:00</updated>
<id>http://www.trphloc.com/blog/2015/01/15/diskpart</id>
<content type="html"><![CDATA[<ul id="markdown-toc">
<li><a href="#cng-c-h-tr-x-l-a-cng">Công cụ hỗ trợ xử lý đĩa cứng</a></li>
<li><a href="#x-l-gpt-protective-partition-trn-windows-xp">Xử lý “GPT Protective Partition” trên windows xp</a></li>
</ul>
<!-- ================================================================= -->
<h2 id="cng-c-h-tr-x-l-a-cng">Công cụ hỗ trợ xử lý đĩa cứng</h2>
<ul>
<li>Thực thi lệnh <strong>diskpart</strong> trong cửa sổ command</li>
<li>Một số lệnh thông dụng
<ul>
<li>List disk: hiển thị thông tin các ổ đĩa</li>
<li>Select disk … : chọn ổ đĩa hiện hành (các thao tác sẽ thực thi trên ổ đĩa này)</li>
<li>Select partition …: chọn partition hiện hành</li>
<li>Select volume …: chọn volume hiện hành</li>
<li>detail disk: thông tin ổ đĩa</li>
<li>clean: xóa toàn bộ thông tin ổ đĩa</li>
<li>create partition …: tạo partition mới</li>
</ul>
</li>
</ul>
<!-- ================================================================= -->
<h2 id="x-l-gpt-protective-partition-trn-windows-xp">Xử lý “GPT Protective Partition” trên windows xp</h2>
<ul>
<li>Chọn phím ** Windows + R **</li>
<li>Gõ lệnh <strong>diskpart</strong></li>
<li>Thực thi lệnh <strong>List disk</strong></li>
<li>Chọn ổ đĩa cần xử lý ** Select disk … **</li>
<li>Thực thi lệnh <strong>clean</strong> => sẽ xóa toàn bộ dữ liệu trên ổ đĩa</li>
<li>Thực thi lệnh <strong>create partition primary</strong></li>
<li>Thực thi lệnh <strong>assign G</strong> (G là ổ đĩa map với ổ cứng)</li>
</ul>
<!-- ================================================================= -->
<ul>
<li>Tài liệu tham khảo
<ul>
<li>http://support.microsoft.com/kb/300415</li>
<li>http://technet.microsoft.com/en-us/library/cc766465%28v=ws.10%29.aspx</li>
</ul>
</li>
</ul>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Connect to SQL Server Using Oracle SQL Developer]]></title>
<link href="http://www.trphloc.com/blog/2015/01/15/connect-to-sql-server-using-oracl-sql-developer/"/>
<updated>2015-01-15T10:06:00+07:00</updated>
<id>http://www.trphloc.com/blog/2015/01/15/connect-to-sql-server-using-oracl-sql-developer</id>
<content type="html"><![CDATA[<ul id="markdown-toc">
<li><a href="#s-dng-oracle-sql-developer-kt-ni-ti-sql-server">Sử dụng Oracle SQL developer kết nối tới SQL Server</a> <ul>
<li><a href="#download-tp-tin-jtds">Download tập tin jTDS</a></li>
<li><a href="#cu-hnh-oracle-sql-developer">Cấu hình Oracle SQL Developer</a></li>
<li><a href="#kt-ni">Kết nối</a></li>
</ul>
</li>
<li><a href="#ti-liu-tham-kho">Tài liệu tham khảo</a></li>
</ul>
<!-- ================================================================= -->
<h2 id="s-dng-oracle-sql-developer-kt-ni-ti-sql-server">Sử dụng Oracle SQL developer kết nối tới SQL Server</h2>
<h3 id="download-tp-tin-jtds">Download tập tin jTDS</h3>
<ul>
<li>http://sourceforge.net/projects/jtds/files/</li>
<li>Sử dụng phiên bản mới nhất</li>
<li>Giải nén vào thư mục abc_xyz</li>
</ul>
<h3 id="cu-hnh-oracle-sql-developer">Cấu hình Oracle SQL Developer</h3>