• Member Avatar for rproffitt
    rproffitt

    Gave Reputation to gentlemedia in Rich Text Editor

    Did you check out https://quilljs.com/ / https://github.com/quilljs/quill/ ?
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Rich Text Editor

    If you want what DANIWEB uses just message Dani about that. It's a markdown editor AFAIK. https://www.google.com/search?q=markdown+editor
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Rich Text Editor

    How can that work? https://www.w3schools.com/tags/tag_textarea.asp does not tell us that textarea supports rich text. Maybe that's why it's not done that way at all. I think you have to host …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Rich Text Editor

    Hello i want to implement a rich text editor for a <textarea> that my users are uploading text. I found some on google but most of them are very old …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Computer won't boot from gpu . Fans at 100%

    @Chris. Now it's a dead PC. Google "The Dead PC" to find where you start with just a PSU, then a board and **NO CASE** then work your way up. …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in How to bind polygon with the selected coordinates in ArcGis javascript Lib?

    In case SO and others don't reply, try the lib's own forum at https://geonet.esri.com/community/developers/web-developers/arcgis-api-for-javascript
  • Member Avatar for rproffitt
    rproffitt

    Began Watching How to bind polygon with the selected coordinates in ArcGis javascript Lib?

    We are facing an issue to bind the selected coordinates of polygon using ArcGIS Javascript library on page load. The same issue we are facing with all geometry types. Please …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Get Specific Data from a website in Android

    As a programmer your first lessons were usually about basics like parsing. So to get the site information I always turn to wget then parse what I want from that. …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Get Specific Data from a website in Android

    Hi everyone! What I want is to grab a specific textual data from a specif web-page of a website (not all the data containing on the web-page). Please suggest me …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Array-Stack in C, Doesn't show all items; Why..?

    Or change from a for loop to a while stack-size>0. Less variables, etc.
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to gentlemedia in Adding voice recognization

    +1 for the mention of Web Speech API. Native browser support is still quite wonky, http://caniuse.com/#feat=speech-recognition ...but there's a Web Component wrapper using Polymer. http://zenorocha.github.io/voice-elements/
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Computer won't boot from gpu . Fans at 100%

    Have you tried another GPU (graphics card)? Yes you listed it but were not specific. That 770 is pretty old now.
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Computer won't boot from gpu . Fans at 100%

    Hi guys! I've always been able to find answers on this website so I've never had to make an account. So a few months ago I was playing starbound and …
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to Coller in copying dynamic arrays c++

    Firstly, why do you allocate a dynamic array with size 0? unsigned size = 0; string * ptr = new string[size]; Secondly, if you're going to use std::string as you …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Array-Stack in C, Doesn't show all items; Why..?

    Think carefully about line 29. As i is counting up, stacksize is counting down. What do you think will happen?
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Array-Stack in C, Doesn't show all items; Why..?

    Hi Friends, Recently I've experienced an issue in my (following) code. I've designed an array-stack and checked the values pushed in to it. It works well when pushing but when …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in How to convert .GSM to .MP3 using SOX

    I don't use SOX so I can't comment much about that. Is the .GSM file up on the web so I can try using other tools?
  • Member Avatar for rproffitt
    rproffitt

    Began Watching How to convert .GSM to .MP3 using SOX

    Hi. After i'd tried this code to convert GSM to MP3, It was converted successfully but when i tried to play, there's no content. sox -t gsm -r 8000 -c …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Adding voice recognization

    I was wrong. See how to do this with the example by Google at https://developers.google.com/web/updates/2013/01/Voice-Driven-Web-Apps-Introduction-to-the-Web-Speech-API
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Adding voice recognization

    @davy. It's a commercial app, first one on a list so if they didn't answer your question, move to the next one. Too bad you weren't on Android and possibly …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Adding voice recognization

    That on Android might be native to the OS. But Laravel? https://apiant.com/connect/CallFire-Record-to-Laravel and other solutions appear to cost.
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Adding voice recognization

    Hello, Can anyone program and add voice recognization to input box ? How to do that with laravel? Thanks in advance.
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in How do i lock a USB so user cant delete or add files?

    @Stefan, at that quantity you can get them in the few dollar range. https://www.alibaba.com/product-detail/mini-read-only-usb-flash-drive_1716327141.html for example. There are others. I hope you can research this from here on out.
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in impossible to start apache2 on ubuntu LAMp

    @chris. If you want to remove the apache2 directory why didn't you remove it. Your choice of rm or GUI. As to know how to install it, you shared only …
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to ByakkoChan in How do i lock a USB so user cant delete or add files?

    You can buy USB drives with a built in write-protect switch. https://www.amazon.ca/s/ref=nb_sb_noss_2?url=search-alias%3Daps&field-keywords=usb+write+protect
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Frame by Frame encoding of AVI / Animated GIFs

    Your question has me thinking about FFMPEG. https://en.wikibooks.org/wiki/FFMPEG_An_Intermediate_Guide/image_sequence covers this and I bet you can automate this.
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Frame by Frame encoding of AVI / Animated GIFs

    Hi all, I'm a very early user of Daniweb, and after a long break, and I'm hoping to participate a bit more in this forum again. I'm here specifically for …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in copying dynamic arrays c++

    Just a note about formatting. Your code has a lot of commented lines and blank lines. This slows others and me from dissecting what's amiss here. You'll get more replies …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching copying dynamic arrays c++

    i wrote a code that will asks the user to enter a sentence and store the string in a dynamic array. copy the content of the old dynamic array into …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in impossible to start apache2 on ubuntu LAMp

    @chris. I'm not there to dive into your apache but the answer there looked good. That doesn't mean it is the answer to this one. FIRST, never assume your files …
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to happygeek in how can I repair my 1/3 LS2204037 Ver 2.0 POWER SUPPLY BOARD FOR LOGIK 24d

    I Googled it, and the first hit was for a replacement board on eBay costing very little (UKP 15) - so I would think replacing rather than repairing would be …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in How do i lock a USB so user cant delete or add files?

    @Chris. 2 things bother me about your last post. 1. CNET doesn't have this app but download.com and they messed up a few too many PCs with their downloaders. Read …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching How do i lock a USB so user cant delete or add files?

    Hello how can i lock a usb drive that the user it will be not able to remove the files that are in also to cant add new ones? I …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in impossible to start apache2 on ubuntu LAMp

    Just a guess. Look at the source envars noted at https://ubuntuforums.org/showthread.php?t=2281878
  • Member Avatar for rproffitt
    rproffitt

    Began Watching impossible to start apache2 on ubuntu LAMp

    hello everyone gld this community exist ! i'm facing new problem with apache2 on ubuntu i'm using lamp from yesterday and everything works fine knowing that i'm originaly from windows …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Viral Traffic Features And Their Php Codes

    I was on imgur.com and this came up. Enjoy. Link: http://imgur.com/gallery/jqRFq My favorite comment there? > And now I will too. Genius ![ybGghbx.jpg](/attachments/large/1/134e65ca1c4a296169a7e614d52cc628.jpg "align-center")
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in A software like Visual Basic/Studio that supports programming languages

    @Alex. As a manager you would manage by adding team members that can do this work. Also, if it is an open source project, where is your web page about …
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to pty in A software like Visual Basic/Studio that supports programming languages

    So you're building an OS *and* an IDE but the contents of a project file are confusing? Just do yourself a favour and use something built by experts until you …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in A software like Visual Basic/Studio that supports programming languages

    @Alex. Yet another language? Why not share this new language first to see if folk will adopt it?
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in A software like Visual Basic/Studio that supports programming languages

    Your choice to start such a project but there are now plentiful IDE's for coding today. Let's call this a wheel. How is your wheel going to be different? Why …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching A software like Visual Basic/Studio that supports programming languages

    Hello, I was wondering if it was possible to create a software like visual studio (in addition simple, obviously). We could program in vb.net, c ++, etc.
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Help with exam past papers

    Be sure to read https://www.daniweb.com/programming/threads/435023/read-this-before-posting-a-question next.
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Help with exam past papers

    Using function write a program to take two arrays of integer numbers and multiply each corresponding values and put the result in a third array.
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Dell laptop won't power on. Power, battery, and CPU light blink

    No need to drain the battery. I start simple. Power off, remove the battery, press and hold the power button for 60 seconds, release and try again. After that I'll …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Dell laptop won't power on. Power, battery, and CPU light blink

    Hey all, I have a problem with my Dell Latitude laptop. The laptop is 3 years old, and worked fine 2 days ago. Yesterday when I went to turn it …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in How can Improve a website

    As this is all about programming, read the 34 warnings and errors at https://validator.w3.org/nu/?doc=http%3A%2F%2Fsportspull.com%2F then start working to remove those. Imagine your store front with a dirty sign and welcome …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching How can Improve a website

    Hi,this is mahbub.I have a website on [sports bicycle](http://www.sportspull.com/).Now ,I want dicuss with you.How can improve my website.This is website is new but I Launch for Affiliate.
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Merge Sort Recursion stuck at one point

    My thoughts on this sort is to use a ready to use wheel from https://rosettacode.org/wiki/Sorting_algorithms/Merge_sort While it's fun to create from scratch, sometimes we need to get it done. As …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Merge Sort Recursion stuck at one point

    Hie,I have Merge Sort Program .It's giving correct output but when checked through debugger it gives different values everytime.I also tried doing it manually but I am not getting the …
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to KushMishra in WPF - Assigning a common style to all "Window" and "Grid" elements

    Hi **xrj**, I know that using the x:key would surely solve this problem but this would not be a generic solution as I would need to apply this key to …

The End.