• Member Avatar for rubberman
    rubberman

    Replied To a Post in Computer Architecture

    There are many for audio and video. They range from co-ax audio connectors to hdmi and lightning connectors for audio and video, and a plethora of stuff in between including …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Does anyone use Xamarin Framework?

    1. Don't use C#. 2. See #1. 3. See #2... Snark aside, I don't use C# and .NET tools because MS can change the rules for them any time they …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in password help!

    This entire block is bad: for(num=0;;) { a=getch(); if((a>='a' && a<='z')||(a>='A' && a<='Z')||(a>='1' && a<='9')) { ph[num]=a; cout<<"*"; ++num; } if(a=='\r') { ph[num]='\0'; break; } } if(pass=='input') { cout<<"PASSWORD ACCEPTED"<<endl; …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Use Telnet to access a UNIX/Linux computer remotely

    Telnet is insecure. Most servers have disabled it so you probably cannot access them with it. Try ssh instead.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in let love lead

    Ok. What do you need?
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in "Permission Denied" when try recompile OCX with VB6 on Win7 64 bit

    More information than a simple "Permission Denied" would be helpful. I don't know if this will help... http://ocxocx.com/ocx/ Unfortunately, I don't know much about this (OLE Controls) as I try …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Why does Windows XP refuse to die?

    @Tcll - ah, another Linux user I see! FWIW, you can also find me on the Linux Forums, also under the handle Rubberman. Holler if you need any help, or …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Flash player not working

    Glad you sorted it out. Keep in mind that there is a move to migrate to HTML5 for video playback instead of flash since it is a public standard, which …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Why does Windows XP refuse to die?

    @Tcll - yes, you can get malware on Linux, but it is a LOT harder than with MS systems. The fact that the default Linux user is not the sysadmin …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in boost::algorithm::split_regex problems

    What Moschops said. You need to use the appropriate -L <library-dir> and -l <lib-name> in your linker variable LDFLAGS in your Makefile. FWIW, my wife uses the boost libraries all …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Why does Windows XP refuse to die?

    I switched to Linux exclusively a long time ago (about 10 years) and have not regretted it in the least! I still run WinXP and Win7 in virtual machines, and …
  • Member Avatar for rubberman
    rubberman

    Gave Reputation to XP78USER in Why does Windows XP refuse to die?

    rubberman is wrong XP will live on!
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in VLANs Establishing

    There is this search engine called Google that can help you find out this sort of information, and in depth...
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Not supported any USB in my Computer

    Any recent system will have USB 2.0 and/or 3.0 connections. What is your motherboard? If it is old, then you may be able to purchase a PCI usb hub to …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Not Connect in wifi network

    Most WiFi networks are secured. Are you sure you are using the correct passphrase or password? FWIW, if a WiFi access point (AP) is using WEP, then you may need …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Java: Combinations of elements

    Sorry, but we don't do your homework for you. Make an effort, show your code, describe your errors, and then we may help you.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Anti Virus | Help

    Look at ClamAV (ClamWin for Windows). It is an open source A/V program so you can look at the source, learn from it, and adapt it to your needs. It …
  • Member Avatar for rubberman
    rubberman

    Gave Reputation to Ene Uran in computer program

    F = 9 * C/5 + 32 Is the same as F = (9/5) * C + 32 With Python2 / is integer division, so avoid it by using 5.0 …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Flash player not working

    If you are running 64-bit firefox, you need the 64-bit flash player, and vice versa with 32-bit versions. I don't have any problem with flash on my system running 64-bit …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Too Many Redirects

    What browser are you using, and which version/build of Android is it running?
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in New Folder Virus

    What do you mean by "duplicates itself automatically"? A description of the files/folders it creates would be helpful. Also, what A/V programs have you used to try and remove this …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Win 8.1 Wireless Frequently goes to "No Internet Access"

    Try placing your cell phone into airplane mode and see it is a possible cause. Also, make sure your phone's wifi is off, which should happen when you put it …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in How to test a power supply unit without a pc?

    Do you smell that crispy odor and hear sizzling? That's your power supply getting toasted... :-) It should trip a breaker or fuse, but don't depend on that!
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Win 8.1 Wireless Frequently goes to "No Internet Access"

    Do you have other radios on the farm that might interfer with the frequencies that the access point and laptop use (2.4GHz and 5GHz)? If you are using 2.4GHz, and …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in need help c++

    Which of these 3 lines is generating the compiler error? for(list<int>::iterator it = wlist.begin(); it != wlist.end(); it++) { for (row = adj.begin(); row != adj.end(); row++) { for (col …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Renaming and deleting a text file in JAVA

    Well, I don't think you are writing to cr. You create it, and then close it, but nothing is written to it.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in need help c++

    Better. I'll look at it when I have a minute. This will help others to analyze and comment as well.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in computer program

    Sorry, but we don't do your homework for you. FWIW, the actual formula is ((9/5)*C) + 32. Make sure you get your parens correct!
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in need help c++

    This is not adequate. Please provide all of your relevant code, variable definitions, etc.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in merge two array in 1

    What ddanbe is trying to say, is that you need to show ALL of your code.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in A method to convert ppm to ascii art doesn't work properly

    As usual, Moschops hits the nail on the head!
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in design of a button

    In truth, this isn't a C++ issue. It is a Visual Studio issue. Ok, I may be nit-picking now, but this ISN'T a C++ problem!
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in while i<=N : NameError: name 'N' is not defined

    Stupid Python indentation rules! One of the many reasons I despise the language! Personally, I think the authors of the language took their Monty Python analogies way too far! Not …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Correlate swingtime events with my existing users model.

    RTFM? What package? Where is the documentation for it? What is "ForeignKey" supposed to refer to? IE, until you produce your code, we can't help you very much. Also, we …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Help with output

    Also, don't bother writing your own sorting and searching functions - chances are you will get them wrong! Use qsort() and bsearch() instead. These are standard C functions (usable in …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Toshiba satellite is turning off randomly ( I don't want to open the laptop

    Look at your power profile. It is likely that the system is set to turn off or hibernate if the lid is closed, or there is no input, for some …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Password

    Actually, in C++, you can use C functions, or C++ stream functions, including doing things like turning off echo in input streams, so you can do the mapping of input …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Polling System

    What Schol-R-LEA said, plus asking people to analyize almost 1500 lines of code is insulting! Narrow your code example down to where you are having a problem. If you don't …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Alternative to VLC?

    VLC supports multiple playlists. You can export a current playlist to a file, and then reload that later via Media->Open File.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in How to test a power supply unit without a pc?

    Thanks cis7850 for the lead. It sounds like this is a dedicated device that would do what I suggested "in the raw". :-) Ain't tech great? To quote some wag …
  • Member Avatar for rubberman
    rubberman

    Gave Reputation to cis7850 in How to test a power supply unit without a pc?

    Ultra puts out a power supply tester. It tests 20/24 Motherboard connector;Molex+12v/5v,EPS +12v;Floppy+12v/5v;PCI-E+12v;SATA+12v/+5v/ with led and sound indicators.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in intel processor

    Aeonix's post was spot on, in my opinion. The core-M Intel processor family is designed for low-power mobile (hence the M designation) applications and devices. It is slower, smaller, and …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Why Amazon's Werner Vogel is wrong about cloud security

    Well, this is an interesting discussion that will continue for some time. The jury is still out as to whether cloud vs. premises systems are more secure. In my "not …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Linux & UNIX Operating System Training

    So, is there a question here, or are you just telling us what we already know? And in a very simplified explanation... I have to assume you just finished a …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Which solution FTP server or private cloud solution

    FTP is useful if you don't want to trust your data to the cloud, but bear in mind that raw FTP is inherently insecure. There are secure FTP versions available. …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in RPM 5400 vs 7200

    There are issues with SSD's that most people are not aware of, such as the loss of data when the power is off for extended periods of time (recently reported …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Array

    In the first example, you have allocated room for 5 characters, but you need 6 to include the string's terminating null byte. Also, you have specified that "Happy" is a …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Need For A Complete Compiler

    There are many for just about any operating system. What OS are you running, and where did you look? GNU has compilers for just about anything.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Tower f hanoei

    First, we don't do your homework. Second, what don't you understand about the sequence? Read the program line by line and explain what it does.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in How to test a power supply unit without a pc?

    You need a number of tools for this, including a harness that will provide a load similar to what the system would generate. In addition, you need diagnostic tools such …

The End.