• Member Avatar for rubberman
    rubberman

    Replied To a Post in friend function overloading with default arguments

    Lines 9 and 10 essentially have the same function signatures, which is why you are getting this error. You need to remove line 9 which is `friend void fun (int …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Desktop won't boot.. PLEASE HELP

    Can you get into the BIOS? If not, then the computer likely has a physical defect and needs professional care, or replacement. However, since you say you can boot into …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in iptbales to monitor download and upload data

    You might want to drop iptables and use pcap to capture network traffic in "promiscuous" mode, and then wireshark to filter and analyze it. That has worked well for me …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Corrupt word file - says to use text converter

    The .docx files are xml with some "secret sauce". You might try to use LibreOffice to recover the data. It can handle Word docx files very well. The comment about …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in online storage for an android app

    Respect your app users. They are paying for bandwidth, so if you store videos and photos in the "cloud", they pay for it! Let them store these on their system …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Pc will not a show picture

    So, when you say you changed the case, I assume you put the old motherboard in the new case? Are you sure the powersupply is properly connected? Disc drives? What …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in ms outlook 2003 cant recognize my .pst file

    Backups? The data should still be stored in non-encrypted form, so you may be able to use some sort of editor and extract each message to an external file. Very …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Seagate external HDD not STARTING

    Good luck! I had a Seagate consumer external drive that died after a short while. I have found that these are usually manufacturing seconds, and are unreliable. Now, I only …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Heroku & Dynos

    Good question that I can't answer since I haven't used it. I understand that Heroku is based upon a Debian/Ubuntu distribution however. There is a lot of useful information on …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Heroku & Dynos

    Without details about your application stack, this would be impossible to estimate. Each Heroku application is run in a dyno, which is essentially a Linux container. You really need to …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in google play app

    Uploaded to? Or do you mean downloaded from the google play store?
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Shell Script to Generate Automatic ticket/Email

    Is this a school exercise, or a work-related issue?
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in linux command in java

    And your problem is? What is the forward slash in the "find" command? You are specifying the BEL directory with the find command. The slash is extraneous and may cause …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Using Divide and Conquer Strategies

    If you understand the logic, writing the code should be trivial! PLEASE, DO NOT ask us to do your homework for you!
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in student

    Give me some... what? You provide a link to facebook, but no specific page, so it goes to the user's page. If you are a student, you are definitely failing …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Compound literals

    Where is your code for the sum_arr() function? Your code as it is makes no sense... Why are you using curly braces for x=(int){1}+(int){2}; etc? Do you have a slightest …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Telugu text to unicode

    See this Wikipedia article - Telugu uses the Unicode range U+0C00–U+0C7F: https://en.wikipedia.org/wiki/Telugu_script
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in exceptional handling inside constructor

    1. Don't throw exceptions from a constructor. 2. See #1. If you do have an exeptional condition inside a constructor, then you need to set a member variable indicating that …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in database of html image

    Images in an html page are NOT html, but are generally embedded PNG, JPG, or similar format images. If you right click on an image in your web browser, they …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Galaxy Tab 3 blackout/not charging

    Please explain what you mean by "black out". Do you just get a black screen? If so, how do you know the battery is ok? How do you know that …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Diskless computing device

    Most so-called diskless devices have some sort of flash memory based device (SSD) to store local data on. Also, they all have USB ports that you can use to attach …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in New Battery for Dell latitude d830 - Search recommendable providers

    I found a replacement for my D630 for about $25 at www.rakuten.com (formerly buy.com). Seems as good as the original for a 9 cell battery (extended life). One from Dell …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in In other news, Dell brings Greek malware into view

    Good post "Geek"... :-) Done right, steganography is hard to detect, especially if the code is encrypted first, and then if the embedding is also ramdomized.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in chown not working

    Normally, chown will only affect a real file, not a link. Most of your "files" are soft links. Unless you modify the ownership and/or permissions on the root file, the …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in ARP and RARP

    The names pretty much say it all: ARP == Address Resolution Protocol. RARP == Reverse Address Resolution Protocol. This should help: http://www.differencebetween.com/difference-between-arp-and-vs-rarp/
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in is realy my CPU or other bad configuration?

    A 2GHz CPU and 256MB of video RAM is pretty minimal these days. What happens when you run videos outside of Firefox? Also, how much RAM does your system have …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Are there any advantages in using ASP.net over PHP?

    Using Windows? ASP.net is ok. Want something more neutral? Use PHP.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in c string is not accept by proc query

    I think your use of a double-quoted string is the problem. IE, the order_type in (:dest), should be order_type in ('30','31','32'). The double quotes are likely the cause of your …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in fixed point math in C

    Multiply - shift left. Divide - shift right. Add and subtract are more complicated. This may help: https://en.wikipedia.org/wiki/Binary_number
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in converting program and functions fromVs2013 to qt

    If you want to do this in Qt, then check out the QtCreator tool. Qt is NOT OpenGL, even if it may use it under the covers.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in laptop buying advice

    If Linux is OK with you, then go to www.zareason.com for great Linux laptops! Toshiba and Fujitsu laptops are good, mechanically speaking, but I don't know about support. The folks …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Help! School servershare my (H:) keeps having red cross!

    It sounds like your computer is having networking issues in connecting to the school's server (your H: drive). Are you using WiFi to connect, or wired ethernet?
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in No internet access

    This is often caused by a bad DNS server. ISP servers sometimes go down and then you cannot access the internet because names cannot be resolved to IP addresses, which …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in cpu and ram compatibility

    "BTW one more question are the max memory bandwidth of the processor and peak transfer rate of the RAM is related?" The short answer is yes. Also, the CAS is …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in 2x4 12v connectors

    The salient question is "Why do you need this?".
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Troubles reading PowerPoint

    What version of Office are you running? If other Office 2007 clients can view these, then something went wrong with your installation and you might want to remove it and …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in cpu and ram compatibility

    Since the DDR3-1600 CAS 11 worked, my guess is that it is compatible with the DDR-3 1066/1333, but it will only run at the 1066 speed of the memory bus …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Parking Fee

    Sorry. We don't do your homework for you. Show the work, and we will help. No work - no help...
  • Member Avatar for rubberman
    rubberman

    Gave Reputation to Moschops in can anyone explain me this snippet?

    The order that function parameters are evaluated is unspecified behavior. Different compilers can do it in different ways, and this is a mess of side effects as the parameters are …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in can anyone explain me this snippet?

    As per Moschops. In my opinion, this is a textbook exercise to teach you the perils in performing evaluations (functions) on arguments in another function. This problem, caused by others, …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in can't adjust page margins in Word for Mac

    You need to check your printer settings, as well as that of the editor. If the editor has set the margines to 1", but the printer settings has also, then …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in How do I generate voice from mic values

    This is not a trivial subject. You are getting the raw data, which I assume you have captured in Windows. How is the data encoded?
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in editing mkv files

    What OS are you using? There are tools on most that will do this. MS Windows ones are usually commercial. Linux ones, even the paid-for professional ones have free versions …
  • Member Avatar for rubberman
    rubberman

    Gave Reputation to pritaeas in Book

    An oldie on my bookshelf: Algorithms + Data Structures = Programs (Prentice-Hall Series in Automatic Computation) (1976) by Niklaus Wirth (Author)
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Write .ini values encrypted, then read it?

    The typical way this sort of trivial "encryption" is done is to have an alpha-numeric key of some reasonable length. You then walk the key and use each character in …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Object reference not set to an instance of an object.

    @ what ddanbe said. You need to show your code, or at least describe what your are doing more completely.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Language for messenger

    A messenger? Please be explicit what you mean. This is a common term for message passing systems, such as Kafka. However, it may mean something else to you.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Debugging Quicksort Algorithm

    Have you really analyzed the original qsort algorithm? Read Knuth's volume 3, Sorting and Searching? If you haven't adsorbed that, then you don't know what the fark you are doing!
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in A taste of Swift part 1

    I will always be suspicious of vendor-written and distrubted programming languages. Lock-in is the least of the issues. Open standards exist for a reason. This is why I don't like …
  • Member Avatar for rubberman
    rubberman

    Gave Reputation to hefaz in Project Wanted

    Hi, i have a pharmacy project in vb6 and along with that i have the monograph (thesis) too, give me your email or contact me +93775490010

The End.