stepne

By Oğuz Yarımtepe | Filed in Genel

Arabaların stepnesi var biz insanoğlunun neden yok?

Beyin için stepne istiyorum. Yorulunca, ağrıyınca, bozulunca değiştirebileceğimiz yedek bir stepnemiz olsa fena olmaz mıydı?

Be the first to comment

digg  del.icio.us  TRACK  TOP

qhost in Ubuntu

By Oğuz Yarımtepe | Filed in Ubuntu

Now a days i spend more time in launchpad and bug reporting. I am trying to solve my brightness problem and reading many bug entries about the related problem or entering my entry by expecting some help.So i am following so entries by thinking any update or reply may be done. I was checking the mails realted with launchpad activities and one of the bug report that is written made me smile. Wanted to share with you. It is really hard to imagine what kind of problems that people may have.

Hi!

A small update: Not just Ubuntu, also Xubuntu 8.04.1 comes with the
behavior of booting spontaneously at midnight (kinda logic, isn’t it? :)
)

I installed Debian Etch. Etch did not show such behavior.

As a test I booted the machine with the “acpi=off” kernel parameter and
then booting at midnight stopped. Thus I assume the problem is really
related to ACPI somehow.

Be the first to comment

digg  del.icio.us  TRACK  TOP

at last

By Oğuz Yarımtepe | Filed in Ubuntu

At last someone noticed the GTK is not as powerfull as QT and it can be used for Gnome development.

Be the first to comment

Tags:
digg  del.icio.us  TRACK  TOP

transparent windows howto

By Oğuz Yarımtepe | Filed in Python, Qt

I have been dealing with the qt programming using Python. Till now i mainl created simple GUI working as a on screen display or making simple jobs. I was trying to creade an on screen display. I needed to create transparent window application. After searching and trying here is a simple python code that uses qt4 library that creates a window which includes a transparent png image inside.


import sys
from PyQt4 import QtGui, Qt, QtCore

class Transparent(QtGui.QWidget):

def __init__(self):
QtGui.QWidget.__init__(self)
self.setAttribute(Qt.Qt.WA_NoSystemBackground)
self.setAutoFillBackground(True)

pixmap = QtGui.QPixmap("test.png")
width = pixmap.width()
height = pixmap.height()

self.setWindowTitle("Status")
self.resize(width, height)

self.label = QtGui.QLabel(self)
self.label.setPixmap(QtGui.QPixmap("test.png"))

self.setMask(pixmap.mask())

def paintEvent(self,event):
self.setAttribute(Qt.Qt.WA_NoSystemBackground)

if __name__ == "__main__":
app = QtGui.QApplication(sys.argv)
x = Transparent()
x.show()
app.exec_()

4 Comments so far. Join the Conversation

digg  del.icio.us  TRACK  TOP

taşındım

By Oğuz Yarımtepe | Filed in Gezegen

Artık buradayım.

Be the first to comment

Tags:
digg  del.icio.us  TRACK  TOP

Spread Firefox

By Oğuz Yarımtepe | Filed in Applications

Download Day

Be the first to comment

Tags:
digg  del.icio.us  TRACK  TOP

hate for restrictions

By Oğuz Yarımtepe | Filed in Uncategorized

I am sure many people are surprised when they see the legal alert when they tried to open the youtube

Access to this web site is banned by “TELEKOMÜNİKASYON İLETİŞİM BAŞKANLIĞI” according to the order of: Ankara 1. Sulh Ceza Mahkemesi, 05/05/2008 of 2008/402.

I was expecting that i will be opened, soon but seems it wont. Thats why i installed Tor and Privoxy and breaking the stupid restriction. Here are the steps to install and configure Tor.For the ones that are usingKubuntu Hardy, they may use the deb packages of Tor. Check this site. For the <DISTRIBUTION> par, i wrote hardy and it worked fine. Instead of Torbutton plugin i installed FoxyProxy and configured it for using Privoxy. After enabling the FoxyProxt to use the tor proxy, i was able to get the youtube site. The connection was a little slow, thats all.

2 Comments so far. Join the Conversation

digg  del.icio.us  TRACK  TOP

firefox 3.0b5

By Oğuz Yarımtepe | Filed in Security

I have been using Hardy Heron for a while. Indeed there is not much difference between the previous version for me, but i am planning to write a review about my experince about it, later.

I was looking at the irongeek site and watching the video there related with webgoat project. I decided to check the Firebug at Firefox. If you are using Firefox 3.0b5 like me and want to use Firebug addon here are some links for you that you may use the 1.1 beta version of it.

I encounter some other solutions too.

http://devlicio.us/blogs/brendantompkins/archive/2007/11/20/getting-firebug-to-work-with-firefox-3-beta-1.aspx

http://blog.rjmolesa.com/archives/2008/04/28/firefox-3-beta-broken-plugins/

Be the first to comment

digg  del.icio.us  TRACK  TOP

short and simple

By Oğuz Yarımtepe | Filed in Python

import *

Be the first to comment

digg  del.icio.us  TRACK  TOP

Beginning

By Oğuz Yarımtepe | Filed in Personal

At last i started to write to my new blog, right now. Although i have a domain and a blog under it, i had decided to buy a new domain with Python and Django support to try my codes on it. So here i am with my Dreamhost account. I am quiet happy till now with my hosting, because i installed a new version of Python with IPython, also adopted Django on it. Also i am able to access to my account via ssh, though i like the web panel also. The only missing part of the service i found till now is the lack of seeing logs, that is i had tried to see the users’ ftp connections from the log entries and i couldnt :) , because there was not a log sharing for it.

At this blog, i will be writing entries related with Python programing, Django and web development, my Linux experinces, security issues and some other stuff that i want to share with the Internet community.

Be the first to comment

digg  del.icio.us  TRACK  TOP