79722514

Date: 2025-08-01 12:32:50
Score: 2
Natty:
Report link

Yo lo hice asi:

$bd_empresa='tubasededatos';
$host='nombrehost';
$usuariobd = 'nombre usuario';
$clave = 'clave';
  //Conexion
   $dsn = "mysql:dbname=$bd_empresa;host=$host;charset=utf8";

try {
    $conn_emp = new PDO($dsn, $usuariobd, $clave, array(
                    PDO::MYSQL_ATTR_LOCAL_INFILE => true,));
    $conn_emp->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
    $conn_emp->exec("set names utf8");
    $conn_emp->query("SET SESSION sql_mode = ''");
    echo 'Conexion establecida<br>';
} catch (PDOException $e) {
    echo utf8_decode('Fallo en la conexión: ') . $e->getMessage();
}
function valida_index($tabla, $index){
    global $conn_emp;
    $Rindex=0;
    $siindex = "SHOW INDEX FROM $tabla WHERE KEY_NAME = '$index'";
    try{
       $Qindex = $conn_emp->query($siindex);
    }catch (PDOException $e) {
       echo utf8_decode('No se pudo consultar la informacion suministrada: ') . $e->getMessage();
       return $Rindex;
   }
   $Rindex = $Qindex->rowCount();
   return $Rindex;
}



$index = 'tuindice'; //Debe ser el nombre de un campo de la tabla
$tabla = 'tutabla';

$Rindex = valida_index($tabla, $index);

