Yeah....!
Kamis, 01 Oktober 2015
Sabtu, 28 Maret 2015
Membuat sendiri panel system mainboard
berikut cara membuat panel system untuk komputer yang tidak menggunakan casing:
1.siapkan buku manual mainboard cari halaman system panel
2. 1 buah connector header disesuaikan dengan pin connector pada mainboard
3. 2 buah led yang akan digunakan sebagai lampu indikator Power dan HDD
4. 2 buah button digital yang akan digunakan sebagai tombol Power dan Reset
5. persiapan lainnya seperti biasa timah dan solder
kerjakan dengan hati-hati unutk pemasangan led karena terdapat polaritas kaki positif dan negatif,
gambar dibawah menunjukan konektor system panel yang sudah siap digunakan
setelah itu pasang pada mainboard ingat jangan sampai terbalik
cek lagi posisi atau biasanya ada penanda pada mainboard
nah sekarang kamu sudah bisa menghidupkan komputer tanpa harus colok obeng ke system panel.
Sabtu, 09 Agustus 2014
Command Line Job/timer "at"
Perhatikan baris perintah dibawah ini:
pada baris pertama timer diset jam 20:00 selanjutnya akan menjalankan perintah mematikan komputer list timer/job yang sudah kita seting bisa terlihat dengan mengetik "at" seperti pada baris dua, bila ingin membatalkan timer/job maka lakukan baris perintah seperti pada baris ketiga. selamat mencoba
pada baris pertama timer diset jam 20:00 selanjutnya akan menjalankan perintah mematikan komputer list timer/job yang sudah kita seting bisa terlihat dengan mengetik "at" seperti pada baris dua, bila ingin membatalkan timer/job maka lakukan baris perintah seperti pada baris ketiga. selamat mencoba
Rabu, 23 April 2014
Add Your Yahoo Account to Outlook 2013 Using IMAP settings
Open Outlook 2013 and go to File tab.
Then, just above the Account Settings button, click Add Account.
Select Manual setup or additional server types.
Then in Choose service select POP or IMAP
Add your user information and for server information,
Account type: IMAP
Incoming mail server: imap.mail.yahoo.com
Outgoing mail server (SMTP): smtp.mail.yahoo.com
Then add your logon information as below.
Go to More settings and select the Outgoing server tab.
Check box next to My outgoing server (SMTP) requires authentication and select the radio button next to Use same settings as my incoming mail server.
In the same window go to the Advanced tab and verify the following.
Incoming server (IMAP): 993 or 143
Incoming server encrypted connection: SSL
Outgoing server (SMTP): 25 or 465
Outgoing server encrypted connection: TLS
Click OK when finished.
Click Next.
If you've entered everything correctly, both tasks will be completed successfully and you can close the window and again click Next.
You'll get You're all set! message,
Click Finish.
And now you can check your emails through Outlook.
sunber:http://pop2imap.com/yahoo_outlook_2013.php
Selasa, 22 April 2014
PowerShell SMTP
# Required parameters $smtpServer # SMTP server hostname / IP address $emailFrom # Sender (some SMTP servers require a valid local address) $emailRcpt # Recipient (comma seperated if multiple) $emailSubject # Email subject line $msgBody # Email body $FilePath # Path to attachment file $domain # Network domain $username # Network username $password # Network password # Create required objects... $smtp = New-Object Net.Mail.SmtpClient -arg $smtpServer $msg = New-Object Net.Mail.MailMessage $attach = New-Object Net.Mail.Attachment($FilePath) $cred = new-object System.net.networkCredential # Populate mail message... $msg.From = $emailFrom $msg.To.Add($emailRcpt) $msg.Subject = $emailSubject $msg.IsBodyHTML = $true $msg.Body = $msgBody $msg.Attachments.Add($attach) # Provide credentials to SMTP client $cred.domain = "the domain you want" $cred.userName = "username" $cred.password = "password" $smtp.credentials = $cred # Send... $smtp.Send($msg)
Sabtu, 01 Februari 2014
ExtJS Save Chart
Save Chart/convert to image
{
text: 'Save Chart',
handler: function () {
Ext.MessageBox.confirm('Confirm Download', 'Would you like to download the chart as an image?',
function (choice) {
if (choice == 'yes') {
chart.save({
type: 'image/png'
});
}
});
}
},
Langganan:
Postingan (Atom)