แสดงกระทู้

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Admin

หน้า: 1 ... 77 78 [79] 80 81
1171
Dota Allstar / Re: Dota Wo
« เมื่อ: กุมภาพันธ์ 22, 2012, 04:21:02 pm »
<a href="http://www.youtube.com/watch?v=Q-A-gN28_K0" target="_blank">http://www.youtube.com/watch?v=Q-A-gN28_K0</a>

V.81

1172
Dota Allstar / Dota Wo
« เมื่อ: กุมภาพันธ์ 22, 2012, 04:14:25 pm »
<a href="http://www.youtube.com/watch?v=_4FC8tbiuW8" target="_blank">http://www.youtube.com/watch?v=_4FC8tbiuW8</a>

V.80

1173
Dota Allstar / Dota Fail
« เมื่อ: กุมภาพันธ์ 22, 2012, 04:14:16 pm »
<a href="http://www.youtube.com/watch?v=6r0G3G40ZUc" target="_blank">http://www.youtube.com/watch?v=6r0G3G40ZUc</a>

V.61

1174
Dota Allstar / Dota Funny Wo
« เมื่อ: กุมภาพันธ์ 22, 2012, 04:14:03 pm »
<a href="http://www.youtube.com/watch?v=CKr_S36MjX4" target="_blank">http://www.youtube.com/watch?v=CKr_S36MjX4</a>

V.27

1175
คำสั่ง Dos

Time , date

md , mkdir > Creates a directory

del , erase > delete file

copy > Copies one or more files to another location.

ren , rename > Renames a file or files.



สร้าง directory
สร้างไว้ drive c:
md run1
md run2
md run3

สร้างไว้ drive d:

md runa
md runb
md runc

ต่อไป คำสั่ง time ตั้งเวลา

ต่อไป move file จาก c:\test1 eula1028.rtf ไปไว้ drive c:\run1
move file จาก c:\test1 eula1031.rtf ไปไว้ drive d:\runa

ตอนแรกต้องเข้าไปที่ c:\test1 เสร็จแล้วใช้คำสั่ง
move eula1028.rtf c:\run1

อย่าพิมพ์ผิดแม้แต่ตัวเดียว ไม่งั้นไฟล์หาย

ต่อไป format แบบ ธรรมดา กับแบบ system boot

สมมุติจะ format drive d
ใช้คำสั่ง format d:

ส่วนแบบ system boot ลืม + ไม่ได้ทำนานแล้ว

สุดท้าย คำสั่ง ลบ directory
ให้ลบ run1 กับ runa
แต่ไม่สามารถลบได้เพราะใน path นั้นมี file อยู่
เราต้องเข้าไป del แล้วค่อยออกมา rd

c:
cd run1
del eula1028.rtf
cd\
rd run1

1177
Programmer / Crack Md5 [vb]
« เมื่อ: กุมภาพันธ์ 21, 2012, 09:26:33 pm »
[mb]

โค๊ด: [Select]
Public Class Form1
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    End Sub
    Private Function GenerateHash(ByVal strToHash As String) As String
        Dim md5Obj As New Security.Cryptography.MD5CryptoServiceProvider
        Dim bytesToHash() As Byte = System.Text.Encoding.ASCII.GetBytes(strToHash)
        bytesToHash = md5Obj.ComputeHash(bytesToHash)
        Dim strResult As String = ""
        For Each b As Byte In bytesToHash
            strResult += b.ToString("x2")
        Next
        Return strResult
    End Function
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        TextBox2.Text = GenerateHash(TextBox1.Text) 'Output = MD5Hash(Input)
    End Sub
End Class


[/mb]

1178
Simple Machine Forum / สร้าง Banner ให้กับ board smf
« เมื่อ: กุมภาพันธ์ 21, 2012, 09:17:28 pm »
[mb]

เปิด index.template.php ใน ธีมที่ใช้

สิ่งที่ต้องทำ
- สร้าง File Banner1.txt , Banner2.txt
นำไปไว้ที่บอร์ดที่คุณเก็บไว้

ค้นหา

โค๊ด: [Select]
// Show the menu here, according to the menu sub template.
template_menu();

ใส่ หลัง template_menu();

โค๊ด: [Select]
include_once('banner1.txt');


ค้นหา

โค๊ด: [Select]
// Show the "Powered by" and "Valid" logos, as well as the copyright. Remember, the copyright must be somewhere!

ใส่ หลัง </table>';

โค๊ด: [Select]
include_once('banner2.txt');

