Recent content by Baybo.it

  1. B

    Tutorials: Python

    Setup your own dynamic website with templating and flexible url matching in under 50 lines of code. This tutorial will take you from start to finish. Note: The install instructions provided are for Linux Ubuntu. If there's demand, I'll explain how ez_install can be setup for windows and linux to...
  2. B

    What is better to learn, C# or C++?

    I agree with a lot of the things you said, but I'd like to share some perspective of my own (and possibly some unique insight on top of these comments). Interpreted languages by their very nature run over an interpreter and thus are cross platform. The interpreters are the architecture...
  3. B

    How can i improve this website?

    Why is the title so long? Everything in the title is explained within the navigation bar. I'd have a shorter title and work on collapsing content so you only have "exceptional" content. Every second a user stays on your page is important. You want them to get a clear idea of the mission for...
  4. B

    What is better to learn, C# or C++?

    While all turing complete languages can be proven to have equal computational abilities, it is near-sided to suggest learning one language prepares you for learning any other language. When comparing languages, there are many aspects to take into consideration: paradigm, syntax, semantics, type...
  5. B

    Tutorials: Python

    Okay, where did we leave off... We got a string representation of the JSON data we want from the server, now we want to tell python to parse this data as JSON so we can interact with it. In the last step we did html = urllib2.urlopen(url).read() In order to take this html data (in string...
  6. B

    Tutorials: Python

    RESTful APIs There's been a lot of buzz recently about RESTful APIs. But what does it all mean? APIs as we know (or application programming interfaces, but no one really calls them that anymore... They're just 'APIs') are compact ways to use other people's code. Traditionally, you would install...
  7. B

    Tutorials: Python

    Syngenetic, I used C and Java for a handful of years for my research involving software verification and multi-threaded concurrent searching. I can understand wanting to focus on technologies that will help you in school. I guess it depends what your overall goal is -- as I suggested, some...
  8. B

    Tutorials: Python

    Thread, sorry. ;o)
  9. B

    Tutorials: Python

    Glad to hear it Isabella! If you need more information on getting python set up, I'd suggest python . org/about/gettingstarted/ and wiki.python. org/moin/BeginnersGuide. Also, if you're looking for some code which is a bit more advanced and practical which you could run, you can check out this...
  10. B

    Tutorials: Python

    Data Structures in Python In the last section of the tutorial, we discussed lists in python, or arrays. Arrays are systematically arranged blocks of memory which can store values at designated positions. There are many advantages to using arrays. For instance, retrieving a value from an array is...
  11. B

    Tutorials: Python

    I'm an open source hacker by trade and I love sharing knowledge. I thought I'd start a thread about the cool things you can do using the Python language. I'll start off with some simple examples and later get into web frameworks, databasing, and eventually build an entire frameworked website...
  12. B

    Rich Snippets: Working on CTR as opposed to ranking!

    The question is whether you your privacy or the money in your pocket more There's a price for everything.
  13. B

    C#: Email Verficiation?

    I see. You will have to integrate with each of the authentication modules for each individual email server. For instance, you may consider writing a binding for google's gmail over IMAP or SMTP using OAuth (assuming a binding doesn't already exist for c#, which I'm sure it does). In general...
  14. B

    Hmm, cant figure this out, someone help please

    Inspecting the element in firebug leads me to believe the width of the form is too great, causing it to overflow to out of the block styling. The solution would be to apply a class to the first td in each row to decrease the width. This should fix the problem. The code would look something...
  15. B

    Help with website width

    On second thought, it seems like you do actually want a 'full width' page. You may be able to solve this problem by simply setting the body tag to 100% like so body { width: 100%; } Then again, it's really hard to tell without looking at your code. It's possible your 'content' div...
Back
Top