Kasus ini terjadi pada pc sudah terinstalasi debian ethc dan baru saja di upgrade. Booting berjalan seperti biasa sampai dengan login form. Tapi setelah login, ternyata gdm ga bisa loading (hang). Kenapa ini ??
Setelah googling sana sini dan akhirnya dapat masukan bahwa hal tersebut bisa terjadi karena gnome tidak memiliki session manager. Langsung saja saya coba instalasi :
$ sudo apt-get install gnome-session
Setelah proses instalasi selesai dan reboot. Akhirnya setelah login, gdm kembali normal
2 Comments »
Adakalanya saat mengunjungi situs youtube, kita ingin menyimpan / download video tersebut ke pc kita.
Ada beberapa tools atau Add-ons yang bisa digunakan untuk menyimpan atau download file video youtube tersebut.
Youtube-dl termasuk salah satu tool yang bagus untuk download video dari youtube dan salah satu kelebihan tool ini adalah bisa dijalankan melalui “command line” atau “console“. Tool ini juga bisa berjalan baik di Linux atau Windows. Read the rest of this entry »
1 Comment »
Buka web browser Firefox dan ketik di kolom alamat :
about:config
-
network.http.pipelining :
Ubah nilainya dari False menjadi True
-
network.http.pipelining.maxrequests :
Setting nilainya dari 4 menjadi angka yang lebih besar (10-30), misal : 30
-
network.http.proxy.pipelining :
Read the rest of this entry »
No Comments »
Config.nt
dos=high, umb
device=%SystemRoot%\system32\himem.sys
EMM=RAM
files=100
buffer=40
Autoexec.nt
@echo off
lh %SystemRoot%\system32\mscdexnt.exe
lh %SystemRoot%\system32\redir
lh %SystemRoot%\system32\dosx
SET BLASTER=A220 I5 D1 P330 T3
set gep=11
set szin=C852
set clipper=f106;r080;e999
No Comments »
Here is a Visual Foxpro example that create an OO calc spreadsheet.
VfpOOoCalcExample()
PROCEDURE VfpOOoCalcExample()
* Create a spreadsheet.
LOCAL oDoc
oDoc = OOoOpenURL( “private:factory/scalc” )
* Get first sheet
LOCAL oSheet
oSheet = oDoc.getSheets().getByIndex( 0 )
Read the rest of this entry »
1 Comment »
Declaration :
DECLARE INTEGER GetUserName IN advapi32;
STRING @ lpBuffer,;
INTEGER @ nSize
Usage :
nSize = 250
cBuffer = REPLICATE(Chr(0), nSize)
= GetUserName(@cBuffer, @nSize)
cBuffer = STRTRAN(cBuffer, CHR(0), “”)
? cBuffer
? GETENV(”USERNAME”)
No Comments »
In an application program (visual foxpro) is common if the first time the program is run for a user login form will appear. One method is to run the login form first and then the main form. There is also the method still run form the main form at the same time raise login first before the user can access other programs. Here are some tips for both methods:
- Set properties Form login
windowstype = Modal
ShowWindow = 1 - InTopLevelForm
- Declare variables to accommodate the public the results of the login form on the main form
FormUtama.Load:
Public n_login
n_login = 0
- Run the login form on the main form activate
FormUtama.Activate :
IF n_Login = 0
DO FORM formlogin.scx
ENDIF
in the form log added:
cmdOK.click:
n_Login = 1

Have a nice try…
3 Comments »
Visual Basic - Non ODBC
Set db = New Connection
db.CursorLocation = adUseClient
db.Open “PROVIDER=MSDataShape;Data PROVIDER=” & _
“Microsoft.Jet.OLEDB.4.0;Data Source=” _
& App.Path & “\fpdata.mdb;Jet OLEDB:” & _
“Database Password=”;”
Read the rest of this entry »
2 Comments »
I am using Mandigo Theme. I want to change the header image but i can’t find it how. I also search in the internet but i can’t find it too. Finally, i try to do this :
- Open image with image editor i like
- resize image in 737 x 226
- save as head.jpg for first image
- resize image in 961 x 226
- save as head-1024.jpg for second image
Next, i copy head.jpg and head-1024.jpg into : /public_html/wp-content/themes/mandigo/schemes/green/images (for example in green folder)
Also i copy both of the new image again into each color folder. And then i can see the header image already changed.
No Comments »