Tuesday, June 7, 2022

network drive map

Moja iskustva sa Windows 10 i Windows 11

Kada se pojavio Windows 10 je imao vrlo male hardverske zahteve, medjutim kako su godine prolazile trebalo je HDD zameniti SSD diskom, zatim umesto 4GB staviti 8GB, ali pošto je procesor 64-bit dual core Intel Celeron kancelarijska mašina, došlo je vreme da se na nju stavi Linux, a da se nabavi Intel i3, tek na i3 Windows 10 i Windows 11 rade dovoljno agilno, koliko toliko normalno.

Kasnije smo nabavili za posao Intel i5 i i7 konfiguracije, a to je značajno poboljšalo rad u Windows 10 i Windows 11.

Da bi Intel Celeron radio malo brže pod Windows 10 i 11 potrebno je da uradite "Windows Debloater", a potom da ga redovno čistite CCleaner-om, bar jednom nedeljno, ali to nije ni prineti konforu koji imate na Intel i3 10-th gen sa minimum 8 GB RAM memorije.

Radim u firmi koja ima preko 40 Windows korisnika sa uglavnom Intel Celeron mašinama koje su sa Windows 7 i 8 upgrade-ovane na Windows 10, a potom i na Windows 11, i to su moja iskustva.

Manjaro xfce Linux na Intel Celeron dual-core 64-bit procesoru, 4 GB RAM i HDD 500 GB radi istom brzinom kao Windows 11 na Intel i5 procesoru sa 8 GB RAM.

Eto to su moja iskustva iz prve ruke, javite vaša iskustva, ostavite komentar ispod.

Postanite član bloga i ostavite svoj cenjeni komentar.

Članovi bloga mogu očekivati neku od vrednih nagrada.


 https://www.howtogeek.com/755213/how-to-map-a-network-drive-on-windows-11/.


https://www.avast.com/compare-antivirus#pc


Ctrl+Shift+V Is the Best Shortcut You’re Not Using


windows-10&11-sound-keyboard


https://www.reviewgeek.com/91232/the-7-best-audacity-alternatives/

https://excelk.com/sr/

Do you need encouragement while typing the best code ever?

Try this:


Important Links: Manjaro Downloads: https://manjaro.org/download/ Rufus Download: https://rufus.ie/ EasyBCD: https://neosmart.net/Download/Register


++


Remembers:




Wednesday, June 1, 2022

Share Printer in Windows 10 problem

 Just uninstall KB5005565 if "Share Printer Not Connecting". (Operation failed with error 0x0000011b Windows 10)




windows-10&11-sound-keyboard

Good language for development:

http://www.ecere.org/

https://programmingzen.com/10-lesser-known-programming-languages-worth-exploring/


https://blog.stoneriverelearning.com/6-unknown-programming-languages-that-will-surprise-you/

Audio mixer (mikseta):




Информатички појмови на српском језику:

live stream = Животок

streaming = Инфоток

update = Инопуна 

CD = Сикоћало

DVD = Дискоћало

Blu-ray = Плавозрак / Плавоћало

Card Reader = Читало




.NET GUI terminal:





Python goodies:


Heatless (cold) Toner Transfer (for PCB):

8 parts Alcohol

3 parts Acetone

Procedure:

1) Wait 5-10 seconds before applying final preassure. During this time ACETONE is reacting with the toner, rendering it sticky.

2) Press with clotes, and wait two or more minutes until all solvents are totally volatilized.

3) Dip the board in water for at least 2 minutes.  Time may vary, depending on the paper used.
I use regular glossy coated paper.
Don't use transparency paper as it won't allow for proper evaporation of solvents.

4) Carefully peel the paper off the board starting from a corner.
You can see there is absolutely no toner on the paper, It's all on the copper.



++


Friday, May 20, 2022

AS filter version 2

 <?php


/*
CALL for nothing to delete, just list all:

localhost/p1.php?x=0

CALL for specific second message to delete and list all:

localhost/p1.php?x=2

*/


