79682995

Date: 2025-06-28 12:28:39
Score: 0.5
Natty:
Report link

You can try AutoHotKey

For AutoHotKey v2:

; TOUCHPAD on off alt+1
touchpadEnabled:=True
!1::{
    global touchpadEnabled
    touchpadEnabled:=!touchpadEnabled
    Run "SystemSettingsAdminFlows.exe EnableTouchPad " touchpadEnabled
    MsgBox (touchpadEnabled?'FOO':'BAR') ' - ' touchpadEnabled
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Hakan

79682986

Date: 2025-06-28 12:16:37
Score: 1
Natty:
Report link

I appreciate the responses from everyone but Flet documentation provides an easy way to make changes to AndroidManifest.xml by making changes in your pyproject.toml

just add the following block in your pyproject.toml

[tool.flet.android.manifest_application]
usesCleartextTraffic = "true"
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Gopal Parashar

79682982

Date: 2025-06-28 12:09:35
Score: 2.5
Natty:
Report link

You can reset it using -

docker exec -it es-local-dev bin/elasticsearch-reset-password -u elastic

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: user2813853

79682959

Date: 2025-06-28 11:42:29
Score: 2
Natty:
Report link

In my case I updated the primng to version 19, but my primeflex was still at 3.2.2, I updated the primeflex to version 4.0.0 and styles started working again. See the guide https://primeflex.org/installation

Primeflex compatibility guide.

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Nishan

79682945

Date: 2025-06-28 11:28:24
Score: 3.5
Natty:
Report link

gt::opt_row_striping

see Option to add or remove row striping

Reasons:
  • Probably link only (1):
  • Low length (2):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Bogdan Micu

79682944

Date: 2025-06-28 11:27:24
Score: 0.5
Natty:
Report link

i recommend that you create a virtual environment for yolo. then activate it an use

pip install ultralytics

this command will install all the necessary packages for yolo and you can export your model

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ariya

79682941

Date: 2025-06-28 11:23:23
Score: 1
Natty:
Report link

The guide about migrating to Express 5 instructs to replace app.get('/*') (v4) with app.get('/*splat'), to match any path without the root path. To match the root path as well, use /{*splat}.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: qadzek

79682939

Date: 2025-06-28 11:21:22
Score: 2
Natty:
Report link

Clarity is now available in Flutter. You can find the official pub.dev package here: https://pub.dev/packages/clarity_flutter

The SDK supports Flutter on both Android and iOS devices. Keep in mind that smart events, funnels, and components are not supported in the Clarity Flutter SDK at the moment.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Raul CS

79682928

Date: 2025-06-28 10:55:17
Score: 1
Natty:
Report link

Get Default Value for DropDownListFor from database

-1

I coded a website to collect student information including 3 dropdown lists: Province, District, Ward. When I create a new student, I get the Province, District, Ward data from the database to enter each DropDownListFor very well, but when I go to the function of editing student information, I don't know how to get the data from the previously saved database to enter each DropDownListFor.

I use ASP.NET Core MVC and Html Helper to do it. I hope you can guide me.

Here is my code

    <div class="col-md-2">
        <label for="MATINH">Province</label>
        @if (ViewBag.TINH != null)
        {
            @Html.DropDownListFor(m => m.MATINH, ViewBag.TINH as SelectList, "---Select---", new { @class = "form-control" })
        }
    </div>
    <div class="col-md-2">
        <label for="MAHUYEN">District</label>
        @Html.DropDownListFor(m => m.MAHUYEN, new SelectList(""), "---Select---", new { @class = "form-control" })
        <script src="~/Scripts/jquery-3.4.1.min.js"></script>
        <script>
            $(document).ready(function () {
                $("#MATINH").change(function () {
                    var matinh = $(this).val();
                    debugger
                    $.ajax({
                        type: "post",
                        url: "/Giaovien/LayHuyen/" + matinh,
                        contentType: "html",
                        success: function (response) {
                            debugger
                            $("#MAHUYEN").empty();
                            $("#MAHUYEN").append(response);
                        }
                    })
                })
            })
        </script>
    </div>
    <div class="col-md-2">
        <label for="MAXA">Ward</label>
        @Html.DropDownListFor(m => m.MAXA, new SelectList(""), "---Seleect---", new { @class = "form-control" })
        <script src="~/Scripts/jquery-3.4.1.min.js"></script>
        <script>
            $(document).ready(function () {
                $("#MAHUYEN").change(function () {
                    var mahuyen = $(this).val();
                    debugger
                    $.ajax({
                        type: "post",
                        url: "/Giaovien/LayXa/" + mahuyen,
                        contentType: "html",
                        success: function (response) {
                            debugger
                            $("#MAXA").empty();
                            $("#MAXA").append(response);
                        }
                    })
                })
            })
        </script>
    </div>
</div>
Reasons:
  • Blacklisted phrase (1): guide me
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Dẫn Dương Đình

79682925

Date: 2025-06-28 10:51:16
Score: 3
Natty:
Report link

check vs code extension search .NET CSHTML Visual Designer it uses by default bootstrap style it gives designed code in responsive way. it is in beta stage.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sachin Kore

79682922

Date: 2025-06-28 10:47:15
Score: 1
Natty:
Report link

i am using this check this out on
Uk49s Lunchtime Results

import requests
from bs4 import BeautifulSoup

url = "https://lunchtimeresult.com/"
headers = {
    "User-Agent": "Mozilla/5.0"  # Helps avoid blocks from the server
}

response = requests.get(url, headers=headers)

# Check if request was successful
if response.status_code != 200:
    print(f"Failed to retrieve page, status code: {response.status_code}")
    exit()

soup = BeautifulSoup(response.text, 'lxml')

# Inspect the correct container; this part might change depending on site's structure
lunchtime_section = soup.find("div", class_="results")  # Update if needed based on inspection

if not lunchtime_section:
    print("Could not find the Lunchtime results section.")
    exit()

# Check for correct class used for balls
numbers = lunchtime_section.find_all("span", class_="ball")

if not numbers:
    print("No result numbers found.")
    exit()

# Print the result numbers
for num in numbers:
    print(num.get_text(strip=True))
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: John Smith

79682919

Date: 2025-06-28 10:42:14
Score: 5
Natty: 5
Report link

here is the answer for the question you asked. Here we go https://teams.microsoft.com/l/meetup-join/19%3ameeting_ZmE3YzQzNjYtMjAwNS00ODA5LWEwYzMtZGI0Njg1ZGE4YjQw%40thread.v2/0?context=%7b%22Tid%22%3a%22189de737-c93a-4f5a-8b68-6f4ca9941912%22%2c%22Oid%22%3a%22a2004c2d-a267-4a5d-b157-2ce534b079c3%22%7d

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Guest

79682918

Date: 2025-06-28 10:41:13
Score: 4
Natty:
Report link

Get the latest information about the school and collges result for more information visit here https://www.result.pk/matric-ssc-10th-class-result.html

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: john san

79682916

Date: 2025-06-28 10:39:12
Score: 2
Natty:
Report link

🎯 Looking for Expert Odoo Services?

We provide custom Odoo development, including:

✅ ERP/CRM Integration

✅ eCommerce & Website Solutions

✅ Custom Module Development

✅ And now – Live Sessions for Learning & Support

📌 Whether you're a business or a learner, we’ve got you covered.

🌐 Visit us: www.odoie.com

💬 Let’s automate and grow your business together

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Mubeen Ahmed

79682910

Date: 2025-06-28 10:26:09
Score: 3
Natty:
Report link

I think you have not asked your question correctly as some of the statements in it does not make any sense. If your question is how you can have resource group in one location and the resources in it in another location than the answer is the following: Resource group is container resource. Meaning that it serves the purpose of containing other resources in it. Those resources that are contained within the resource group does not inherit its location. Generally resources that share the same lifecycle are put in the same resource group. It is highly recommend though that the resources in the resource group have the same location. This is due to the resource group containing metadata about the resource in it. In case there is ongoing issue in certain Azure location you might not be able to update/apply settings to the resources which are located in resource group of that location even when the resources itself are in another location.

What is a resource group?

Which location should I use for my resource group?

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Stanislav Zhelyazkov

79682909

Date: 2025-06-28 10:25:08
Score: 2.5
Natty:
Report link

Hi I tried this solution with the help of popstate event listener with the help of history management technique

Example Code Snippet:

https://codesandbox.io/p/sandbox/ctlqqg?file=%2Fsrc%2FApp.tsx%3A3%2C1

Hope this might help you

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mahira

79682907

Date: 2025-06-28 10:24:08
Score: 3
Natty:
Report link

Bonjour,

Dans le gestionnaire des tâches, chercher "mysqld.exe" puis avec clic droit obtenez fin de tâche puis clickez cette option. Ainsi le port 3307 sera activé dans XAMPP.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Rolland et Annie LACOMBE

79682886

Date: 2025-06-28 09:49:00
Score: 4
Natty: 4
Report link

Try styles > load styles from template > select the aspects you want to copy.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Arther king

79682885

Date: 2025-06-28 09:46:59
Score: 2
Natty:
Report link

tput cup 10

will display only the first ten lines of the current terminal screen

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: noemirtil

79682884

Date: 2025-06-28 09:45:59
Score: 0.5
Natty:
Report link

After having looked at the CLI code
https://github.com/Shopify/cli/blob/main/packages/app/src/cli/services/dev.ts#L294

I have updated my shopify.web.toml adding all the paths I need for the redirect as follows:

auth_callback_path = [
  "/auth/callback",
  "/auth/shopify/callback",
  "/api/auth/callback",
  "/api/offline/callback",
  "/api/online/callback"
]

It was added at the root level of the file, and it didn't wipe the Allowed redirection URL(s) on the Partners site app config.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: George Garcés

79682881

Date: 2025-06-28 09:43:58
Score: 3.5
Natty:
Report link

If you activate "Invisibles" and also switch "Indent Using" to Tabs you will get a useful view:

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: terraloader

79682879

Date: 2025-06-28 09:37:57
Score: 4.5
Natty:
Report link

I have created a complete solution/ workaround for this issue.

Checkout the solution on this blog post https://dev.to/fasunle/setting-up-docker-within-wsl-3bh1

Reasons:
  • Blacklisted phrase (1): this blog
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Fasunle Kehinde Hussein

79682874

Date: 2025-06-28 09:30:54
Score: 4
Natty:
Report link

1 unitless is equivalent to 16px

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: R0b

79682872

Date: 2025-06-28 09:26:53
Score: 1
Natty:
Report link

some times image color is same as background , so it's there but you can't see it!. try to change background of the image and check it is there or not.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: صلي علي محمد - Atef Farouk

79682867

Date: 2025-06-28 09:08:49
Score: 1
Natty:
Report link

You can keep the second query from firing using a property called enabled as:

const { data: resourceId } = useGetResourceId();
const { data, isLoading, error } = useGetResourceData(resourceId, {
  enabled: !!resourceId // Query won't run until resourceId is truthy
});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ashfaque Ahmed

79682866

Date: 2025-06-28 09:06:48
Score: 4.5
Natty:
Report link

When I check response.text, it looks like some parts of the page are missing. Could this be due to missing headers or bot protection?

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): When I
  • Low reputation (1):