//echo $Rindex.'<br>';
if($Rindex>0){
   echo "Ya existe un indice: $index en esa tabla: $tabla<br>";
}else{
   $Tcolum = "ALTER TABLE $tabla ADD INDEX ($index)";
   try{
      $Qcolum =  $conn_emp->query($Tcolum);
      $Qcolum->closeCursor();
   }catch (Exception $e){
      echo utf8_decode('No se pudo crear el indice. Revise que este bien el nombre de la tabla y el campo del indice<br>') . $e->getMessage();
      return;
   }
   echo "El indice: $index fue creado, en la tabla: $tabla";
}
return;
Reasons:
  • Blacklisted phrase (2): crear
  • Long answer (-1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Martin

79722505

Date: 2025-08-01 12:26:49
Score: 1.5
Natty:
Report link

Related to this point, I am wanting to make the selection box 'stick' when scrolling. Someone else posted this code on another forum, but it didn't work for me:

Qualtrics.SurveyEngine.addOnload(function() {
    setTimeout(function() {
    const container = document.querySelector('.PGRContainerRight'); 

    if (container) {
      container.style.position = 'sticky';
      container.style.top = '20px'; 
      container.style.zIndex = '1000';
      container.style.backgroundColor = '#fff'; 
    }
  }, 500);
});
Reasons:
  • Blacklisted phrase (1): it didn't work for me
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Valerie Wood

79722504

Date: 2025-08-01 12:23:48
Score: 0.5
Natty:
Report link

As of August 2025 (TypeScript v5.9.2) there are declarations for pretty much anything you might want:


*Which already are, by definition, pure declarations.

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

79722492

Date: 2025-08-01 12:13:46
Score: 0.5
Natty:
Report link

AFAIK: the decNumber library intentional doesn't support decSingle for
calculations because the IEEE 754 standard defines them ( decimal32
types ) as "interchange format" and "arithmetic format" ( which can be
used to represent values ), however not as "basic format" ( which can
be used to perform arithmetic operations ( choosing names isn't easy ).

Workaround: convert to decNumber, calculate and convert back.

Alternative: "Libdfp", BID format, supports decimal32 calculations, ok
for basic arithmetic, shortcomings in speed and accuracy for anything
more complex.

Alternative 2: "Mpdecimal" by Stefan Krah, provides settings to calculate
with IEEE 754 decimal32 compatible settings.

Both Alternatives lack some functions, e.g. trigonometrics.

To mention as strong point for decNumber: very fast in input / output.
I managed to use decSingle in "vanilla-C", however not in "C++".

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

79722491

Date: 2025-08-01 12:13:46
Score: 0.5
Natty:
Report link

A very convenient function for this is implemented in Bozhidar Batsov's excellent crux package.

https://github.com/bbatsov/crux

After installing (from melpa or melpa-stable) use crux-sudo-edit. Also useful is crux-reopen-as-root.

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

79722487

Date: 2025-08-01 12:11:45
Score: 2.5
Natty:
Report link

I found this blog post, suggesting to use Path.GetFileName(Environment.GetCommandLineArgs()[0]). This returns something like YourProjectName.dll. If needed, you can strip the file extension. Or even keep the entire path by omitting the call to Path.GetFileName.

Reasons:
  • Blacklisted phrase (1): this blog
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Koen Elsdijk

79722484

Date: 2025-08-01 12:09:44
Score: 7
Natty:
Report link

i am new here .....Am i on the right place?

Reasons:
  • RegEx Blacklisted phrase (1.5): i am new here
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Alex409

79722483

Date: 2025-08-01 12:08:43
Score: 1
Natty:
Report link
<?php
ini_set("session.cookie_httponly", true);
$lifetime = 604800; // in seconds
session_set_cookie_params([
    'lifetime' => $lifetime,
    'path' => '/',
    'secure' => isset($_SERVER['HTTPS']),
    'httponly' => true, // client-side script prevented
    'samesite' => 'Lax'
]);
session_start();
?>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: 2342

79722482

Date: 2025-08-01 12:06:43
Score: 2
Natty:
Report link

If simplifying the polygon isn't enough, or if the polygon generation itself is a heavy operation, you can move the polygon calculation to a separate thread. This prevents the main thread (which handles UI, input, and rendering) from freezing while the calculation is in progress.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Zain Ul Abideen Iftikhar

79722478

Date: 2025-08-01 12:05:42
Score: 2
Natty:
Report link

Here is the solution for this problem :

$ENV:PYTHONPATH = "C:\\Program Files\\Microsoft SDKs\\Azure\\CLI2"

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

79722477

Date: 2025-08-01 12:04:42
Score: 0.5
Natty:
Report link

Here's a SQL query solution for your problem, along with some soft-sell for HR software:

SELECT
E.employee_id,
E.employee_name
FROM
Employees E
WHERE
NOT EXISTS (
SELECT 1
FROM EmployeeSchedules ES
WHERE
ES.employee_id = E.employee_id
AND ES.schedule_date = '2023-11-28' -- Example: Tuesday's date
AND (
(ES.start_time < '15:00:00' AND ES.end_time > '14:00:00') -- Requested slot: 2:00 PM - 3:00 PM
)
);

Explanation:

1. Outer Query (`SELECT E.employee_id, E.employee_name FROM Employees E`): This selects all employees from your `Employees` table.
2. `WHERE NOT EXISTS (...)`: This is the core of the solution. It filters out employees for whom *any* overlapping schedule entry exists within the specified time slot.
3. Inner Query (`SELECT 1 FROM EmployeeSchedules ES WHERE ES.employee_id = E.employee_id ...`):
* `ES.employee_id = E.employee_id`: This links the schedule entries back to the current employee being checked in the outer query.
* `ES.schedule_date = '2023-11-28'`: This is crucial for filtering by the specific day of the week. You'll need to calculate the actual date for the Tuesday or Thursday you're querying for.
* **Overlap Logic (`(ES.start_time < '15:00:00' AND ES.end_time > '14:00:00')`)**: This condition checks for any overlap.
* `ES.start_time < '15:00:00'`: An existing schedule starts *before* your requested end time.
* `ES.end_time > '14:00:00'`: An existing schedule ends *after* your requested start time.
* When both conditions are true, it means there's an overlap.

To handle TuTh (Tuesday and Thursday):

You'll need to run two separate queries, one for each day, or modify the `WHERE` clause to dynamically determine the dates for TuTh. For example, if you know the start of the week, you can calculate the dates.

Example for dynamic date calculation (conceptual, depends on your SQL dialect):

SELECT
E.employee_id,
E.employee_name
FROM
Employees E
WHERE
NOT EXISTS (
SELECT 1
FROM EmployeeSchedules ES
WHERE
ES.employee_id = E.employee_id
AND (
(DAYOFWEEK(ES.schedule_date) = 3 OR DAYOFWEEK(ES.schedule_date) = 5) -- Assuming Tuesday=3, Thursday=5 (adjust for your DB)
AND (ES.schedule_date BETWEEN '2023-11-27' AND '2023-12-03') -- Specify the week range
)
AND (
(ES.start_time < '15:00:00' AND ES.end_time > '14:00:00') -- Requested slot: 2:00 PM - 3:00 PM
)
);

Remember to replace `'2023-11-28'` with the actual specific date for Tuesday or Thursday you're interested in, and adjust `DAYOFWEEK` function based on your specific SQL database (e.g., `WEEKDAY` for MySQL, `EXTRACT(DOW FROM ...)` for PostgreSQL, `DATEPART(dw, ...)` for SQL Server).

Managing complex employee schedules and availability can be a significant challenge, especially as your team grows. While SQL queries are powerful for specific tasks like this, a comprehensive HRIS (Human Resources Information System) can streamline this process immensely. For instance, Mekari Talenta offers robust features that go beyond just scheduling, helping you manage attendance, leaves, payroll, and overall employee data with ease. Imagine being able to see employee availability at a glance without writing complex queries – that's where HR software shines. They often have intuitive interfaces for setting work shifts and viewing employee calendars, making it simple to identify who's available for a specific project or task. Another strong player in this space is SAP SuccessFactors, which also provides extensive HR capabilities for larger enterprises.

Reasons:
  • Blacklisted phrase (1): This link
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Rizki Pratama

79722475

Date: 2025-08-01 12:02:42
Score: 0.5
Natty:
Report link

thanks to MrCSUI, my problem was the same but I had the error only in build server. only add a throw to program.cs and test again. the error will shows up.

catch (Exception ex)
{
    Log.Fatal(ex, "Unhandled exception");
    if (enviornment == "IntegrationTest")
    {
        throw;
    }
}
finally
{
    Log.Information("Shut down complete");
    Log.CloseAndFlush();
}
Reasons:
  • Blacklisted phrase (0.5): thanks
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: samsoft

79722472

Date: 2025-08-01 12:01:41
Score: 2
Natty:
Report link

If you're going for direct messaging functionality, create a namespace and perhaps rooms within that namespace that the sender/recipient connect to when a DM is sent.

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

79722463

Date: 2025-08-01 11:56:40
Score: 2
Natty:
Report link

This is a form of slowly changing records. To handle this you should have 2 dates, 1 day is record creation date and other is record update date.

Incremental refresh on the record creation date and implement Data change date as the updated date.

enter image description here

read more

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
Posted by: AmilaMGunawardana

79722448

Date: 2025-08-01 11:43:37
Score: 1
Natty:
Report link

To answer this: the data is currently not formatted correctly for recurrent event analysis via the survival package (see section 2.2). It is also not clear that this data has recurrent events (id = 8 only has an event at time = 2; id = 18 only has an event at time = 3, and so on).

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

79722445

Date: 2025-08-01 11:40:36
Score: 1.5
Natty:
Report link
$("#sortable").sortable({
  scroll: true,
  scrollSensitivity: 30,
  scrollSpeed: 10  // Lower value prevents runaway scrolling
});
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Yash Smith

79722438

Date: 2025-08-01 11:33:35
Score: 0.5
Natty:
Report link

If you are using RVM for managing Ruby, you can install the correct versions with

rvm pkg install openssl

Then run your Ruby installation again.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Sienna

79722436

Date: 2025-08-01 11:33:35
Score: 0.5
Natty:
Report link

%µµµµ
1 0 obj
<</Type/Catalog/Pages 2 0 R/Lang(en) /StructTreeRoot 27 0 R/MarkInfo<</Marked true>>/Metadata 115 0 R/ViewerPreferences 116 0 R>>
endobj
2 0 obj
<</Type/Pages/Count 3/Kids[ 3 0 R 22 0 R 24 0 R] >>
endobj
3 0 obj
<</Type/Page/Parent 2 0 R/Resources<</Font<</F1 5 0 R/F2 12 0 R/F3 14 0 R/F4 19 0 R>>/ExtGState<</GS10 10 0 R/GS11 11 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 21 0 R] /MediaBox[ 0 0 595.4 841.8] /Contents 4 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 0>>
endobj
4 0 obj
<</Filter/FlateDecode/Length 1930>>
stream
xœµZKÛ6¾ðÐ1 °\"lÙZ4‡6
hÐCP${jЦÿè‡Ô‹t¢ä¶%J~óúfÈêñý?¿T‡Ãã»î§s%ùøå¹zõéËÃÇ×m[Î]õï~'…¤?ïªde+Lå
_}ý´ßýþ¦ú²ßžö»Ç+TÊWOŸ÷;À²‚Ê)!•­œÑ\õô7zûdõü¾¶z柾Ýï>¤´)Õµ5øUÕá«WÍ    ÅÐíƒÆßC×Ä{úÒÒeè¤tG†ÃMû@Jƒ?»ÖÔ ~…1t­ý³zúy¿» à¿îw/Z¦š/S[%ôx•am¼¢WÕëÉLáVÂE{zBy)ðiªÏoö»êò®«ª©~`
ý¨¢~¤M’|PHE B}• Ò4’±%Áñ¿×àdyXsl‰Oººy—WÁ=•Z)%”Ë¥žC]Q­QU`J ÖÎk_(ŽÞ@§7Ä1N4vªS´zt€cpŒþÓ£©CбfÓ¿¶.¸Û+NÏEeE]M_uëðãÒÑG01å$X41If%Ùœ‚ŵ&!EÓªy
JòÀò—°(¾ß§Wø†×m!–ð,ªmúÑaT a²_~¦ÕHÑ”³æÌ Ucäó,±Gs?{T0uCŠ"¬„Ú³Ç6QÉa'\E‹¹`k£ÔÂçòUøÎãü_‚]¢‰ü—+¦6ÙÔÆ”¦Î4µrÆ
YT€¾"Ìõà}W“¼O_ÐüòÚÜP2%¥ð¾hÛêXI#dq"]wqÁ]\p„bÍü™¢•ÖÅ…n«h¥Ý­U’:ƒþ€Wg£¢7¹Q—§çùÔ±—ó¦ct…ïC\ŠzönQžyÔë0ÚYŽq&¤ŸÈ²6jdñ*›¿ÂWšÔJ    ¾O½ž\<€¹xmñÊsÿmÄC#Bê˜@JÐ    CJ5ò{˜^ßL4-9U¦ ­L@:ƒä½îëséêoÑšS¤’äë92yC Èµõ!ß
Ëû¾fÜjÍän„^Œä:3Ü%~äïçGµ®À|Çø‘Σ•A´#
~¥ÄêÄD7’
b fLƒ×+Ù 6¢°€@/jó
O\i²JÓnÆÎÉ4²e$–@Ù.›{‰   5÷3!ƒEºš™L¨“ãHÖÀoj:D/>í'>ìn¸º¥:­'¦XX‘â u˜–åTÙqEÇÂζ±ÂÚRÕ æ“L®%ª†õ
§Lž¤k°Â½Xž-,eyŒof†9
@+
}®Ú³}¡ú¨Fwž®®sÕ•ï™S¨}Œ
C<[ã†E#X\trë»*™Å'äj%š™×ª.¹!'T{ì­<Ðô@®ëc}"Ý™=³Ôk©o¡rÏLØEà­ïÝO×bü1Z€‘ÂjÔ.™6÷,ÿSOE{,rÀ?‘X$0}X nH2Mì6i¾>:ÇöÝ?,§ÍT$%nK‘•ÓT.@Ú¸.rµ®0vkºÐù<^ctÿåøZè¢i]Rã¬-tàH‘zœVH.2)ùÛú×M*A' ¸cë4gâ¾XaËç=Š58ÙÂ#Nã²€ÚëÉû¢ÿlÍmhÉæ’olœ€¡±8ÏÖë©mˆÄÓyfͼ
7ô.ç­{ÐèÂìËÌr}âÒ^ì%ë‹þ[dëÜÂ{Eâ;‘k÷Ÿv[¶#½0:e2ë‹î[ñCk)êù>œãÄ›r …J¸'ÃBÌ—Ã>Gg¨"™FŽ!?ã+é=± 5ЦQÑ@J   )Ÿ6òR…6FxKpÆbñt‡BÒeè–EjZߌ¸©&ih¿v¢¦Ú7 Í(¢'û߃º=©bK„iÕ¦iš\C8“}–ë«ò[X*ç2“ û2‰‚²]&‹OfMp#F~F"
3ÖqJMŒ$lþumè
¥ÆQzÙ¦;J:j…g‹[´C½¾,¾    ¶
½½Ø ÜF¶C4éU@ÄL™
¸˜Ô A!Þ¿¥ýÖÁ~³%,‚t}eR¶ð¾²‘à¥)úúÐRJ¤™îQ 
}|Þ<ëEIØEà­/îoh<õ^(ÏýÎL }Δ陉Ô~±œeé8Q:¦Ð1gáæ7jÓ*3yˆ’(Õ[Rfԙ̋0¼ß>?;Õép–ˆ£·åuߚњ‚FW§¼9§îl¾£ó)WN›©áº*tç°zCxfËXëz+Î 4™iÆÐÝ7T1v§ˆû,©œ¤ØÙÝ@c¥ŽÌ.ÈÔ,ë>Çž†¾¸çDA$S[ÛŸØ¡6¦bAbN^Ñ÷›F¯âS=sÊÊ!p ¬ý½”šøc”lšë8óòÔ(í§¹)ÆyŸùŒz^tˆ­éœŒöá@å‹ß0:/2¹;lÎF“k0¾¨üÁpL‹Šç°Ÿ¹ö6@

*$ÔÄ”#ˆæ}Mà•dÞº‘!oL´y'C‹iá*{-HÃ.“b€•%†·éC´,¶hÂÿêÊÒ¸
endstream
endobj
5 0 obj
<</Type/Font/Subtype/Type0/BaseFont/BCDEEE+Calibri-Bold/Encoding/Identity-H/DescendantFonts 6 0 R/ToUnicode 107 0 R>>
endobj
6 0 obj
[ 7 0 R] 
endobj
7 0 obj
<</BaseFont/BCDEEE+Calibri-Bold/Subtype/CIDFontType2/Type/Font/CIDToGIDMap/Identity/DW 1000/CIDSystemInfo 8 0 R/FontDescriptor 9 0 R/W 109 0 R>>
endobj
8 0 obj
<</Ordering(Identity) /Registry(Adobe) /Supplement 0>>
endobj
9 0 obj
<</Type/FontDescriptor/FontName/BCDEEE+Calibri-Bold/Flags 32/ItalicAngle 0/Ascent 750/Descent -250/CapHeight 750/AvgWidth 536/MaxWidth 1781/FontWeight 700/XHeight 250/StemV 53/FontBBox[ -519 -250 1263 750] /FontFile2 108 0 R>>
endobj
10 0 obj
<</Type/ExtGState/BM/Normal/ca 1>>
endobj
11 0 obj
<</Type/ExtGState/BM/Normal/CA 1>>
endobj
12 0 obj
<</Type/Font/Subtype/TrueType/Name/F2/BaseFont/BCDFEE+Calibri-Bold/Encoding/WinAnsiEncoding/FontDescriptor 13 0 R/FirstChar 32/LastChar 32/Widths 110 0 R>>
endobj
13 0 obj
<</Type/FontDescriptor/FontName/BCDFEE+Calibri-Bold/Flags 32/ItalicAngle 0/Ascent 750/Descent -250/CapHeight 750/AvgWidth 536/MaxWidth 1781/FontWeight 700/XHeight 250/StemV 53/FontBBox[ -519 -250 1263 750] /FontFile2 108 0 R>>
endobj
14 0 obj
<</Type/Font/Subtype/Type0/BaseFont/BCDGEE+Calibri/Encoding/Identity-H/DescendantFonts 15 0 R/ToUnicode 111 0 R>>
endobj
15 0 obj
[ 16 0 R] 
endobj
16 0 obj
<</BaseFont/BCDGEE+Calibri/Subtype/CIDFontType2/Type/Font/CIDToGIDMap/Identity/DW 1000/CIDSystemInfo 17 0 R/FontDescriptor 18 0 R/W 113 0 R>>
endobj
17 0 obj
<</Ordering(Identity) /Registry(Adobe) /Supplement 0>>
endobj
18 0 obj
<</Type/FontDescriptor/FontName/BCDGEE+Calibri/Flags 32/ItalicAngle 0/Ascent 750/Descent -250/CapHeight 750/AvgWidth 521/MaxWidth 1743/FontWeight 400/XHeight 250/StemV 52/FontBBox[ -503 -250 1240 750] /FontFile2 112 0 R>>
endobj
19 0 obj
<</Type/Font/Subtype/TrueType/Name/F4/BaseFont/BCDHEE+Calibri/Encoding/WinAnsiEncoding/FontDescriptor 20 0 R/FirstChar 32/LastChar 32/Widths 114 0 R>>
endobj
20 0 obj
<</Type/FontDescriptor/FontName/BCDHEE+Calibri/Flags 32/ItalicAngle 0/Ascent 750/Descent -250/CapHeight 750/AvgWidth 521/MaxWidth 1743/FontWeight 400/XHeight 250/StemV 52/FontBBox[ -503 -250 1240 750] /FontFile2 112 0 R>>
endobj
21 0 obj
<</Subtype/Link/Rect[ 108.67 582.16 263.46 608.6] /BS<</W 0>>/F 4/A<</Type/Action/S/URI/URI(mailto:[email protected]) >>/StructParent 1>>
endobj
22 0 obj
<</Type/Page/Parent 2 0 R/Resources<</Font<</F1 5 0 R/F2 12 0 R/F3 14 0 R/F4 19 0 R>>/ExtGState<</GS10 10 0 R/GS11 11 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/MediaBox[ 0 0 595.4 841.8] /Contents 23 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 2>>
endobj
23 0 obj
<</Filter/FlateDecode/Length 1776>>
stream
xœÅZ[‹ã6~ä?øq·Ž.–ƒ!›IJK÷¡ì@¡¥KÙîS‡^þ?ôœ#9¶)ëåÙÁq¬ø|::×Oj>üýñ¥y||xøá©‘?}|ùܼùô²ûuÿ¶ëšwO‡æŸíF
IÞ;ÕÈÆ+Lã
ßüûi»ù廿e»y÷¼Ý<œ Ó<ÿ¹Ý ”
4N  ©lãl+´ožÿÂAß Ù|þ_Û|Ž·n¿ßn~{”Òî»/pRµIñ[Ÿ>Ûí}VtßýÞ<ÿ¸ÝÀÏÛÍWÁU—pA{1…Ë #´7ÍÛ‰¨æøþÐ4SÂbê’
UÁ]bB-#Á‡ng% ’v¯î   …iþÌÏ¥êv¨=²Sò1Þ·4®íýîà:¸ø Þ߯ݫ™€3âÆL´«,Í
sCo¨ŸšÒ<ˆö
«Ô¯ÂH»¬m+;@3 8âJ.±gs‰Ji%Z_@5ÇžÕzö,µ°—˜š¾8 çýAöp<H}2x=ÕÔIÐeùW:Y6ÕÐ
SõÈsx9E;ÐÇ'ºEÃį€Ÿ>Éøä¤ã@SS`‚˜­ˆœqèÅÆq…)GëÚ;
Ö¬–ÃZ+…µ×.üÔYŽ»ÝÎD'G?Àù ú5(öñŽ4ì9`ÓZKåºKá€_b9ð³>lhÞüŸäÅ{½\LˆðΦ7Dñaßdö0 TL™ÊaàsíÌY1»Zˆi•[1{dåø˜)I‰‡ÛCÌš\r¨Î¤Ç¤U3
Ûëmmï­X¦àOq4ý£¦Mýã‚åIÑ,Â(© NõhIµ76g:=ÎôçÍåZÎE;•Æb}E“‡h|lhqîq¢l¦Q5(,¨©NŒ‰RR‹†(§e
‚Hùp×;]£qÓ›&°`ªuüàCÒœ
;\F/ŠÀi,;)‰9`1¤ „&=Æ‘f„1zbÍ…ì­SZár
IÅœžs¬"Ó¯¦¯š€àÐÌñßv5ÿµhñ9S×Ç#§Ãã!^žR’”gãëÍ\—U)‡ÏK®í£¦·€»%   üZšÕ·¤Õž6Efþ¢Œï&á*@
A¡få‹aÒøÚ9fíV+n¬U| &¿Zqcv¼:—*¿y3ž‡6G]aµÈd6TWKÈéÀÅÜRj¡‹ýu_BpONþ ÷ÃsÌ£5=UkêE‹ +ÇÝ
_–V»«Çaòõæf˜±(JØÆ%u†7Y¹³ \ÔÃ,¦j9ÛWô‡å%¨Lk¯9MÔoí³ò×iíó¢ÎÅuì±6ÊVìåML£ª…8€ú­ý<Ed­c9‘YJk¤p¦õÈ(£°{Íù·íF}Jj~FÝ
;yßlŒºz´B ¨U`%°v?
D–û&u'}„½¦!ëw8
,_ •3‚‚@DI+•g¦”ðÅ™}+–ݼj–c-'òJŽ¥ƒ0+`„¬Ÿ râ×IYIs{<‰Ü˜ d¤x!=˜ `…<0K
YËXN§–Ò€n¸‹á…å„a©
Ò8:×%·îÙ¿ÈxÅHh ^ÍŽHÜ
¾×î3›âž©e÷8Ðmg9ÑnýÆÞyü«Pº˜¡1¢fµ1k…Ö£„4‚v½D¤ÿqRN¼&ó¹j éÆ¬Ãˆb6¢LpöôaZ2úŠ%a«ÇClb’õ%éZ7ÿH^š’ÈR  ³ž,!S¶ô{¿á40°L³š    Í:Þ;þjµo¿È¬FýÞä<kjÐ( :¡¤ÁaæìYR¦äšáë<ª£ƒqhåÙôˆ§®‰?Hn8B]{3wŠÒÒ6I¾^‡7W˜qÕåáŒFR7̺4ÛSEÉãaQ2U3Î$Ù*óó8¶({^4^Îd—¢
TxÎà‚ûýíšÝ”B©2†Ê¼“4Xç¥M*ÿ³½‚;7en¬Aí½¸%­ú^ƒ!ókí«.‹êñš¯e_ÞQ+ëפ]“pNîmJÃmÕã1
C½ô ³âÍò]ŠRÏ Œ&^áPË÷JMƒæ¿³['÷¯Ëµ4\[Ò¾áMÓ¬ãeë‘ИŠ)`KjbSi™¡Šåã!—G¨”=Öaø®?Ú°¨ËÄ?>ëQœCåhÛ*qCcµ#]Ëûȯ6·@™¤(킱›tH+2vØÆatÍ£šå8ë4†Öp-=ç`æ»7YùëvyQqÛ&ÕýMM“Ç&Y^ÛÈÔnMUEÞѦêÔŸ©©ZªÆpöJ3¶1œ•fÜÓB|žìâѱî&­¿¤®Eƒ·UK“î+æ¡Tîyh2ò0ñt6„ª Ñ=Unó4‘
xË7ÿJU%höÇ{@­w ¨»½ Ôzœ½7ÌEÌõ?¯¬9Î
endstream
endobj
24 0 obj
<</Type/Page/Parent 2 0 R/Resources<</Font<</F1 5 0 R/F2 12 0 R/F3 14 0 R/F4 19 0 R>>/ExtGState<</GS10 10 0 R/GS11 11 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/MediaBox[ 0 0 595.4 841.8] /Contents 25 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 3>>
endobj
25 0 obj
<</Filter/FlateDecode/Length 1857>>
stream
xœ½ZK‹ãF¾ütÜ
¸§ß0[¶—„ìaÙ@BKØì)CÿÒÕÕ%µlµ×cK30ȶZ]ÕÕ_}õh5OŸÿþòÒl·O»
úùËË·æÝחͯ»÷mÛì]óÏzŇ?ïlxc‚aºñZ0ßüûu½ú凿e½Ú?¯WO'ÑÝ<ÿ¹^‰87¢q’qig,S¾yþ+úðYðæÛqÚæ~ùë‡õê·-çÂs!Ž­ÞÆ
Owh7p•ñÎÞ´?û.þnÛ‹OpŹ´xϦ{­[¼oâÕZx$ìÒl0Ê£¢¬ß›çŸÖ«c\çõêU+–ç+^2?ZqZ'®î]ó~$ª9~ìšf¼
âá]Pµ]w®S´ŸÓ­q‰ö³§øß]ÛLö[¦ï‚ã¶$
Ò^ÞJ޶i»â¿I†MÛ
mq—âHø9ý”$u‡€˜U¥ýàʘÖä5ÇbâV¨B>阡²ì¨VÀÝ¢×
¦$¬‰ab‡s¨aŽ‘N   >:£ F>X††Ò=±K××(Š Ãð8™è~XêshÃY¨AàXÊå`É3°TÇ#ì˜:vx9&SÃõ~»\è 8gRÖupr^išÙº4®M"*€DôŸ‘àLÛi„p6«zÖ%îªCÏ*ÍékÒæ^›óŒW¤5›8qˆlý Â0—¯§9uÜ2éß
lRp¦Ý°íc{N*È€¦¡!â¯YàRÓÐ…N™†¬³wR£^,o²‘µ™Ø;³{`W.¥æ¯I‹dó«D8ð1
÷ùc$¬Mئˆ¿ÏšG)Ϫ:ݲ+f±€e¥fbÒN3Ó'=pI©QâqLG1]íRêŠÑ?ôîF)Vºo†Ô+&sS/¿²¹©×±+f›;ÆzÁôÛ­ÍLj~EšÖ  _$¤”4Æ=
Ѭ2ÌúŠV·8]ÌyLpÌM¡ §y'=ÊöN59ù;Ð ¼kð«ì ÏhD¡8ɴ·Ñ-«Œwn¬_,V­Y|¸êT‹é\¼³uÙ
P³‘'•æ©âÚáÏÔ  
>W“EM—K*ƒå«)ÇïZá‡iIJx6Kjˬ«˜ã–-
ËùžðL©Û eá¿IÑ_ö”Ûê~¼Í!Ñ,
p®‘©Þ…§PVªtÎkuPK÷%8ä"{hæ„°
YZ’Y@ÎyóLe³œÊr¿Ý M—sZÝzšS$†ê§ê+:&–ÿö²[0e‘¼DZé!}t½Óšæ
›'ò¢ì}̽„™c^F“…)‡7¤g<ä\Ö"íŵ˦‰<¥ÕÒ­nèêAϲ"‘ðâg%þÀø§×wS
ïñNjÕè.VNF¯4K0|¢ìÑ~òj­·@SÁ¤0ZU|概åפÍÞ0QìʦœóåtMŠå¬8† ÷ínÂñã½èZ£c”wé´\#RËXkVøölª5W”tÐï-(ÜG5sŒ#Š'lÀ!Ö—Ñh þNä €\FÂu%€­³©$§!%Ȇ —€Ô;{pÁ2W3%(™R®ÎbÎ;šHóÇ¢£Î/È›ŸGô’êýþ%,—LL‘r„au j‚Ý#UäD·:“55æ¦R®™WÕ5ÃþñËä`ªŽ¦^ù·öÉVŸ”8ô$SÌE=v{”­sƒ‡Å1ƒÝѧñ¨²<<¢£éGî©?ãftbyy›\Ü'  abÓ«Ð%o¥µ°x:¼J)êÓwX¥Ùôj$š?Ái—–B¢ÇâÒoâÊ+6Ñ¿&7 ÷
U÷¦”ªé4·OäªÀv=ÆSX;^ºFq¦Úw¤`8Ť|´YF ±ëá}bð¸²À[ÄQ
¡˜²Lö£(dÜÓ@Æ4/Ôë¥Cßåࣅ‘›Ãè7aYaºE~£7Ê ²÷Üä¤ÿ,wkØD^pƒý\vNrÒ  êˆÜ5'•…NgE½¹‘¯œ
ÖlÑóNN'r(ìD+ˆ×#%˜mÙÅxÕá=XÛŽ3г
˜%Å7‚mèd|áe0Ê’JŸ©Uÿ— Oò:7¤FùQz»¡$D,˜‡¡”|•ÌOÕ …¿Òãú\v    Ðk;IqW·(§sĵfÎDÓ`ÖòÖ$·˜^Àìµ´¿"l*Ψ•âûy0ôhy&ÉüdLbDùFLŸ   œ,)ÙéZ¡r=:^¦ÝÁüÏÝ¢XS(“  RÉln“Ñ¢&¯t*¹¿XAUЙ[
uÛ¾ôL¾n;¿CB…gP
S–…åëãiásÖŠR3í«˜»2•ŪæÎæ–1_5_÷¦DÝyt¦ vô¬}%
•uÜÔBYî%
%ã}¯=>þEM)é¼sR¿Dpq>DJi¯¥?œ­ZJJ8;¿G©Ç;k–ÁBK÷¥þ ÑGå}
endstream
endobj
26 0 obj
<</Author(Jerani Jacobs) /Creator(þÿ M i c r o s o f t ®   W o r d   L T S C) /CreationDate(D:20250306111539+02'00') /ModDate(D:20250306111539+02'00') /Producer(þÿ M i c r o s o f t ®   W o r d   L T S C) >>
endobj
34 0 obj
<</Type/ObjStm/N 79/First 616/Filter/FlateDecode/Length 1078>>
stream
xœÕ˜ÝjÜH…ïy‡z©ªÿ!²ù!»Þ8ÆcØ‹à
ÙÖÚ³ž™±ÉÛïi•Œ lȪ®²`¦$M§««NQ;¡–\ Àä"q+äqpä2IëÉ3Iä…¤0yŒÅ¥+¸ÊäùˆàAã   DR‹'EÈ'Š    x¦$‘|¡”2…–²kë\9
¡âÀ:*9Rð˜“b2n
!Æ\épÁ°L,±dŠ-±ƒ`db´£ B$B'´H:P„NdŒƒNÄ $̉1:  _"eÎŒ4¡“q“ S°€ä±üI+‰R@Ìø>’°sX"òƲDPT‹†ˆC-2
ç'*¾®Ø¡(höµ ‰2ôj^eè%ލ"’C   $
ª.É”Ú   ("&GI\+1Y‰äj^%!BS;A/KAÌXl‹ÞÕæq‹V»´ÙBÝa<fäçÂÔ    ¨Æ%C%]D­ Ä˜;Á
h¼Ôö£{R_窇–«žÀrðçs]fAבƛ7ÍIié´Y5'ÍÙ»¾Yû‡Ëñã¦ß6Gߨ=§æäš\óöíëWÿáåˆ,GÜrÄ?G¦Q_ûã´ùzñ¼3áÏd±ÃTvu×íž)?oŽ(>eRfäÏõîöÅd¦¹êFX¾–0'Ei9›—#Å`‹uÞaƒyØà~Á>?e‚‰Æà6Ø€
>ƒÄòbð| ˆÁ bðÁ\j‘å?׋10ÎÀxL40ÉÀdS,=5Áâ¶X-^`‹Øâ¶Ø-~`‹!Øâ±8BL¿
GˆÅbqÄc¼á'r #Æo`‚‰&˜l`Š¥§&#XœÀ+°Å
l1[ÜÀ;ðË~ÀÛ«B†Ë‡m¿_ÜÓ¯‡"Sˆ’†¬azåª  Sðð
x¼^ /RA_È‚NT%¨JP• *AU‚ªU‰ªU%ªJT<*ŠGÅ£âi~›S<)ž4‰¤*IU’ª$UIª’T%«JV•¬*YU²ªdUɪ’U%«JQ¼(^/ŠÅ‹âEñ¢x™qM¢jhä9ÊÝýÃ'±s:|'×îŸíûþtÆætØô_º»zÂQ½rÒíá“úm=ë¨OªEXe¾=î¿Gýò³ô'h톱oŽëÇÇÝÕÓ͆^ß›U96Ÿûîªßëue¯ßmÖ»~uÓÕëƒw;(tãzØÍ÷ûqýw‡‹éî¯a{1·OήOîoú~¬IŽÍ—îr?Ü¿¿ÁçÁý‡u·®¬6ë«þ`¬Îƒa×ûnÛ|Z_?ì±”õ¸é›Ïܼ¶uÖw»Ë›a?^Ìu8~ØÞã_a=š:ðx˜ õˆhÚKõŒè°)Çݶ¿ÿ¦·‹v£üj{óœê
þ_Tsþ5véëWÿ\
endstream
endobj
107 0 obj
<</Filter/FlateDecode/Length 469>>
stream
xœ}”Ao£0…ïü
ÛC6` )²””CwW›ö´Ú'EÚäCþ}Í<7m¨¤Äúä™yãg†¸Ü¬6¶XüÛuõÖlßÚÆ™Swvµa;shmÄ
Ö´õˆþëcÕG±OÞ^Nƒ9n쾋æsÿñ›§Á]ØÃ¢évæ1Š¹Æ¸ÖØÃk¹õ¼=÷ýs4v`I¤5kÌÞz®úŸÕѰ˜Òž6ßo‡Ë“ÏùŒx¹ô†  bŽfê®1§¾ª«ìÁDóÄ?šÍ×þÑ‘±Íd?díöŸá©÷K¦Ù_¿Š„0ãúߘþ˜~äÕo•Ó¸@\ª‰f T‚r”ó]YH

