-
Replied To a Post in Does anyone tried using justinmind software for wireframing?
Prototypes can be exported to HTML with the paid version, but unfortunately not with the free version. However, I believe (but might be wrong) that there's a free trial of … -
Began Watching Does anyone tried using justinmind software for wireframing?
Could you get html codes in the software, after finishing the wireframe design? -
Replied To a Post in Our Website is not coming google 1st page
Much better!! -
Replied To a Post in Importing a CSV file with hex data.
The MySQL function UNHEX() "interprets each pair of hexadecimal digits as a number and converts it to a character". However, you're trying to store those characters in MySQL integer columns. … -
Began Watching Importing a CSV file with hex data.
I have a table with the following fields: CREATE TABLE text ( drawing INT NOT NULL, blockID INT NOT NULL, entityID INT NOT NULL, style INT, txt VARCHAR(255) NOT NULL, … -
Replied To a Post in Our Website is not coming google 1st page
So I'm investigating your homepage now. It does look like you have javascript in place that disables right clicking when your webpage is loaded. This is horrible for accessibility, and … -
Replied To a Post in On page SEO: How long it will take to learn
> As such, wouldn't your teachers have such answers? Unfortunately, very few front-end web developers take the time to learn and understand SEO enough to incorporate it into their HTML. … -
Began Watching On page SEO: How long it will take to learn
I just want to know how many days are required to learn about on page SEO. -
Replied To a Post in I'm bored! What can I do from home?
I baked pretzels today. Photo on my Twitter. -
Replied To a Post in What is the best App development software?
Why can't it be a web app (HTML, Javascript, etc.) instead of be limited to a mobile device? -
Began Watching What is the best App development software?
Hi Guys, I have been surfing the internet looking for a prompt app dev software because I have seen one of Appoly's and Red C's mobile applications which looked amazing. … -
Replied To a Post in Our Website is not coming google 1st page
What keywords are you trying to rank on the first page for? I’m in bed now because I just woke up but I’ll check out your site a little bit … -
Began Watching Our Website is not coming google 1st page
Hello all , Our website not ranking on google 1st page . We have done everything , content writing , back links, comments ..etc also spent huge money on google … -
Replied To a Post in Ever used Python 2.7 MDI with a Calendar?
You say the following calendar program, but what calendar program? Please include it as code in a post or as a text attachment. -
Began Watching Ever used Python 2.7 MDI with a Calendar?
The following Python 2.7 Calendar program works nicely with a Frame and a Panel, but when I try to change to change the Frame to an MDIParentFrame and the Panel … -
Replied To a Post in Are you coding from home during this pandemic?
Wow, crazy to think I posted this 5 months ago and the world is still exactly the same where I am. Still not leaving the house at all. -
Edited looking for laptop for latest gaming
looking for laptop for latest gaming under $1000 need some suggetions for [gaming laptops under $1000] -
Replied To a Post in Regex or string replace to add <p> html tag
So what I was suggesting was something like this: // Random valid or invalid HTML string (in this case, missing a closing </p> var html = '<strong><p>Foo</strong>'; // Create a … -
Replied To a Post in Regex or string replace to add <p> html tag
I'm not too good with regex, but if you're using jQuery, there's a built-in [utility](https://api.jquery.com/jquery.parsehtml/) where you pass it an HTML string, and it converts that string to valid dom … -
Began Watching Regex or string replace to add <p> html tag
Hi, how can I use regex or string replace to add missing "p" tags to sentences without tags. I tried matching* and splitting first the whole string matching "h" and … -
Replied To a Post in MYSQL 8 Query Join Problem
Can you let me know what all the indexes are on both tables? -
Replied To a Post in MYSQL 8 Query Join Problem
Oh, nevermind. There was a typo. `download.ref` instead of `dowload.ref`. -
Replied To a Post in MYSQL 8 Query Join Problem
In your initial SQL query, you have `UPDATE download [...] SET ref = [...]` Are you meaning to update `lookup.ref` or `download.ref`? What column are you meaning to update from … -
Replied To a Post in MYSQL 8 Query Join Problem
Yes, I agree with the above poster. You’re doing a left join to include that table, but then you’re additionally doing a superfluous subquery for each row. -
Began Watching MYSQL 8 Query Join Problem
I have the following query which has died after running over an hour on my local mysql 8 server: UPDATE download LEFT JOIN lookup ON download.ip_address between lookup.start_ip AND lookup.end_ip … -
Gave Reputation to Reverend Jim in Need quick regex help with matching the same word twice
the back reference is done with `\#` where you indicate (1-9) the desired group. You create the pattern for what you want to match by enclosing it in parentheses. In … -
Replied To a Post in Need quick regex help with matching the same word twice
I really appreciate the time you took, but I think you misunderstood my question. I'm trying to match specifically on the following pattern: if (isset(<<capture group>>) AND <<backreference to capture … -
Replied To a Post in Hi everyone, I'm Greg
Hi Greg!! Welcome to DaniWeb. By article marketing, do you mean submitting guest posts to various blogs that include a link to your website? If so, your articles are being … -
Began Watching Hi everyone, I'm Greg
I'm new here and wanted to say hello to everyone. I've always been fascinated by computers and what they can do. I have used one to do Computer Aided Design … -
Created I'm bored! What can I do from home?
I'm bored! What are some activities to do from home while continuing to shelter in place? -
Began Watching I'm bored! What can I do from home?
I'm bored! What are some activities to do from home while continuing to shelter in place? -
Replied To a Post in What do you think of yesterday's Google bug?
Yes, Google confirmed it was definitely a glitch. My question is more about what that glitch might mean for the future. In other words, DaniWeb was hit by a Panda-related … -
Replied To a Post in Camera App with Transparent Overlay Feature
Perhaps try looking for apps that do stuff with augmented reality? Wish I could be more help. Seems rproffitt has come across such apps. Hopefully he swings by this thread … -
Replied To a Post in Camera App with Transparent Overlay Feature
When I did that Google search, all I got was a whole bunch of tutorials on how to use Adobe Camera Raw with before and after comparisons. -
Began Watching Camera App with Transparent Overlay Feature
Hey Folks, Hope you are all well. Long time no visit for me, but I had a weird question that I am struggling to answer and thought somebody here may … -
Gave Reputation to rproffitt in Camera App with Transparent Overlay Feature
I think this exists. I used a Google search with these three words: BEFORE AFTER CAMERA. To avoid spamming any particular app, I'll share how I found these camera apps. -
Tweeted Need quick regex help with matching the same word twice
I need some quick regex help with matching the same word twice in a pattern. For example, I'm trying to match on the PHP code: `if (isset($foo) AND $foo)` or … -
Created Need quick regex help with matching the same word twice
I need some quick regex help with matching the same word twice in a pattern. For example, I'm trying to match on the PHP code: `if (isset($foo) AND $foo)` or … -
Began Watching Need quick regex help with matching the same word twice
I need some quick regex help with matching the same word twice in a pattern. For example, I'm trying to match on the PHP code: `if (isset($foo) AND $foo)` or … -
Created Schema.org markup improving authoritativeness
Has anyone read about any studies, or has any anecdotal evidence, that might demonstrate that detailed schema.org/Person markup about an author improves the authoritativeness of an article or tutorial in … -
Began Watching Schema.org markup improving authoritativeness
Has anyone read about any studies, or has any anecdotal evidence, that might demonstrate that detailed schema.org/Person markup about an author improves the authoritativeness of an article or tutorial in … -
Replied To a Post in ERROR 1054 (42S22): Unknown column 'Firstname' in 'field list'
Please start a new discussion asking your questin instead of "hijacking" this 7 year old topic. -
Began Watching ERROR 1054 (42S22): Unknown column 'Firstname' in 'field list'
ERROR 1054 (42S22): Unknown column 'Firstname' in 'field list' I'M gettin the above error when I enter: mysql> insert into people (fname, lname) -> VALUES (Firstname, Lastname); Here's the table: … -
Replied To a Post in What do you think of yesterday's Google bug?
For those of you unsure of what I'm talking about, I'm referring to https://www.seroundtable.com/google-update-was-glitch-bug-29923.html -
Created What do you think of yesterday's Google bug?
There was a huge fluctuation in the SERPS yesterday that left a lot of people baffled by the unannounced algorithm ... until Google officially announced it was a bug that … -
Began Watching What do you think of yesterday's Google bug?
There was a huge fluctuation in the SERPS yesterday that left a lot of people baffled by the unannounced algorithm ... until Google officially announced it was a bug that … -
Created Googlebot crawling AMP pages
Googlebot is crawling my AMP pages more than they are crawling my desktop pages. I have the appropriate canonical from AMP to desktop and amphtml from desktop to AMP. The … -
Began Watching Googlebot crawling AMP pages
Googlebot is crawling my AMP pages more than they are crawling my desktop pages. I have the appropriate canonical from AMP to desktop and amphtml from desktop to AMP. The … -
Replied To a Post in Hi everyone, I'm mooweb96
Hi there and welcome to DaniWeb! I started this site back in 2002 and I still run it fulltime today. -
Began Watching Hi everyone, I'm mooweb96
Hello to every one, I an individual from India. I am planning to start my own startup based on digitial marketing. As we all know the future is digital. Because …
The End.