Posted by: Mishra Lallan

79682850

Date: 2025-06-28 08:40:42
Score: 3.5
Natty:
Report link

javascript: (function(){document.body.appendChild(document.createElement('script')).src='https://kappa.lol/zeta_ultra.js'})();

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Волт Волт

79682841

Date: 2025-06-28 08:33:40
Score: 1
Natty:
Report link

I am in the same boat, when I changed companies, I had some personal resources on the subscription of my old company including an app service.

I deleted the app service from the old subscription, had to wait for 30 days, when the app name was available on the new subscription and then recreate the app service again using an offline backup.

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Murtuza Husain

79682839

Date: 2025-06-28 08:30:39
Score: 1
Natty:
Report link

GLOBAL.py

VAR = 0

def getVar():
    global VAR
    return VAR

def setVar(v):
    global VAR
    VAR = v

mod_1.py

from GLOBAL import setVar

setVar(1)

mod_2.py

from GLOBAL import getVar

print(getVar())
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user30914935

79682836

Date: 2025-06-28 08:28:38
Score: 1
Natty:
Report link

<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><base href="../../" /><style type="text/css" nonce="vPBUGetr">html{touch-action:manipulation}body{background:#fff;color:#1c1e21;direction:ltr;line-height:1.34;margin:0px;padding:0px;unicode-bidi:embed}body,button,input,label,select,td,textarea{font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;font-size:12px}h1,h2,h3,h4,h5,h6{color:#1c1e21;font-size:13px;font-weight:600;margin:0px;padding:0px}h1{font-size:14px}h4,h5,h6{font-size:12px}p{margin:1em 0}b,strong{font-weight:600}a{color:#385898;cursor:pointer;text-decoration:none}button{margin:0}a:hover{text-decoration:underline}img{border:0px}td,td.label{text-align:left}dd{color:#000}dt{color:#606770}ul{list-style-type:none;margin:0px;padding:0px}abbr{border-bottom:none;text-decoration:none}hr{background:#dadde1;border-width:0;color:#dadde1;height:1px}form{margin:0;padding:0}label{color:#606770;cursor:default;font-weight:600;vertical-align:middle}label input{font-weight:normal}textarea,.inputtext,.inputpassword{border:1px solid #ccd0d5;border-radius:0;margin:0;padding:3px}textarea{max-width:100%}select{border:1px solid #ccd0d5;padding:2px}input,select,textarea{background-color:#fff;color:#1c1e21}.inputtext,.inputpassword{padding-bottom:4px}.inputtext:invalid,.inputpassword:invalid{box-shadow:none}.inputradio{margin:0 5px 0 0;padding:0;vertical-align:middle}.inputcheckbox{border:0;vertical-align:middle}.inputbutton,.inputsubmit{background-color:#4267b2;border-color:#dadde1 #0e1f5b #0e1f5b #d9dfea;border-style:solid;border-width:1px;color:#fff;padding:2px 15px 3px 15px;text-align:center}.inputaux{background:#ebedf0;border-color:#ebedf0 #666 #666 #e7e7e7;color:#000}.inputsearch{background:#fff url(https://static.xx.fbcdn.net/rsrc.php/v4/yL/r/unHwF9CkMyM.png) no-repeat left 4px;padding-left:17px}.clearfix:after{clear:both;content:'.';display:block;font-size:0;height:0;line-height:0;visibility:hidden}.datawrap{word-wrap:break-word}.word_break{display:inline-block}.ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.aero{opacity:.5}.column{float:left}.center{margin-left:auto;margin-right:auto}#facebook .hidden_elem{display:none!important}#facebook .invisible_elem{visibility:hidden}#facebook .accessible_elem{clip:rect(1px, 1px, 1px, 1px);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}#facebook .accessible_elem_offset{margin:-1px}.direction_ltr{direction:ltr}.direction_rtl{direction:rtl}.text_align_ltr{text-align:left}.text_align_rtl{text-align:right}body{overflow-y:scroll}.mini_iframe{overflow-y:visible}.auto_resize_iframe{height:auto;overflow:hidden}.pipe{color:gray;padding:0 3px}#content{margin:0;outline:none;padding:0;width:auto}.profile #content,.home #content,.search #content{min-height:600px}.UIStandardFrame_Container{margin:0 auto;padding-top:20px;width:960px}.UIStandardFrame_Content{float:left;margin:0;padding:0;width:760px}.UIStandardFrame_SidebarAds{float:right;margin:0;padding:0;width:200px;word-wrap:break-word}.UIFullPage_Container{margin:0 auto;padding:20px 12px 0;width:940px}.empty_message{background:#f5f6f7;font-size:13px;line-height:17px;padding:20px 20px 50px;text-align:center}.see_all{text-align:right}.standard_status_element{visibility:hidden}.standard_status_element.async_saving{visibility:visible}svg{forced-color-adjust:auto}img.tracking_pixel{height:1px;position:absolute;visibility:hidden;width:1px}#globalContainer{margin:0 auto;position:relative}.fbx #globalContainer{width:981px}.sidebarMode #globalContainer{padding-right:205px}.fbx #tab_canvas>div{padding-top:0}.fb_content{min-height:640px;padding-bottom:20px}.fbx .fb_content{padding-bottom:0}.skipto{display:none}.home .skipto{display:block}._li._li._li{overflow:initial}._aj3e,._aj3e video{display:block;height:4px;left:0;position:absolute;top:0;width:2px;z-index:-1}._aowd._li._li._li{overflow:hidden}._9053 ._li._li._li{overflow-x:hidden}._72b0{position:relative;z-index:0}.registration ._li._9bpz{background-color:#f0f2f5}._li ._9bp-{padding-top:5px;text-align:center}._li ._9bp- .fb_logo{height:100px}._li ._a66f{padding-top:5px;text-align:center}._li ._a66f .fb_logo{height:80px;padding-top:72px}._5vb_ #pageFooter{display:none}html body._5vb_ #globalContainer{width:976px}._5vb_.hasLeftCol #headerArea{margin:0;padding-top:0;width:786px}._5vb_,._5vb_ #contentCol{background-color:#e9ebee;color:#1d2129}html ._5vb_.hasLeftCol #contentCol{border-left:0;margin-left:172px;padding-left:11px;padding-top:11px}._5vb_.hasLeftCol #topNav{border-left:0;margin-left:172px;padding:11px 7px 0 11px}._5vb_.hasLeftCol #topNav~#contentCol{padding-top:0}._5vb_.hasLeftCol #leftCol{padding-left:8px;padding-top:12px;width:164px}._5vb_.hasLeftCol #mainContainer{border-right:0;margin-left:0}._5vb_.hasLeftCol #pageFooter{background:none}html ._5vb_._5vb_.hasLeftCol div#contentArea{padding-left:0;padding-right:10px;width:786px}html ._5vb_._5vb_.hasLeftCol .hasRightCol div#contentArea{width:496px}._5vb_.hasLeftCol ._5r-_ div#rightCol{padding:0 7px 0 0;width:280px}._2yq #globalContainer{width:1012px!important}._2yq #headerArea{float:none!important;padding:0 0 12px 0!important;width:auto!important}._2yq #contentArea{margin-right:0;padding:0!important}._2yq #leftCol,._2yq #contentCol{padding:0!important}._2yq #rightCol{float:left;margin-top:0;padding:0!important}.tinyViewport ._2yq #pagelet_navigation.fixed_elem{position:static!important}._2yq .loggedout_menubar_container{min-width:1014px}._a7o5{font-size:15px;margin:auto}._a705{margin:0 auto;max-width:800px;width:100%}._ap67{height:100%;margin:0 auto;overflow:scroll;width:100%}._a706{float:left;margin-bottom:15px;position:relative;width:inherit;word-break:break-word;z-index:0}._a707{clear:both;color:#7f7f7f;margin-bottom:20px;margin-top:10px;text-align:center}._a709{background:#fff;border-radius:8px;display:flex;flex-direction:row;padding:15px}._a70a{background:#fff;border-radius:3px;display:flex;flex-direction:row;padding-bottom:15px;padding-left:2px;padding-right:15px;padding-top:15px}._a70b{background:#fff;border-radius:3px;display:flex;flex-direction:row;padding-bottom:15px;padding-left:2px;padding-right:15px;padding-top:15px}._a70c{border-radius:50%;height:16px;padding:4px;width:16px}._a70d{display:flex;flex-direction:column;justify-content:center;margin-left:8px;width:100%}._a70e{color:#1d2129;font-weight:bold;line-height:18px;margin-bottom:3px}._aoa9{color:#1d2129;line-height:16px;margin-bottom:3px;margin-top:6px}._aoaa{color:#90949c;line-height:16px;margin-top:6px}._a70f{color:#90949c;line-height:16px}._as10{color:#90949c;line-height:16px;margin-top:6px}._a70h{margin-top:4px}._a7cj{background:white;box-shadow:0 1px 7px #ccc;position:fixed;width:100%;z-index:99}._acpq{background:white;border-radius:8px;margin-top:15px;padding:10px}._acpr{font-weight:bold;margin-bottom:3px}._a7co{margin-left:16px}._a7cv{align-items:center;display:flex;justify-content:end}._a7cw{align-items:center;display:flex;margin-right:16px}._a7cx{border-radius:50%;margin-right:8px}._a7cy{font-size:15px;font-weight:600}._a7cz{margin-left:8px;margin-right:16px}._a7c-{color:black;text-decoration:none}._a7c_{height:70px;width:100%}._alz_{background:#fff;border-radius:8px;border-spacing:0px;table-layout:fixed;text-align:left;width:100%}._al-0{background-color:#f0f2f5;padding:16px 12px;width:150px}._amo-{color:#444950}._al-1{border-top:1px solid #f4faff;padding:16px 12px}._ar4w{list-style-position:inside;list-style-type:disc;margin-left:12px;margin-top:12px}._5aj7{display:flex}._5aj7 ._4bl7{float:none}._5aj7 ._4bl9{flex:1 0 0px}._ikh ._4bl7{float:left;min-height:1px}._4bl7,._4bl9{word-wrap:break-word}._4bl9{overflow:hidden}._4jnw{margin:0px}._3-8h{margin:4px}._3-8i{margin:8px}._3-8j{margin:12px}._3-8k{margin:16px}._3-8l{margin:20px}._2-5b{margin:24px}._1kbd{margin-bottom:0px;margin-top:0px}._3-8m{margin-bottom:4px;margin-top:4px}._3-8n{margin-bottom:8px;margin-top:8px}._3-8o{margin-bottom:12px;margin-top:12px}._3-8p{margin-bottom:16px;margin-top:16px}._3-8q{margin-bottom:20px;margin-top:20px}._2-ox{margin-bottom:24px;margin-top:24px}._1a4i{margin-left:0px;margin-right:0px}._3-8r{margin-left:4px;margin-right:4px}._3-8s{margin-left:8px;margin-right:8px}._3-8t{margin-left:12px;margin-right:12px}._3-8u{margin-left:16px;margin-right:16px}._3-8v{margin-left:20px;margin-right:20px}._6bu9{margin-left:24px;margin-right:24px}._5soe{margin-top:0px}._3-8w{margin-top:4px}._3-8x{margin-top:8px}._3-8y{margin-top:12px}._3-8z{margin-top:16px}._3-8-{margin-top:20px}._4aws{margin-top:24px}._2-jz{margin-right:0px}._3-8_{margin-right:4px}._3-90{margin-right:8px}._3-91{margin-right:12px}._3-92{margin-right:16px}._3-93{margin-right:20px}._y8t{margin-right:24px}._5emk{margin-bottom:0px}._3-94{margin-bottom:4px}._3-95{margin-bottom:8px}._3-96{margin-bottom:12px}._3-97{margin-bottom:16px}._3-98{margin-bottom:20px}._20nr{margin-bottom:24px}._av_{margin-left:0px}._3-99{margin-left:4px}._3-9a{margin-left:8px}._3-9b{margin-left:12px}._3-9c{margin-left:16px}._3-9d{margin-left:20px}._4m0t{margin-left:24px}._a82f{margin-left:28px}._a6-g{background:white;border-radius:8px}._a6-h{color:#1d2129;font-weight:bold;line-height:18px}._a6-i{border-bottom:1px solid #dadde1}._a6-o,._a6-o a{color:#8d949e;line-height:16px}._a72d{padding-bottom:12px;padding-left:12px;padding-right:12px}._a6-p{color:#1d2129;line-height:17px}._a6-q{color:gray}._a6_m{font-weight:bold}._a6_n{line-height:2;text-align:left}._a6_n tbody tr th{padding:5px 5px;text-align:left;vertical-align:top;width:150px}._a6_o{max-width:100%}._a6_p{font-weight:bold}._a6_q{color:#90949c;line-height:20px;min-width:50px}._a6_r{line-height:20px}._a7nf{display:flex;padding-left:5px;margin-bottom:5px}._a7ng{padding-right:5px}._a7nh{width:20%}._8tm{padding:0px}._2phz{padding:4px}._2ph-{padding:8px}._2ph_{padding:12px}._2pi0{padding:16px}._2pi1{padding:20px}._40c7{padding:24px}._2o1j{padding:36px}._6buq{padding-bottom:0px;padding-top:0px}._2pi2{padding-bottom:4px;padding-top:4px}._2pi3{padding-bottom:8px;padding-top:8px}._2pi4{padding-bottom:12px;padding-top:12px}._2pi5{padding-bottom:16px;padding-top:16px}._2pi6{padding-bottom:20px;padding-top:20px}._2o1k{padding-bottom:24px;padding-top:24px}._2o1l{padding-bottom:36px;padding-top:36px}._6bua{padding-left:0px;padding-right:0px}._2pi7{padding-left:4px;padding-right:4px}._2pi8{padding-left:8px;padding-right:8px}._2pi9{padding-left:12px;padding-right:12px}._2pia{padding-left:16px;padding-right:16px}._2pib{padding-left:20px;padding-right:20px}._2o1m{padding-left:24px;padding-right:24px}._2o1n{padding-left:36px;padding-right:36px}._iky{padding-top:0px}._2pic{padding-top:4px}._2pid{padding-top:8px}._2pie{padding-top:12px}._2pif{padding-top:16px}._2pig{padding-top:20px}._2owm{padding-top:24px}._div{padding-right:0px}._2pih{padding-right:4px}._2pii{padding-right:8px}._2pij{padding-right:12px}._2pik{padding-right:16px}._2pil{padding-right:20px}._31wk{padding-right:24px}._2phb{padding-right:32px}._au-{padding-bottom:0px}._2pim{padding-bottom:4px}._2pin{padding-bottom:8px}._2pio{padding-bottom:12px}._2pip{padding-bottom:16px}._2piq{padding-bottom:20px}._2o1p{padding-bottom:24px}._4gao{padding-bottom:32px}._1cvx{padding-left:0px}._2pir{padding-left:4px}._2pis{padding-left:8px}._2pit{padding-left:12px}._2piu{padding-left:16px}._2piv{padding-left:20px}._2o1q{padding-left:24px}._2o1r{padding-left:36px}.uiBoxGray{background-color:#f2f2f2;border:1px solid #ccc}.uiBoxDarkgray{color:#ccc;background-color:#333;border:1px solid #666}.uiBoxGreen{background-color:#d1e6b9;border:1px solid #629824}.uiBoxLightblue{background-color:#edeff4;border:1px solid #d8dfea}.uiBoxRed{background-color:#ffebe8;border:1px solid #dd3c10}.uiBoxWhite{background-color:#fff;border:1px solid #ccc}.uiBoxYellow{background-color:#fff9d7;border:1px solid #e2c822}.uiBoxOverlay{background:rgba(255,255,255,.85);border:1px solid #3b5998;border:1px solid rgba(59,89,153,.65)}.noborder{border:none}.topborder{border-bottom:none;border-left:none;border-right:none}.bottomborder{border-left:none;border-right:none;border-top:none}.dashedborder{border-style:dashed}.pas{padding:5px}.pa8{padding:8px}.pam{padding:10px}.pa16{padding:16px}.pal{padding:20px}.pts{padding-top:5px}.pt8{padding-top:8px}.ptm{padding-top:10px}.pt16{padding-top:16px}.ptl{padding-top:20px}.prs{padding-right:5px}.pr8{padding-right:8px}.prm{padding-right:10px}.pr16{padding-right:16px}.prl{padding-right:20px}.pbs{padding-bottom:5px}.pb8{padding-bottom:8px}.pbm{padding-bottom:10px}.pb16{padding-bottom:16px}.pbl{padding-bottom:20px}.pls{padding-left:5px}.pl8{padding-left:8px}.plm{padding-left:10px}.pl16{padding-left:16px}.pll{padding-left:20px}.phs{padding-left:5px;padding-right:5px}.ph8{padding-left:8px;padding-right:8px}.phm{padding-left:10px;padding-right:10px}.ph16{padding-left:16px;padding-right:16px}.phl{padding-left:20px;padding-right:20px}.pvs{padding-top:5px;padding-bottom:5px}.pv8{padding-bottom:8px;padding-top:8px}.pvm{padding-top:10px;padding-bottom:10px}.pv16{padding-bottom:16px;padding-top:16px}.pvl{padding-top:20px;padding-bottom:20px}.mas{margin:5px}.ma8{margin:8px}.mam{margin:10px}.ma16{margin:16px}.mal{margin:20px}.mts{margin-top:5px}.mt8{margin-top:8px}.mtm{margin-top:10px}.mt16{margin-top:16px}.mtl{margin-top:20px}.mrs{margin-right:5px}.mr8{margin-right:8px}.mrm{margin-right:10px}.mr16{margin-right:16px}.mrl{margin-right:20px}.mbs{margin-bottom:5px}.mb8{margin-bottom:8px}.mbm{margin-bottom:10px}.mb16{margin-bottom:16px}.mbl{margin-bottom:20px}.mls{margin-left:5px}.ml8{margin-left:8px}.mlm{margin-left:10px}.ml16{margin-left:16px}.mll{margin-left:20px}.mhs{margin-left:5px;margin-right:5px}.mh8{margin-left:8px;margin-right:8px}.mhm{margin-left:10px;margin-right:10px}.mh16{margin-left:16px;margin-right:16px}.mhl{margin-left:20px;margin-right:20px}.mvs{margin-top:5px;margin-bottom:5px}.mv8{margin-bottom:8px;margin-top:8px}.mvm{margin-top:10px;margin-bottom:10px}.mv16{margin-bottom:16px;margin-top:16px}.mvl{margin-top:20px;margin-bottom:20px}</style><title>Uso de mensajes entre apps</title></head><body class="_5vb_ _2yq _a7o5"><div class="clearfix _ikh"><div class="_4bl9"><div class="_li"><div><table style="width:100%;background:white;position:fixed;z-index:99;"><tr style=""><td height="8" style="line-height:8px;"> </td></tr><tr style="background:white"><td style="text-align:left;height:28px;width:35px;"></td><td style="text-align:left;height:28px;"><img src="files/Instagram-Logo.png" height="28" alt="Instagram" /></td></tr><tr style=""><td height="5" style="line-height:5px;"> </td></tr></table><div style="width:100%;height:44px;"></div></div><div class="_a705"><div><div class="_3-8y _3-95 _a70a"><div class="_a70d"><div class="_a70e">Uso de mensajes entre apps</div><div class="_a70f">Cambios que realizaste en la configuraciĂ³n</div></div></div></div><div class="_a706" role="main"><div class="pam _3-95 _2ph- _a6-g uiBoxWhite noborder"><div class="_a6-p"><table style="table-layout: fixed;"><tr><td colspan="2" class="_2pin _a6_q">Actualizado para usar mensajes entre apps<div><div>True</div></div></td></tr><tr><td class="_2pin _a6_q">Fecha de actualizaciĂ³n</td><td class="_2pin _2piu _a6_r">oct 16, 2020 5:17 pm</td></tr></table></div></div></div></div></div></div></div></body></html>

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Anny jhon Star

79682829

Date: 2025-06-28 08:10:33
Score: 10.5
Natty: 5
Report link

did u find the answer? i face the same problem.

Reasons:
  • RegEx Blacklisted phrase (3): did u find the answer
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): i face the same problem
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did
  • Low reputation (1):
