Showing posts with label screenter. Show all posts
Showing posts with label screenter. Show all posts

Sunday, August 13, 2023

BIOS Serial Number

 At the Command Prompt, type the following command and then press Enter:

wmic bios get serialnumber

You'll see the computer's serial number displayed beneath the text "SerialNumber". This command uses the Windows Management Instrumentation Command-line (WMIC) tool to pull the system's serial number from its BIOS.

  1. // uses process
  2. var
  3.   AProcess: TProcess;
  4. begin      
  5. AProcess := TProcess.Create(nil);
  6.   AProcess.Executable := 'wmic';
  7.   AProcess.Parameters.Add('bios');
  8.   AProcess.Parameters.Add('get');
  9.   AProcess.Parameters.Add('serialnumber');
  10.   AProcess.Options := AProcess.Options + [poWaitOnExit, poUsePipes];
  11.   AProcess.ShowWindow := swoHIDE;
  12.   AProcess.Execute;
  13.   memo1.Lines.LoadFromStream(AProcess.Output);
  14.  // memo1.Lines.LoadFromStream(AProcess.Stderr);
  15.   AProcess.Free;                      
  16. end;  

https://www.elementa.rs/

curl ifconfig.me

https://www.howtogeek.com/858334/how-to-find-your-ip-address-from-cmd-command-prompt



MORE TIPS =

https://www.makeuseof.com/raspberry-pi-best-programming-languages

https://www.alphr.com/open-pdfs-chrome-adobe-reader/

https://www.guidingtech.com/open-pdf-document-in-adobe-reader-instead-browser/

https://passper.imyfone.com/word/unlock-word-document/

https://passper.imyfone.com/unlock-word-document/

https://code-boxx.com/upload-large-files-php/

https://www.makeuseof.com/best-alternatives-chatgpt


XEN SERVER FOR FREE =

https://xcp-ng.org/


ANTIVIRUS FOR FREE OPENSOURCE = 

https://www.makeuseof.com/best-open-source-antivirus-software-for-pc

https://www.makeuseof.com/tag/best-free-online-computer-programming-courses

https://www.makeuseof.com/tag/download-movies-free-watch-offline

https://www.prirodanadar.rs/cudotvorna-dejstva-lekovite-biljke-piskavice-lat-fenugreek

https://www.makeuseof.com/excel-date-functions/

https://www.makeuseof.com/has-your-wi-fi-been-hacked-how-to-prevent-it

https://www.makeuseof.com/chatgpt-code-interpreter-uses

https://www.makeuseof.com/tag/best-dark-web-websites

RDP at Windows Home =

https://www.helpwire.app/blog/remote-desktop-for-windows-10-home/


FIX WINDOWS 10 =

https://www.makeuseof.com/tag/5-free-tools-fix-problem-windows-10

https://instantos.io/

https://www.makeuseof.com/sites-to-get-royalty-free-images-audio-and-video




Monday, April 18, 2022

Remember Screenter goodies

 ++

Freeware download:

THE NEW VERSION OF SCREENTER


Functions:

1) create capture rectangle with SHIFT + F2, move and resize that rectangle as you wish, after that just press SPACE key to make a screenshot in a range of that rectangle. The picture file will be saved in c:\, because of that you must start screenter.exe app as administrator (right click, Run As Administrator)

2) For the first time screenshot is temporary transparent

3) You can open group of selected JPG's like dropped postcards on the table

4) You can freely rearrange all opened photographs in "always on top" manner

Have you ever seen anything like this before?



https://www.codeproject.com/Articles/1265115/Cross-Platform-AES-256-GCM-Encryption-Decryption

https://cs50.harvard.edu/college/2022/spring/

https://cassandra.apache.org/_/cassandra-basics.html

https://hbase.apache.org/

https://hadoop.apache.org/

https://www.instructables.com/Overlapping-Segments-Rotary-Digital-Clock/

https://www.howtogeek.com/752684/how-to-create-a-data-entry-form-in-microsoft-excel/

https://www.codeproject.com/Articles/878605/Getting-All-Special-Folders-in-NET

https://nextjs.org/


Beli lenor i negro bonbone za bube na vocnjaku kao mamac za rutave bube.


https://redux.js.org/


https://fydeos.io/


++


Resources: Cracking The Coding Interview: https://amzn.to/3jIPzjD Elements of Programming Interviews in Python: https://amzn.to/37hBzuP CS50: https://www.youtube.com/watch?v=NZxAL... Compiler is always right: https://blog.mozilla.org/nfroyd/2014/... Minimum network flow: https://math.stackexchange.com/questi... Knapsack problem: https://medium.com/@fabianterh/how-to... Greedy scheduling: https://www.cs.umd.edu/class/fall2017... Interview preparation: https://leetcode.com/ Mock interviews: https://www.pramp.com/






Tuesday, April 25, 2017

Process1.Execute LAZARUS

You can execute OS commands in Free Pascal / Lazarus by using TProcess component that exists in System component palatte.
TProcess also can open external applications from your Lazarus project.
Example:
1. Create new application, put Edit box, a buttonTProcess and a Memo in main form:
Image
2. Change UsePiples property to True in TProcess.Options.
3. Write this code in button’s OnClick:
1
2
3
4
5
6
procedure TForm1.Button1Click(Sender: TObject);
begin
  Process1.CommandLine:= Edit1.Text;
  Process1.Execute;
  Memo1.Lines.LoadFromStream(Process1.Output);
end;
4. Run the application and write any commands like (ls in Linux, dir in Windows) and click the button. You will get the result of text commands in the memo:
You can also run applications, like calculator, text editor, or any other application.