Search results

  1. K

    Click Farms

    A note to Admins/Mods: This post isn't intended as an advertisement. Delete/Edit if it's against the site's rules. Click farms are hidden operations where hundreds of smartphones are wired to automated systems that generate fake likes, views, and followers on social media to trick algorithms...
  2. K

    Google made it harder for external models to access the web's depth.

    I'm sure you'll hate me, but I will open it up to you. I'm not interested in politic. I don't listen/watch news. I've never voted in my life. I don't even know who was/is our prime minister. I believe every politician, left or right is corrupt and I've decided not to try to change anything...
  3. K

    Google made it harder for external models to access the web's depth.

    When I ask a question from Chatgpt, it tells me where the data have been harvested from. Obviously I can click the link and read the whole article if I like. So the source of info is clear and it's on me to believe it or not.
  4. K

    Google made it harder for external models to access the web's depth.

    I asked Google: How Google's 10 result per page effects AI? Here's the answer: Google's shift to displaying only 10 results per page, combined with the prominent AI Overview feature, significantly impacts AI models by limiting their access to training data and altering the information...
  5. K

    Google made it harder for external models to access the web's depth.

    AI gains its information mostly from what exists on web. Only few AI are not trained by crawling info on the web. When you ask AI something that it's not trained for, and has not enough info about, it starts to search web (using its own index and Google index). And gives you the answer. Go to...
  6. K

    Google made it harder for external models to access the web's depth.

    That was the exact thing I was saying (the url at bottom of my post). By eliminating that parameter, now AI can only see the first 10 result. So an AI, although has its own crawlers, is much dependent on Google indexing. When an AI can only access the first 10 results of Google index, it has...
  7. K

    Google made it harder for external models to access the web's depth.

    I think, these two comments from Instagram tells the whole story: In other words, google made it almost impossible for smaller sites to be seen without paying for ads. This gives Google an edge over all other AI competitor companies…It’s a clever commercial move by them, as they ringfence the...
  8. K

    Google made it harder for external models to access the web's depth.

    This may be of interest for the site owner. You can no longer view 100 search results at once. The default max is now just 10. Google has quietly changed how search results appear, reducing the maximum results per page from 100 to just 10, a move that could reshape SEO, AI training, and digital...
  9. K

    Programmatically construct a constant's name and return its value

    Or instead of a bunch of functions you can have one function with select case: Public Function ConstValue(strName As String) As String Select Case strName Case "conFooBar": ConstValue = "conFooBarValue" Case "conFoo2Bar": ConstValue = "conFooBarValue2" Case...
  10. K

    Programmatically construct a constant's name and return its value

    Why you should use constants? Use a function to return the value: Public Function conFooBar() As String: conFooBar = "conFooBarValue": End Function Public Function conBazBar() As String: conBazBar = "conFooBarValue1": End Function Public Function GetConstantValue(strStem As String) As Variant...
  11. K

    Ads....Ads....Ads.....They are everywhere....

    After several hours of research in Instagram and tweeter, I take back my words. No. There's no Order in China. Seems that I was wrong. Apologies. Ikea in China:
  12. K

    Class_Terminate() on project reset?

    https://www.devhut.net/access-tempvars/#:~:text=TempVars%2C%20VBA%20Variables%20and%20Runtime,this%2C%20a%20very%20simple%20example. From above link:
  13. K

    Ads....Ads....Ads.....They are everywhere....

    You should visit to be able to judge. Not relying on what Fox and CNN feed you. I hate them more than anyone else and more than you can imagine, but it doesn't mean I believe everything is told about them. Yes, there's order in China.
  14. K

    Class_Terminate() on project reset?

    I have a public variable that holds the ribbon object. I also have a function without error handling. When testing in accdb and call the function, the public variable is destroyed and later, invalidating the ribbon causes an error, because the variable is empty. When I create an accde and go...
  15. K

    Class_Terminate() on project reset?

    Only in accdb. Not in accde. (Not sure, only per my immature experience)
  16. K

    Ads....Ads....Ads.....They are everywhere....

    You're going too hard on China. If your statement was true, by the amount of Chinese vandalism clips I see in TikTok, I think their population would have been decreased by now. I don't know the exact sentence for vandalism in China, But Chatgpt's telling me it's detention (a few days) and a low...
  17. K

    Ads....Ads....Ads.....They are everywhere....

    China’s latest “smart” public toilet rollout is drawing backlash after videos revealed a new system that rations toilet paper behind ads and paywalls. One viral clip from China Insider shows a woman forced to scan a QR code and watch an advertisement just to receive a single strip of paper. The...
  18. K

    Solved Class Properties Assigned From Procedures

    I was waiting for someone to ask/explain why the data type is different: Public Property Let PropName(NewValue As Long) ....... NewValue = rs!FieldName It seems that FieldName is a string.
  19. K

    Access Based Media Manager

    The app that @isladogs mentioned can do that. It comes with a pre-installed filters and you can add your own filters. It can be as a sidebar or combo box at top. You can also use a lot of settings for each filter to show them as you wish. Or limit your search to a set of pre-defined folders...
  20. K

    List all song features

    I used to use mp3tag. But at some point I stopped using it. I don't remember why, but there was something that I didn't like about it. Or was it a bug? Test multiple time on test files before working on your actual files.
Back
Top Bottom