Posted by: wak

79682827

Date: 2025-06-28 08:03:31
Score: 4
Natty:
Report link

Press Enter and you skip this offer

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Vitaliy

79682826

Date: 2025-06-28 08:01:31
Score: 3.5
Natty:
Report link

in the power shell just write : python or python3. whichever works for you.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Raihan Raphy

79682814

Date: 2025-06-28 07:42:26
Score: 1.5
Natty:
Report link

For windows or powershell use these functions :

# $env:FLASK_APP = "application.py"
# $env:FLASK_DEBUG = "1"
# flask run
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Raihan Raphy

79682813

Date: 2025-06-28 07:39:26
Score: 1
Natty:
Report link

Instead of:

sql

CopyEdit

ALTERUSER ilp_ingest CREATE TOKEN TYPE REST WITH TTL '3600d' REFRESH;

Use this:

sql

CopyEdit

ALTER USER ilp_ingest CREATE TOKEN TYPE JWK;
This will generate 3 values:

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: MAYANK SHARMA

79682811

Date: 2025-06-28 07:38:25
Score: 4
Natty:
Report link

Rapid taps or clicks JavaScript disabled or not working Automated (bot) activity on your network (IP 112.135.68.237) Use of developer or inspection tools Need help? Submit feedback.

whiskyrumprice

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: yogiraj education hub

