• Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Why Is My New Laptop So Slow And CPU So High?

    @Josh. The office picked up an E1 based machine and no matter what we did it never was acceptable performance. You seem to think it should work fine but it's …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Why Is My New Laptop So Slow And CPU So High?

    @josh. Let's recap. Is the machine slow under all conditions? Factory? Linux, etc? I looked at the specs and found a very low end PC. So the performance may be …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching VB.net interface With LNL-220 from LENE

    Hello Everyone!! just a newbie here looking for some advice. ready to accept any suggestion that I get. I wish to make a GUI for a specific feature of a …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in VB.net interface With LNL-220 from LENE

    You usually start with the product maker asking for APIs and examples.
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Problem when assembling code

    Let's find a Windows hello world in assembler to see if the int call is the same. http://cs.lmu.edu/~ray/notes/x86assembly/ shows well, how much it differs across the OSes.
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Problem when assembling code

    Hello guys, am an assembly rookie. Wrote this code in notepad++ section .text global_start ;must be declared for linker (ld) _start: ;tells linker entry point mov edx,len ;message length mov …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Problem when assembling code

    Are you sure your example is for Windows? https://www.google.com/search?q=int+0x80+%3Bcall+kernel&ie=utf-8&oe=utf-8#q=int+0x80+%3Bcall+kernel+hello+world seems to tell me you are using Linux examples.
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Creating Database on external HD

    Now your work begins. https://support.microsoft.com/en-us/kb/2015755 I like how they mentioned filters. I've lost count of errors by CD/DVD emulators. You must know your PC.
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Function not returning a string

    Please Help me out!! After many tries I'm unable to return a string from a function. Please reply with the corrected code! I want it for my High School. Thanks …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Function not returning a string

    Did you read prior answers like https://www.daniweb.com/programming/software-development/threads/56000/simply-question-how-do-i-return-a-string-from-a-function
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Creating Database on external HD

    Greetings, I have a database creation script. I've run the script after changed the path within the 'FILENAME' option to create the database on an external hard disk and I …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Creating Database on external HD

    Tell more about the external. Some folk burn out trying to SQL on FAT drives. https://ask.sqlservercentral.com/questions/51856/dbcc-checkdb-with-fat32-file-system.html
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to rubberman in Program functions not working

    Turbo C/C++ are so far out-of-date that you and your class should NOT be using them! You can download good open source C++ compilers for Windows that ARE up-to-date, such …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching AI - Artificial Intelligence

    Hello everybody im thinking about how AI works and actualy im really confuzed and scared at the same time, so me as low programmer i know how the computers work, …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in AI - Artificial Intelligence

    At least it will learn to swear. https://www.google.com/#q=watson+learned+to+swear is good for a chuckle. Next I'll read it discovered the Sears Craftsman web site (hardware pron.)
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to rubberman in How to clone Windows and apps from one PC to other PCs?

    When I need to do this for clients, I will boot from a Linux live DVD with an external usb drive attached which Linux will auto-mount. Then I use the …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching How to clone Windows and apps from one PC to other PCs?

    Hello I have a scenario as follows, whereby, I want to install a fresh Windows OS on a PC, install some apps like Firefox, MS Office etc. Then, I would …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in How to clone Windows and apps from one PC to other PCs?

    That's been something of a Holy Grail quest by IT for decades now. The problems are still the same so did you standardize your PC hardware? It matters since that …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching need help of complixty

    how can calculate complixty for this code package ca.pfv.spmf.algorithms.frequentpatterns.fpgrowth_with_strings; /* This file is copyright (c) 2008-2013 Philippe Fournier-Viger * * This file is part of the SPMF DATA MINING SOFTWARE …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in need help of complixty

    Good question but no need for the code dump. Look at http://sourceforge.net/projects/metrics/ to measure your project's complexities.
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Windows Update Error 8007007F

    I am trying to update the Windows 7 Home Premium on my laptop to Windows 10. I keep getting update error 8007007F. I can't find anything that tells me what …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Windows Update Error 8007007F

    I usually never find it either. But I have a routine that seems to work so I'll share. There are folk that want to root cause analyze so they rarely …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching C programming about maclaurin series sin(x).

    #include<stdio.h> #include<math.h> int factorial( int ); int main() int n; double x,i; double value, sinx; value = sinx = 0.0; printf("Enter the value for x and i"); scanf("%lf %d", &x, …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in C programming about maclaurin series sin(x).

    Duplicate? Without expanding on your question isn't a good idea.
  • Member Avatar for rproffitt
    rproffitt

    Began Watching I need some commands in this C programming about maclaurin series sin(x).

    #include<stdio.h> #include<math.h> int factorial( int ); int main() int n; double x,i; double value, sinx; value = sinx = 0.0; printf("Enter the value for x and i"); scanf("%lf %d", &x, …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in I need some commands in this C programming about maclaurin series sin(x).

    Not much of a question there. I see there are prior answers on the web like https://www.google.com/search?q=maclaurin+series+sin%28x%29.&ie=utf-8&oe=utf-8#q=maclaurin+series+sin%28x%29+in+C%2B%2B Dumping code here may not be enough. You may have to elaborate what …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Unrefered dll not getting copied to bin of published package

    I have a main application (web application) that consumes various other project (directly and chain). One of the projects happens to be Project named Parser. Parser project contains a dll, …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Unrefered dll not getting copied to bin of published package

    I can't guess which Visual Studio this is. https://www.google.com/#q=how+to+add+a+dll+to+visual+studio+publish was a search I used when I needed other files to be published with my app. Maybe this is the search …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Please I need on Python CSV to json

    As such you can check the replies there for clues in case no one has more to add here.
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to jkon in forget password count

    We NEVER keep use passwords in our DB, we keep a hash of them , so we cant send the password to anyone , we can send a link to …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Do you Develop for Android?

    No. I think you might be new to programming and I'm guessing you learned Python first like we read at http://www.skilledup.com/articles/reasons-to-learn-python If you want to make great Android apps, you …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Please I need on Python CSV to json

    ID Arrival Departure ArrivalDate DepatureDate 1001 New York Holland 2009-09-23 2012-07-23 1301 Florida Germany 2010-10-23 2012-10-11 1401 New York Holland 2009-09-23 2009-09-25 1301 New York Beijing 2009-09-23 2010-09-21 1201 New …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Please I need on Python CSV to json

    Why does this look so much like the post at http://stackoverflow.com/questions/34372321/i-need-help-to-structure-the-python-csv-to-json-in-the-following-format-pease
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to rubberman in Adobe PDF

    I think it has to do with how the printer deals with color variations. In your printer setup in the Acrobat Reader, you may be able to increase the color …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Adobe PDF

    I am working with a customer to print out several 11x17 print jobs from Bentley Microstation v8i version 180 and version 443 (Series 2) have been tested. - Issues with …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Adobe PDF

    This sounds familar. Remember I can't tell if this applies but given the time passing I'll share that we saw something like that years ago. It was some schematic software …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Why Is My New Laptop So Slow And CPU So High?

    So it's slow, new. http://www.cpu-world.com/CPUs/Puma/AMD-E1-Series%20E1-6015.html tells me it's very low end gear. I found a HP with that for 245 dollars. Wow that's low end. Maybe you need to step …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in LightGallery count wrong number of images

    So is this a new issue? Your topic is "i have 5 imges and lightgallery shows 6 images." If you have a new issue, state it in a new thread …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in LightGallery count wrong number of images

    That's the same code as above. Sorry but you need to think about your for loop harder. An array of 5 items is indexed from 0 to 4. You have …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in LightGallery count wrong number of images

    If you have 5 items and then loop 0 to 5. That's one too many. Your choice of -1 or change i<= to i< whichever you can wrap your head …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching How does the -'0' and +'0' work in C?

    How do they work? Does -'0' always convert to int from char? Can it convert from anything? And same question about +'0', does it convert only from char to int, …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in How does the -'0' and +'0' work in C?

    I guess I should not watch TV with the kids as I think "MY EYES! THE GOGGLES DO NOTHING!" Here the compiler optimizes such away and I've yet to see …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching LightGallery count wrong number of images

    LightGallery is counting wrong number of images.. here is [jsfiddle code..](http://jsfiddle.net/jetnku0x/3/). In this jsfiddle i am append dynamical element with a div that is in html file.. Please check manually …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in LightGallery count wrong number of images

    for(var i =0;i<=imagesarray.length-1;i++){ Changed line 12?
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Power fail on Windows 10 upgrade

    Electricity failed for an Asus Windows 7 home premium x64 laptop. 52% file completion and 15% install at that moment. Have not attempted any continuation. This is a wifi home …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Power fail on Windows 10 upgrade

    The repeating complaint I get is about folk losing their files. Any OS change is well, dangerous so seasoned PC users eventually know that "Everything not saved will be lost" …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Do you Develop for Android?

    4 cats by Christmas. Not ours but a relative that ..long story. Good luck with Pycharm. Here the office is working apps and I can't see how we'd make apps …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in 21st post bug in forum.

    Must be something other than 21st post. No biggy as I only saw it once then thought "Hmm, I wonder if I add another reply if it will reveal." Before …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in 21st post bug in forum.

    21
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in 21st post bug in forum.

    20

The End.