公告版位
需要找什麼嗎? 左邊分類或許可以幫助你...
 功能  指令
 過濾 本機 & 對方 的 TCP & UDP 端口 8080  include:both:tcpudp:8080
   
   
   







黃彥霖 發表在 痞客邦 留言(0) 人氣()

如果你會寫到分段下載檔案 (續傳),那麼一定會需要使用分段寫入檔案 (續寫)
寫入一次後,如果意外中斷,還可以從上次的地方開始寫入
不需要再重頭開始寫入
有效節省時間

using UnityEngine;
using System.Collections;
using System.IO;

public class NewBehaviourScript : MonoBehaviour {

    public Texture2D t; // 請在這裡從外部拖一張圖片進來

    void Start () {

黃彥霖 發表在 痞客邦 留言(0) 人氣()

/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package main;

import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.InputStream;

黃彥霖 發表在 痞客邦 留言(1) 人氣()

先打以下指令:

yum install kde-l10n-Chinese-Traditional

安裝好後,到 System Setting 去作設定,詳細地址如下:

System Setting -> Local -> Country Region & Language -> Languages -> Chinese-Traditional

選擇 [ Chinese-Traditional ] 然後往右邊移動  [ Preferred Languages ]

黃彥霖 發表在 痞客邦 留言(0) 人氣()

需要建立 *.repo 檔案到以下位址

sudo gedit /etc/yum.repos.d/google-chrome.repo

用文字編輯器開啟,並輸入以下內容 (依照你的作業系統位元去作選擇)

// ------------------------------------------------------ 32 bit OS

[google]
name=Google - i386
baseurl=http://dl.google.com/linux/rpm/stable/i386
enabled=1

黃彥霖 發表在 痞客邦 留言(0) 人氣()