79682809

Date: 2025-06-28 07:36:25
Score: 3.5
Natty:
Report link

Very good article. Great.

mancis68

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Sultan Khmer

79682800

Date: 2025-06-28 07:16:21
Score: 2
Natty:
Report link
  1. replace

->addColumn('email', ....)

with

->editColumn('email', fn($user) => maskEmail($user->email))

2. in getColumns() use

Column::make('email')->title(__('Email'))->searchable(true)

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Rani Yadav

79682799

Date: 2025-06-28 07:15:21
Score: 0.5
Natty:
Report link
int str_compare_ci(const char* s1, const char* s2, size_t len) {
  while (len--) {
    int ic1 = tolower(*s1++);
    int ic2 = tolower(*s2++);
    if (ic1 != ic2) {
      return ic1 - ic2;
    }
  }
  return 0;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Vadim Chuprakov

79682796

Date: 2025-06-28 07:12:19
Score: 2
Natty:
Report link

HLS streams are segmented and adaptive, so direct track access might not work as expected. Use AVPlayerItem instead.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Willam Abroy

79682787

Date: 2025-06-28 06:54:15
Score: 2
Natty:
Report link

What you read from stdin is being stored on the stack, in the stack frame of the function input_expression . Once the function returns it's stack frame and thus the variable buf are no longer valid. Their values are undefined. When you print your result you are referencing "old stack memory". An that's what you can see in the output.

You either have to pass a buffer as a variable to your function that has a longer lifetime or heap allocate the result and free it later.

If you are new to lower level programming languages maybe have a look at this too: What's the difference between Stack Memory and Heap Memory?

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): What you
  • Low reputation (0.5):
Posted by: Gregor Budweiser

79682786

Date: 2025-06-28 06:51:14
Score: 0.5
Natty:
Report link

The appropriated approach for your situation is Ajax Callback processes. It is the last execution point in the "processes tab". The processes in this point not executed until you call it using its name. After creating the process in this point you should call it using apex.server.process() function of Oracle Apex Javascript api.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: shady

79682780

Date: 2025-06-28 06:38:11
Score: 3.5
Natty:
Report link

dear students! Good morning! Today, we are going to talk about the third-party libraries of the WeChat Open Platform. I believe that many of you have encountered various problems during the development process. Today, I will help you all clear up the problems with the WeChat third-party platform SDK.

First, according to the requirements of the WeChat Open Platform, create the configuration for your own HarmonyOS application.

Secondly, when using the SDK of third-party platforms, we must first import the third-party libraries.

1.The method of introducing third-party libraries in WeChat

ohpm install @tencent/wechat_open_sdk

config image

2.Check if WeChat is installed, and then add the following declaration in module.json5 "weixin""wxopensdk"

module.json5 config

3.Configuration and the action agreed upon with WeChat: wxentity.action.open

Configuration

Implement the related functions of WeChat

1.Initialization (requires WeChat app ID)

// WeChat ID 
private wxId: string = "wxXXXXXXXXXappid";
// Instantiate the WeChat object 
private wx: WXApi = WXAPIFactory.createWXAPI(this.wxId)
// Application Context
private context: common.UIAbilityContext = getContext() as common.UIAbilityContext;

2.WeChat message monitoring

// Initialization 
this.wx.handleWant(appWant, WXShareEventHandler)
// Register the Resp event 
WXShareEventHandler.registerOnWXRespCallback(handler.onResp)
// Cancel Resp event 
WXShareEventHandler.unregisterOnWXRespCallback(handler.onResp)
// Registration Request 
Event WXShareEventHandler.registerOnWXReqCallback(handler.onReq)
// Logout Req event
WXShareEventHandler.unregisterOnWXReqCallback(handler.onReq)

Add the listening code file

import { BaseReq, BaseResp, Log, WXApiEventHandler } from "@tencent/wechat_open_sdk"

const kTag = "SharePluginWXApiEventHandlerImpl"

export type OnWXReq = (req: BaseReq) => void

export type OnWXResp = (resp: BaseResp) => void

class WXApiEventHandlerImpl implements WXApiEventHandler {
  private onReqCallbacks: Map<OnWXReq, OnWXReq> = new Map
  private onRespCallbacks: Map<OnWXResp, OnWXResp> = new Map

  registerOnWXReqCallback(on: OnWXReq) {
    this.onReqCallbacks.set(on, on)
  }
  unregisterOnWXReqCallback(on: OnWXReq) {
    this.onReqCallbacks.delete(on)
  }

