• Member Avatar for rproffitt
    rproffitt

    Began Watching How to create multicell in fpdf

    Output PDF is overwrite, please solve this. advanced thanks <?php require('mysql_table.php'); class PDF extends PDF_MySQL_Table { function Header() { //Title $this->SetFont('Arial','',18); $this->Cell(0,6,'World populations',0,1,'C'); $this->Ln(10); //Ensure table header is output parent::Header(); …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in URL shortening effects the POST data in php?

    Test that. You are talking about a 5 minute test to see if it does. My answer is it should not. HOWEVER some sites autobot/drop/block shortened URLs. Maybe you are …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching URL shortening effects the POST data in php?

    Hello everyone, Does URL shortening effects the POST data in php? whenever we used it for using services like Bitly, Google URL Shortner etc.
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to rubberman in Windows 10 Creator's Update

    I think Microsoft's philosophy is "if it ain't broke, break it anyway"...
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Windows 10 Creator's Update

    Take a read of https://superuser.com/questions/1196276/has-the-cmd-chkdsk-c-r-been-depreciated-in-windows-10-version-1703 I've been using chdsk /f but others are noting a possible change in chkdsk.
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Windows 10 Creator's Update

    In order to resolve a problem whereby Microsoft keeps updating my video driver (which works) with a newer version that is crippled, I installed the Windows 10 Creator's Update. So …
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to diafol in Phone Barcode detecting using its IMEI

    You need a barcode reader - upload the data (image?) from the client to a server probably using Ajax - grab the info (IMEI data) from a barcode parsing service …
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to diafol in Edit Attachment Page WordPress (full image size)

    You realise that we may not have that template to hand, right? Not sure what you expect us to be able to do, other than download a fresh install of …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Access the description of a security group of Active Directory?

    I took a look into this and came away a little worn. That is, I didn't find any specific example where this is. So if I had to do this …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Access the description of a security group of Active Directory?

    Im doing some work with C# and AD and Im missing something right now that I cant seem to see. I want to get a description of a security group …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in List all the messengers that are registered with a mobile number in python

    First, forget how to do this in python. Start with how you do this manually. Let's get that working first. Back to you.
  • Member Avatar for rproffitt
    rproffitt

    Began Watching List all the messengers that are registered with a mobile number in python

    I am going to find out all messengers such as: WhatsApp, viber, Line, Telegram, instagram, Kik, facebook, And others that are Registered with a specific Phone Number. is there any …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Assembly program

    Looked at the zip and can't see what I'm supposed to look at. Example.asm is zero bytes? Weird. OK, let's google this. https://www.google.com/search?q=Assembly+program+x8086+that+converts+the+Decimal+number+into+a+binary+and+hex+number Looks like folk have done this. That …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Assembly program

    Hi i want to write a Assembly program x8086 that converts the Decimal number into a binary and hex number.In Visual studio I know how to write the same program …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Phone Barcode detecting using its IMEI

    I'm confused by this question. Clarify what you are trying to do. Don't tell me how you intend to do this, tell me what you are trying to do.
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Phone Barcode detecting using its IMEI

    I would to know how I could do a barcode detecting using a phone IMEI to know its phone type and specifications in php Many Thanks
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Windows 10 Compatibility Checker

    I have found the old checker from MSFT to be hit and miss. That is, old iron that failed actually runs W10 very well. Example: 2006 Dell E1505 didn't run …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Windows 10 Compatibility Checker

    Hi, Does anyone know of a tool that I can download to run on pc's and laptop's to check that they are compatible with Windows 10? I know I could …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in WP Theme

    We have to ask such questions as Word Perfect does web pages. > Corel WordPerfect 7, Lotus's Word Pro 97, and Microsoft Word 97—have tools for generating Web pages
  • Member Avatar for rproffitt
    rproffitt

    Began Watching WP Theme

    Hi, I am learning WP. Anyone can help me to find theme of [Carenician.com](http://www.carenician.com)
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to Floret in Using one pen drive for both Ubuntu and Windows 8

    The tool we needed - YUMI (Your Universal Multiboot Installer) 1. Run the YUMI 2. Select Your pendrive from the Drop-Down list 3. Check on the format checkbox 4. Select …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Python Hard Drive Unlocker

    Just a suggestion, next time add a tag with the OS you are targetting. It looks like you haven't solved the autorun problem yet. We know the OS has it …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in php/mysql display user details after login

    I see I wasn't clear enough. Read http://blog.moertel.com/posts/2006-12-15-never-store-passwords-in-a-database.html
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in nodejs and short alias for process.stdout.write

    Checkout the replies at http://stackoverflow.com/questions/43362222/nodejs-shore-alias-for-process-stdout-write
  • Member Avatar for rproffitt
    rproffitt

    Began Watching nodejs and short alias for process.stdout.write

    I'm learning nodejs(and I like it!). I tried to figure out how to have shorter alias for `console.log` and I found out that I can use `var cout=console.log` and use …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in php/mysql display user details after login

    I have a design comment. I see you are storing the password instead of a hash/encrypted version. For example, [https://www.google.com/search?q=don't+store+site+passwords+on+your+site](https://www.google.com/search?q=don't+store+site+passwords+on+your+site) Stop and fix that first. Make what you stored in …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching php/mysql display user details after login

    Hello everybody I'm looking for someone to help me about my problem, im trying to display user details after login with allow user to edit some fields . the user …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Microsoft's Visual Studio Mobile Center

    @R, don't take this the wrong way but when I went to that page I saw so little of your text. That is you are proud of that picture but …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Microsoft's Visual Studio Mobile Center

    Hello, how are you? My name's Regie, I work for a technology company and recently one of our Developers wrote an article about the new Visual Studio Mobile Center. It …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Shell script that looks for the two oldest files and deletes them

    I think this is two searches and then combine these for your final script. 1. https://www.google.com/search?q=count+number+of+files+in+directory+bash 2. https://www.google.com/search?q=delete+oldest+file+in+directory+bash Actually the second research seems to have something very close to what …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Shell script that looks for the two oldest files and deletes them

    (Ubuntu Server) I have a folder full of files in pairs (one is a log, another is a DB backup) They are basically create/modified at the same time. I need …
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to Warren_4 in Ubuntu alongside W10 (or alone) on a PC with 7th Generation processor

    SOLVED! It is all about the Brave New World of UEFI. After many unsuccessful tries with 16.10, I started trying 17.04 and succeeded but what I learned probably works for …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Python Hard Drive Unlocker

    How are you going to get your app to run? https://www.engadget.com/2011/02/12/microsoft-rolls-out-long-long-awaited-windows-update-to-disable/ So even before you write one line of code, do you know that this was disabled about 6 years …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Python Hard Drive Unlocker

    The end goal is to create a program that runs when my hard drive is plugged into a computer. This program will attempt to verify that the user is me …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Save html table values to database

    Remember this isn't one of those "give me the codes" forum but one for discussion and more. To save to a database you'll need to select your database first. Not …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Save html table values to database

    Sir I have these codes <html> <head> <style type="text/css"> table { font-size: 12px; font-weight: bold; font-family: Verdana, Geneva, sans-serif; } #mytable td { border: 1px solid #CCC; font-size: 14px; } …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in What is the scope of advanced embedded system?

    The scope is as wide or narrow as you decide. That is, I've use single chip devices (Microchip PICs) at 20 cents each with no external parts to solve a …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching What is the scope of advanced embedded system?

    As a students of embedded what is the scope of advanced embedded system? Is it a better career option?
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Rock, paper, scissor game. Struggling to implement a few things

    When you can't crack the problem, you break the problem down to smaller pieces. Catching the information from the user is not something I worry about when I need a …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in AngularJS render updated record + Laravel backend

    It's going to be sheer luck anyone is running that setup so try this. Break the problem down to smaller steps. If a step can't be accomplished then it's too …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching AngularJS render updated record + Laravel backend

    Employee.php <div class="col-xs-12"> <h2>Listing Employee</h2> <hr> <div class="employeeGrid"> <table> <tr> <th><a href="" ng-click="orderByField='name'; reverseSort = !reverseSort">Name</a></th> <th><a href="" ng-click="orderByField='age'; reverseSort = !reverseSort">Age</a></th> <th><a href="" ng-click="orderByField='gender'; reverseSort = !reverseSort">Gender</a></th> <th><a href="" …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Rock, paper, scissor game. Struggling to implement a few things

    Take a gander at prior c++ implementations. Links. https://github.com/Ibrahiim-Pasha/06-Rock-paper-scissors-lizard-Spock https://www.youtube.com/watch?v=VNfwC5Jzc5c
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Rock, paper, scissor game. Struggling to implement a few things

    This is a rock, paper, scissor, lizard, spock game. The computer's decision making is set up in the class and all input/output must take place in main. I am struggling …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in An audio recording device was not found.

    That can be annoying. It's usually a driver issue then a failed card or device. Here's what I use to inventory the PC to save a lot of time. Read …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching An audio recording device was not found.

    My microphone is vislible and shown as default in sound settings but the windows sound recorder does not work "An audio recording device was not found" and Skype echo voice …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Android Houghes circle code

    Mirty, I too was a little lost on my first Android app. So I googled "my first android app tutorial" and completed those. As to your questions, I think those …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Android Houghes circle code

    I need instructions on implementing a houghes circle code using android studio to an app. I do not know where to put everything and need detailed instructions on how to …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Windows 10 showing updates available but not downloading

    There is the old method worth knowing about. Find the KBnnnnnnn (the n's are the number of the KB) then google that KB number. Many of these have manual downloads …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in rare problem in mysql

    > I need to restore microsoft my sql 2000. That's an odd statement. MySQL was grabbed up by Oracle so why did you write Microsoft here? Maybe you run this …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching rare problem in mysql

    Only one of mysql databases stopped working. Unfortunately, it was the most important database: Table was marked as crashed and should be repaired. It happened on MySQL 5.6, and I …

The End.