huse

Stories submitted by huse

Mono,C#: Bing Translate ~ Translate & Speak Methods(huseyincakir.wordpress.com)

submitted by husehuse(200) 2 years, 1 month ago

Hi again, I again coded some stuff just for fun… The things you need to look before going deep to my perfect code http://www.bing.com/developers/ [Get an Bing AppID] http://msdn.microsoft.com/en-us/library/ff512421.aspx [Of course some MSDN] http://msdn.microsoft.com/en-us/library/ff512420.aspx read more...

add a comment |category: |Views: 13

tags: another

Mono, Gtk.FileChooserWidget [Gtk#](huseyincakir.wordpress.com)

submitted by husehuse(200) 2 years, 2 months ago

These days I ‘m in blog post mode so here is another small code snippet… using System.Collections.Generic; using System.Text; using Gtk; using GtkSharp; using GLib; private Gtk.Fixed fixed1; private Gtk.ScrolledWindow GtkScrolledWindow; private Button exit; private Gtk.FileChooserWidget filechooserwidget1; read more...

add a comment |category: |Views: 30

tags: another

Mono, C# Simple RSS reader(huseyincakir.wordpress.com)

submitted by husehuse(200) 2 years, 2 months ago

Yes, I change the theme of my blog, now it is more attractive , thanks for P2 theme by Automattic. Now it is time to post something useful…Yes, as I mentioned a RSS reader that use gtk# again! Please note this code was left from the days that I first met with mono..sorry for silly mistakes if you found read more...

add a comment |category: |Views: 115

tags: another

Mono, C# Sending mail through gmail(huseyincakir.wordpress.com)

submitted by husehuse(200) 2 years, 2 months ago

I know this example is nothing to do with mono but since I use mono these days this example also done in SharpDevelop+Mono+gtk#… My aim is simple just send a mail through my gmail account… read more...

add a comment |category: |Views: 75

tags: another

Mono: Get value of the selected RadioButton [C#,gtk#](huseyincakir.wordpress.com)

submitted by husehuse(200) 2 years, 3 months ago

FROM MONO DOCUMENTATION: @http://www.go-mono.com/docs/index.aspx?link=T%3AGtk.RadioButton A single radio button performs the same basic function as a k.CheckButton, as its position in the object hierarchy reflects. It is only when multiple radio buttons are grouped together that they become a different user interface component in their own right. Every radio button is a member of some group of radio buttons. When one is selected, all other radio buttons in the same group are deselected. A Gtk.RadioButton is one way of giving the user a choice from many options. Radio button widgets are created with RadioButton(string), if this is the first radio button in a group. In subsequent calls, the group you wish to add this button to should be passed as an argument. I found out that there exists not much examples about this issue so I post mine… read more...

add a comment |category: |Views: 81

tags: another

Mono: C# Twitter API Connections and XML(huseyincakir.wordpress.com)

submitted by husehuse(200) 2 years, 4 months ago

C# Twitter API Connections and XML: In my last posts I discuss about consuming REST services in C#…Today I want to give an example about using Twitter API Connections in C#… read more...

add a comment |category: |Views: 85

tags: another

Mono: linq to xml: how to select the value from elements(huseyincakir.wordpress.com)

submitted by husehuse(200) 2 years, 4 months ago

Today I manage to make linq queries in mono and want to share my experiences with you… To use linq in mono, you need two basic libraries which are: System.Core and System.Xml.Linq My first usage is as follows: read more...

add a comment |category: |Views: 75

tags: another

Mono WebBrowser with WebKit [Gtk# not WinForms](huseyincakir.wordpress.com)

submitted by husehuse(200) 2 years, 4 months ago

For long time I have looking for displayin web pages on Mono by using Gtk#…And thanks to this post I came across with WebKit solution! WebKit is as they define in their page: WebKit is an open source web browser engine. WebKit is also the name of the Mac OS X system framework version of the engine that’s used by Safari, Dashboard, Mail, and many other OS X applications. WebKit’s HTML and JavaScript code began as a branch of the KHTML and KJS libraries from KDE. This website is also the home of S60’s S60 WebKit development. read more...

add a comment |category: |Views: 290

tags: another

Mono: How to access a REST web service?(huseyincakir.wordpress.com)

submitted by husehuse(200) 2 years, 4 months ago

configuration: debug [by Hüseyin Çakır] Mono: How to access a REST web service? Posted in CSharp, Mono by huseyincakir on January 21, 2010 Edit This In this post I will discuss about consuming REST web services in C#…First of all you can make a quick check for the information about REST vs SOAP services in this post: http://www.petefreitag.com/item/431.cfm As I mentioned before I am newbie developer in Mono! but start to like it more and more after seeing that the applications I created @ C# also worked in Linux! thanks to Mono! read more...

add a comment |category: |Views: 74

tags: another

Getting the selected item from a treeview ~ Gtk#[GtkSharp](huseyincakir.wordpress.com)

submitted by husehuse(200) 2 years, 4 months ago

Getting the selected item from a treeview ~ Gtk#[GtkSharp]Hi again; Today I wrote about getting the selected item from a treeview @gtk#, I googled it and get some solutions about it but not in well documented so I decided to post a good example read more...

add a comment |category: |Views: 187

tags: another

Gtk.ProgressBar Sample, Gtk# and Mono(huseyincakir.wordpress.com)

submitted by husehuse(200) 2 years, 4 months ago

Hi, I start a new series of posts about C#, Mono and Gtk#...I find really good examples over internet but in this blog I want to share my experiences about these tools...By the way bear in mimd that I am a newbie Mono Developer! read more...

add a comment |category: |Views: 78

tags: another

New Google type navigational menu on top ~ Menu Fades In(huseyincakir.wordpress.com)

submitted by husehuse(200) 2 years, 5 months ago

You may have noticed that our homepage is sporting a new look. Today we’re excited to be releasing a new version of our classic homepage. The main feature of the new homepage is that it “fades in” — when the page first loads, it shows only our logo, the search box and the buttons. For the vast majority of people who come to the Google homepage, they are coming in order to search, and this clean, minimalist approach gives them just what they are looking for first and foremost. For those users who are interested in using a different application like Gmail, Google Image Search or our advertising programs, the additional links on the homepage only reveal themselves when the user moves the mouse. Since most users who are interested in clicking over to a different application generally do move the mouse when they arrive, the “fade in” is an elegant solution that provides options to those who want them, but removes distractions for the user intent on searching. read more...

add a comment |category: |Views: 15

tags: another

Using OpenMP with OpenCV(huseyincakir.wordpress.com)

submitted by husehuse(200) 2 years, 6 months ago

After installing OpenMP it is time to use it on OpenCV. Before going into depth I found a working example about this issue. Let’s try to use it… Edge finding example from http://derindelimavi.blogspot.com: read more...

add a comment |category: |Views: 94

tags: another

Connecting to the host QEMU VM using ssh from the PC(huseyincakir.wordpress.com)

submitted by husehuse(200) 2 years, 8 months ago

As I posted before my aim in my of my projects is to “Connecting to the host QEMU VM using ssh from the PC“… It caused me some hard times but I managed to run it thanks to some related posts which I will give you in the end of this article…By the way next I will post an article about copying files from guest to the host… read more...

add a comment |category: |Views: 2

tags: another

Installing embedded Debian (emDebian) to QEMU(huseyincakir.wordpress.com)

submitted by husehuse(200) 2 years, 10 months ago

QEMU is an open source machine emulator supporting seven target architectures, including x86, MIPS, ARM, and PowerPC. read more...

add a comment |category: |Views: 48

tags: another

OpenCV installation on Linux(huseyincakir.wordpress.com)

submitted by husehuse(200) 2 years, 10 months ago

I search about installation of OpenCV on Linux and find out several articles but in this post i want to just summarize the steps that i follow to success running OpenCV on my Linux. read more...

add a comment |category: |Views: 9

tags: another