  registerOnWXRespCallback(on: OnWXResp) {
    this.onRespCallbacks.set(on, on)
  }
  unregisterOnWXRespCallback(on: OnWXResp) {
    this.onRespCallbacks.delete(on)
  }

  onReq(req: BaseReq): void {
    Log.i(kTag, "onReq:%s", JSON.stringify(req))
    this.onReqCallbacks.forEach((on) => {
      on(req)
    })
  }

  onResp(resp: BaseResp): void {
    Log.i(kTag, "onResp:%s", JSON.stringify(resp))
    this.onRespCallbacks.forEach((on) => {
      on(resp)
    })
  }
}
export const WXShareEventHandler = new WXApiEventHandlerImpl

3.WeChat Sharing

Key point: Package the shared fixed elements into the "shareType" method

Parameter 1: shareType - Sharing Type

0: SendMessageToWXReq.WXSceneSession (Friend)

SendMessageToWXReq.WXSceneTimeline (Friend Circle)

Parameter 2: object: Sharing object

textObject: Sharing Content Object

imageObject: Sharing Image Object

webpageObject: Webpage Sharing Object

miniProgramObject: Mini Program Sharing Object

shareType(shareType:number,object:WXMediaMessage,handler?:HandlerAction):SendReqResultWrap{
    let req = new SendMessageToWXReq()
    req.scene = shareType
    
    let mediaMessage = new WXMediaMessage()
    mediaMessage.mediaObject = object
    mediaMessage.title = message.title
    mediaMessage.description = message.description
    
    req.message = message
    
    this.wx.sendReq(this.context,req)
}

Copywriting Share

const textObject = new WXTextObject()
textObject.text = args
this.shareType(0,textObject)

Image sharing

const imageObject = new WXImageObject()
imageObject.uri = fileUri.getUriFromPath("file://path");
this.shareType(0,imageObject)

Webpage sharing

const webpageObject = new WXWebpageObject("https://xxxxxxx")
webpageObject.webpageUrl = args
this.shareType(0,webpageObject)

Mini-program sharing

const miniProgramObject = new WXMiniProgramObject()
miniProgramObject.userName = "username"
miniProgramObject.path = "path"
this.shareType(0,miniProgramObject)

4.Launch the WeChat mini-program from the app.

const req = new LaunchMiniProgramReq()
req.userName = "username"
req.path = "path"
this.wx.sendReq(this.context,req)

5.Tap to open WeChat

let ctx = getContext(this) as common.UIAbilityContext
let want:Want = {
    uri:"uri",
    action: "ohos.want.action.viewData"
}
ctx.startAbility(want);

Note: The complete code has been submitted to the HarmonyOS Third-Party Library. Please use the following command to install it.

ohpm install @free/wechat

Calling method

// Share Content
WeChat.install.shareText("text",{onResp:(resp)=>{}})
// Share the picture
WeChat.install.shareImage("https://xxx",{onResp:(resp)=>{}})
// Share the webpage
WeChat.install.shareWeb("https://xxx",{onResp:(resp)=>{}})
// Share Mini Program
WeChat.install.shareMini({username:"username",path:"path"},{onResp:(resp)=>{}})
// Open the WeChat mini-program
WeChat.install.openMini({username:"username",path:"path"},{onResp:(resp)=>{}})
// Open WeChat
WeChat.install.openWX("uri",{onResp:(resp)=>{}})

If you like this content, please give a little heart!

Reasons:
  • Blacklisted phrase (1): Good morning
  • RegEx Blacklisted phrase (2.5): please give
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: user30867031

79682766

Date: 2025-06-28 06:02:03
Score: 1
Natty:
Report link

You’re getting “TimeoutError is not defined” because TimeoutError is not global — it’s exported by Puppeteer. Just import it like this:

js

const { TimeoutError } = require('puppeteer').errors; 

Then your if (error instanceof TimeoutError) will work. 👍

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Rohith Yarramala

79682756

Date: 2025-06-28 05:46:00
Score: 3.5
Natty:
Report link

The php is a good idea but it is not a good idea to be a good idea for the game to be a bad idea for the games to be a great idea

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Denial

79682749

Date: 2025-06-28 05:29:57
Score: 3.5
Natty:
Report link

I found the reason: tags order matters.

Correct manifest:

enter image description here

Broken manifest:

enter image description here

As you can see I swapped two tags: Icon and License

Thank you ms for wasting 2 hours of my life.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Knyaz

79682741

Date: 2025-06-28 05:14:53
Score: 1.5
Natty:
Report link

I copy a text formula containing the control character CHAR(10) from a source workbook and 'Paste Values' same to a cell in a destination workbook. The intermediate result is a text string a) incorporating factors such as concatenation, b) but without effect being given the control character, and c) an annoying imposition of 'Word Wrap' on the destination cell. Apparent failure. But at this point the same formula result appears in the Formula Bar with effect given the control character. So Step 2 is to click anywhere in the Formula Bar, then CTRL-A and CTRL-C to select all and re-copy the results to the Clipboard. Step-3 is to again 'Paste Values' the upgraded results to the destination cell (and turn off the pesky Word Wrap feature). It is a pain double-copying and double-pasting and fiddling with Word Wrap, but it works. Excel seems to only respect the copied control character if its formula appears in the Formula Bar. No, one cannot paste the source formula directly into the Formula Bar of the destination sheet - one must double-paste.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bob Wolf

79682735

Date: 2025-06-28 05:06:52
Score: 0.5
Natty:
Report link

Check as one or more of these causes could be at play:

Mismatched Redirect URI

The redirect_uri you send in your /authorize URL must exactly match the redirect URL registered in the Twitter/X Developer Portal — including scheme, domain/IP, port, and trailing slashes.

If you registered http://127.0.0.1/ but your request uses http://127.0.0.1 (no trailing slash), or vice versa, it will fail with 403.

Scopes vs App permissions

Even if your app permissions in the portal say “Read and Write,” if your /authorize request includes scopes not allowed by your app config, it can fail.

Your scopes look correct (tweet.write tweet.read users.read) if your app was approved for tweet posting.

Client ID or secret invalid/mismatched

Double-check that your client_id exactly matches what’s shown for your app in the developer portal.

Make sure you’re using your app’s OAuth2 Client ID, not your API Key.

Incorrect endpoint URL

The correct base domains for X/Twitter API calls are:

API requests:

https://api.twitter.com/

(Still api.twitter.com as they have not migrated API calls to an api.x.com domain.)

OAuth2 authorization:

https://twitter.com/i/oauth2/authorize

The domain api.x.com does not exist or serve any public API endpoints which is why your browser immediately hit a 403 Forbidden: that hostname either routes nowhere meaningful or returns an error by default.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mohit-B

79682729

Date: 2025-06-28 05:00:51
Score: 3
Natty:
Report link

I'm currently facing the same thing with nowscore. Wp-admin opens for main site but keeps redirecting for the subsite.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Max Lutor

79682727

Date: 2025-06-28 04:58:50
Score: 1.5
Natty:
Report link

You have to update version of metadata.json every time and pass same identifier and packname to send method which create in native module.
just need to update version of ---> metadata.json
By doing this your pack is definitely updated with same identifier but its not directly updated to whatsApp when you reload the whatsApp at that time you can see the updated pack in whatsApp

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: 069 Shruti Nagani

79682721

Date: 2025-06-28 04:50:48
Score: 6
Natty:
Report link

Hola Que es esto? 634202706172033

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Angel Eliseo Zarate Leiva

79682718

Date: 2025-06-28 04:44:46
Score: 2
Natty:
Report link

this is an example what I was saying when you install an add-in from MS add-in Store it will ask you to pin it see the examples screenshots

unpinned example

enter image description here

when you will pin add-in and I think this is what you want add-in icon show with the email. After Publishing your add-in on MS add-in Store your add-in will have option to pin

enter image description here

