RSS

Category Archives: Bilgisayar

MySQL SELECT INTO Alternatifi

Mysql’de

1
2
3
SELECT * INTO table2 
FROM table1 
WHERE ...;

şeklinde bir sql cümlesi çalıştıramıyoruz. Bunun yerine bazı alternatifler üretebiliriz. Eğer var olan bir tabloyu üreterek içine select ifadesinin döndürdüğü değerleri eklemek istiyorsak söyle bir şeyler yazabiliriz. Read the rest of this entry »

Arama Terimleri:

 

Posted by on 04 Şubat 2013 in Bilgisayar, Programlama, SQL

Leave a comment

Dosya Listeleme Programı v1.4.0 FileList

filelist Dosya Listeleme Programı v1.4.0Daha önce burada verdiğim dosya listeleme programının 1.4.0 versiyonunu buradan indirebilirsiniz. Bu versiyon eskisine göre çok daha hızlı çalışmaktadır. Çeşitli seçenekler eklenmiştir. Bunların arasında oluşturulan dosyanın nereye kaydedileceği ve tam dosya yolu ve göreceli dosya yolu seçenekleri de vardır. Dosya listeleme işlemine başlamışken işlemi yarıda kesme şansımız da vardır. Dosya listeleme işlemi tamamlandığında işlemin toplam ne kadar sürdüğü milisaniye hassasiyetinde alt tarafta görünecektir. Ayrıca butonlarda yazı yerine resimler kullanılmıştır. Formun Border Style’ı değiştirilerek minimize etmeye olanak sağlanmıştır. Öneri ve yorumlarınızı bekliyorum.

Arama Terimleri:

 

Posted by on 13 Ocak 2013 in Bilgisayar, Programlama

1 Comment

Başka porta relative link vermek

<?php
echo 'Link to port 81 on this server';
?>

veya

<a href="#" onclick="javascript:event.target.port=9091">transmission</a>
 

Posted by on 26 Aralık 2012 in Bilgisayar

Leave a comment

Tags: ,

How to keep open window after execution? CTRL+F5 C or C++ visual studio 2010 2012

Visual Studio 2010’da C ile konsol uygulamarı ile çalışıyordum. Program diğer bilgisayarlarda CTRL+F5 ile cmd.exe içinde açılıyordu. Fakat benim bilgisayarımda normal şekilde açılıyordu. Bu da programın çalışması bittiğinde hemen kapanmasına neden oluyordu. Bunun çözümünü ağağıdaki resimlerde gösterdim. Projenize sağ tıklayın ->Properties ->Configuration Properties -> Linker -> System, “SubSystem” içinde { Console (/SUBSYSTEM:CONSOLE) } seçeneğini seçin. Tamam/Ok tıklayıp kapatın .

I am making this request on behalf of several C++ programming students. In the past, we have been able to utilize ctrl-F5 (start without debugging) within VS 2005 and 2008 to keep the console window open so that we may view the output. And now, although it is in the menu in VS 2010, neither selecting the menu option or entering ctrl-F5 will keep the console open. Is this a glitch in VS 2010 or is there a new alternate way of keeping this window open?
Read the rest of this entry »

Arama Terimleri:

 

Posted by on 17 Kasım 2012 in Bilgisayar, Programlama

Leave a comment

[SOLVED] Invalid command ‘SCGIMount’ Enabling mod_scgi

I added this line to “/etc/apache2/sites-available/default” file.
After this I got “Invalid command ‘SCGIMount’, perhaps misspelled or defined by a module not included in the server configuration” error.

If you got this error run this command to enable mod_scgi: $ sudo a2enmod scgi


pi@nsgnc /mnt/T16/rtorrent $ sudo service apache2 restart
Syntax error on line 43 of /etc/apache2/sites-enabled/000-default:
Invalid command 'SCGIMount', perhaps misspelled or defined by a module not included in the server configuration
Action 'configtest' failed.
The Apache error log may have more information.
failed!
pi@nsgnc /mnt/T16/rtorrent $ sudo a2enmod scgi
Enabling module scgi.
To activate the new configuration, you need to run:
service apache2 restart
pi@nsgnc /mnt/T16/rtorrent $ sudo service apache2 restart
[ ok ] Restarting web server: apache2 ... waiting ..
pi@nsgnc /mnt/T16/rtorrent $

Arama Terimleri:

 

Posted by on 30 Ağustos 2012 in Bilgisayar, Raspberry Pi

Leave a comment