• Member Avatar for rproffitt
    rproffitt

    Began Watching How to read IP packets (hex) manually

    Hi, I'm trying to read IP packet headers manually from a hex file. From what I understand an IP header has 20 bytes: version, HL, TOS,total length, ID, flag, fragments,ttl, …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in PILLOW doesn't work correctly on mac

    That code doesn't run here on W10 either. Is there more code? That is, it looks to be an incomplete code dump.
  • Member Avatar for rproffitt
    rproffitt

    Began Watching PILLOW doesn't work correctly on mac

    I have the following code I wrote on windows 7: canvas_width = 150 canvas_height = 150 brush_size = 3 color = "black" def paint(event): global brush_size global color x1 = …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Complex Username and Password System

    When this question comes up, I reply with "never store passwords in a database." You can store the names but never the passwords. So you may wonder how to verify …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Complex Username and Password System

    I need a function that will create and store usernames and passwords for different students. Their programme should ask the user for their name and age and a username should …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Receive hex data and string using UART communication in Mplab x

    What I wonder if you are actually clubling the most common reason for serial woes is the setting of the baud rates on the terminal to match your transmit speed. …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Receive hex data and string using UART communication in Mplab x

    I am using Mplab x Ide with v3.61 on Xc8 compiler, PIC18F24K40. I used MCC generated UART code for send and receive data. For understanding I am clubling my code …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Php regex - remove all words that do not occur Exactly 3 or 1 time.

    @Charles. Just a few weeks ago I had to update a factory app I wrote years ago that leverages CPUs and threads (I have to write both since some machines …
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to JamesCherrill in java jframe interface is not showing when run

    What about `initComponents`? You need to have at least one control in the JFrame to get something worth seeing (unless you are using absolute sizing...) ps: You are probably getting …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in How to split a message of odd bits into blocks to apply 2D error-correction

    Doesn't look odd to me at all. 10 10010 should be 00010 10010 as that's the same value. If you are implementing a protocol, your protocol will implement a short …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching How to split a message of odd bits into blocks to apply 2D error-correction

    If we have the following message bits > 11010001010001001010 we split this meassage into blocks of 5 bits, then we use two dimensional matrix for error correction to give the …
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to pty in how to break number into digits in java?

    Here is a working version. Unfortunately in the wrong language, looks like OP *will* have to do some work after all. loop do puts "Enter a number (-1 to end):" …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Question about namespace space in C# ?

    This is likely to not fix it but I had it happen and it did. Mind you that the code looked right but I had to use the Clean then …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Question about namespace space in C# ?

    Perpetual program reopens error: The type or namespace name 'Properties' does not exist in the namespace 'xxx' (you are missing an assembly reference?). Suppose there is a namespace space xxx …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in 8086 assembly

    I think if this is some assignment you posted about before. Not everyone may notice that. But to make a new post leaves you with both posts lacking all the …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching 8086 assembly

    `.model small .stack 100 .data kernel DB 10 DUP(1) input DB 1, 2, 3, 4, 5, 6, 7 output DB 0, 0, 0, 0, 0, 0, 0 .code MAIN PROC …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Convert SQL Query in linq/Entity with comma seperated and left join

    Let's keep an eye on those other folk asking this question too. 1. https://stackoverflow.com/questions/47163149/convert-comma-separated-query-in-linq-entity 2. https://www.codeproject.com/Questions/1214320/How-to-convert-comma-separated-SQL-query-in-linq-e 3. https://stackoverflow.com/questions/47177546/converted-sql-query-to-linq-but-not-getting-any-result Item 3 seems to have the best reply.
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Convert SQL Query in linq/Entity with comma seperated and left join

    As I am new to Linq and Entity Framework, I don't know how I add comma sepearted and left join in linq/Entity code. My Sql query is rather big and …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in 8086 assembly problem

    Welcome. You need to show your work so far. This is more about you sharing what stopped you than members writing your code for you. Read https://www.daniweb.com/programming/threads/435023/read-this-before-posting-a-question where this is …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching 8086 assembly problem

    I have an input signal array I have a kernel array of size 10 filled with ones 1) I need to store the input signal array in a block of …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Generating sentences in Android Studio

    Not the wrong place but it appears you can pick over priors for the basics such as [https://www.google.com/search?q=java+source+to+take+words+from+a+list+(or+three)+to+create+a+random+sentence](https://www.google.com/search?q=java+source+to+take+words+from+a+list+(or+three)+to+create+a+random+sentence) This still means you get to deal with the Android front end …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Generating sentences in Android Studio

    Hi there. Sorry if this is in the wrong place! I am looking to create an app which allows a user to click on some words from a list (or …
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to Reverend Jim in Symbolic link with Robocopy ?

    [SyncBack Free](https://www.2brightsparks.com/freeware/freeware-hub.html) allows you to schedule backups.
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to Charles_25 in Php regex - remove all words that do not occur Exactly 3 or 1 time.

    @benanamen I appreciated the link on XY problem! I admit that I am the noob stumbling through the problem by just parroting how I am doing things....I thank both you …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Ionic 3 and Angular 4: Compatible framework for Ios and Andorid?

    @S. The best tools are what you can wield and create results. Now I'm not an expert on Android Studio but I will share that I'm up to my neck …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Ionic 3 and Angular 4: Compatible framework for Ios and Andorid?

    Hello how do you feel about Ionic 3 and Angular 4 frameworks? Are they compatible with Ios? Do i need to know Java to use them?
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Symbolic link with Robocopy ?

    @Catherine. Great idea but what if I want to automate this? Does GS Richcopy 360 offer a command line version?
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Php regex - remove all words that do not occur Exactly 3 or 1 time.

    @C. Ahh, threads from the command line is interesting. I don't have an Apple here so you may have to do some testing but... On Linux you just type in …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Php regex - remove all words that do not occur Exactly 3 or 1 time.

    @Charles. It was just one of those no-code ideas. The problem is that to benchmark this you have to run it twice and take the second time runs to even …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Php regex - remove all words that do not occur Exactly 3 or 1 time.

    I wonder if this is just something we can use Linux, UNIX or your OS's command lines to get done. Be aware that your top post wrote one way but …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Php regex - remove all words that do not occur Exactly 3 or 1 time.

    **The Problem:** I have a long string of serial numbers, that looks like this: "1_2_3_4_5 0_100_1_0_4 1_2_3_4_5 0_100_1_0_4 0_100_1_0_4 3_1_34_5_6"; I want to remove all serial numbers that do not …
  • Member Avatar for rproffitt
    rproffitt

    Deleted a Post in Convert Hosted to non Hosted Adsense

    Hi i have a hosted adsense account but i want to get the full access of adsense for non hosted websites please tell me how can i get approved my …
  • Member Avatar for rproffitt
    rproffitt

    Deleted a Post in Convert Hosted to non Hosted Adsense

    There are no shortcuts for this, and a hosted account can not be directly converted to a non-hosted account. You have to go according to the Adsense process to obtain …
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to ozstylo in Convert Hosted to non Hosted Adsense

    Hi i have a hosted adsense account but i want to get the full access of adsense for non hosted websites please tell me how can i get approved my …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Software to diagnose processor health

    That's an odd question since when a CPU gets sick, you see all sorts of problems from The Dead PC to BSODs and corrupted drives. But that aside, how about …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Software to diagnose processor health

    Hello Anyone knows a software (free or paid) that can help track the health of a processor, just like for example for RAM we have memtest tool or the built …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in cant get process.machinename

    This looks oddly similar to what we read at [https://msdn.microsoft.com/en-us/library/system.diagnostics.process.machinename(v=vs.110).aspx?cs-save-lang=1&cs-lang=vb#code-snippet-1](https://msdn.microsoft.com/en-us/library/system.diagnostics.process.machinename(v=vs.110).aspx?cs-save-lang=1&cs-lang=vb#code-snippet-1) But today's SECURITY MODELS should cause this to fail. That's vaguely hinted at the link with this line: > for …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching cant get process.machinename

    command name can be APP_COMMAND_NAME as const Friend Module Program Private CurrentString As String = String.Empty Public Const APP_RUNNING As String = "Running" Public Const APP_TITLE As String = "Console" …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in incomplete file transfer via sockets in python

    I was going to look at this but the code looks incomplete. Or I just missed where the socket is opened. I wanted to see if you used TCP or …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching incomplete file transfer via sockets in python

    I am creating a client server program on which client downloads server's files. it works fine in localhost, but the problem occurs in except localhost connection. I've tried googling but …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in stop sql injection while using mysql_connect

    To abubaker+2. It appears you didn't read the second link I supplied.
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in stop sql injection while using mysql_connect

    To abubaker+2. I took a quick look at http://php.net/manual/en/function.mysql-connect.php and find it's deprecated. While you are working your site and code, read what this means. And about injection to this, …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching stop sql injection while using mysql_connect

    is there anyway to stop sql injection while using mysql_connect and not using PDO or mysqli ??
  • Member Avatar for rproffitt
    rproffitt

    Stopped Watching Question about program that use *FILE.

    My program find the amount of specific word such as "whale" and "thee", but ignore "thee,", "whale....", and so on. How can I contain them? #include<stdio.h> #include<string.h> #include<ctype.h> int main(){ …
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to pty in Installing TinyMCE

    TinyMCE is open source and the 'community' (read: unsupported) edition is available using NPM, and easy to use with module loaders like webpack and browserify. I'm guessing Davy hasn't done …
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to gentlemedia in Installing TinyMCE

    Also you should use `$( document ).ready()` or even better place all your scripts before the closing `</body>` tag. Now you initilize tinymce while the HTML and thus the textarea …
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to pty in Back up tables from site code?

    Both Oracle and SQL Server support `BACKUP DATABASE`, but they have different syntaxes and options. Providing you can connect a web app to any database you want to back up, …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Back up tables from site code?

    As to obstinate. "stubbornly refusing to change one's opinion or chosen course of action, despite attempts to persuade one to do so." I had hoped you would restate your question …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Installing TinyMCE

    So I took an extra step to check out the downloads page for TinyMCE and found 3 installers. I am left to wonder what you used here on what target …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Installing TinyMCE

    Hello, I am trying to install TinyMCE standard version but I have not been successful yet. tinymce_471_dev/index.php <!DOCTYPE html> <html> <head> <script src="https://tinymce_471_dev/tinymce/js/tinymce/tinymce.min.js"></script> <script>tinymce.init({ selector:'textarea' });</script> </head> <body> <textarea>Next, start …

The End.