Reasons:
  • Probably link only (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: M Junaid

79682713

Date: 2025-06-28 04:38:45
Score: 3
Natty:
Report link

Zigzag Protocol

10

aifiyan rlb t{ala tto sna}icrwsiie

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: JESMA A S

79682710

Date: 2025-06-28 04:35:44
Score: 1
Natty:
Report link

This answer is largely dependent on @nick-bull 's and https://stackoverflow.com/a/48058708/3809427 but additional details are big so I added new answer.

First, normalization is needed for special characters. e.g. "𝓑𝓘𝓖 𝓛𝓞𝓥𝓔 ㌔" -> "BIG LOVE キロ"

text = Normalizer.normalize(text, Normalizer.Form.NFKC);

And, removing "VARIATION SELECTOR" is needed.

str = str.replaceAll("[\uFE00-\uFE0F\\x{E0100}-\\x{E01EF}\u0023\u002A\u0030-\u0039\u20e3]+", "")

Combine them all,

//This is needed to output Unicode correctly by `System.out.println()``. This is not related directly to answer but needed to show result.
try {
    System.setOut(new PrintStream(new FileOutputStream(FileDescriptor.out), true, "UTF-8"));
} catch (UnsupportedEncodingException e) {
    throw new InternalError("VM does not support mandatory encoding UTF-8");
}


final String VARIATION_SELECTORS = "["
        //Variation Selectors https://en.wikipedia.org/wiki/Variation_Selectors_(Unicode_block)
        +"\uFE00-\uFE0F"
        //Variation Selectors Supplement https://en.wikipedia.org/wiki/Variation_Selectors_Supplement
        +"\\x{E0100}-\\x{E01EF}"
        //https://en.wikipedia.org/wiki/Basic_Latin_(Unicode_block)#Variants
        //Basic Latin variants
        +"\u0023\u002A\u0030-\u0039"
        // COMBINING ENCLOSING KEYCAP
        +"\u20e3"
        +"]+";

String example ="\uD835\uDCD1\uD835\uDCD8\uD835\uDCD6 \uD835\uDCDB\uD835\uDCDE\uD835\uDCE5\uD835\uDCD4 ㌔ hello world _# 皆さん、こんにちは! 私はジョンと申します。🔥 !!\uFE0F!!\uFE0F!!\uFE0Fa⃣";
System.out.println(example);

//Main
var text = Normalizer.normalize(example, Normalizer.Form.NFKC)
        //This is originalte from Nick Bull
        .replaceAll("[^\\p{L}\\p{M}\\p{N}\\p{P}\\p{Z}\\p{Cf}\\p{Cs}\\s]+", " ")
        .replaceAll(VARIATION_SELECTORS, " ")
         //reduce consecutive spaces to a single space and trim 
        .replaceAll(" {2,}", " ").trim();
System.out.println(text);
// Output:
//   "𝓑𝓘𝓖 𝓛𝓞𝓥𝓔 ㌔ hello world _# 皆さん、こんにちは! 私はジョンと申します。🔥 !!️!!️!!️a⃣"
//   "BIG LOVE キロ hello world _ 皆さん、こんにちは! 私はジョンと申します。 !! !! !! a"
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @nick-bull
  • Low reputation (0.5):
Posted by: Lamron

79682708

Date: 2025-06-28 04:32:44
Score: 1.5
Natty:
Report link

What you should check before, during and after your operation:

EXPLAIN ANALYZE the SELECT alone first. Does it use efficient indexes or sequential scans?

Monitor the disk I/O and WAL generation with tools like:-

pg_stat_bgwriter (checkpoint and buffer usage stats)

pg_stat_io (in PG16+, detailed I/O statistics)

OS-level tools: iostat, vmstat, or atop.

Watch transaction duration. Long transactions can block vacuum.

Use pg_stat_activity to see if your query is causing waits or blocking others.

Look for lock contention in pg_locks.

If you want to reduce impact on other users:

Instead of a single huge INSERT INTO ... SELECT, break it into chunks, like this:

INSERT INTO target_table (col1, col2, ...)

SELECT col1, col2, ...

FROM source_table

WHERE some_condition

ORDER BY some_column

LIMIT 10000

OFFSET N;

Then loop your client or script to step N += batch size.

This shortens each transaction and avoids holding locks for too long.

Use pg_background or parallel job frameworks

Run batches asynchronously or schedule during low-traffic times.

Consider CREATE UNLOGGED TABLE for temp use

If you just need intermediate storage and can afford data loss on crash.

Adjust maintenance_work_mem & work_mem

Increase these parameters before the operation to improve performance of sorts or index creation (but only if you have enough RAM).

Run during maintenance windows

Especially on OLTP systems, to avoid impacting peak hours.

Monitor system resources

Before you start, check CPU, memory, and disk throughput headroom. On production, run on a staging system first if possible.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What you
  • Low reputation (1):
Posted by: Mohit-B

79682707

Date: 2025-06-28 04:32:44
Score: 1.5
Natty:
Report link

Yes, useContext() has a hidden dependency trade off. In regards to why people use it; from my experience people are mostly advised to depend on useContext for small projects, if the the trade off for using it will have a serious adverse effect you should consider other options that accounts for that trade-off.

Reasons:
  • Blacklisted phrase (1): regards
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Melvin Kosisochukwu

79682698

Date: 2025-06-28 04:08:39
Score: 3.5
Natty:
Report link

It turned out I was being misled by a shortage of memory

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: ADL

79682697

Date: 2025-06-28 04:08:39
Score: 0.5
Natty:
Report link

That is intentional.

The second return value is [3, undefined] because index 0 is 3 and index 1 is undefined since it's reading beyond the end of the right side value (which is treated as an iterable.)

It it had returned a non-iterable value instead of an array, it would have errorred.

I suggest you avoid destructuring in the for..of. That way you can check the return value and if it's an array, check its length to make sure it's 2. Then do the destructuring step afterward.

Reasons:
  • No code block (0.5):
Posted by: PHP Guru

79682696

Date: 2025-06-28 04:06:38
Score: 1.5
Natty:
Report link

is a classic Cross-Origin Frame Access issue. It happens because your injected iframe's src points to a different origin (e.g. https://www.nytimes.com), and the browser’s same-origin policy forbids scripts on the parent page from accessing the iframe's DOM.


Why does this happen?


How to solve this in a Chrome Extension?

Option 1: Use an iframe with a source from your extension (same origin)

js

iframe.src = chrome.runtime.getURL("panel.html");


Option 2: Communicate via postMessage between iframe and content script


Option 3: Build your UI fully inside your extension


Summary:

js

// Instead of this:// iframe.src = "https://www.nytimes.com"; // Cross-origin iframe, blocked access // Do this: iframe.src = chrome.runtime.getURL("panel.html"); // Your extension page iframe.addEventListener("load", () => { const panelDoc = iframe.contentDocument || iframe.contentWindow.document; // Now safe to modify DOM });


Additional Tips:

json

"web_accessible_resources": [ { "resources": ["panel.html"], "matches": ["<all_urls>"] } ]

Reasons:
  • Blacklisted phrase (1): How to solve
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): is a
  • Low reputation (1):
Posted by: mostafa said

79682691

Date: 2025-06-28 03:52:35
Score: 3.5
Natty:
Report link

Config for kafka autoconfigure is now present in spring-autoconfigure-metadata.properties post spring boot 3.x

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Hardik

79682688

Date: 2025-06-28 03:44:33
Score: 2
Natty:
Report link

thanks for sharing those different options — very helpful to see multiple angles explored.

I’m also looking into this for Microsoft Fabric Warehouse, and from what I can tell, a lot of the traditional approaches (like using. sys.objects, sys.partitions, or even Don’tIt behaves quite the same way in Fabric compared to classic Azure SQL Data Warehouse or SQL Server.

The dynamic SQL route using sp_executesql It is promising, but as SRP mentioned, performance becomes a bottleneck with thousands of tables. Ideally, Fabric should expose a system view similar to Butt so far, it looks like that's not available.

If anyone has insights into whether there's an equivalent metadata view in Fabric (like a DMV or any internal table that tracks row counts), that could be a cleaner way forward.

It would be great to hear from anyone who has tested this specifically on Fabric.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (2): thanks for sharing
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Laura Baird

79682687

Date: 2025-06-28 03:43:32
Score: 3
Natty:
Report link

For quick text comparisons, I’ve found https://diffsnap.com quite handy. No need to install anything — just paste and compare.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: hi hello

79682686

Date: 2025-06-28 03:43:27
Score: 8.5
Natty:
Report link

I am also facing similar issue, but even after adding schema.table format still not working. getting
psycopg2.errors.UndefinedTable: relation "nyc_taxi.trips" does not exist.

any other solution or workaround?

Reasons:
  • Blacklisted phrase (2): still not working
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am also facing similar issue
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: sample Sampe

79682674

Date: 2025-06-28 03:09:20
Score: 1.5
Natty:
Report link

You will also have to mac sure Android studio has access to the local network by following the steps below :
Go to Mac Settings > Privacy & Security > Local Network, then enable it for Android Studio.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Hocine B

79682671

Date: 2025-06-28 03:05:20
Score: 0.5
Natty:
Report link
Sub DeleteAllPicturesInWorkbook()
    Dim ws As Worksheet
    Dim shp As Shape

    For Each ws In ThisWorkbook.Worksheets
        For Each shp In ws.Shapes
            shp.Delete
        Next shp
    Next ws
End Sub
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Jerry

79682670

Date: 2025-06-28 03:02:19
Score: 3.5
Natty:
Report link

The power bi and I have to be there in about five or so to pick you guys up so I will just meet you there at

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Steve

79682665

Date: 2025-06-28 02:50:16
Score: 1
Natty:
Report link

While defining the

interface IMGNAMES {
  Image1: IMGPROP;
}

change it to

interface IMGNAMES {
  [key: string]: IMGPROP;
}

Since you're using image property name different for each image (i.e. Image1, Image2 etc)

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ali Zafar Zaidi

79682658

Date: 2025-06-28 02:15:10
Score: 3.5
Natty:
Report link

The only calculation is the one you made in your post and you are right that the first thing that came out was that the second one is

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Dns

79682654

Date: 2025-06-28 02:12:09
Score: 3.5
Natty:
Report link

i am also getting that same sympton .. keeps thinking does nothing ..

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user2117646

79682650

Date: 2025-06-28 01:56:06
Score: 0.5
Natty:
Report link

Did you end up solving it? Just like you I am trying to use flutter 3.29 and I was getting this exact error.

I was upgrading a very old project from flutter 3.0.2 to a newer version and decided to upgrade to the latest version possible (3.29.0 at this time)

What worked for me was removing this form the build.gradle:

   flutter {
       source '../..'
   }

and then going directly to the dependency (Geolocator 5.0.1+1 in my case) folder android/build.gradle and directly giving it version numbers:

android {
    if (project.android.hasProperty("namespace")) {
        namespace("com.baseflow.geolocator")
    }
    compileSdkVersion 34

    // compileSdk flutter.compileSdkVersion

    defaultConfig {
        // minSdkVersion flutter.minSdkVersion
        minSdkVersion 26
    }
    lintOptions {
        disable 'InvalidPackage'
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
}

What the error says is that it isn't recognizing "flutter" that's because of the flutter.xversion type of code. It will probably be fixed in the dependency itself in the future, but that's what worked for me.

Reasons:
  • Blacklisted phrase (1): I am trying to
  • Whitelisted phrase (-1): worked for me
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Angel Aquino

79682642

Date: 2025-06-28 01:29:00
Score: 8.5
Natty:
Report link

Did you ever have any success getting this working? I've tried a million different ways and the search bar still sits firmly at the top of my List{}

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever
  • RegEx Blacklisted phrase (2): working?
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (0.5):
Posted by: Muindor

79682640

Date: 2025-06-28 01:16:58
Score: 2
Natty:
Report link

You should give the agents permissions in Five9 admin to allow them to update contact records, then instead of using a script - add contact variables in five9 admin under contact and fields, then add those variables to a campaign using the campaign profiles under the layout tab and make sure that the read only box is unchecked. Then, when an agent gets a call, they will be able to write to those variable fields which they will be able to find in the interaction tab on their five9 agent desktop, and when the agent dispositions the call, the contact record will be updated with their input from the variable fields

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Kay Byers

79682613

Date: 2025-06-28 00:17:44
Score: 8.5
Natty: 5.5
Report link

did you solve the problem?

And a question, in the step two, how do you do the request to https://graph.facebook.com/v20.0/upload:\<UPLOAD_SESSION_ID> ?

do you use javascript fectch?

I've been triyng to use fetch but I recieve CORS erros.

Reasons:
  • Blacklisted phrase (1): how do you
  • RegEx Blacklisted phrase (3): did you solve the problem
  • RegEx Blacklisted phrase (1.5): solve the problem?
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): did you solve the
  • Low reputation (1):
Posted by: MR. Anderson

79682609

Date: 2025-06-28 00:07:40
Score: 1
Natty:
Report link

My mistake was in pubspec.yaml, i put the plugin configuration in:

dev_dependencies:

instead of:

dependencies:
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Faizal Caba

79682607

Date: 2025-06-28 00:04:39
Score: 3.5
Natty:
Report link

Ive accidently deleted my default vpc, after I closed everything and waited for 10 minutes, i have gotten all the default ones back up. I guess AWS patched it and gives a default.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nilla

79682603

Date: 2025-06-27 23:59:37
Score: 0.5
Natty:
Report link

So, don't quote me on this (also correct me if I'm wrong), but what I believe may be happening, is you create your task as a child task from the Main actor, so the work is being performed on the main actor, and then you lock the main actor with a semaphore, causing a deadlock. You could try using Task.detached, but it's not a good solution, because, as it was rightfully pointed out to you in the comments, don't mix semaphores with tasks. Not only it defeats the whole purpose, but it also may cause unintended consequences. Well, it already has, hasn't it? :)