function is_base64($s)
{
      return (bool) preg_match('/^[a-zA-Z0-9\/\r\n+]*={0,2}$/', $s);
}

function get_between_data($string, $start, $end)
{
$pos_string = stripos($string, $start);
$substr_data = substr($string, $pos_string);
$string_two = substr($substr_data, strlen($start));
$second_pos = stripos($string_two, $end);
$string_three = substr($string_two, 0, $second_pos);
// remove whitespaces from result
$result_unit = trim($string_three);
// return result_unit
return $result_unit;
}


$user = "info@rubirosa.rs";
$pass = "Maja123";


//$imap = imap_open("{mail.rubirosa.rs:995/pop3/ssl/novalidate-cert}", $user, $pass);
//$imap = imap_open("{mail.rubirosa.rs:995/pop3/ssl/novalidate-cert}INBOX", $user, $pass);


$imap = imap_open("{mail.rubirosa.rs:110/pop3/notls}", $user, $pass);

//imap_delete($imap, 1);

if( $imap ) {
   
     //Check no.of.msgs
     $num = imap_num_msg($imap);

for ($x = 1; $x <= $num; $x++) {
  echo "The number is: $x <br>";
//  echo imap_qprint(imap_body($imap, $x));

$s= imap_qprint(imap_body($imap, $x));

$r = get_between_data($s,"base64"," ");

echo base64_decode($r);

$ss = " ";

$rr =  get_between_data($ss," "," ");

echo base64_decode($rr);

echo base64_decode($s);

if (is_base64($s)) {

  echo base64_decode($s);
}
else
{
  echo $s;
  //echo base64_decode($s);
 
}
 
  echo "<hr>";
 
  $header = imap_header($imap, $x);
$from = $header->from;
foreach ($from as $id => $object) {
    $fromname = $object->personal;
    $fromaddress = $object->mailbox . "@" . $object->host;

echo $fromname . "<br>";
echo $fromaddress;

}

  echo "<hr>";

}

//mn = message number

$mn = $_GET['x'];
$rb = intval($mn);

if ($rb > 0) {

imap_delete($imap, $rb);  //mark some message for delete with specific message number

imap_expunge($imap);    //delete marked message

}
else {
echo "Pogresan parametar za brisanje";  
 
}


     //close the stream
     imap_close($imap);
}

?>

++Do you need encouragement while typing the best code ever?
Try this:




Linux with Windows look:



ULTRA UBER BACKUP:


Freetube withot comercials:

Thursday, May 19, 2022

Anti-spam filter in PHP


<?php

function is_base64($s)
{
      return (bool) preg_match('/^[a-zA-Z0-9\/\r\n+]*={0,2}$/', $s);
}

$user = "info@rubirosa.rs";
$pass = "djole123";

//$imap = imap_open("{mail.rubirosa.rs:995/pop3/ssl/novalidate-cert}", $user, $pass);
//$imap = imap_open("{mail.rubirosa.rs:995/pop3/ssl/novalidate-cert}INBOX", $user, $pass);


$imap = imap_open("{mail.rubirosa.rs:110/pop3/notls}", $user, $pass);

//imap_delete($imap, 1);

if( $imap ) {
   
     //Check no.of.msgs
     $num = imap_num_msg($imap);

for ($x = 1; $x <= $num; $x++) {
  echo "The number is: $x <br>";
//  echo imap_qprint(imap_body($imap, $x));

$s= imap_qprint(imap_body($imap, $x));

if (is_base64($s)) {

  echo base64_decode($s);
}
else
{
  echo $s;
}
 
  echo "<hr>";
 
  $header = imap_header($imap, $x);
$from = $header->from;
foreach ($from as $id => $object) {
    $fromname = $object->personal;
    $fromaddress = $object->mailbox . "@" . $object->host;

echo $fromname . "<br>";
echo $fromaddress;

}

  echo "<hr>";

}

/*

imap_delete($imap, 1);  //mark first message for delete

imap_expunge($imap);    //delete marked message

*/

     //close the stream
     imap_close($imap);
}

?>




PREY GAME FOR FREE:


OCR Goodies: