Thursday, April 22, 2021

Must have software on Windows 10 and Linux Lite (or Q4OS, or Antix, or MX)

 1) WPS Office

2) Microsoft Visual Studio Code

3) Notepad++

4) Lazarus-IDE

5) Inkscape

6) GIMP

7) Libre Office

8) .NET CORE

https://docs.microsoft.com/en-us/aspnet/core/?view=aspnetcore-5.0

https://docs.microsoft.com/en-us/aspnet/core/introduction-to-aspnet-core?view=aspnetcore-5.0#recommended-learning-path

https://docs.microsoft.com/en-us/aspnet/core/introduction-to-aspnet-core?view=aspnetcore-5.0

https://dotnet.microsoft.com/download

https://beogradsko.blogspot.com/2020/04/udaljeni-pristup-linux-serveru-u-punoj.html

https://dotnet.microsoft.com/apps/aspnet/web-apps/blazor

https://docs.microsoft.com/en-us/aspnet/core/razor-pages/?view=aspnetcore-5.0&tabs=visual-studio



https://www.uopeople.edu/programs/cs/degrees/computer-science-bachelor-degree-2/

https://www.freecodecamp.org/

https://askubuntu.com/questions/203173/run-application-on-local-machine-and-show-gui-on-remote-display


https://unix.stackexchange.com/questions/104290/html-client-for-x11-ssh-forwarding


http://xpra.org/


https://fabianlee.org/2018/10/14/ubuntu-x11-forwarding-to-view-gui-applications-running-on-server-hosts/


https://cat.pdx.edu/platforms/linux/remote-access/remote-x/


https://sourceforge.net/projects/xming/


https://www.freecodecamp.org/


https://www.mygermanuniversity.com/articles/tuition-free-universities-in-germany-taught-in-english




More tips for Lazarus-IDE:











How To Use POP3 with SSL

uses
  blcksock, smtpsend, pop3send, ssl_openssl,
//...
 
type
  ESMTP = class (Exception);
  EPOP3 = class (Exception);
 
//...
 
procedure TForm1.edReceiveClick(Sender: TObject);
var
  pop3: TPOP3Send;
  i: integer;
begin
  pop3 := TPOP3Send.Create();
  try
    pop3.AutoTLS := false;
    pop3.Username:='test';
    pop3.Password:='*****';
    pop3.TargetHost:='127.0.0.1';
    pop3.TargetPort := '995';
    pop3.FullSSL := true;
    pop3.Sock.SSL.SSLType := LT_SSLv3;
 
    pop3.Sock.SSLDoConnect();
    if not pop3.Login() then
      raise EPOP3.Create('POP3 ERROR: Login');
 
    AddToLog('POP3 Stat');
    if not pop3.Stat() then
      raise EPOP3.Create('POP3 ERROR: stat');
    AddToLog('Stat: '+IntToStr(pop3.StatCount)+' msgs');
    for i := 1 to pop3.StatCount do begin
      AddToLog('POP3 Retr(' + IntToStr(i) + ')');
      if not pop3.Retr(i) then
        raise EPOP3.Create('POP3 ERROR: retr(' + IntToStr(i) + ')');
      RichEdit2.lines.Add(' ');
      RichEdit2.lines.Add('*** POP3 Retr(' + IntToStr(i) + ') *******');
      RichEdit2.lines.AddStrings(pop3.FullResult);
      pop3.FullResult.SaveToFile('mail_' + IntToStr(i) + '.msg');
      if not pop3.Dele(i) then
        raise EPOP3.Create('POP3 ERROR: dele(' + IntToStr(i) + ')');
    end;
 
  finally
    pop3.Free;
  end;
end;


No comments:

Post a Comment

Коментар: