[Microsoft Office] - Tải Video Từ Youtube Và Chèn Vào Powpoint 2016

October 22, 2017 |

Microsoft Power Point 2016


Bài viết này chỉ cách bạn làm sao để tải một video trên Youtube và sau đó bạn chèn vào bài thuyết trình của mình để cho trở nên sinh động hơn.

I. Các tải một video trên Youtube về máy của mình.
Bước 1: Bạn truy cập vào trang: https://keepvid.com


Bước 2: Bạn vào Youtube (https://www.youtube.com/) để tìm kiếm một video mà bạn cần tải về

Bước 3: Bạn Copy địa chỉ URL của youtube và past vào mục nhập url của trang Keepvid. Sau đó bạn nhấn Download.

Bước 4: Sau khi chờ vài giây thì kết quả từ trang Keepvid sẽ hiện như sau:

Sau đó bạn nhấn vào nút Download để tải video về. Tùy theo bạn muốn chất lượng video như thế nào thì bạn chọn tùy mục tương ứng như Max 720p, 420p. Có những videos hỗ trợ lên đến Full HD 1080p.

Chú ý: Các bạn chỉ nên chọn các mục có Format MP4 để download về.

II. Cách chèn video vào Microsoft Powerpoint

      Có 2 loại để bạn chèn video đó là chèn video online và chèn video dạng offline (khi bạn có video sẵn).

Cách 1: Chèn Online Video (Với cách này bạn phải kết nối internet khi thuyết trình)
Bước 1: Từ thanh Menu Bar chọn Insert > Video > Video Online
Bước 2: Nếu bạn muốn chèn video từ nguồn Youtube bạn search videos. Kết quả sẽ hiện ra và bạn chọn video mà mình cần chèn vào. Nhấn Insert để chèn vào.

OneDrive - Personal: Chèn video từ OneDrive - lưu trữ trực tuyến do microsoft cung cấp giống như Google Drive, MediaFire,...
Youtube : Lấy video từ nguồn youtube.
From a Video Embed Code: thường thì các trang web video trực tuyến có một Embed Code (Mã Nhúng) cung cấp cho bạn để bạn sử dụng chèn vào các nguồn khác nhau.

Cách 2: Chèn Video Offline.
Bạn làm tư tượng cách 1. Bạn chọn Video on My PC... và sau đó đến nơi video mà bạn cần chèn vào trên máy.

Chúc các bạn làm thành công!
Read more…

[Java Design Pattern] - Abstract class

October 22, 2017 |





Abstract class

An abstract class is a class that is declared abstract—it may or may not include abstract methods. Abstract classes cannot be instantiated, but they can be subclassed.

abstract void moveTo(double deltaX, double deltaY);

Note: If a classes included a abstract method, the class itself must be declared abstract, as in:

public abstract class GraphicObject {
   // declare fields
   // declare nonabstract methods
   abstract void draw();
}



Example: 
 
Bank
package com.designpattern.learn.section3.chapter4.pratice1;

import java.math.BigDecimal;


public abstract class Bank {

 private BigDecimal amount;

 public Bank(BigDecimal initializeAmount) {
  this.amount = initializeAmount;
 }

 public void deposit(BigDecimal drawAmount) {
  this.amount = this.amount.subtract(drawAmount);
 }

 public void setDeposit(BigDecimal addDeposit) {
  this.amount = this.amount.add(addDeposit);
 }

 public BigDecimal getDeposit() {
  return this.amount;
 }

 public void balanceEnquires() {
  System.out.println("Your deposit: " + this.amount);
 }

 public abstract void checking();

 public abstract void chargeServiceFee(BigDecimal giveInterest);

 public abstract void giveInterest(BigDecimal amount);

}
 

SavingAccount

package com.designpattern.learn.section3.chapter4.pratice1;

import java.math.BigDecimal;


public class SavingAccount extends Bank {

 /**
  * Constructs a <code>SavingAccount</code>.
  * 
  * @param initializeAmount
  */
 public SavingAccount(BigDecimal initializeAmount) {
  super(initializeAmount);
 }

 /** {@inheritDoc} */
 @Override
 public void checking() {
  System.out.println("Saving Account don't checking fee.");
 }

 /** {@inheritDoc} */
 @Override
 public void chargeServiceFee(BigDecimal giveInterest) {
  System.out.println("Saving Account don't charge Service Fee.");
 }

 /** {@inheritDoc} */
 @Override
 public void giveInterest(BigDecimal amount) {
  System.out.println("You give interest: " + amount);
  setDeposit(getDeposit().add(amount));

  System.out.println("Your deposit change:" + getDeposit());
  chargeServiceFee(amount);
 }

}

CheckingAccount

package com.designpattern.learn.section3.chapter4.pratice1;

import java.math.BigDecimal;

public class CheckingAccount extends Bank {

 // assume 5% fee of depositAmount
 private static final BigDecimal FIVE_SERVICE_FEE = new BigDecimal(0.05);

 /**
  * Constructs a <code>CheckingAccount</code>.
  * 
  * @param initializeAmount
  */
 public CheckingAccount(BigDecimal initializeAmount) {
  super(initializeAmount);
 }

 /** {@inheritDoc} */
 @Override
 public void checking() {
  balanceEnquires();
 }

 /** {@inheritDoc} */
 @Override
 public void chargeServiceFee(BigDecimal giveInterest) {
  // calculator amount of service fee.
  BigDecimal serviceFee = BigDecimal.ZERO;
  serviceFee = giveInterest.multiply(FIVE_SERVICE_FEE);

  // subtract fee into deposit.
  System.out.println("Service Fee: " + serviceFee);
  setDeposit(getDeposit().subtract(serviceFee));

 }

 /** {@inheritDoc} */
 @Override
 public void giveInterest(BigDecimal amount) {
  System.out.println("Your account don't use Give Interest.");
 }

} 
 
Read more…

[Database] - JOIN Table

October 12, 2017 |
We can JOIN table so that select records that having matching value in both tables.We can use so that replaced FROM statement.
It has four join type: INNER JOIN, LEFT JOIN, RIGHT JOIN, FULL JOIN
INNER JOIN









Get the common element of two table. The same with many tables.


LEFT JOIN









Get all elements of table 1 and matched the element of table 2.

RIGHT JOIN

 Get matched elements of table 1 and all elements of table 2.

FULL JOIN

Get all elements of 2 tables when there are matched both tables.

Syntax:
SELECT column1, column2, …
FROM table 1
INNER JOIN/LEFT JOIN/RIGHT JOIN/ FULL JOIN table2 ON table1.column1 = table2.column1 AND ….

is updating...
Read more…

[Tips] Eclipse A->Z

October 08, 2017 |

1. How to show perspective in eclipse
In someday, Your eclipse disappear Perspective and take time find, show them again as Show Whitespace Character, Web browser,.. . This section how to show/disable Perspective in Eclipse.

1. Go to Menu bar > Window > Perspective > Customize Perspective…
2. Customize Perspective window > choose Tool bar visibility > choose element which you want to display and then click OK button.
















Note: Click “Filter by action set” you will find perspective elements which you expected, is easier.
3. If the perspective isn’t set Action Availability, click “Action Set Avaikability” tab and choose perspective you want to show.














2. Update Eclipse new versions

Step 1: Window > Reference > Install/Updates > Add

Name: Eclipse 2020 -03
Location: https://download.eclipse.org/releases/2020-03

Eclipse releases: https://download.eclipse.org/releases/
Step 2:  Help > Check for update
 
Read more…

[Java Design Pattern] - Interface

October 08, 2017 |




Interface


"An interface is a reference type in Java. It is similar to class. It is a collection of abstract methods. A class implements an interface, thereby inheriting the abstract methods of the interface." - tutorialspoint

Read more…

[Download] - Softwares

October 04, 2017 |

SOFTWARES
1. Microsoft Office 2016:
http://www.mediafire.com/file/apapv7hj0dsukro/Microsoft_Office_2016.iso/file
2. UtraISO
http://www.mediafire.com/file/w84qys284d0ykeg/Vforum.vn__uiso9_pe.zip/file
3. Foxit Reader
http://www.mediafire.com/file/4185q92ce9er52w/FoxitReader901_enu_Setup_Prom.exe/file
4.IDM Final
http://www.mediafire.com/file/9n9lkrz2ic6cslt/6.15_IDM_Final.rar/file
5. Crack Win 7
http://www.mediafire.com/file/7k8zn84u68zoikz/Crack_Win_7.rar/file
6. PIXresier
http://www.mediafire.com/file/6g238g6v0548z28/PIXresizer.exe/file
7. Smart Defrag Portable
http://www.mediafire.com/file/xndu0e5912reaam/SmartDefragPortable.rar/file
8. Unikey
 http://www.mediafire.com/file/ymt01xol3z4yi2f/Unikey.rar/file
9. USB Show
http://www.mediafire.com/file/q0mj3ss5ttrc2ix/USB_Show.rar/file

Read more…