Banner1 คือ แถบด้านบน
Banner2 คือ ล่างสุดของเว็บ
[/mb]

1179
Programmer / สุ่มบัตรประชาชน Perl
« เมื่อ: กุมภาพันธ์ 21, 2012, 08:43:48 pm »
[mb]

โค๊ด: [Select]

#!/usr/bin/env perl
# Thai ID Number Random original code by AssazziN THD
# Port to Linux by Ron Linix
use Tk;

### ID rand func
sub makeTSSN {
$id[0]=int(rand(8))+1;
$last=$id[0];
foreach $z (2..12) {
   $id[$z-1]=int(rand(9));
   $tmp[$z-1]=$id[$z-1]*(14-$z);
   $last+=$tmp[$z-1];
}
$last=11-($last%11);
if ($last==11) {
   $last=1;
}
elsif ($last==10) {
   $last=0;
}
$key=join('',@id);
$key.=$last;
#return $key;
return "$id[0]-$id[1]$id[2]$id[3]$id[4]-$id[5]$id[6]$id[7]$id[8]$id[9]-$id[10]$id[11]-$last";
}

### GUI
my $id;
my $mw = new MainWindow();
$mw->title("Thai ID Random.");
$mw->Label( -text => 'Thai ID Gen : Linux port by Ron Linix Original from AssazziN THD')->pack;
$entry = $mw->Entry( -textvariable => \$id )->pack;
$mw->Button( -text => 'Generate',
   -command => sub{ $id = &makeTSSN, print $id,"\n",} )->pack;
MainLoop;

[/mb]
Cd - AssazziN THD

1180
Talking / เล่าเรื่องเสียวๆ มากกว่า 3000เรื่อง !
« เมื่อ: กุมภาพันธ์ 21, 2012, 07:18:34 pm »
เล่าเรื่องเสียว มีมากกว่า 3000 เรื่อง ยอดดาวโหลดจากของเก่ามากกว่า 3หมื่น นี่เพิ่งมาอัพใหม่

ยังไงก็อย่าอ่านเยอะนะครับ มันเสียว อิอิอิ

Download : เฉพาะสมาชิกเท่านั้นที่สามารถมองเห็นได้ เข้าสู่ระบบ หรือ สมัครสมาชิก


1181
Talking / Re: วิธีใช้งานเว็บบอร์ด
« เมื่อ: กุมภาพันธ์ 21, 2012, 05:04:16 pm »


วิธีใส่โค้ด

โค๊ด: [Select]
[code][ /code]

วิธีใส่อ้างถึง
โค๊ด: [Select]
[quote][/quote]
วิธีใส่รูป
โค๊ด: [Select]
[img][/img][/code]

1182
Talking / วิธีใช้งานเว็บบอร์ด
« เมื่อ: กุมภาพันธ์ 21, 2012, 12:07:05 pm »
วิธีโพสลิ้ง Youtube

ใส่ code
โค๊ด: [Select]
[youtube=425,350][/youtube]


แล้วนำ url หลัง youtube มาใส่ ตรงกลาง เช่น

โค๊ด: [Select]
WnrYE3vO-dw

ก็จะได้

โค๊ด: [Select]
[youtube=425,350]WnrYE3vO-dw[/youtube]

1183
Program Software & Hardware / Microsoft Visio Thai
« เมื่อ: กุมภาพันธ์ 21, 2012, 11:31:32 am »
Microsoft Visio V.Thai โปรแกรมเขียนแบบวงจรอิเล็กทรอนิกส์บนคอมพิวเตอร์

Part1 : http://www.mediafire.com/?angwaweano80rim

Part2 : http://www.mediafire.com/?86yx7cxminljicb

Part3 : http://www.mediafire.com/?02gjuaddfx6wnnz

1184
Program Software & Hardware / Winrar Crack ถาวร
« เมื่อ: กุมภาพันธ์ 21, 2012, 11:30:24 am »
เพียง คลิกเดียว เครื่องคุณก็ลง winrar เสร็จ crack ภายในตัว

Download Winrar Crack ถาวร : http://www.mediafire.com/?ux4b5w26z6mafkm

1185
Program Software & Hardware / เปิดดูหนัง Blue Ray ภาพ 1080p 1080 720p กระตุก ?
« เมื่อ: กุมภาพันธ์ 21, 2012, 11:20:21 am »
เป็นตัวเสริมของ Km player จากที่ดูหนัง 1080p กระตุก ทำให้เครื่องลื่นเลย

http://www.mediafire.com/?3pbdmliwscge948

หน้า: 1 ... 77 78 [79] 80 81