• Member Avatar for vegaseat
    vegaseat

    Replied To a Post in A taste of Swift part 1

    Something tuples can be used for ... var names = ["Abby", "Zoey"] println(names) // [Abby, Zoey] // do a "tuple swap" ... (names[1], names[0]) = (names[0], names[1]) println(names) // [Zoey, …
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in A Taste of Swift part 2

    // create an array of strings var friends = ["Frank", "William", "Tom"] // a closure is a function within a function // here map() contains an unnamed function {} // …
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Is Go a legacy language?

    Another baby of a language is Apple's Swift. Apple has promissed to make it Open Source soon. They are also going to port it from iOS/OS X to Linux. I …
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in A taste of Swift part 1

    // another version of summation // reduce(initial value, combine: function) // in Swift "+" is a function var numbers4 = [1, 2, 3, 4, 5] var mySum4 = numbers4.reduce(0, combine: …
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in A taste of Swift part3

    Class objects become important when you start working with GUI applications using the UIKit (iOS) or Cocoa (OS X) frameworks. A real informative video on building apps for iOS (iPhone …
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in What are you eating/drinking right now?

    Went to the farmer's market to get some Romanesco. Tasted good with my smoked salmon sandwich.
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Nature's Temper

    A lot of flooding and drought in the US, the media seems to blame it on global warming.
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Memorable Quotations

    "For young players, classic games are brand new. For older players, they bring back memories and make you feel good." ... Satoru Iwata
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Rest In Peace - Satoru Iwata

    A talented man, and he died so young. Sad!
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Computer Slaves

    We all know that we are slaves to the Government, but will we be slaves to the computer?
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in Projects for the Beginner

    # a cook has a list of ingredients from a recipe ingredients = ["flour", "lard", "almonds", "sugar", "cinnamon"] # items in the kitchen's pantry, spice drawer and cooler pantry = …
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in A taste of Swift part 1

    Tested on the Swift playground ... // sum the contents of a number array with reduce() // reduce() takes two parameters, an initial value and a closure var numbers2 = …
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in A taste of Swift part 1

    A note on tuples ... // unpacking a (name, age, home) tuple let tuplePerson = ("Klaus", 26, "Berlin") var name, home: String var age: Int // unpack for name and …
  • Member Avatar for vegaseat
    vegaseat

    Replied To a Post in A taste of Swift part 1

    @ddanbe, you are right, it is safer that way. Type String in Swift is a structure. If you want your string to be an array of characters, you can easily …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for artificial passenger,brain fingerprinting

    send me the algorithm used in artificial passenger device? algorithm used in brain fingerprinting? its urgent plz send me at the earliest.
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Looking for a new programming language...

    I'm an experienced web developer in the confines of a .net environment. I'll looking to start working on a desktop application, but I'd like to steer away from .net. The …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for What is the best programming language to do scheduling program?

    [COLOR=DarkRed][FONT=Arial]Hi All I want to write a cpu scheduling code (SJF or RR or Priority) what programming language is better to use as it has been along time for me …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Best language for programming in windows

    Which is the best language for creating windows applications? What is .NET framework? Is there any software with which I can use to create win apps with using minimal code …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for languages

    if a program is developed thru a language then how is a language developed
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Mathematical tools in computer science

    Hello everyone. I am a student working on network protocols. Now I have a rough idea to use mathematical tools, e.g. formal methods, to examine or even build the model …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for some career guidance pls *confused

    well here's da problem,its not really a problem i guess but i'm kinda confused about all this:S i'm currently doing BCS(british computer society professional examinations),well its pretty kewl considering u …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Compiler of C

    Hi,all everybody :) I just curious how C can be made. Do any of you know it??
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Learning Programming

    Hello all, I am currently attempting to learn how to program and I am unable to take a class because of my work schedule. I was just wondering if anyone …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for help me please....

    hi..can you help me? i need a complete program and flowcharts of shell sorting, insertion sort, quicksort, merge sort and buble sort...please help me... in need it on thursday.... thanks …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for im lost and need help

    Hi all. Im a newbie and need help creating flowcharts for my class projects. I worked on them for a few days now and cannot figure them out. I am …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Future of programming language?

    So, by now it seems like C++ will be the futures programming language. But what do [B]you[/B] think of the future of programming languages?? Will it be easier and better …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for exe file problems

    I make an exe file on notepad, save it as a .exe and try to launch it but it says: "The NTVDM CPU has encountered an illegal instruction" What does …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Alogrithm Analysis

    Dear All, I am interested In understanding the Time Complexity for inorder traversal of the Binary Tree.Generally i would be also happy if you help me understand Space Complexity for …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for a bot for online game

    i just signup to ask you to show me the basic and advance script for creating a online game startup bot
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for What platform or language to use?

    Hi there Cool forum! I'm just looking for some advice. I'm designing an interface for a public display as well as an admin interface that will control the output for …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Dijkstra's alogirthm & Shortest path problems

    Hi, I am having trouble to find the specific information about Dijkstra agorithm and Shortest Path techniques for my following two problems. Please help me by providing either specific answer …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for programming language recommendation

    Hi all, I've just joined this forum and was wondering if you give me a recommendation for a programming language? I've created an application using a scripting language within a …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for College Help

    Hello, currently I'm enrolling in college and I'm undeclared. I read up a few posts on these forums to take a look into them but I figured I would post …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for finding the length in java

    Hi, I'm creating a palindrome program. So far, I got that part. Now, I need to find out if the length of the integer (string) is less than 5 digits. …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Useful information!

    :lol: Now on my to certification path, have completed college and going to take MCSE exam 70-290. Can any one help me to get all the useful resources regarding this …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Sorting Algorithms

    hey everybody ....... how heap sort,counting sort and selection sort work please explain exapmpe
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Calculus chat?

    I'm covering some of my old calculus problems, and have one that I'm having trouble with, so I'm looking for a chat site. Anyone know of one? Thanks.
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for What is Big O ?

    Please , I'm at the 2nd year in computer science dept & i don't know what is " Big O " and "Algorithm time complexity " I'd be grateful if …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for what is shareware

    hi ,i am curious about collecting info about new computer terms. can anyone tell me what is "shareware" and explain a little. thank you very much.
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Best languages to learn.

    Hello! I am a 2nd year MIS/CIS business student and I havent learnt much about computer programming. From what my advisors and ppl who are in the MIS program here …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Graduation project idea

    Hey, I'm in my graudation year 4rm the faculty of computer engineering, I'd like 2 choose a graduation project. I have an experience in working with c#, assembly, microprocessors and …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for how computer work

    please explain in detail how computer work.in term of computer processing cycle.for example when we start compuer how comper parts(ram,processor,hard disk,busses,etc )perform task or work.and how windows work. ;)
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for A challenge for all newbies

    Find a six digit number that gives its digits reversed when multiplied by an integer between 2 and 9 inclusive. For example, if the original number was 654321 and the …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Text Justification Algorithm

    Hi, I am looking for a text justification algorithm that fully justifies the text. I suppose that I could design one of my own. However, why reinvent the wheel? I …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for How important is it to learn and understand...

    My question: How important is it to learn and understand sorting algorithms and routines?
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for What language to start with

    I didn't know which thread to post this question in so i just chose the visual basic one(random). My question is what do you guys recommend as a first programming …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for need an idea to program

    I'm doing my senior project to computer programming the teacher asked me to do a physical project but I don't know what to do I don't really know much about …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for history

    Konrad Zuse, a German engineer, completes the first general purpose progammable calculator in 1941. He pioneers the use of binary math and boolean logic in electronic calculation. Colossus, a British …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for Windows Wallpaper program

    I had the idea in my head to write a program that would let you select more than one image you want to set as your windows desktop wallpaper and …
  • Member Avatar for vegaseat
    vegaseat

    Marked Solved Status for What programing language is the most complex?

    Hello everyone! I've been programming in PHP for 1 year and now I am looking forward to learn a computer programming language, but I am confuse...since there are several langauges …

The End.