8,966 Posted Topics
Re: Plenty. Just google "google analytics alternatives". | |
Re: > What I don’t get is why soooo many people jump ship and are so quick to boycott when the only way they would know is by reading said news articles. Most people are sheep, they don't think, but only follow. | |
Re: Fuzzy search makes me think more in terms of [SOUNDEX](https://dev.mysql.com/doc/refman/8.0/en/string-functions.html) | |
Re: Are you using a CMS? If the CMS does not support it and your links are in a database (or anything similar), use PHP (or any other language of your choosing) to generate the sitemap(s). | |
Re: https://www.daniweb.com/programming/web-development/code/434480/using-php-mysqli-with-error-checking | |
Re: According to: https://developers.google.com/search/blog/2019/09/evolving-nofollow-new-ways-to-identify > Can I use more than one rel value on a link? Yes, you can use more than one rel value on a link. For example, rel="ugc sponsored" is a perfectly valid attribute which hints that the link came from user-generated content and is sponsored. It's also … | |
Re: I do my testing (prior to programming) with Postman, Fiddler and/or SoapUI. | |
Re: Apparently there are changes that you need in that branch, so my advice is to push it to a new branch. | |
Re: > I have realized that I can't assign the random values for the ship with an already populated array. I would like to get some feedback on how Can you explain what you tried that didn't work? | |
Re: > Any ideas how to send email via vb.net ? without using user's password and email. by using smtp maybe https://docs.microsoft.com/en-us/dotnet/api/system.net.mail.smtpclient.usedefaultcredentials?view=net-5.0 Default credentials uses Windows authentication, which is the user you are logged in with. | |
Re: Depending on what you need to achieve, you can also consider a document database or a graph database. | |
Re: I've tried it pre-beta and V1, so quite a while ago. At that point it was a very fast and nice browser to work with (for me). Unfortunately, they began adding all the useless (non-developer) crap Chrome, FF and Opera had (which I don't use), so I ditched it. Update: … | |
Re: The error says you are not allowed to start your query with `SHAPE`. While I do understand this is a valid DMX construct (DMX has been deprecated), the problem may lie in your ODBC connection. Check if it supports DMX. | |
Re: Wondering why nobody has mentioned [webp](https://developers.google.com/speed/webp)? | |
Re: Nice share. Why not use `serialize()`/`unserialize()`? | |
Re: Perhaps I read this incorrectly, but shouldn't you be using `departureTime` instead of `departure` in your curl JSON. | |
Re: If `Format()` doesn't work, you might be able to use the functions `YEAR(hDate)` and `MONTH(hDate)` to get what you want. | |
Re: Why not use `static` in your first example? ``` public function __construct() { echo static::VAR; } ``` Based on [this link](https://www.php.net/manual/en/language.oop5.constants.php), see the comment about late static binding. | |
Re: You can use the [$_SERVER](https://www.php.net/manual/en/reserved.variables.server.php) variable to access the URL. Look down the page for `SCRIPT_NAME` Then you could use [explode](https://www.php.net/manual/en/function.explode.php) to split the path by a `/` The last array item would then be what you are looking for. | |
Re: If you also want to inspect what other apps are sending, check out [Fiddler](https://www.telerik.com/fiddler). | |
| |
I've found myself on the "Endorse Members" page:  | |
Re: This [SO thread](https://stackoverflow.com/questions/50970281/usage-for-createspeechrecognizerwithfileinput-in-microsoft-cognitiveservices-spe) mentions to use [StartContinuousRecognitionAsync](https://docs.microsoft.com/en-us/dotnet/api/microsoft.cognitiveservices.speech.speechrecognizer.startcontinuousrecognitionasync?view=azure-dotnet) and [StopContinuousRecognitionAsync](https://docs.microsoft.com/en-us/dotnet/api/microsoft.cognitiveservices.speech.speechrecognizer.stopcontinuousrecognitionasync?view=azure-dotnet). Perhaps it helps. | |
I archived all the messages in my message list (also yours Dani). Now, if I get a new message (from you) I get a popup stating I have a new message, but this message does not appear in my message list. Is this a bug or an undocumented feature? | |
My avatar is no longer loading:  | |
Re: Start with creating a WinForms application as described here: https://docs.microsoft.com/en-us/visualstudio/ide/create-csharp-winform-visual-studio?view=vs-2022 Then worry about getting your code in the right place. There is no simple conversion from console to a WinForms app. | |
Re: It might be easier to do this in code. What database (MSSQL, MySQL, other) are you using? What you want to achieve in SQL is dependent on which server you are using. You can write a join that connects every record with the next available one easily, but that won't … | |
Re: Depends on so many factors, budget being one. Requirements is another: can you find a freelancer that can deliver what you need, or is it easy enough for one person to handle? Is there perhaps already a similar product out there that you can install and use? | |
Re: Show (relevant) parts of your code. It'll make it easier to get suggestions. | |
Re: [Here](http://www.cprogramming.com/game-programming.html) is some info. > I'm 11 years old So you lied when you signed up? From our Terms of Service: *In compliance with the U.S. Coppa Act, no one under the age of thirteen (13) is permitted to register on these forums. If someone under the age of 13 … | |
In the programming chat I tried to delete a message containing someone's phone number. The Javascript action appears to delete it, but after a refresh the message is still there. | |
Re: OpenGauss has mailing lists on a whole bunch of topics. Chances are you'll get a better response there. | |
Re: > Is it possible an old power supply could have fried my mobo or components? Possible? Of course, but how did you dust it off? A simple action can damage something without you seeing it, and then when powering up it gets an overload. | |
Re: What he said, and if you do need a lot of random numbers, generate a huge fifo queue beforehand and while you're using them just take the next one and add a new one. | |
![]() | Re: > then the expected data is returned. Show some of the returned data. ![]() |
The End.