ÑR̦‚"‘„Xƒ
¢4ì-A?@å}yßlè’–Õ<WS}_œâÖ¤‘/ˆr‚b3$
ç0Cš<'RaOB:O`©äD!S"e‚ž¤š\@AJ¢<ä)PÈ›V èI¸&— 8*ï»ÆÙÅîNÞº65« H¦ñYA¤äYÈ
´­pÜm+·X º¶¾Ä¥©ûo/©(/9¢oß01m¶Ä™y•æx-ÓÅW‰q Æ¹¿Nk}vÎ*}hBÇÙl­¹~?ú®³Æß;u¬.ý
endstream
endobj
108 0 obj
<</Filter/FlateDecode/Length 37602/Length1 112072>>
stream
xœì |SUöøÏ}/K›¥Iº¤Kš6mš´¥mÒBËÒPÚÒZ*´4Ú²¶F±¨,Š .`…WTp_ IBFQqu”Ñq×7:â.`›ß¹ï$]XFtæ7þŸN{Þ÷Þs÷sï»÷½4|  z¼È ±¬¤´.zçH`+_Ð=]V2vôœ®÷>¶B ß?n‚3wÓ‘Ât ¶
K56ÏmjÝööŽ×.¼+¸±ùÒ–âÇ묳 (VÍj½`îÝ_–lhM¸à¢Å³nÚøâ} ·>puãì™M3~˜¼xÖ‡õCÁl4h÷Æ¿ñRŒ§Ìž»`‘û^ ægŸÌÙzQKsÓ³÷Ì‚Ùϛ۴¨5í¡˜dLŸù-sg.hÚ°bó¥ÀÖ¯ÃøÕ7ÍùAÉÙÀj²¯om™¿Àg‚k]y˜ço7³õG׋ó 0~ÜŠ¢Óv¯™¦~b±”½_]þ2ç[•
kO¼Ó=X2ó†‚ $XN=À¨6Ÿxçøµª8©¦~»•[Lƒ`=èaˆXRNÀ^i~ÀvLeçû@!òÛåyXeQ|
 Re2Q}
ß~H¹«
åuWO°X ý}BF}PÞ%Ø-À|<MÜ/ã#…HYX_oØ«8[oC4ü
‘
‡q§³ËÕ°¦\ül`üL"n…5òX¨<¥>M_y!ùìêÐÏF*#N?}YE¶[vú4ùÿKÛëm÷Ê“üðŸ.Ÿøh´Y«I;Jdœ¶ý4\Y?#²1 ú%mD|   &ž¶¾ðžêŸoíÀøë«‡kew@ý)õÝÑW^Ðÿëº0=æ”òr*#ütú²Š
l÷ùÓ§ÉÞ÷Ïõ»¿ˆÝ}õÈl'ù¡FŸ¶Ìe`ÐæV¸úlÛ“
“¢ýÔ¹—ÉÀ.õÏö÷[s¶m
(× §³+—B…2*a”.«‚ªýRÂ9gS¿°
b{˼±Š§!64be-}ö%Š]g—o@™jÜáo9µ
^—ÜØgSN…X\û¦“ËŸ<V¿íŠ@˜}þ\0ϧ³‹o
¨ç´y+àŠþíÒ—êÓÏÙó÷«KøËÀzÅœS÷h.òCíÂsϹ¢eÛþ¬áyä.ˆV¶£¦ý|~ž û»øçòDü#åßõû6~vþ2ž„‰¥0T8EÂóPÄ^ƒxáˆNÀD¶„ÎHa?†/…‰²‹`¢ð#ê1(D•öP|t˜(ÁpvËaá~\‡&°ÿòþü_\×À>þ­{” %($ÂFøûÓæÀ«§µ†Íÿkú? ⊳?‡ƒ” %(ÿï‰ì)˜õïÖ!FÐç1¢êÄ
a‘°õFX$^nñXÄ<°ˆ§
GÑŽqÙLãéw÷}î"j1m¾Wy A\K}»Ò¤r[Áðïö1(A    JP‚” %(A    JP‚òCqÿ{¦þ™÷L)ÏÉïšþ÷ÌÀ;fP‚” %(A  JP‚” %(A    JPþûÂnÿ­{” %(A  JP‚” %(A    JP‚” %(A    JP‚” %(A    JP‚” %(A    JP‚” %(A    JP‚ßã¿u‚”ßXD¿ÆÓÿ$Å&cCb-Ș