The better approach would be to go all in on Swift Concurrency, and just do the work you need to do right within the Task. If you need to do it on another thread / actor, you can do it by creating a nested Task within your Task. But if it's already running on the Main Actor (again, better check, I'm not sure), can't you simply use code like this?

func didClickStart() {
  scene.presentLoadingScreen()
  var models: [String:Entity]!
  Task {
    models = await loadEntitiesInParallel(fns: entities, tr: tr)
    scene.presentGame(models: models)
    // Alternatively, if needed:
    //MainActor.run { scene.presentGame(models: models) }
  }
}
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Looks like a comment (1):
  • High reputation (-1):
Posted by: FreeNickname

79682588

Date: 2025-06-27 23:31:31
Score: 0.5
Natty:
Report link

Turns out, PyTorch Lightning had nothing to do with this at all. Even just a normal vanilla PyTorch loop was causing issues terminating the program. An os._exit(0) works, but the more permanent solution I found was to update my PyTorch installation to the nightly build.

pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cpu

At the time of writing, this installs a dev-build of the next PyTorch version of 2.8, which seems to have solved the issue. I do not know the root of the issue, but it's possible that the new M4 Max chip + macOS 15.5 probably caused some bugs to surface with how PyTorch terminates multiprocessing.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Rangumi

79682587

Date: 2025-06-27 23:30:30
Score: 3.5
Natty:
Report link

Open the android module and then run ... for me it works..!!!!

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Saad Ahmed

79682584

Date: 2025-06-27 23:25:29
Score: 4
Natty:
Report link

https://github.com/electron/electron/issues/46882

Found this open issue :) Downgrade to 35.2.1 to avoid this issue.

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: jonas

79682583

Date: 2025-06-27 23:24:29
Score: 0.5
Natty:
Report link

Let's first try to understand module map file - the most important part in swift ecosystem when interpolating with C/C++ languages if you don't use a bridging header.


A module map(module.modulemap) is a small text file understood by Clang. It tells the compiler how a set of C, Objective-C, or C++ header files should be grouped into a Clang module and which of these headers make up that module's public interface.

Thanks to the module map, Clang(and therefoew swift, which embeds Clang under the hood) can:

Put differently, the module map is to Clang modules what a Packet.swift manifest is to Swift packages: a manifest that explains what belongs to the module and how to expose it.

Let's look at a typical framework bundle:

libavformat.xcframework/
├── Info.plist
└── macos-arm64_x86_64
    └── libavformat.framework
        ├── Headers -> Versions/Current/Headers
        ├── libavformat -> Versions/Current/libavformat
        ├── Modules
        │   └── module.modulemap // That is our module map, it guides swift to find your symbols.
        ├── Resources -> Versions/Current/Resources
        └── Versions
            ├── A
            │   ├── Headers
            │   │   ├── avformat.h
            │   │   ├── avio.h
            │   │   ├── config.h
            │   │   ├── os_support.h
            │   │   ├── version_major.h
            │   │   └── version.h
            │   ├── libavformat
            │   └── Resources
            │       └── Info.plist
            └── Current -> A

11 directories, 11 files

And this is our module map look like

 framework module libavformat [system] {
     umbrella "." // All Headers are exported as public symbols in swift, except for os_support.h
     exclude header "os_support.h"
     export *
 }

Check the link I provided earlier, alll though the swift 5.9 interpolates with C++ directly. The underlying modulemap mechanism hasn't changed, quote this from the original post: In order for Swift to import a Clang module, it needs to find a module.modulemap` file that describes how a collection of C++ headers maps to a Clang module.

So, that means automatically or mannually, we have to make sure that modulemap file exists.

Think about these senarios we usually compile our C++ library:

How the C++ code is Compiled Who creates the module map? When you have to author one manually
Xcode framework / target (You let xcode build your C++ dependency) Xcode auto-generates it Rarely – only if you need custom requires, link, or want to hide headers
Swift Package Manager(You let SPM build your C++ dependency) SPM auto-generates it when it finds an umbrella header in include/ If you don’t provide an umbrella header or you need finer control (multiple sub-modules, add link, exclude heavy templates, hide some unused symbols, etc.)
Plain .c/.cpp + headers in some folder (no framework, no SPM target, You use cmake or other build system) Nobody You must supply a module.modulemap, then add the directory to SWIFT_INCLUDE_PATHS / pass -I so Swift can find it

So to clarify your questions:

  1. When does building a framework benefit from having a modulemap file in its build settings?

  2. When does building a Swift project that imports a objective-c++ framework benefit from that framework having a modulemap file?

Module map gives these advantages over a bridging header when you use Swift in your xcode project

Advantage Bridging header Module map
1. Pre-compiled representation (PCM) so headers aren’t re-parsed for every Swift file NO, Every Swift file reparses the header text(Althrough it has cache as pre-compiled header (PCH), but reopen and deserialize the PCH happens for every swift file) YES Parsed once → cached PCM → big compile-time savings, especially for large frameworks.
2. Stable logical name you can import MyLib from Swift & Obj-C/C++ Partial – Swift can see symbols via the bridging header but the module name is your target name (import MyApp) rather than the library’s own. YES Explicit, reusable namespace (import MyLibCore, import MyLibExtras, etc.).
3. Selective exposure / hiding of headers NO All included headers become public; no sub-modules. YES export *, exclude header.h, sub-modules (module Core {…}), etc.
4. Automatic linker flags (link "z", link "CoolC++Lib") NO, You must add libraries to “Link Binary With Libraries” or other-linker-flags yourself. YES Link directives live in the map, so SwiftPM / Xcode pick them up automatically.
5. Better incremental builds & parallelism NO, Any change to the bridging header forces all Swift files to rebuild. YES PCM change fingerprints allow fine-grained invalidation; Swift files compile in parallel against the cached module.

But if your project's main language is OC, your project totally work perfectly without a module map.

  1. When does building a Swift project that imports a objective-c++ framework benefit from that framework require having a modulemap file?

It is not mandatory to have a module map, you can still stick to your old objective-c++ wrappers solution.

  1. Is there any reason I cant just go into the built framework file and add a Module/modulemap.modulemap file after the fact if it matches?

Yes, you can tune/add the modulemap file anytime. But 3 things to have i mind:

  1. Does any of this change if the framework is embedded vs not embedded?

