Search Results

Search found 7400 results on 296 pages for 'fedora 13'.

Page 98/296 | < Previous Page | 94 95 96 97 98 99 100 101 102 103 104 105  | Next Page >

  • Getting my younger brother started on programming

    - by SmartLemon
    My younger brother is 13 years old, I started programming when I started to develop Android applications when I was 15, last year my brother gained an interest in it and he would always pestering me about letting him make something himself, so I wrote him a few tutorials and he built himself a small application that had a few buttons that did something, I think you put in your dob and it would tell you what day you were born on, he took a couple of days building up to his final application, maybe even a week, learning everything he needed. Since then he hasn't really done much more because I have been engulfed in work and such where I have my own programming problems to sort out. I told him that when he was my age (I am 17) that he should be better then me, he was a bit sceptical about this however. I dont think he has as much logical reasoning as I would think he needs to solve more complex problems, but shouldnt that just develop over time as it did with me? He has been pestering me for the past week or something to write him more tutorials, but I didn't have time. All I had with me was a playlist I had downloaded from the new boston from youtube for C++, it's about 73 videos. He is currently about 20-30 videos in, he has come to ask me a few questions about it and thats it. Should I have really properly started him with C++? Should I stop him now and start him again on python or ruby? I know that C++ shouldn't really be a beginners language, especially for someone who is only 13, by the time this question is answered will probably be up to learning about inheritance or something. Some people may see this as not a real question, but it is, and should be used as a reference for others. I want to know, should I start him on a different language whch is more easy? What language then? And would it be better for me to teach him myself (I would make time) or just continue him with the new boston? There are a few more questions throughout this question but these are the main ones. Part of the question people seem to be neglecting is me asking whether I should change what language he is learning to another, or since he is already pretty far through the tutorials should I just leave him with C++ and he can learn the other languages freely by himself?

    Read the article

  • SystemRescueCd 1.5.4 Incorporates FSArchiver 0.6.10

    <b>Softpedia:</b> "Yesterday night, May 19th, Françs Dupoux announced version 1.5.4 of the SystemRescueCd Linux-based operating system. The new SystemRescueCd 1.5.4 includes the alternative Linux kernel 2.6.33.04 (includes altker32 and altker64), and the standard 2.6.32.13 Linux kernel."

    Read the article

  • Multiple vulnerabilities in LibTIFF

    - by chandan
    CVE DescriptionCVSSv2 Base ScoreComponentProduct and Resolution CVE-2010-2595 Denial of Service (DoS) vulnerability 4.3 LibTIFF Solaris 10 SPARC: 119900-13 X86: 119901-12 CVE-2010-4665 Denial of Service (DoS) vulnerability 4.3 CVE-2011-0192 Denial of Service (DoS) vulnerability 9.3 CVE-2011-1167 Buffer Overflow vulnerability 6.8 This notification describes vulnerabilities fixed in third-party components that are included in Sun's product distribution.Information about vulnerabilities affecting Oracle Sun products can be found on Oracle Critical Patch Updates and Security Alerts page.

    Read the article

  • Efficient way to find unique elements in a vector compared against multiple vectors

    - by SyncMaster
    I am trying find the number of unique elements in a vector compared against multiple vectors using C++. Suppose I have, v1: 5, 8, 13, 16, 20 v2: 2, 4, 6, 8 v3: 20 v4: 1, 2, 3, 4, 5, 6, 7 v5: 1, 3, 5, 7, 11, 13, 15 The number of unique elements in v1 is 1 (i.e. number 16). I tried two approaches. Added vectors v2,v3,v4 and v5 into a vector of vector. For each element in v1, checked if the element is present in any of the other vectors. Combined all the vectors v2,v3,v4 and v5 using merge sort into a single vector and compared it against v1 to find the unique elements. Note: sample_vector = v1 and all_vectors_merged contains v2,v3,v4,v5 //Method 1 unsigned int compute_unique_elements_1(vector<unsigned int> sample_vector,vector<vector<unsigned int> > all_vectors_merged) { unsigned int duplicate = 0; for (unsigned int i = 0; i < sample_vector.size(); i++) { for (unsigned int j = 0; j < all_vectors_merged.size(); j++) { if (std::find(all_vectors_merged.at(j).begin(), all_vectors_merged.at(j).end(), sample_vector.at(i)) != all_vectors_merged.at(j).end()) { duplicate++; } } } return sample_vector.size()-duplicate; } // Method 2 unsigned int compute_unique_elements_2(vector<unsigned int> sample_vector, vector<unsigned int> all_vectors_merged) { unsigned int unique = 0; unsigned int i = 0, j = 0; while (i < sample_vector.size() && j < all_vectors_merged.size()) { if (sample_vector.at(i) > all_vectors_merged.at(j)) { j++; } else if (sample_vector.at(i) < all_vectors_merged.at(j)) { i++; unique ++; } else { i++; j++; } } if (i < sample_vector.size()) { unique += sample_vector.size() - i; } return unique; } Of these two techniques, I see that Method 2 gives faster results. 1) Method 1: Is there a more efficient way to find the elements than running std::find on all the vectors for all the elements in v1. 2) Method 2: Extra overhead in comparing vectors v2,v3,v4,v5 and sorting them. How can I do this in a better way?

    Read the article

  • L'Android Market aurait passé la barre des 45.000 applications et connait une croissance exponentiel

    Mise à jour du 13/04/10 NB : Les commentaires sur cette mise à jour commencent ici dans le topic L'Android Market passe la barre des 45.000 applications Et connait une croissance exponentielle, la qualité semble toujours au rendez-vous On le sait, AndroLib a tendance à décompter plus d'applications que ce que Google reconnaît ensuite officiellement (lire ci-avant). Il n'en reste pas moins que la progression du nombre de ces applications reste impressionnante, comme le montre le graphique ci-dessous...

    Read the article

  • 2d array permutation proof [migrated]

    - by FGM
    I want to know if it's possible to get any possible combination of a 4x4 integer array given three rules: you may shift any column up or down you may shift any row left or right you may shift the entire array left, right, up, or down That is, you can transform: [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13] [14] [15] [16] into any possible combination of a 4x4 array of the same 16 values, given those three rules. Basically, I just want to know if there are impossible combinations.

    Read the article

  • Windows 8 : le Windows Store s'ouvre aux développeurs de 120 pays, la francophonie représentée de manière quasi exhaustive

    Windows Store : Microsoft fait le point sur les licences d'applications tests avant achat, ventes des fonctionnalités, nombre de machines utilisées Mise à jour du 13/03/2012 Le Windows Store a ouvert ses portes depuis quelques semaines et les utilisateurs peuvent déjà profiter gratuitement des premières applications de style Metro présentes sur la galerie. Pour cela, ils doivent disposer d'un compte Microsoft pour se connecter. Le modèle de licence des applications du magasin dont Microsoft vient de faire une description permet d'offrir aux clients l'accès à l'ensemble de leurs applications sur tous leurs appareils Windows 8, l...

    Read the article

  • Enterprise Portal Development In ASPDOTNET

    You have good business and a website which helps you to grow more. Now you are reaching at a point that you want a business application that helps you and your employees in all ways means you need a ... [Author: Jessica Woodson - Web Design and Development - May 13, 2010]

    Read the article

  • How to Detect and Fix Table Corruption in Oracle?

    Oracle is an RDBMS (Relational Database Management System), developed and marketed by Oracle Corporation. It has a major presence in database computing. It stores all your valuable data in the DBF fi... [Author: Mark Willium - Computers and Internet - May 13, 2010]

    Read the article

  • Troubleshooting Error 8999 in SQL Server

    All the users connected to the SQL Server instance have access to a global resource called tempdb system database. This database holds temporary user objects, internal database objects, and row versi... [Author: Mark Willium - Computers and Internet - May 13, 2010]

    Read the article

  • Le lancement mondial du Projet Natal aura lieu en octobre 2010, et sa présentation officielle par Mi

    Mise à jour du 11/05/10 Le lancement mondial du Projet Natal aura lieu en octobre La technologie de reconnaissance de mouvements de Microsoft sera officiellement présentée le 13 juin 2010 Le directeur marketing de Microsoft en Arabie Saoudite vient d'annoncer que le Projet Natal, la technologie de reconnaissance de mouvements de Redmond, serait lancée en Octobre. Il s'agirait d'un lancement simultané dans le monde entier. Rappelons que le Projet Natal,

    Read the article

  • Sites with free game music loops? [duplicate]

    - by Bnhjhvbq7
    This question already has an answer here: Where can I find free music for my game? [closed] 13 answers I'm searching for free game loops background music for my game, seams like google is full of those websites but all of them per pay. Where can I download free game loops?

    Read the article

  • Listen To The Oracle Xsigo Webcast Replays

    - by Cinzia Mascanzoni
    For product strategy, sales plays, steps to resell, sales benefits and resources listen to the webcast replays: Xsigo Systems VAD Update: Understanding the Xsigo Channel Model & Product Strategies (November 13, 2012) Replay Xsigo Systems Partner Update: Get Ready to Sell Xsigo Systems Products With Oracle (November 15, 2012) Replay

    Read the article

  • Resolving Error 8906 in MS SQL

    In MS SQL Server database, a PFS (Page Free Space) page has one byte for each of the pages existing in the file interval it maps. This byte contains a bit that indicates that the associated page is a... [Author: Mark Willium - Computers and Internet - May 13, 2010]

    Read the article

  • Cyber Stalkers Often Escalate to Sexual Predators

    Many individuals do not take cyber stalkers seriously because they do not consider this problem to be very serious. After all what can a person do to you through words on a computer screen? Because o... [Author: Ed Opperman - Computers and Internet - June 13, 2010]

    Read the article

  • JavaOne San Francisco 2012????

    - by sasa
    2012?11?13???????????????JavaOne San Francisco 2012?????????????Java Embedded???Java????????????????????????????? ????Watch - ???????????????Java~???????Java?????? ASCII.jp - ?????????????HTML5?????????Java???????????????????? ITpro - ???????Java EE 7?????????????????????? nikkei BPnet - ???????Java EE 7?????????????????????? ITmedia ???????? - Java???????? ?????? Computerworld.jp - ???????Java????????????????Java EE 7??????????8???

    Read the article

  • Uninstalling ubuntu and installing windows [duplicate]

    - by user286430
    This question already has an answer here: How to remove Ubuntu and put Windows back on? 13 answers Recently built a computer and installed ubuntu 14.04 from USB. I struggle with using the interface, programs and terminal so I plan to put windows 7 ultimate iso onto a USB while in ubuntu. Then remove ubuntu and install windows 7. How do I go about doing this and what programs do I use?

    Read the article

  • My Oracle Support 6.3 - ?????

    - by Steve He(???)
    My Oracle Support 6.3 ?2012?10?13???,???????30?????60+bug ??. ?????? ????????????,?“how to”????????,???????????????? ?My Oracle Support????????????:??????????,?????????(???????????)? ????:???My Oracle Support??????????????????????,????????????????,????????????????????,???????,????????,???????????????,???:https://blogs.oracle.com/supportportal/entry/mos_6_2_release ???????ORA-600,ORA-700:??“ORA-600 [ARG1]”???“ORA-00600: Internal Error Code, Arguments: [Arg1]”,??????????

    Read the article

  • Notes???????????Web???????????????

    - by atsuko.nishihata
    ??????????????????????????!! 2010?5?20?(?)??????????????????????????????Developer Day????????????? 13:30-14:30 Notes???????????? ????????????????Notes??????????????????! ?????????????????????????????????????????????????????????????????????????????Notes?????????????????????????????????????????????????? 15:00-16:00 Web?????????/????????????? ????????????????????????????????·Web????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? ????????????????!! ·Oracle Direct Seminar????? ·?????????:?????? ·???????????FAQ

    Read the article

  • SecureAsia@Tokyo 2012??????????

    - by user762552
    ?????????????facebook?????????????????????···??????????SecureAsia@Tokyo 2012???????????????????????????????????????????????????????1.??????????????(DAY2:7?18?11:15-12:00)???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????(1) ???????????(2)????????????????????????????????????????????????????????????????????????????????????????????????????????????(7?12-13?)???????????7?12???????????????????????????????????????????????????????????????Oracle Database Firewall?????????????????????????:2.????????????????????????????????·???????(???????????????????)???Howard A.Schmidt?????·??????????????????????????????????????????????????????????????????????????(?????????????)?????????????????????????????????????????????? ?????(????????????????)?????????? 3.ISLA???????????????????????????????ISC2??????????????Information Security Leadership Achievement(ISLA)????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????(???????????????????)??????????????????????????????????????????···??????????????????????????

    Read the article

  • 3/31????????

    - by kiyoshi.nira
    ????????????????????????13???? ?????????????????????????????? ?????????3?31?????????????? ??????????????????????????? ??????17?????????????????????????(??)????? ???????????????~! (..?? ??????????????!?) ?????????? ???????????! ( ?????? )

    Read the article

  • Oracle Database 12c ?????(??10?29?)

    - by user763299
    ?????/??: ????????? Oracle Database 12c ?????,??????????????????????????????????,?????????? Oracle ????,???? Oracle ???????????????,???? Database 12c ??????????,??????????????????????????? ????????,???????????? Database 12c ???????????????: ? Oracle SQL Developer ?????????? ? Oracle SQL Developer ??????? ?? Oracle Enterprise Manager ?????????? ??? 2013?10?29? ??? ???????: ?? 13391606778 010-64418595-6056 Email:[email protected] ???? 09:00-09:15 ?? 09:15-10:15 ????:Oracle Database 12c ?? ???? Oracle Database 12c ???????????,???????????????????????????? 10:15-11:15 Oracle????????? 11:15-11:30 ?? 11:30-12:15 ????????? Oracle Database 12c ?? Oracle ?????????????????????????????? 12:15-12:30 ?? 12:30-13:30 ?? 13:30-14:15 ????:? Oracle SQL Developer ????????? ????????????????? - ?????????????? - ??????????? - ???????? 14:15-15:15 ????:? Oracle SQL Developer ???Data Redaction Data Redaction?????????????????: - ??Redaction?? - ??Redaction?? - ????Redaction?? - ??Redaction??????? - ??Redaction?? - ??Redaction?? 15:15-16:00 ????:?? Oracle Enterprise Manager Express ?????????? ??????: - ?? Oracle Enterprise Manager Express - ?? Oracle Enterprise Manager Express ??????? 16:00 ?? ??????????????,??????????????????????? ???? © 2013,??????/????????????? ???? | ????????? | ????

    Read the article

< Previous Page | 94 95 96 97 98 99 100 101 102 103 104 105  | Next Page >