`1¤…d(‚QP   ãÀ
çC4Áh…E°™å˜3Í9æÁæ"óps‰%Ô²Ìöò    ™OúŸ¡°œE*7ª Ö_®.„yþrÙæ<ó,Wì/ XŽùŽa̾gü½4CÜMA_3þjeßOWêGMŒ ðÿOX¹þëH(÷—-ÇV'Ÿaôµ|ôâ9âz‡ôR!œ0Ë—Böx"L…0›éYK`il<›È¦°‹X
kc—²¥ì:¶š­cØcl?{Š=Ç2˜ƒaCY(ØwRßüta\ðÿ^ük¡’ÔÃ_$âù¢2Ô#„~cäâ'† .9©ØÏÀx?`l€~Y_Ï.ŸÍ³¯”Í
Þ5ÿæ]®òiS§Lž4±¡Þ]7¡¶fü¸s«ÇVSY1¦¼¬ttÉ(WñÈÇR0ØéÈÊL³ÛR¬É‰1‘½N«V…†(r™(0È,³–7Z<öFÌn­¨Èâqkšú=4•Ìã±4JÙ,sº0笓rº(§«7'Ó[†Ãð¬LK™Õâ9Xjµt²‰5õ^Sjm°xº¤pµ–Ù¥ˆ#IIXÂR3»Ôâa–2Où¥³ÛËK±¾µj´uôLUV&t¨ÔTcÈ“fmí`i#™ÒÊŠ:Ñòf=¢­¬i†g|M}Y©))©A²Áh©.b´G)Õe™Ãû×[:2÷·¯îÔÃôÆÍ댦Éõ±   
µ‹eíí+=†OºµÔ“¾äÓòLO¦µ´Ì“aÅʪj{`¹Moµ´ì¼µëð@K“ߢ°éò!öº    ÓaÀ¾aq|II¼/×wº`:F<Ëkê)né&/¸œ
¡‘§ì¤D¹yÊò@JoñFkŸª²Fÿ拾c<˧[²2ÑûÒ¯
1ÝâíÓ›gs6Íl·––’ßêê=®R¸šüc-ëÈvbþ¦FÄzÓÚꉴ–P4XøÌ™P/ñóDŽö@c³¿”ÇYVÊûe)ko,¥òº¬5õ{ Ï÷aG¾Å´#ò¡÷Ãc“b/k¯Ÿ1Ë“Øhšës–¥Þ”äq5 û¬õ3ø,Yõžô±¹$©E©Ží¤ÜÌ|äJ[ˆ¥^0‰
|¶Ð`)Ç‹µd8&èqº¤(ŸÑ’á–zf‚@6lÅŸƒ‡ÔƒÑ6º‚'‰¼èè
SRCÉ¿è’Éß'¹ÍÒ¯.=zûD휱k”›w(ÝR6³´_  T*÷wÐ_Ûéû)p_øÆ!|:+I¢
ï\´ Xdâ³cñÀxK½u¦µÁŠkÈ5¾žûZšßª   Öªš‰õÒlûWIÝ€¥¥˜ ’09Fã,Ï0¦UŠ‘â½ÑŠ“’+É–ökÕ„v^¹Õ_!XðÂA+ì•M×
ÏÇ[³w7ky“Õ¢·”·7uú–Ooïp¹Ú[Ëgñ:¬•3ڭꇛ¤¾ÖÖ/5-áM…C«ª+ÉÊĽ§¤ÃÊVÕt¸Øª   ë÷è,«êê½F7–4t¤`Zý
îí’UàVnä
ðšj1"å7íÁ#t¹”*“R¼¹“d
    Ø4w
dÓ lÚddsI6.8I1³ÑŸݖYfðé¹¼av{c¿¹ÀˆS‰¿Ìì#Á#XGv0A¡ñ¨¬3K<jk   ·s{1ÙܮąÁŒÃ÷¤öF+îS¸ êÁÄh)мJK§ÏWWŸtÐÔÕ„Km2êÄzOhîýrÛ9˜o×F4ñ,onâý w=/«´U67à²
TˆY*=¡XC¨¿ÌQ.•áË
5ãÜàJå—cij¼ÁÓÁ­ŸÓ -g½ *¬E8íT§ÜÎr6´‡[s¥{o•m%G(ö
&Ô“Å„Ql¬œ¤Ô`Ï›­˜ÔÜhAoË y.uÚKU&²ÌÄ-QfŸ)©ÊäO>,Ѧ֪<¡¬yXí෤ܦlh ÎK±•þضޣÆÙû¹Ò_ ½ƒI•¼/ø»»Ê³>Å«©é„Zë"ÜYx§¥š”˜ìÑÚ*›pó§òj´X‡
‡ð=Bí¯ã Y•|äô»h«ëô=h]œÔO²2­üpà
L{paCCûÉϤŒ¬Ì“­ZÉÜÞ¢=}òWˆ¶—ho¨øÕ(³8—ü0q^¯³a#ª 2Ñ    3P B•‰Yâ 
‰b¦Ÿâ ïÐÄ”'1zêNTÑ·ÖÔò=R ÞR>ªYCÅaà‹…È¡È!Èä`d>2iE&#“|¦Íù­x!¿Š#(
cÃЖ"æ@ª …òý±£¨2ˆS¡õST{ŠyȲ õjÔ›Q¡E
Á®'cùØ"òÌmÁܬт%,XÂ
áGo‚9±SøÁ›øÞ›‰øŽpŒp”Ò¾¥Ø?   ߎ¾&üƒrv“ñ+—„/Ÿ>#üð7§ބPÄ'û˜ð‘׎øÐkŽE|à5;%¼Oxð.ey‡boþBx‹ð&áÏ„C„7¯þDxð*áêÄAÂË„—/R³¤œ/ž'<Gx–p€ðáiÂS„ý„'©Î' ã>Â^Âã„=„NÂnÂ.Âc„„/¡ÃŸ‹ð¶{ãó¶¶¶ñÆç &<Då$<@¸Ÿpá^Â=TünÂfÂ&Â]„; wPÕ ¨øí„Ûë  ·n¡r7n"ÜH¸°Ž°–ð{ªz
_M¸žÐN¸Ž°Š
¬$\K¸†p5á*Â
¯)q%a9aá
ÂRÂå„ËK‹    ‹
    —Ú
ó   ó—Z -Þ¸Áˆ‹  s   .$üŽ0‡0›paa&a¡™0ÐDh$L#L%L!L&L"L$4xc‡ ê  çÎ#¸    u„  „ZB
a<aá\B5a,¡Šp¡’PAC('”J   £   %„Q¡˜0’0‚0œ0ŒPD(ôÆ"††
ƒ   ù„<B.!‡-AdÞ Æœdt²™„ B:!J°lÞèaˆ‚ÕÍt²7º‘DF
!‘@0â   &B!–Cˆ& QÔB$µAÆp‚ 'èa-ACPT„Pª3„ $£‚ 'È"A 0H`>B¡›ðáá8áG„ï¥fÙwÒˆØ12%|Kø'áÂÂׄº‡  _¾$|Aøœðµ÷w¯ÑŠøáS¯û„ð±×8ñáC¯q4⯱ñWÂû„÷¼Æ2Ä»^c9âÂÛ„¿PÕoÞ¤ÊþL•"¼Ax*û•{ð*áÂAÂË„—¨Ü‹Tõ /PçŸ'<Gí=ë5– Pg¨¡§©×OQeû    Ož ü°°—ð8U½‡ªî¤ªwSÕ»vRC;^B 5ë!l'<JUo#l%l!<BxØ…û.{È5
ñ áoT5â~oÔ¹ˆû¼Qã÷z£j÷x£\ˆ»)Ëfʲ‰²ÜEY;(çFŠm œ·n£ë ·z£Æ#n¡â7n"ÜH]ºr®£œk    ¿÷FÕ ÖPÎÕ„ë íÞÈzÄuÞÈÄ*oädÄJoäĵÞÈs×x#'!®¦´«(ç
Êr¥k;òˆ®,ñë°ŠÄ5ç&>úê~Ô'Õç%zQ;P=¨ÛQE݆ºu
ê#¨£>„ú ê¨÷£Þ‡z/ê=¨w£nFÝ„z—jvâÔÛQoC]z+ê-¨7£Þ„z#ê
¨ëBg'®Eý=êÔÕ¨£B…Ÿ„ãp$
'³!‘-óFðÛñ
o8_Z
ó½¾´æ.!´Zæ."\Høa8a˜WÏQD($%!ò    y„\¯Ž¯ÓB6!œ` è  :BAëÅIéd‚š "„BJ¯–OµÂ5   ùÔ.Ôè_¡~‰úNç ¨E}õ=ÔwQßA}§å/¨o¡>ú Ô}¨{QG½§âÔN¶œ<½ÄkàK~19ga!áRBa4¡„ü0Šà"FFУ‘„Ž=¢(
^Wâ}Oˆ¾Ü    p UúraÍz-õ¬†0ž0Žp.¡š0–PE8‡PI¨ Œ!”Ê¥„dBuÞBH$$Ì„x‚‰Gˆ%ÄÐ0£    F×Fd7êO¨'P£þˆüê÷¨ß¡C=Šú-Îê?Q¿Aýõï¨CýõÔQ?ÂÙ=ˆú2êK¨/¢þõÔçQŸC}õ ê3¨¨»qÆw¡>†ºu êF>ûB7ùx)ár¯…ØlÂä–Y„™„„fÂtB¡‘00•0…0™0‰0‘Ð@¨'œO8à&Ôœ ¹:‹IÈ "¤Ò©;ÁFs“B°äA$Fw$¸îAúP{P?GǾ‰úgÔC¨o ¾Žú'Ô×P_E}½ õÑ–xµèH¼Š9WT,w_¹e¹{YÅR÷[–ºÕK‡-­Z*ª—š—-ݲôÝ¥ŠË+–¸/Û²Ä-[¹DP-®Xè^´e¡[½i.­hs×µ}Úv´MŒl«k›Ñ¶ íæ¶ChPÞ×¶³í@›ØéÛï
o:¬|yÛº6!Óhc:nNjS‡•/¨˜çž¿ež[6/ž0ìè<öá<&dÏcãç5Î0׎y)iå<÷àyƸrý¼ìy®yâ%-îÖ--îq---ËZ6µ<Ù"_Ö²¶EØŽ!ÁÕª-¿¸b®ûƒ¹ö   >Уî|^QÕ²Wè_
=.»ð;tÄÇîÙ[.pÏrÌpÏÜ2ÃÝì˜înr4º§9¦¸§n™âžì˜èž´e¢»ÁQï>óŸç¨s»·Ô¹'8jܵ[jÜãçºÏE{µ£Ê=vK•ûG…»rK…{|ã(w—‰‰x‚@þ¶&,O8’ S7š[ÍB«ùCó³Ø$^Xfbº¸eqkãD^ºÄ&Ʈݻ=V®“¢¦5|y¸ÐjXn²
.Ãk†
20l6ºµºMºí:qœnšîkO'Û®cÛÞ{5L6-¬%LÔ…ñ¸¨w…9rÊuÚD­kŒS+wj‹µã´âZ-si¹å.mJjy±fœfšFܤa.=½ük•O%¸T˜ðu¨/Tð…2™…1þÇl
Cpnv²¨ÄrñŒÿ!TŒ­ƒºŒªN¥¯¶Ê2~’‡­òØ&ð««f¢G±Êê;û}C F×y"ùgëRüš5kÀ\Rå1O¨÷Š›7›Kª<ËyØå’Â>ÌÒ1u~Ûüù
2ægàuê|´,hÃ_    ¯È¶<eÁ|À,gžc>G›”i~Û´6¬Ð<_2óØT)Ë™êø¯ÊGòßö[6þÿ· .d¾ªç÷_ˆ|1à:3mªôµå] =7õûžÁ•øs lÇàqx
^„7à[¦‚F¸ž„OàKø'œÀûVÉ¢X<K?ûoiüœô\%Ÿ
Zq?( ÀwÜ÷EÏþ/p{ëg¹ cÑ2{ŸÅîë:ÙÖsSOgÏ+
5襲zá%´a]¾ãB1û
x\XÉÃR‰#Ê»z¶÷lÐV˜ m°Ã¸–°®‚ka%¬‚ëÐË0|=¬†5ð{X
ëà¸n‚›á¸ÖÃmp;l€èÇ;á.ØäOãñ»ðçV)•§ÜÀðy/Ü ÷ÃðÆAïo…GÑFŠoCËf¸­ •çâ¶íøãðÂØ‰sFñ@¬öÃ.ØÜƒ³¹öÁà œÇý8³OK6n   ÄÏœ“®ÏÀxžƒçáø#®Œ—àe8¯À«¿*åÙ^
½‚×q­‚?Ûð¼
ïÂ_áø>ÆUwø”ô¿`Žw0Ïûþ\a®¿Á˜³
sR>Êóž”ú¹TÃ!,û!|ÊBààø0ÄgïVi†n—æ‘ÏŸû$?óùØŽq>CöÎÍ6ôñ6œOãá
þÙxóv  þ;½×^ñÏù{æá¾à) ý¾xÞ?¼ž'z˾$¥y¥rO÷ÖÚçQáŸûyç½~>üü]òyRû¼Çs|Šy¸—y}û1–%ïó²ÜÞ¿O{ ã_àîp=Íù•4_Ág½áÏüé]ðøŽI×#ð
î'ßÂQŒ‡–#;Õz²å{üù~„ã8ƒ?Aw¿X÷I)ÝЃsŒL`"ôô…ú¬’ʘœ)pO
a¡LÅ4L˘W”'¥¨{S§¤hN“*YÂY‹Äý2šÅ°8fÂ}ÓÌX"KbÉýÒb{S,˜be)ÌæO3J%c{Ë&bŽè~yÓY6[ˆWþ}.'†sX>̆°B´da<ãE˜–-±ÆÃt¸ŽË?^Æú#qWéøµ»¶üˆ‚;|%=÷tïw±:ö2z$|8S3l–O…
å­¾ïX²ïùßaÙqßa–ã;
*q³8
ïƒdcár|
„žù⻸c‹ „B¨†s¡nhÙ¸­±—v––†d)ŸÀ¨ ö„àôÝéŠ Z“©Ø:X±Z¬1T+W
uPÜý×÷ŸÃËÁðBçAæ|¿ëÍ.}÷s†Bgס®ìfH2H&(•
…5Ù!NµäååŽçÛ­Éa‚dË/2RÌËMÄÈ€e¤ÀãL|÷§qbYwа8iØ„9˰E'F„„ˆ‰ Z[žEWUm-H‹“ËB¢<D™ZPbu/<'ùULj¼95F…4Ç#»Ÿ–‡ÿ§<ìÄù²Òû„Ï
ëG¦(kÕ‚<4ä䄨”œøUZVfŠŽ‹W†ÂTƒ*šºo³E«TѶ¸x¯ËÖ==í;.{F É`‡÷ù3²»~¤ø>ߩֱ±ÖNßç.3Ù4ZkŒŒ,ÌhW«¬É*Y™Áj·á[§+Á¥

5šTsŠÕš ÒÁš£7׆»ånˆ)...jÈ3 c§M’וËbS§ÄÌÍ[ºòÀs`ê
fçà´i`㣭윌Œ›ÑHs–*&)ÃDk²Ý^0„ÑDE+­b’¬C£0ÍÉ+LÐÈÎ•i̓3ù‘

[«Ð[Gæ
+O5(žf»YËô”AQr1T¯e²î°µL=È*»Ü¥Eµ1â¹îwðõdœï+™FnÅyùÕOÏCİ&H»„vþ¹AÄY'›¸{pv7eó\¡çápâº3uó
Ãeˆî1íû•å³sl‘a´lóÃ

pàŠ(ÿ
åk7*2AàK™;D¦*cñ¤¶ÒkÞ¼u|ý]ï_S0Ã]jR)D™*,T稜Y^½Øé<ÿ²êòY•N­J";k
NI2ÖÞ{ôžû<:1Ül7…ÇÛãÅi¬Öâ¶ fÏ{ð¢ÁIi–˜þmê5 ²ýxç†C"´—ž„a#îqÂ
1þ1Æt2‡+4¬Æ$
ÏÄ?qÉëøðº2Š»2Ý¡¸lβ ú‚֤߯dû`C~A^ŽYž~°¸
dû§<úãÖž—’²²’ØØmßÜ^Ï‘Œi·,¾æº‹nnÎ6x»7W¥fÊfg¦ÖlúòÞÉw-õÓº¡—<„³Ž#Wãˆ2áQOG\j§p£Ka‰°àˆâb´Ø¡¸Çñ    'p—–UÛíŠØN·c¥nkkR¥n§òÏ{\оnã’Îà£u†:z¾²M»þ5ÒÒèii$N
âàTºÐîK¹g„kCÃTr9.ˆž\¶2TÇúОÅìu¾ ·,59I›š€—ºç€:·2{´ªç&uL*ÿ6óßq±ý•
»ýþRFt
7»ŒZ3$˜•i:V­ŒÑhÙX¥^ÁÇÙùá;²
ñŠN߇;0‡Bl«èd“vº’kb¥ Gè_÷ÙC¡ä0—á?Wmï:êï§À®ð$P>j`kBÃÔr)<_“˜›jÏKТ›¸UvOBzŒ¦ç>ULZBBZœº'A­W+x‘Ý’™ªŽ„¾ªô})Û(Obx›|µ#>^ÿt ©º½ÂíÏ—?ïyö|‡Vâ‘N–º39¹Ð9r/s≩ò/ÌZ8!RZ‘ü“K—ó<ÿâà{ßDÉ}¸÷ta$p“ý¯´ðæ€
©`ˆ÷jé•|Œî•õ;Teè’Pm¨¶¨ñšú©·]T4ìw·LÌ<Ïv,<’/Lö˜>6B5ªñ‚9ƒ7{db£çÇÛëÚ/(5ideæA±ª”A)£>8³åáyE‘‘,3« Þ­V#»»²ââ#U
»aSwÇÔè${|­WÙ2</p0pZ:iµØü«&ÅOµŸ*?¹iÕðo‹D§¨x˜EªM‘ü’²—5ƒ
4xäFò¸N“¨4xÐ
8Ú¤3-ƒ;Ž9uåêépãbr…þÚª·¿´hû¯_:¢ÐÊ–irí©yfmO¼&Ö°6!Ïžš› aŸjÍy©öÜmŠJ¯R(ð"¨»Â²ç¡{7&Ÿ²[ЧQð)7?æRék©¯ÌÇw÷ø€þzÆnÑú“˜ËûÓ׋¾–ý38[˃¦À‰“-ÜŒç©J¸ »,<·#33*´SxÙæ‚¨ÔÚ$•ÞT«ïs[!w}¿ðé0—wÌ¥>]®Þ^Úí©ì4Nõ?{DE*”Œ²‘êÄ‚ôQ…±ÊžÅ§xö2e¤%75-?QÛs'»Êšª6¨*¬uV÷†Þ­â5SÝý¶`×T2´ª)©=ÎîÝé&ðŸOu8ú8¨ø:
·[5„êj£¤ÅÅÿbÑwD0çAiˆgJxtô.¾íÕáq êÞž”冖­Gƒüâ„t“†õI9ñµ:6fFq  žÃá-ê›K­ÍÎŽv:UŽ˜˜¸NaÆÎ”F…ÝRP«QÇìeY¸Ð¾#;õValnD.
EëùUK×hܵŠÄ´šDwïêç‰ü®Á§ÃÜ\º—yz~1ŽpæåòpÐýG°j­Œ?‚âÃ(³8/¤§Q–Ç׆äIÅ%js¶-%;^#ô\'
OÌNNÎN{nÔ   N´›ÕY[%Ù
‹‘±dmbúP[‡)5¶ßâ7Ÿø—‚(ç
$þÄ'½ö+ó
tÖÂA?u‹lPQŠ.KùOdY§<FÀš…]©:•C§‹äß%Jpä"vBÂÐÚtî‡p]›žæHÖèyH£Vè:ÙÒÝxâóÓÒÁÿ¼X*ÒMÑe(,ÌÀí¾°oÿrÈÙÞ¿Ê€‡É±xÛYƨSÝ‘ FçÙû-WY§Þd‹hµæe¤Åö<_-Èdj“#ÅêˆS
I[cÏOO‰øÉ˜‘fg¢¨‰w¤$;bU“£q³
³ç
S
–«X;¶{’ŠîC•ìz§S›08µ'5c„ñiå·•   ÓTz\®ÁH€ñ¾/ä±rDàSOïSo¤ð4>õ&àU±}Ïn“ñÆ›`¡7!~ãÉÏ;ÍSïYèw¾^I¥‡Þ~ÿòØñw}qûún­Bn¸é£õÕ=‡-ÕË›VŒO²Œ]ÞÄ)ÜzwOÇ”q÷ßrç ÏÔsïù~׬ Žª\rï¤ß=¼¨¸âòûù“=®¢j¼—
 6Òwê†tÕ^ÿsÃ!ÂFoz±AúÞ¤CxVÕw2Û—+zDÀ0¢“¥ïr%ÕD î¨8鉵+£Çž{¨Kzt(DtüªJúÝ‘©¢C´ZOzt3F'ˆü™N‰
&ÚhdùöT»=ðŠP’P”;(׬‘-ˆJËq
ªõ?|e—Wb:wéùŽ$×Ôáæ¼¬´ˆ¹:U϶¢’ȼ¬K¯Z74>Y­Sá3hXRÎØ¼¸žˆÞ»r}fªLTœ¿°zÔ…u##ÂÒ
+>»Uœáª—+zn0å”ò»´Ø÷>ŠÛ ööñQÂúÇRrSr5&þmVÐ8ø¾5T,k—aþ‡ <2¼“e¹4£Lòô Fi¥ùŸ ûV
¿«2ôŠ¡ïâ7ªô¾Ñ%½|:þ3µö­EY`-Òç(…?~òË©B\=vţͣç׋SËð#,o|KeöØÁñÙÕÓgO¯Î.kÛÔà˜<~d¤R.ˆJ­Z]>yH†+#Ê9nÆìçf³«gm¸ ߘ˜—ãH§NJKŠ4ÒžYœ“‘=½ fÊš)ް˜„Ȱhkœ9-NŸdвå›3(}>z]ƒo+_âªN†    þ·PàÛÊŽƒ"<à†péeÁ\£  ¼,ä2çîƒ|‘þ«L}o}ObûT:M¿”^®öñ³”?ôìSÑË—J\Ç_·d÷˜Óc5'ºzR„&6Ýœ0(VÍ_°ï«}_ȶáÉŸnêû>°ëð^4âs¨Fe¯Õ×ö¾,Oî7mÅmÆ¥>sžþ;KßS€Oé·Ñn+_õŠ%O_;FzÿÁGû˜æ#§—Ú4|X9ø¤óñÂ}+JG\¾çr±÷žè–U_rŽÍ^ya©¨î}ÃeøŽ+#qDÃá
ÿóB¨S¥áÙÙ<¥ª]ªášè­ÍjÕ$w
·¸Â]1š!µƒj³­jñ¤‹p±Îé¡.ÖYX^£?$…Ã
iqéÎX’o"þ³\´ŠSÝn—>`ÁÃ&/Âÿ“?d4*”òQƒJò
ËÒÂå¯
 äá©£‡aDÑóN¨[˜ç¯?a‡eÚÄ‚¬ìÂÄ0ÙQáQŸïÌÌ1Š¡ÿCÜ—€ÇQÝyÖÙGUuwõ}ßÝÕ÷-©Õ:[’­.IÝ’,ù¶,[¾À€ÁÆÆ8€›#B d’l˜›Lö›I,Év'&äÀ“L˜Í“l Éû±ÉÄóM&Äjï{U}I–dCfv¿þ>wu«»ë½ßÿþ½ÿ{0ÙU$©²›ð–Ë/í¬pMì÷…$Nëµ—Ýø?jM
’P˜t—ƒøÏY£‚$
?ÄŒ~Ù0
#Åšß0bOÍ*ì[X|SyÆ?a•h&$Â<50ãµ,ä^¿Ä¾
áü’?Bá7´¶iêƒ1ÓÖ–­Oû¤˜   :™ÊÖÒÆžl<ëRIׇô˜6¨}ŒT9Z"¹^#£Aÿ¹’«Iýö]HO´FYù^|O{Ûž8ÚÅj‚Ô‡}E¢`FODDFΚŒ†S”±uçx‡æ@Âøù³ç·‡e”ÍËa4£ÙGîCÄ*ÆAü0“ÐäØ×ÅçdªÁ–2†„ÈFh™¡3›j·ÑD_eO7 ÃXJ+¥ÑQ‰Úד u†, 
ÿ>ö1Ô?í
êI\ªR<WV‚tLb{ðO±ZŠ@ )£f¾T)Bùl¹òÏø‡‰N¤éž5!
ØËƒÐÖy—µ{„N¾=XÕœK¤zSX*ZFo:#Ýô.¼2uIø§Êú—TÉ+}ø‡åö¿µõÈ·Nó¥G¾s82Yh·1¤L!c|¹ž}žàÐLOK©=ÀH) þÅPÒn3©Ö<üÂC¿ôØÒè°¥ÒvÎDY]ÖÔ–{Š[˜˜íf™!%sAˆ‚ø½ dö¾ 0{÷BfMÎ*w?’:CîEz/õ^ªú™Uy¹ŽuOýÃã•7¡íxìÅdž+pó‡wÜtÓæÛKæyê'÷wú8ü   Η?ù½GÝ^ØÝtÀŒ‘D‘n‘»÷¼Ü¥ui¹¥Œ*ϱ*pf¨zV±h‰úŒDPC``/Öé¶h2ýRš,!\ø(Ö. üS9‰®•)å!WÊ*Ð À[äN«ßH‰c–8›Õg¤ÞV‹ß ¯TäFÁjOƒ¸CÑ{‘ÌdMŸ=o£i+b³’@æÔj#QF[ç\»P§…ÊTä»Ä1£:Éâ.ÉrpŠUWþ]†F’phÏ‚ú“Þ™ƒ·©Yü»­ñ
eô[áP+÷SâÇ(üY΃£Û|å7„ƒè5ÒМé»g‘ ê9ì Æ½¨!/*?gI¯9IÁŽÓŽ=º2Úu&¹¿
r=Ó€,“²LËñ@­ÞF@„y½D*zÛ:d%å´D½edäÄ
éäÆcg¿õ‚ ¤!E;Üzƒwý
Ûc§ÿá©ñõŸþé©â][²z?é¡'·Ü·nãý›£
ÅÏ(½ÏbñéåAweÔì—*¬œôÇ'x鉒Öf×ŪR!<I¡åduîYÏÎ#ÆðSFæå>ß_ÓDÛ\7åb ÁÑÅQ9
#\Aù!1ðˆp²N'%*…~²²¯v¿UghO£Çk×Õ±£‚±ë-d[>;O±3Â(Q˜æ-î<
"¶pk…ÞÚÙ¸!þk¹j„B~å
b¿û$ùŒCþ˜ºãL5ýý9¸[;’ÿâÅ^šÅí™ç°»A&Ec÷!„Â~–W †àŒ‡VÛfÔuIJEàY¾ÆÐV§T@ÎŽ¢ÿ9 ÁP‹K-­¼pvA)¨§¹`‹SAÈYEå7hVÆHqa^¸ŒU ïV¤P×…9þo¹¨õòJeT2‚Ö"cõVMåó›Ê¤Q"¢—ÁÞó4Á=¢Z¨  RÅPõÜBð'"™â‡öx]‚½£Õ,T!qxN]
îKÌdãÀ9<WCøòEʬ"J><B;ÂÏGõ± 0ºòr"AÅbžòöåÕˆ§uwÌ@ãvn·}[…THZ%Ôäºá:‚ ²0Éi&'ªqo9rBLc@@דÏÓÖ¤ŸKÚ(¬ò2ÑÞëŠÙTxå5¼Ëq   +ç¾ËÇÌO‰_(œ‘ŽÀ_ ¢
¥I]þ‘ZEÈÞvù¿Õß
EYO.¸pË…;¼ªh¨fg} ÕN$~Æ­›ƒlD<…±µÍÐa#t|øÞf…©Y˜Ä
¢v ‡T€NäŽ—Îæ(q¼)Eí‹p?%5¯»óÃP¹)ìñÄÌò8÷ÓbÿÈ?àÂPEåæ°Ç1Ë7„¢\ýþàÇúƒ|ÁQÁš'#×Úu•mcOðÞñ‰qúÚ"    ˆ€×<¼&d°þÿ²PÿÖÿÀEªöx¡Þû¯Š«Tïĩ£?~àäßž^;žO<ÿ0_yÛÚ33TÜÓkµöìÞ›·aîÓ/?Qìzà¿?yò'+õ<ðÂÓã÷mMf§O¬ÝðàÖDvú>·½ž Úe ÕBê'¹ lT
 7‹¨AxTÌ‘$ã‡ÏúÝLSȆ*ÆÈÁ,SK“Í4~¾óЗî8 XeÆÎÄ94,úú÷ñÊïRqmØ|àH¦+¨ÅÞ˜þèt²ò\3ª)Ý2v`cvdÁ•³–x/Ró[`̇ú¿ÊWçSlDÝ·‹rjèžmu•Îuvs`ðg¡ÚˆF!Œ¿Ê) zµÙÏ–!ª.¦F
Ôóü-ÆÕ‹´¸”xIi÷'üõé|eýÌG÷uXZG[Ìa¿‡Ý@É*ßUs]mwÞ’é
ëµRŠÄ   Šeþ)˜ã4•{ëÓýçóð·Ž´m)´²”#Öø©ÍŽýØ–ôê*ÿ¢ó·@û¸ò<4iY÷
¤;q–káZ”v¸ÑQ&/ °+‚)£6 ¦ž2JŸµ‘=&˜èˆ
VåÑ®.ø«'¹î=ÜsëÓS­7Žç´2  †ËŠIvôø;ÂÆ`ÿúÍëû‚{ÿÓx|ã`š•’8.¥åt¸{<éÎø4¡
7lè¡£Ú”`ÍvJï48ƒ&Êæ±²Î¨Í“
¸ƒ™Â®þáÃãa¥ÞÌ*³Å­“-FÖ0x’œ'.ìˆX.ì ºàBœg„ä9ƒŠ`Ëhvκ›¶V”ÃܨIºÞE%÷5{†»@Ê®¸"S@‰(d8&c@€øn{ìòóu)u‹=°¿" îÿ °í ðXÄ «ìB•}ßYŠ›ag¬
³î]jÖ«•ÎÁž£_»ýà_ífìi?\päÆâñRÖF;’\(a§ÑgŽ|úæŽÌž§Ob jñbáË“ë³V{vt›©½'âCØÀø<Hj1‚Ø‘›÷)£¾ŒÈS´Ñ>c «é ¬ý„ÚH(Œ„ªh¥W¨ð~Lª<=™îAŽ%+K“úl*Ùf§‰?bï
{K4–ÖÊè«£pP¨jðOzC:ØG¡ºü[\ÁjiBªyÅÊ^2
Æ×…l\TÓO.®é?›Wƒ’~&<#æD«^ѯTпÿŠ}’Ty{2]ƒ~%ùüK$ëË·´øÕdårÜÒÑËX)ü{ØßŒ5If4ñCl§m™h&Øâ”³;¸ðQ­Y4}µêòö'µŽ&ZË.àØe5€‚Ô……ÜŸºü? dóˆûbA‚ˆ´9“¶€ ¢„ûªMp]äóya8މÍpŒÖ9£m΢̉LÂD(H1'tˆ4\S_L@Š×Ë\¼‡±QÁãøwͨ­7’jw)%ešš'•öV_¬ÇŽQÙ>ÑæTH¿¬¤Ÿ!•¶T4“ÓÑê·g’>µ„«hÑf«Ì1,EHÔÞzý¢/¤ËT^s8PŸRþ¢
y*Ó`æ4˜ùóB]Ÿ€,Å-³
ÆwqûLðæ wΘ$šIMOEñºÐªµÑ¤¦Õ°cST.jº®l<ëT?À¿
*øL¤­CÏhÐÓ•OÕSê½XŸ/D%S1•;A*¬’á¤h*†®ü¿
F4Píó‘AÐÙ:HG[›gÕ¸ý½5–™ôr
Ú÷˜Èa÷AKK¼/\FMyë/=(þ!ÏG<XÞ3îÙáÁU§ c‡°—¯ü2¯dThÑnbÑ’ý½ø0¤¶órð¢ûÍ<S"S¢JðGÄEÝ©©é)aQ=2uèÒÔ!àe.
¥ ÈdýÿŒÀ¹C…ã¸ÖÖjôq™Öj.S}‡¼žTŒ+Xþáwê"áXHýÈÆÂÑMÉî»ænR ú’½»ŠVX
µ
n¿µsÿS;¢ïîèÞØf.ô¶Þw*Y©”U:ûýC7ó£wŒøÚ½aÍcSZ8£Óg÷:´¡
§·ýLã˸ÛómBDåADu㯂òõÓõÞ­ÀsØa¡wˉ8ëÝi>¸MN;L|å‘ ’¦ÑR**P¤Q¸×.//U{°"õ&®‹éjןõC‹º¹j±X"†bÉ"†Ç“RSÇð¦øÞÏÝœ8öŃ¥VƒœÄu¬škáÓ7î³dJ™–‘vN!g¤Ä×-^“Êè¶°ùÍ>ýü}=J“à2yÍ   Ú_<Áß2ìwrNÊ®"%%ÈcÈ䎹½Óë@ÅOf×!¶26=LëžÃ¦ÈJ#ÓHµçé[
-ÿÖÑûûôn~Ã0Ù"R@ óÔ–bÃ=E%\Â*Á‡…ð×Â+—z3ð1 †‰ZúW„…`ç¢i7çõÂü¥78®ššËã_¢ÁÈqU8q=ñ_ûOoýPÉÃØR>ÊÆh¸v.µ³­öRn£[†â›Ÿ’à:5ëI¯MU±nõ,eNÊíCäó \Ëz”VS۳dz[úÃj|s¾·k߇w-¼N‰e….ô
·Ú  ¾V{‡xCÍáœ3ÞP¼ÖŽ„Åieàð;hKÄmñU·IÖ©oË‘¤9í»ccФZ”äÐQäþ¹£ù „œ\Þpø9l 2ƒ0@>dvîÜmð¥.`çAº’Ÿ¡É›†,e(µíï¿…â¿wOòk Ô:‘6tðìPI]$‹0Ä4¤…V•”˜N.¤ßdë[®zÿ3$´´‡Br‰¶g‚Á·FRyu‰˜¬\CL;÷¿1¡r©ÎXeå=4Î0nPÂÁ¨¥@_­—Š*œç>ˆ¨._Fw1á§h•G[ùÇJLgåG¾JBîANÌ#G÷áelÛ<ŸS‚´m:Ogº3càqTÇm)c‡óÔÑâ»›Þ>Á„rÚL£ƒs·—2 ×wÎ)»yÜ+
”QÛÙ P[öf.¥ë(8AtB;û}PÓ]TCS«ÃŽéõUÌaælhQK¢¹Å.ýºe‹^6[ö=½w÷ÓñïA\uÚçã:—I#•P2‚V»â9GñÞ³[«ƒïÒús~o{@oôÉILDzžäšÔÖìýò NáâçÌ}ѾC“ÉÄ– 7ŽRÆ =›¨š’Ê¥R½ÏMª•Œ”;¶ =›ÈÚƒFª%¶6j0rÞHOe„ž°.ZѺ›}&m»V¤# 7x<ˆp þz²Ghkî÷O%°Ûó”Ö=HçVB®-‚ <”—›†[×ß^Íç•%`dâ2!ìØø``b8—ÀŸhîFiŽÃÀÀê5 ^7MA`YüÊr¸‚fzí_lÛó‘‚™Ÿ˜9Þ[TüIó^Û®¶T!¢×„Ö´XR™6—¸Ì
z×ðÄØé¹]GŸ;Íww¢ÿTk”XhYç&fZÛL¦Užl¢6P; 2ªÒ‚âÕ>G­Ö…gæDZ@1 psãQm³FŸ'`öbT %„`   ¬8Nì °gˆ¯AØe±M>ç]à3‰7¹aÓ%«ÄÔ¸RnbÐ’Ü> ÿcÞV®‘W@Ær©š¼LÚ>¹´}
ò¯W›óòÿ§·ÖU%^÷Š&^ Ú)Iñs!߯¬S}ý»‡’*àØpŒ):¶î?:w¬³çο:pÛçö$ßÁ·N'
    3†¾æ¦ú<Z£Vªq›
NƒJi2ª»ŽóCG¿}j°ÿÈ3Û] îòuO&€2_yû$ˆ"]È¡ªL,b…A>öS D̵,\¹Ñ’î<—Oò®"Ë×Z.Ò0‚_Ì,\Ì\zV¨ëûÎÒžÐfßÓ¨ÚëG\    À>IÈ(˜=FkÀÂ|A.¸’/0¶´Ï—²Ó·iµ$xëV_éèºÀ`fùoÛ½Z©T&Uû;#¢KXˆ×<;ö’è F¶>²5®P)Ìâäqd'²u¾PðLúàÁTqÆ ½2µÞ£ñh\&.ÐÌo)Lòcð¢wÐkH€yžÏñ¡¢­Èð#{)†ÙŽ ÏEèz3Y] ©»Íåfî^±w¥ñewãmâ
ÀÆ¥ïÈ d@‘®ùb-VVÎ2öÔ"Œü¥#ãÑA3@ßҘܺŽ4:Â•Ž¬‹Ì´JFï$ƒ™„ŸÜp5lWCØ¿åá­qø-sÀžß“Mƶ>¼5~_i
ЏJ†€¦DvÏg2Ù t~‹Ã1@C€Æ²àé\©00£5³ Wœß7<=€
8YÈ‚°æÌS%¾»ãÍÕÔâ+À+$&/fDŽb,X´åÔQ"yZg¬&#êjV*`M:h&ŽÙÊ#¥ü¡ˆ1ÖåU~\sO¿ù›qn:µÝÚÓ1)qTnN…|à{ý
m;QòxVIOK ¦¸ÆßZQ‹K[Ù#¤r9#—ƒ@ ýpE+f¢ˆˆ¿ìq ×O!Ï?üð®ïxŸ½mr²§´  šû®§vêvG^ÞÃôìÛ"PÎã‡oû8ÿ8Ôñûwoº
ÊAuœ?Pœ*–x£%WôÃ=)¥y˰z° >u†,¾ä7l ʧš9ÂôCìÈJWÑV z•ôÿ2|öƒýŸ ’lÔ¤ P™5ô'íLßCCB…`OŠ‚?Ç%ole„€h‡‚–{£Q´ê)J  MíM¦¶Ä-oj„
š —LA/•×ꕃø3\Íu†>°eÂxýôA‹l@ÆÏ¬E.`ßD(Ä  lqÃ:Ô¶dt_‚ØUpbÕ9ß–T¡ª2z÷9²çŠfÁ_¹4Å^ªÉÄSkþýÕ
øuHfQ¡«‡KÁ®peC¡v·Bán…².…¶åņå/3Ä‚ZJb4+QémúÖ$úÇ?ògœ
…3ã÷¥]J¥+ý§–Õð¼3´Òàµ$„„.Ð퓌ˆ@8ÍG§¢7#eìÙsT<rÂy†'¶Å`¼tçŽñUÔæHrà0´¤]…müfx14så`Øà3Å õ°K⩬µ²ëïÛÑ4/¥¯Šñ*pË„‘«e Q¸³áPÖ­Tº³¡pÖ
dPµ‚Êü5t~-WUy³[—ƒÑˆHŸ4Dd×µ%Ñ?qëÑ
ê­T^w–‘ ƒÒ ÝŠÜ9¿fM¢‡‡,ÆzD*f â^0qSBZ5³:ë½eìü¼yûæõíÐ
vøõÐÿ©·ó£Å>\”øG‘Bkdl5&5y;Á×-¤/Õ=Ýr;ôËÏ FáwÀX‚RpKŸxªaU› Úžjgi£vÆií‹Fô‹#Õb
‘ª»#\TämÐC]þÝ2Õ,C+A9°´l~ÿ!«¥î6ö ä³ß@NaçÎ~tzºó¦.èøHÄàOÀXÕysç“€äDh±
Reasons:
  • Blacklisted phrase (1): ¿
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: sifiso makoma

79722424

Date: 2025-08-01 11:21:32
Score: 5.5
Natty:
Report link

Do you have any options to keep the database connection alive between calls? That is normally done by establishing the connection as a global object as the application starts and maintaining it throughout operations. Having to create a new connection for each transaction can be a major performance killer.

Reasons:
  • RegEx Blacklisted phrase (2.5): Do you have any
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Keith Higgs

79722417

Date: 2025-08-01 11:14:30
Score: 1
Natty:
Report link

Vite options should now be set directly in the regular Vite config file: vite.config.js/.ts.

Put this in your vite.config file

ssr:{
   noExternal: ['chart.js']
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: SimoneMSR

79722416

Date: 2025-08-01 11:14:30
Score: 0.5
Natty:
Report link

Even though it is an old question, leaving what worked for me here in case someone finds it useful.

The project number being referenced in the error is not yours, is the project that colabs run over. Therefore, you need to change the authentication to:

!gcloud auth login

To authenticate the gcloud command

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Alex L

79722414

Date: 2025-08-01 11:13:30
Score: 4
Natty: 4
Report link

I am trying to use below -

capabilities.setCapability(MobileCapabilityType.DEVICE_NAME, "Android Emulator");

but after typing MobileCapabilityType system is showing No default proposal.

Whats wrong here.

enter image description here

Reasons:
  • Blacklisted phrase (1): I am trying to
  • Blacklisted phrase (1): enter image description here
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Nitesh Kumar

79722413

Date: 2025-08-01 11:12:29
Score: 0.5
Natty:
Report link

The combination of OSIV (Open Session In View) with network delay (RTT (round-trip time) between the app and Azure MySQL) can cause this.

Disable OSIV, it should significantly reduce Measure A times

spring:
  jpa:
    open-in-view: false

Also, to avoid Spring AOP overhead issues, I would recommend using TransactionTemplate instead of @Transactional annotation.

@Component
@RequiredArgsConstructor
class TransactionalTestingService {

    private final ShopTenantProvider provider;
    private final TransactionTemplate transactionTemplate;

    public Object doSomething() {
        // Measure B start
        final List<ShopTenant> result = transactionTemplate.execute(r -> provider.getAll());
        
        // Measure B stop
        return result; 
    }
} 
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Transactional
  • Low reputation (0.5):
Posted by: Oleg Cheban

79722411

Date: 2025-08-01 11:12:29
Score: 1.5
Natty:
Report link
SELECT DISTINCT
    object_name(object_id) AS StoredProc
FROM sys.sql_dependencies
WHERE object_name(referenced_major_id) = @tableName;
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Richard Smith

79722387

Date: 2025-08-01 10:55:26
Score: 1.5
Natty:
Report link

There is a way to check it outside of the SP.

If you know columns of the result set of your SP, you can check it by using a temp table as follow:

First you need to create the temp table with columns same as the result set of the SP:

Create Table #TmpTb(Col1 varchar, Col2 Int, ...);

Insert Into #TmpTb Exec SP_Name parameters;

IF NOT Exists (Select * from #TmpTb)

Begin

-- the SP returns no row!

End

Reasons:
  • Blacklisted phrase (0.5): check it out
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: gyousefi

79722384

Date: 2025-08-01 10:49:24
Score: 3
Natty:
Report link

Just had the reverse happen:

compileSdk shown as deprecated, changed it to compileSdkVersion and the warning has gone?

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: virtual-adam

79722382

Date: 2025-08-01 10:48:24
Score: 2.5
Natty:
Report link

I found the issue and is due the packages mismatch. The above code is from library so pinning the package versions fixed it by adding those to resolutions in package.json

"redux": "v5.0.1", "react-redux": "v9.2.0"

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: sharat kumar

79722377

Date: 2025-08-01 10:43:23
Score: 3
Natty:
Report link

try to reinstall Driver "Microsoft.ACE.OLEDB.X.X" it work for me.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Abderazzaq Es-seddyqy

79722371

Date: 2025-08-01 10:39:21
Score: 2
Natty:
Report link

import shutil

# Copy the logo file to prepare for Google Drive-like sharing simulation

logo_source_path = "/mnt/data/AK_MUGHAL_logo.png"

logo_drive_path = "/mnt/data/AK_MUGHAL_Gaming_Logo_Talha.png"

# Copy and rename

shutil.copyfile(logo_source_path, logo_drive_path)

logo_drive_path

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

79722354

Date: 2025-08-01 10:21:17
Score: 4.5
Natty: 5
Report link

Replying on reviews via API seems not supported. https://developers.facebook.com/support/bugs/384813126273486/

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

79722353

Date: 2025-08-01 10:20:16
Score: 1
Natty:
Report link

They are part of the core register set of ARM Cortex-M (R13) processors, selection of stack pointer depends on if the program is in handler mode where the main stack pointer is used or user-defined thread/processes where there is a option ither to use MSP,PSP.

when the MCU resets it starts with the top of nested vector table and the MSP will be the default stack pointer as On reset, MSP is initialized from the first entry in the vector table.

In FreeRTOS, for example, MSP is used by the scheduler and PSP is given to user tasks.

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

79722351

Date: 2025-08-01 10:20:16
Score: 1
Natty:
Report link

I had the same issue when using docker on my mac running both pgAdmin and postgres on localhost. Solution for me was to use the container name as my host name in pgAdmin. Apparently pgAdmin is not able to resolve localhost to the correct container.

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Lennart

79722347

Date: 2025-08-01 10:18:16
Score: 1
Natty:
Report link

Use DENSE_RANK() to generate unique IDs for address in silver_address, then join it in silver_people using city and country. Example:

sql

CopyEdit

DENSE_RANK() OVER (ORDER BY City, Country) AS ID

Join to map Address_ID for each person.

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

79722342

Date: 2025-08-01 10:13:13
Score: 10
Natty: 6
Report link

Actually I am using Darknet yolov3 to train for my custom dataset I am unable to train what could be an issue anybody suggest I am following this github repo https://github.com/AlexeyAB/darknet and to download weights and .cfg file I am using this repo https://pjreddie.com/darknet/yolo/ so please guide me and let me know where I am lacking my dataset consists of 61 classes I am configured all the things according to my dataset thank you for understanding in advance

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Blacklisted phrase (1): guide me
  • Blacklisted phrase (1): what could be
  • RegEx Blacklisted phrase (2.5): please guide me
  • RegEx Blacklisted phrase (3): thank you for understanding in advance
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Vikas Vikku

79722340

Date: 2025-08-01 10:12:12
Score: 3
Natty:
Report link

It is possible, if you have some API that are readily available in SSRS to consume or generate a report. We can use the built-in REST API to interact with those APIs

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: D.Stella

79722338

Date: 2025-08-01 10:10:12
Score: 1
Natty:
Report link

Try this php application.

First it saves xlsx file to the server then you can download it by using appropriate headers.

https://github.com/shuchkin/simplexlsxgen

Reasons:
  • Whitelisted phrase (-1): Try this
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Hakan

79722322

Date: 2025-08-01 09:50:07
Score: 3
Natty:
Report link

It looks like your folders in lm1b file are shared with other programs, lets install tensorflow from stratch and try again

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

79722310

Date: 2025-08-01 09:43:05
Score: 3
Natty:
Report link

I had a simillar issue which i just managed to fix by passing the prop mode="auto" to the dropdown component. Now the dropdown does not show center-screen on mine.

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

79722299

Date: 2025-08-01 09:35:03
Score: 0.5
Natty:
Report link

As, of now, the docs recommend setting the workspaceFolder config key in your .vscode-test.js/mjs/cjs file.

For example:

// .vscode-test.mjs
import { defineConfig } from "@vscode/test-cli";

export default defineConfig({
  files: "out/test/**/*.test.js",
  workspaceFolder: ".vscode-test-workspace",
});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: xxdavid

79722282

Date: 2025-08-01 09:12:57
Score: 3
Natty:
Report link

My name is Mrs. Marie Baker, and I would like to donate my inheritance funds of 8,700,000.00 million euros from my deceased husband to charity and to support the needy and poor.

As soon as I hear from you, I will give you more information on how to realize this humanitarian project and get this amount transferred to your bank account. You are instructed to promptly submit your personal information as follows:

Your full name==================

Your country of origin=============

Your address =================

Your age =====================

Your gender ===================

Your phone number ==============

Thank you and I look forward to hearing from you soon.

Have a nice day!

Your sister

Mrs. Marie Baker

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Contains signature (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Filler text (0.5): ==================
  • Filler text (0): =============
  • Filler text (0): =================
  • Filler text (0): =====================
  • Filler text (0): ===================
  • Filler text (0): ==============
  • Low reputation (1):
Posted by: Marie Baker

79722279

Date: 2025-08-01 09:07:56
Score: 0.5
Natty:
Report link

Modify to capture errors:

$process = new Process(['python3', base_path('login_script.py')]);
$process->run();

if (!$process->isSuccessful()) {
    throw new ProcessFailedException($process);
}

return $process->getOutput() . $process->getErrorOutput();
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Rajeev Singh

79722275

Date: 2025-08-01 09:04:55
Score: 1
Natty:
Report link

I have tried everthing, but I still got this. Finally, I tried jdk11 instead of jdk17, it worked all well. So this is a bug for jdk17 and hadoop 3.3.6.

btw, I have tried the networktoplogy, rack things and all the other solutions I can find in the internet.

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: jcyan

79722270

Date: 2025-08-01 09:02:55
Score: 1.5
Natty:
Report link

if you go to that page inspect on 12a you can see its class name which is

fc-event-time

so just go to your css file and add this:

.fc-event-time {
  display: none;
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: ashkan ahrari

79722264

Date: 2025-08-01 08:49:51
Score: 3
Natty:
Report link

It's just that Fonawesome servers are down. Nothing more.

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

79722258

Date: 2025-08-01 08:43:50
Score: 4.5
Natty:
Report link

Here is the expectation with all the different cases

enter image description here

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

79722256

Date: 2025-08-01 08:42:49
Score: 0.5
Natty:
Report link

Anyone getting the argument of `across()` is deprecated error may like to try...

X %>% mutate(across(all_of(lead_cols), \(x) str_pad(x, width = 3, pad = "0")))

or more simply in this case (noting the overworked variable naming)

X %>% mutate(across(x:y, \(x) str_pad(x, width = 3, pad = "0")))
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Big Old Dave

79722253

Date: 2025-08-01 08:39:49
Score: 0.5
Natty:
Report link

The above solution worked for me, but without version.

<dependency>
    <groupId>org.apache.logging.log4j</groupId>
    <artifactId>log4j-1.2-api</artifactId>
</dependency>
Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Beejal oswal

79722233

Date: 2025-08-01 08:26:45
Score: 0.5
Natty:
Report link

use generics:

interface A {
  a: string;
}


function createArray<T extends A>(arr: T[]): A[] {
    return arr;
}

function pushElement<T extends A>(arr: A[], value: T) {
    arr.push(value);
}



const a: A[] = createArray([{ a: "a" }, { a: "a", b: "b" }]);

pushElement(a, { a: "a", c: "b" })
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Alexandroppolus

79722230

Date: 2025-08-01 08:23:44
Score: 3
Natty:
Report link

Note: After developing for couple of days. I found out that to have Pinia display I need to click on this App 3 inside devtools and it will install all the Pinia as shown on the picture below. I have no explanation why it behave like that but at least I got it showing and working as usual now.

Picture

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Clement Koay

79722224

Date: 2025-08-01 08:18:42
Score: 2.5
Natty:
Report link

Mystery solved - I just needed to add file-close at the end!

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Kevin A

79722220

Date: 2025-08-01 08:14:40
Score: 6
Natty: 6
Report link

can you explain it cleary the approach using neko.
@Sean DuBois

Reasons:
  • RegEx Blacklisted phrase (2.5): can you explain
  • Low length (1.5):
  • No code block (0.5):
  • Starts with a question (0.5): can you
  • Low reputation (1):
Posted by: Srishma Reddy

79722207

Date: 2025-08-01 07:56:36
Score: 2.5
Natty:
Report link

Copy the C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe amd paste it in the shell path in android studio open settings , go to terminal , and paste the powershell.exe folder path in the shell path after that your issue will be fixed

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

79722196

Date: 2025-08-01 07:46:33
Score: 0.5
Natty:
Report link

For Windows, below command run in command prompt (doesn't work in PowerShell) at the respective folder gives the row count:

find "," /c yourfilename

Reference: https://www.reddit.com/r/excel/comments/l7gue6/way_to_show_number_of_rows_in_csv_without_opening/

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

79722191

Date: 2025-08-01 07:37:30
Score: 2.5
Natty:
Report link

If you're looking for the best platform to get online degree jobs, you've come to the right spot. GCETL is the best platform for offering you the best online degree in education.

https://gcetl.in/blog-details?ab=Top-5-Non-IIM-B-Schools-of-India

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

79722188

Date: 2025-08-01 07:31:28
Score: 8
Natty: 5.5
Report link

I'm facing same issue, any update here ?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm facing same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Fabrice Mpenge

79722178

Date: 2025-08-01 07:21:25
Score: 1
Natty:
Report link
import { makeStyles } from '@mui/styles';

const useStyles = makeStyles({
  root: {
    background: 'linear-gradient(45deg, #FE6B8B 30%, #FF8E53 90%)',
  },
});

export default function testFunction() {
  const classes = useStyles();
  return <Button className={classes.root}>Hook</Button>;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: sougata ghosh

79722176

Date: 2025-08-01 07:17:25
Score: 2.5
Natty:
Report link

In case someone is getting the similar issue in the Flutter. You can make the following changes to your app/build.gradle file.

allprojects {
    repositories {
        google()
        mavenCentral()
    } 

       configurations.all {
        resolutionStrategy.eachDependency { details ->
            if (details.requested.group == 'com.facebook.android' &&
                details.requested.name == 'facebook-android-sdk') {
                details.useVersion '18.1.3'
            }
        }
    }
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): getting the similar issue
  • Low reputation (1):
Posted by: Shehzad Ahmad

79722175

Date: 2025-08-01 07:14:24
Score: 1
Natty:
Report link

Basic (username/password) authentication is no longer supported on office365.com. You need to set up OAuth, as described in https://ecederstrand.github.io/exchangelib/#impersonation-oauth-on-office-365

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

79722172

Date: 2025-08-01 07:09:23
Score: 3.5
Natty:
Report link

The issue was with the firebase app/analytics lib version. Upgrade to 22 solved the issue.

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

79722171

Date: 2025-08-01 07:04:22
Score: 2.5
Natty:
Report link

You might not know this yet, but the mermaid documentation refers to new expanded node shapes in v11.3.0+
ref: https://mermaid.js.org/syntax/flowchart.html#example-flowchart-with-new-shapes
e.g. C@{ shape: docs, label: "Multiple Documents"}

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

79722170

Date: 2025-08-01 07:02:21
Score: 2
Natty:
Report link

Looking at the AWS Lambda documentation, it seems that the error is related to some optimization errore: https://docs.aws.amazon.com/lambda/latest/dg/troubleshooting-invocation.html#troubleshooting-deployment-container-artifact

Error: CodeArtifactUserFailedException error message

Lambda failed to optimize the code. You need to correct the code and upload it again. HTTP response code 409.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Stefano Romanò

79722161

Date: 2025-08-01 06:53:18
Score: 1.5
Natty:
Report link

Careful with NextJs env setup: don't forget to add NEXT_PUBLIC_ before the env key

NEXT_PUBLIC_DATABASE_URL=postgres://xxxxxxx
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Shafiuddin

79722160

Date: 2025-08-01 06:52:18
Score: 1
Natty:
Report link

What you are seeing is the expected behavior with requested QueueSize = 0 (which effectively becomes QueueSIze =1 for data monitored items as per OPC UA specification). It means that only one data value is sent in a publish cycle.

The client needs to set the QueueSize to a higher value if it wants to receive more data values from the same monitored items in a publish cycle.

Reasons:
  • No code block (0.5):
  • Starts with a question (0.5): What you are
Posted by: ZbynekZ

79722154

Date: 2025-08-01 06:49:17
Score: 3
Natty:
Report link

A Complete Guide to Fitness, Diet, and Muscle Growth

Introduction:

In a world where time is tight and health risks are growing, prioritizing fitness is one of the smartest investments you can make. But for many, it starts with one simple search: gyms near me. Whether you're new to training or returning after a break, it’s not just about joining a gym. It’s about aligning every part of your routine, from workouts to nutrition, for long-term success.enter image description here

This guide walks you through everything you need to know: how to pick the right gym, maximize your gym membership, incorporate treadmill workouts, and which diet plans, like keto or other weight loss diets, actually work. For those aiming to build muscle, we'll also cover how to use a mass gainer to support strength goals smartly.

READ MORE

Reasons:
  • Blacklisted phrase (1): This guide
  • Blacklisted phrase (1): enter image description here
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Akteng OZZY

79722152

Date: 2025-08-01 06:47:16
Score: 0.5
Natty:
Report link

For anyone coming across this who is using Flutter and Google / Firebase Auth and they encounter this when they go from local device / emulator testing to Google Play, this occurs because the SHA1 fingerprint is now different as Google Play takes care of signing your app for distribution for Play Store.

Solution - Get the new SHA1:

  1. Go to Play store and select Your App

  2. Go to Test and Release

  3. Go to App Integrity

  4. Scroll to Play App Signing (click settings to the right of the title)

  5. Copy the SHA1 fingerprint

  6. Go to Firebase Project Settings or Google Auth console where you define your SHA certificate fingerprints and add the new SHA1

Gets me every time.

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

79722143

Date: 2025-08-01 06:39:14
Score: 0.5
Natty:
Report link

I think I found the answer. But I want to know if there is a better way to do it.

def convert_to_unc_path(path: str) -> str:
    # Check if already escaped UNC path (starts with \\\\?\\)
    if path.startswith("\\\\\\\\?\\\\"):
        return path
    
    # Check if raw UNC path (starts with \\?\)  
    elif path.startswith("\\\\?\\"):
        return path.replace("\\", "\\\\")
    
    # Regular path, add UNC prefix and escape
    else:
        unc_path = "\\\\?\\" + path
        return unc_path.replace("\\", "\\\\")

Reasons:
  • Blacklisted phrase (1): I want to know
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: tandem

79722126

Date: 2025-08-01 06:24:10
Score: 0.5
Natty:
Report link

This is not an answer to the question, yet a hint as to how to solve the original problem which triggered it. I.e. how to get a neat iterator over rows of a query result set. Disclaimer I am the author of odbc-api and a main contributer to the odbc crate, back then it had been maintained.

I would suggest not going with odbc_iter. It is based on the no longer maintained odbc crate. Its iterator interface may be what you want, yet it actually translates it naively to a row wise fetch in the background which in most cases triggers and individual round-trip to the database for each row. It does this, because the odbc crate never supported bulk fetch.

For a fast bulk fetch with minimal IO overhead, and a type-safe fetching of row fields, I would suggest using odbc-apis RowVec together with the Fetch derive macro. For this the derive feature has to be active.

use odbc_api_derive::Fetch;
use odbc_api::{Connection, Error, Cursor, parameter::VarCharArray, buffers::RowVec};

#[derive(Default, Clone, Copy, Fetch)]
struct Person {
    first_name: VarCharArray<255>,
    last_name: VarCharArray<255>,
}

fn send_greetings(conn: &mut Connection) -> Result<(), Error> {
    let max_rows_in_batch = 250;
    let buffer = RowVec::<Person>::new(max_rows_in_batch);
    let mut cursor = conn.execute("SELECT first_name, last_name FROM Persons", (), None)?
        .expect("SELECT must yield a result set");
    let mut block_cursor = cursor.bind_buffer(buffer)?;

    while let Some(batch) = block_cursor.fetch()? {
        for person in batch.iter() {
            let first = person.first_name.as_str()
                .expect("First name must be UTF-8")
                .expect("First Name must not be NULL");
            let last = person.last_name.as_str()
                .expect("Last name must be UTF-8")
                .expect("Last Name must not be NULL");
            println!("Hello {first} {last}!")
        }
    }
    Ok(())
}

See: https://docs.rs/odbc-api/latest/odbc_api/derive.Fetch.html

Reasons:
  • Blacklisted phrase (1): not an answer
  • Blacklisted phrase (1): how to solve
  • Long answer (-1):
  • Has code block (-0.5):
Posted by: Markus Klein

79722114

Date: 2025-08-01 06:15:08
Score: 0.5
Natty:
Report link

The Places Details (New) will respond with the new Place ID along with the other fields such as formattedAddress and location.

Take note that specifying the list is only used to filter a response and not a request so returning it as invalid wouldn't occur unless you omit the field mask itself.

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

79722111

Date: 2025-08-01 06:08:06
Score: 1.5
Natty:
Report link

maybe you can try this https://jsonout.com/ a online JSON formatter, validator and JSON editor

Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: HXH

79722100

Date: 2025-08-01 05:47:02
Score: 2.5
Natty:
Report link

Logistica&Global.apk faylini yuklab olish (Asosiy ilova)

📦 Logistica&Admin.apk faylini yuklab olish (Admin panel)

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

79722096

Date: 2025-08-01 05:43:01
Score: 4
Natty:
Report link

I'm facing the same issue with Jio network and Firebase Realtime Database. The listener doesn't trigger onDataChange() or onCancelled() — it just hangs.

Tested fixes:

Workaround:
I now use a Firebase Cloud Function as a proxy to access Realtime Database. This works reliably even on Jio.

Reasons:
  • No code block (0.5):
  • Me too answer (2.5): I'm facing the same issue
  • Low reputation (1):
Posted by: Subhasish Das

79722095

Date: 2025-08-01 05:39:00
Score: 1
Natty:
Report link

I have resolved the issue. Thank you to the people that visited this question. This works fine thank you to someone's post on Reddit that helped push me to the right direction. https://www.reddit.com/r/excel/comments/bgzkbj/vba_dealing_with_no_cells_were_found/

Selection.AutoFilter Field:=2, Criteria1:=DATE_ONE, Operator:=xlAnd, Criteria2:=DATE_TWO
    
    Dim filteredCell As Range
    
    On Error Resume Next
    Set filteredCell = Range("G2", "G" & lastrow).SpecialCells(xlCellTypeVisible)
    On Error GoTo 0
    
    If filteredCell Is Nothing Then
            MsgBox "データが見つかりません。処理を中断します。", vbOKOnly + vbExclamation, "エラー"
            Application.DisplayAlerts = False
            resultWS.Delete
                originC.Worksheet.Parent.Activate
                originC.Worksheet.Activate
                originC.Select
            Application.DisplayAlerts = True
            Exit Sub
    Else
    End If
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): thank you
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Anpo Desu

79722081

Date: 2025-08-01 05:20:56
Score: 2
Natty:
Report link
Method Inputs Outputs Usage
.loc Label-based Series/data Row/col access by index name
.at Label-based Scalar Fast lookup for single cell (label)
.iloc Position-based Series/data Access by row/col number
.iat Position-based Scalar Fast lookup for single cell (position)
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Bogdan Ciocoiu

79722079

Date: 2025-08-01 05:11:54
Score: 3.5
Natty:
Report link

Fixed the issue by doing two things. Deleted package and installed it again. This time I was sure that package address was correct.

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

79722077

Date: 2025-08-01 05:09:54
Score: 1.5
Natty:
Report link

Your model works for single digits because it was trained on MNIST, which contains one centered digit per image. For multi-digit images like "1234", you must split them correctly into individual digits, preprocess each one to match MNIST format (centered, 28×28, normalized), and pass them separately to the model. If splitting, padding, or centering is off, the model misclassifies (e.g., "1234" becomes "3356"). Also, switch to a CNN instead of dense layers for better accuracy. Visualize your split digits to ensure they are clean and centered. Each digit must look like a real MNIST image for reliable results.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Menula De Silva

79722071

Date: 2025-08-01 05:00:52
Score: 2
Natty:
Report link

It is looks like VS Code removed UTF-8 BOM symbols.

About BOM: What's the difference between UTF-8 and UTF-8 with BOM?

You can open both files in any HEX editor (for example HxD offline, also exists online hex editors) and look at difference in first bytes.

The same issue discussed here: https://gitlab.com/gitlab-org/gitlab/-/issues/29631

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

79722067

Date: 2025-08-01 04:47:50
Score: 1.5
Natty:
Report link

Are you running a .venv and installed moviepy outside the venv? Do this:


pip uninstall moviepy

venv\Scripts\activate (in Terminal, replace 'venv' with w/e the name of your venv is)

pip install moviepy

See if that works.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Hasan

79722058

Date: 2025-08-01 04:24:45
Score: 0.5
Natty:
Report link

I made a nuget package that uses Pdfium to do exactly what you want, well except it returns a bitmap list, but trivial to use Save() to save as jpegs. I use this in production software to convert Pdfs into images for viewing within a WinUI3 application. 100-page document at 300 dpi would probably take around 7 or 8 seconds or so. I am not sure what is an acceptable speed for you.

Nuget package is PdfToBitmapList.

Can pass file path of pdf, memorystream, or byte array.

Use like: var imageList = Pdf2Bmp.Split(pdfFilePath)

There is an option to save images to disk by passing in a save location like :

var imageList = Pdf2Bmp.Split(pdfFilePath, "C:\TempDirectory")

This is very useful for larger Pdfs as holding all those images in memory can eat up your ram very fast. Instead of returning a List of Bitmap images it will return a list of strings with the paths the images are saved on disk. This requires manual clean up after the conversion, so just keep that in mind or save location will have tons of leftover images.

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

79722054

Date: 2025-08-01 04:14:41
Score: 7
Natty:
Report link

Yes facing the same issue. There was same kind of issue in 2020 https://status.firebase.google.com/incidents/oCJ63zAQwy6y284dcEp3

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): facing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: atul zade

79722050

Date: 2025-08-01 04:06:39
Score: 2.5
Natty:
Report link

Try using project auditor or profiler to see what is causing this issue.

Also try unchecking the multithread rendering in project settings.

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

79722046

Date: 2025-08-01 03:58:37
Score: 1.5
Natty:
Report link

I found the issue.

I was running the server from VSCode. Running in a mac terminal fixed it.

I think it had to do with VSCode settings blocking network connections.

When I restart my mac, it restarted vscode and restarting vscode works the first time. I still don't know why.

Quick fix: don't use VSCode to run the server. It has it's own network settings

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Ben Weissman

79722040

Date: 2025-08-01 03:45:35
Score: 1
Natty:
Report link

Just an update folks,
our .NET managed client was attempting to negotiate a higher CipherSpec than what the MQ channel on their end was initially configured to support.
cf.SetStringProperty(XMSC.WMQ_SSL_CIPHER_SPEC, "TLS_RSA_WITH_AES_128_CBC_SHA256");
`

by updating the MQ channel configuration to use ANY_TLS12_OR_HIGHER, it resolved the issue.
The logs were quite visible at MQ queue manager level but on .NET side the logs were quite generic, strange.

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

79722037

Date: 2025-08-01 03:41:34
Score: 5.5
Natty:
Report link

i have the same problem for around a year. jupyter lab3.

recently, annoyed by it. after study github serveral post and others. occasionally i noticed in the cmd shell output, i noticed it said

 [xxxx ServerApp] folder '' :my real work folder not found.

the address with additional '' & my work folder

[solution success]

jupyter lab config.py

c.LabServerApp.workspaces_dir = :my real work folder

pls noted no ' ' OR " " for the folder path.

others are default seting.

maybe it can solve your problem too?

refer:

reply from andrewfulton9 and echarles in https://github.com/jupyterlab/jupyterlab/issues/12111

Reasons:
  • Blacklisted phrase (1): i have the same problem
  • RegEx Blacklisted phrase (1.5): solve your problem too?
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): i have the same problem
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Kevin Han

79722036

Date: 2025-08-01 03:40:34
Score: 0.5
Natty:
Report link

It turns out I have to build the extension with hoist flag.

plasmo build --target=firefox-mv3 --hoist

The docs say hoisting can break the dependency:

Note that hoisting can potentially break your dependency, especially those that import dynamic dependency via a plugin system. However, hoisting can significantly improve the bundling speed and reduce the size of your bundle.

Ironically, not hoisting breaks my extension.

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Adib Zaini

79722026

Date: 2025-08-01 03:30:31
Score: 1
Natty:
Report link

Further to the above:

The CMFCPopupMenuBar::m_bDropDownListMode member is set equal to CMFCPopupMenu::m_bShowScrollBar member variable in the CMFCPopupMenu::Create.

This shuts off sending the WM_COMMAND when you click on a menu item.

Setting CMFCPopupMenu::m_bShowScrollBar true after the Create is called, followed by RecalcLayout() seems to correct the issue. Now I have scroll bars and can click on menu items to send an ON_COMMAND to the host window.

I'm not sure what downsides there might be to this. Feel free to comment. Thanks!

BOOL MyPopupMenu::Create(CWnd* pWndParent, int x, int y, HMENU hMenu, BOOL bLocked, BOOL bOwnMessage) 
{
    CRect               rParentRect;

    m_pBoundsWnd = pWndParent;
    m_pBoundsWnd->GetWindowRect(rParentRect);
    m_nMaxHeight = rParentRect.Height();
    // Call the base class Create method
    if (!CMFCPopupMenu::Create(pWndParent, x, y, hMenu, bLocked, bOwnMessage)) {
        TRACE0("Failed to create BECPopupMenu\n");
        return FALSE;
    }
    // These have to be called AFTER the create or you can't click on the menu items to send the ONCOMMAND to the parent.
    // Internally CMFCPopupMenu::Create() sets the CMFCMenuBar::m_bDropDownListMode = m_bShowScrollBar.
    // If it is true , it will not send the ONCOMMAND to the parent.
    // Setting m_bShowScrollBar afterward and THEN calling RecalcLayout() will ensure that the menu behaves correctly.
    m_bShowScrollBar = true;
    m_bScrollable = true;
    RecalcLayout();
    
    return TRUE; // Indicate successful creation
}
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): to comment
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: KokoCa

79722023

Date: 2025-08-01 03:27:29
Score: 6
Natty:
Report link

test dasdsadasd da sad sad sa dsadasd asd asd asdasdasdasdas dasdasd sadsadsad

Reasons:
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low entropy (1):
  • Low reputation (1):
Posted by: Test

79722018

Date: 2025-08-01 03:22:27
Score: 1.5
Natty:
Report link

Silly question, but can't we call the open function in js if you have a local protocol handler? So if I reigster my app as myapp, I can call open("myapp://some/url?some-token=true");... would that work? (Running into this now myself, so will test and report back!).

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Nicholas Barrow

79722013

Date: 2025-08-01 03:07:24
Score: 1.5
Natty:
Report link

Try this. The functions work in a similar way.

imagepng: how to save the output in a variable and then display it using img tag

ob_start();
imagejpeg($image);
$imagedata = ob_get_clean();
Reasons:
  • Whitelisted phrase (-1): Try this
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Alex

79722010

Date: 2025-08-01 02:57:22
Score: 0.5
Natty:
Report link

Traditionally, linkers process files from left to right, so if X depends on Y, X must be added before Y in the command. So place your source files before the libraries they depend on.

g++ main.cpp -o main -I /usr/local/include/SEAL-4.1 -L /usr/local/lib -lseal-4.1
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: jitpaul

79722007

Date: 2025-08-01 02:51:20
Score: 2.5
Natty:
Report link

I tried all sorts of functions such as PreCreateWindow, OnCreate, OnWindowPOSChanged, OnWindowPOSChanging.

I found that none of them worked. What did work was setting the CFMCPopupMenu::m_nMaxHeight before calling Create. This constrained the height of the popup menu to the size I wanted. The keyboard works now as does the mouse scroll wheel.

To get the scrollbar to display properly, I also had to set both CMFCPopupMenu::m_bShowScrollBar and CMFCPopupMenu::m_bScrollable to true before calling Create().

I have now run across another problem: m_bShowScrollBar stops the CMFCPopupMenu from sending WM_COMMAND messages to the parent window when an item is clicked. I'll dive into this and post an update or create another post if I need help.


BOOL MyPopupMenu::Create(CWnd* pWndParent, int x, int y, HMENU hMenu, BOOL bLocked, BOOL bOwnMessage) 
{
CRect               rParentRect;

m_pBoundsWnd = pWndParent;
m_pBoundsWnd->GetWindowRect(rParentRect);
m_bShowScrollBar = true;  
m_bScrollable = true;
m_nMaxHeight = rParentRect.Height();

// Call the base class Create method
TRACE0("BECPopupMenu::Create() Create\n");
if (!CMFCPopupMenu::Create(pWndParent, x, y, hMenu, bLocked, bOwnMessage)) {
    TRACE0("Failed to create BECPopupMenu\n");
    return FALSE;
    }
}
Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (2.5): I need help
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: KokoCa

79721998

Date: 2025-08-01 02:27:16
Score: 3
Natty:
Report link

Just convert the JSON data into a dictionary format recognizable by requests, then pass it through the cookies parameter in the request.

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

79721993

Date: 2025-08-01 02:14:14
Score: 2.5
Natty:
Report link

Well, maybe I can help you, I was doing a project where I wanted to put an image on Instagram, I had to transform the photo into base 64, and put it in a database, then save it and return the image again

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

79721986

Date: 2025-08-01 02:02:11
Score: 1.5
Natty:
Report link

Autodesk Platform Services (APS)AutoCAD Automation API execute customization by accoreconsole.exe, console version of AutoCAD, in behind. The accoreconsole.exe doesn't support AutoCAD ActiveX API. VLA* functions in AutoLisp invoke AutoCAD ActiveX API so the your Lisp causes error on APS. I recomend you porting your customization by AutoCAD .NET API as AutoCAD addin, which can loaded by accoreconsole.exe.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Takehiro Kato

79721981

Date: 2025-08-01 01:49:08
Score: 0.5
Natty:
Report link

Install this dependency Enable the reCAPTCHA ENTERPRISE from Firebase Authentication section and Enable it from Google Cloud Console, then this error will be gone

@google-cloud/recaptcha-enterprise-react-native
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Nafees

79721978

Date: 2025-08-01 01:41:06
Score: 4
Natty:
Report link

We have the same problem with the Oracle Database, and we don't have a 500ms latency when our code runs on Linux, on Windows, however, there is a 500ms delay.

We believe that this issue is related to a certain mechanism of TCP, and there are differences in the implementation between Windows and Linux. This is because our Linux is WSL, which is essentially a virtual machine of Windows 10

Reasons:
  • No code block (0.5):
  • Me too answer (2.5): have the same problem
  • Low reputation (1):
Posted by: DongTianDeHai

79721974

Date: 2025-08-01 01:32:03
Score: 1.5
Natty:
Report link

I faced similar problem. My env is Win11, VS2022 and Python3.13.

After switching Python version from 3.13 to a lower version (my case is 3.9(64-bit)) on the interactive window bar, interactive works correctly. The window bar shows a module selection set on "_main_", but 3.13's not.

I don't know why the bug takes place on 3.13

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

79721969

Date: 2025-08-01 01:25:01
Score: 2.5
Natty:
Report link

The FIFO option only seems to work when reading in (therefore concatenating) the entire GDG family.

Has anybody figured out a JCL-only way to read generation (0) in FIFO order? This would be especially useful for interfaces where you want to DISP=(OLD,DELETE,KEEP) the (0) generation, i.e. delete it after successfully processing it; thereby giving the first-in file the highest priority in getting processed in a job where you only want to pull in one generation at a time.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Jon

79721962

Date: 2025-08-01 01:07:58
Score: 0.5
Natty:
Report link

This was asked years ago, but I still see the question popping up and didn't find very good answers.

The context is important, particularly are rare false positives acceptable? I can imagine a video game effect that doesn't impact scoring where a few extra bullets making sparks on a bad guy isn't critical.

This addresses the critical cases where you need to be right, like 3D mesh/mesh intersections or Boolean operations. It also works on concave meshes.

Ignore methods relying on random ray direction as solutions. They improve your odds of a good solution, but create difficult to reproduce failures.

First, filter out all open or non-manifold meshes - they have no inside or outside. Open meshes have one or more laminar edges. Non-manifold meshes have at least one edge which shares more than two faces. The concept of inside simply doesn't apply to these.

Assure all triangle normals are correctly oriented according the right hand half edge rule. This assures all normals point into or out of the closed region.

The worst case situation is a conical, triangular fan where the ray hits the vertex at the center of the fan. I just had to deal with this one.

Determine a global same distance tolerance for the entire model and use it everywhere. Differing same distance tolerances will result in A != B, B !=C and A == C cases if the three tests are done with different tolerances. THAT can result in crashing or infinite looping binary tree tests.

Record the distance along the ray AND if the ray's dot product with the tri normal was positive or negative in a list. Sort the list, first on distance, than on sign of the crossing.

Now, all crossing within the same distance tolerance are clustered first, and crossings of the same parity are grouped within the group.

Starting from the back of the list, remove any crossing within the same dist tolerance which has the same parity. That's a mutliple hit on the fan vertex or edge where the ray entered the boundary through two faces simultaneously. Continue until all duplicates are purged.

In the case where the ray hit the fan vertex, entered and exited legitimately, that will be counted as real entry/exit pair. All cases where the ray entered/exited with the same parity have been reduced to a single entry/exit.

Now calculate
parity = list.size modulo 2
If parity is 1, you're inside. If it's 2 you're outside.

Do this multiple times from the same start point.

Only count hits with 2 or more inside results. I still get a few cases with false outside results.

If you have 2 or more "inside" results, it's inside.

I've worked in the industry for years and even NVidia's GPU raycaster documentation admits they get occasional false positives and recommends some oversampling.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: brtip

79721961

Date: 2025-08-01 01:06:57
Score: 1
Natty:
Report link

npm config ls -l

npm config delete proxy

npm config set proxy "http://your.proxy.url:port/"

for example

npm config set proxy "http://127.0.0.1:3000"

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

79721959

Date: 2025-08-01 01:05:57
Score: 1.5
Natty:
Report link

Use "sudo" before your command.

sudo npx create-react-app appname
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Joshua Ginn