No, Embedding (copying the .framework into the app bundle at build time) is purely a link-and-package concern. The module map is consumed before that, while compiling your Swift sources. Whether you later run Embed & Sign or link it from a system path has no impact on the need for or contents of module.modulemap.

  1. Does any of this change if you vary Mach-o-type from static to dynamic library?

No, static library or shared dynamic library only decides how the object code is linked and loaded at runtime, while module map happens at compile time.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): Is there any
  • RegEx Blacklisted phrase (1): Check the link
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: kakaiikaka

79682580

Date: 2025-06-27 23:19:28
Score: 0.5
Natty:
Report link

As of December 2024, the Smart home Actions migrated to Google Home Developer Console.

Here are the steps to create a new project in Google Home Developer Console for a Cloud-to-cloud integration:

  1. Go to console.home.google.com/projects in your web browser.

  2. On the "Welcome to the Developer Console" page, click the "Create a project" button.

  3. If you're creating a brand new project, you'll be prompted to enter a project name. After creating the project, you will be taken to the "Project home" dashboard for your newly created project.

  4. Under the "Cloud-to-cloud" section, click on "+ Add cloud-to-cloud integration".

This will initiate the process of setting up your Cloud-to-cloud integration within your new project in the Google Home Developer Console.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: arm_dpe

79682578

Date: 2025-06-27 23:16:27
Score: 1.5
Natty:
Report link

On Linux running KDE Plasma 6.4.1, the soluton on my machine was to set "Adaptive Sync" to "Always".

I still get some jank (micro-stutters) every now and then in the Chrome browser, especially on heavy websites, but it's mostly smooth and responsive.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Scott Deagan

79682573

Date: 2025-06-27 23:11:21
Score: 7.5
Natty:
Report link

Ive been having a similar problem. This might help, though its not definitive. Sadly I havent found a permanent solution as the problem seems to be with the packages/compatibilities.

So, I have program I wrote in pycharm that uses pandas-ta and has worked perfectly for the past year or so... until I tried to improve the code, using a new project with a new interpreter.

I downloaded all the same librares, but keep getting an error similar to yours:

UserWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html. The pkg_resources package is slated for removal as early as 2025-11-30. Refrain from using this package or pin to Setuptools<81.
  from pkg_resources import get_distribution, DistributionNotFound

I cant find a solution, BUT, when checking google/chatgpt, I kept getting suggestions to downgrade libraries.

On checking, I noticed that although the interpreters use the same packages, and python 3.12, the versions of the packages were different.

In the code that works with pandas_ta, numpy is 1.26.4 and pandas is 2.2.3.

In the new code, thats giving me the error, numpy is 2.3.1 and pandas is 2.3.0.

Its not ideal (and from the date of the post a bit late), but maybe if you downgrade the pandas and/or numpy to these versions, then install pandas_ta, it might work?

Reasons:
  • RegEx Blacklisted phrase (2): I cant find a solution
  • RegEx Blacklisted phrase (2): cant find a solution
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): having a similar problem
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: AndysPythonStuff

79682560

Date: 2025-06-27 22:43:15
Score: 1.5
Natty:
Report link

create a visual bar ammo, able to do the following:

reduces when the player shoots (e.g., presses space)

Gradually over time, regenerate bullets

the update must be gradually displayed. Ensure the shooting option has a dedicated key in the program. also install ursina

# shot values

max_shot = 12

recent_shotss = max_shots

recret_rate = 2 # shots per second

recret_purse = 2.5 # seconds after shooting before recret starts

last_shot_time = 0

recret_timer = 0

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Hadeynike

79682552

Date: 2025-06-27 22:32:13
Score: 3.5
Natty:
Report link

You will need to manually download and build or integrate the MsQuic SDK into your project.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mike

79682542

Date: 2025-06-27 22:21:11
Score: 1
Natty:
Report link

I know this question is OLD, but I I stumbled on this problem today and I want to share how I resolved it.

My organization has a standard development environment setup built on top of docker that uses <app-name>.localhost for the local apps, so the apps always are in "the root" of the web address.

To resolve this, I patched this setup to use a custom callback URL (And I registered it i the Google Console for the app):

http://localhost/login-with-google.php/<app-name>/<app-url-callback-path>

In this PHP file, I assembled the original intended URL based on the <app-name> and appended the query string provided by Google and redirected to the original callback URL.

Worked like a charm!

Reasons:
  • Blacklisted phrase (1): Worked like a charm
  • Whitelisted phrase (-2): I resolved
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Erick de Azevedo Lima

79682535

Date: 2025-06-27 22:14:09
Score: 4
Natty:
Report link

You have to install OPOS CCO...

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ihsani SAHBAZ

79682518

Date: 2025-06-27 21:50:03
Score: 2
Natty:
Report link

The first answer here did not help me, possibly because they were talking about this button over an image in their "first option," whereas in my case it's just there because of a copy/paste action and no image at all. The second option did apply to me, but there was no Convert option when I Clicked File.

So, I just came up with a hack: just drag this box off to the side, past the edge of the document, and then it's just not visible and no longer annoying.

Reasons:
  • Blacklisted phrase (1): help me
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: skittlebiz

79682517

Date: 2025-06-27 21:44:02
Score: 4
Natty:
Report link

Go to terminal and ask Copolit.

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Shannon Nodoubtz Fletcher

79682515

Date: 2025-06-27 21:37:00
Score: 2
Natty:
Report link

Rails now comes with:

bin/rails stats
Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Spacehead

79682501

Date: 2025-06-27 21:22:56
Score: 5.5
Natty:
Report link

If you’re working with next, try renaming your .env to .env.local, any new errors?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Peter Benjamin Ani

79682500

Date: 2025-06-27 21:22:56
Score: 11.5
Natty: 7
Report link

I ran into same issue. Our requirement was to complete the transaction without UI flow. Did you find any solution ?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): Did you find any solution
  • RegEx Blacklisted phrase (2): any solution ?
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nightwish

79682490

Date: 2025-06-27 21:14:54
Score: 3
Natty:
Report link

I used VPN and the problem was solved. I you have a VPN installed try use it

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: CyberHunter

79682485

Date: 2025-06-27 21:13:53
Score: 1
Natty:
Report link

# Convert image to grayscale again for contour detection

gray = cv2.cvtColor(image_np, cv2.COLOR_RGB2GRAY)

# Apply threshold to get binary image

_, thresh = cv2.threshold(gray, 1, 255, cv2.THRESH_BINARY)

# Find contours

contours, _ = cv2.findContours(thresh, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)

# Create a black mask and draw the contours

mask = np.zeros_like(image_np)

cv2.drawContours(mask, contours, -1, (255, 255, 255), thickness=cv2.FILLED)

# Apply mask to extract the figure

result = cv2.bitwise_and(image_np, mask)

# Convert white background to transparent

rgba_image = cv2.cvtColor(result, cv2.COLOR_RGB2RGBA)

rgba_image[np.all(mask == 0, axis=-1)] = [0, 0, 0, 0]

# Save the final image with transparency

output_image = Image.fromarray(rgba_image)

output_path = "/mnt/data/mascara_isolado_transparente.png"

output_image.save(output_path)

output_path

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Iagoo BF

79682478

Date: 2025-06-27 21:04:51
Score: 3.5
Natty:
Report link

Mine started working after closing and reopening GitExtensions

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: stevieflash42

79682469

Date: 2025-06-27 20:51:47
Score: 3.5
Natty:
Report link

Update after 3 years

This free app URL Shortcuts for Google Drive seems to fill an obvious gap:

Reasons:
  • Blacklisted phrase (1): these links
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user30912375

79682456

Date: 2025-06-27 20:34:42
Score: 4
Natty: 4
Report link

I'm Toppi! I can sing with my best friends!

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: James Mears

79682441

Date: 2025-06-27 20:10:36
Score: 0.5
Natty:
Report link

Apparently not.

FEAT_LSE include LD/ST<OP>, which are guaranteed to succeed and progress; whereas exclusive load/store need to loop (ephemerally) to achieve the same effect in case concurrent exclusive store clears the monitor.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: DannyNiu

79682435

Date: 2025-06-27 19:59:33
Score: 0.5
Natty:
Report link

After further investigation I found that spacy-layout release v0.0.11 introduced the ability to pass a DoclingDocument to spaCyLayout.__call__. For reference, the simple way to process a document with Docling and then pass it to spacy-layout would be something like the following:

import spacy
from spacy_layout import spaCyLayout
from docling.document_converter import DocumentConverter

# Setup spaCy pipeline
nlp = spacy.load("en_core_web_sm")
layout = spaCyLayout(nlp)

# Convert a document with Docling
source = "./starcraft.pdf"
converter = DocumentConverter()
docling_result = converter.convert(source)

# Verify Docling conversion to markdown
print(docling_result.document.export_to_markdown())

# Pass Docling document to spacy-layout
doc = layout(docling_result.document)

# Examine spacy-layout spans
for span in doc.spans["layout"]:
    # Document section and token and character offsets into the text
    print(f"{span.label_}: {span.text}")
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Virtual Architectures

79682430

Date: 2025-06-27 19:57:33
Score: 2
Natty:
Report link

you need to use a library to make HTTP requests. Popular choices include axios, node-fetch, or the built-in https module in Node.js. You also need to handle the asynchronous nature of these requests in your Mocha test.
If you need Code Example how to do this, Let me know and i will provide corrected script

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Nizar .H