Showing posts with label Jelena Gavrilović. Show all posts
Showing posts with label Jelena Gavrilović. Show all posts

Thursday, April 11, 2019

Ulogujte se bez prethodne registracije i postavite svoj mali besplatni oglas

http://knjigovodstvo.eu5.org/xxpregled.php

BRZI BESPLATNI MALI OGLASI

1) registracija nije potrebna, samo se ulogujete i unesete "Ime i prezime", "nadimak", "naziv firme" ili nešto slično.

2) Zatim unesete tekst oglasa i to je sve.

3) Ostalo je istorija.



Budite anonimni !

[]

Thursday, March 28, 2019

Moje freeware aplikacije za svaku kancelariju


The TRAGAC !



Da li znate koje sve dokumente imate na kompjuteru i gde ?

Da li možete da napravite spisak svih putanja do fajlova vaših dokumenata u Microsoft Wordu ili Notepad-u ?

Ja sam uspeo da nadjem svih nekoliko hiljada fajlova u wordu i nekoliko hiljada fajlova u excelu na svom kancelarijskom kompjuteru koristeći sledeći program:

https://beogradsko.blogspot.com/2019/03/podsetnik-na-aplikaciju-otvarac-i-tragac.html

koji se zove Tragac. To je trenutno jedina aplikacija za Windows 7,8 i 10 koja ima takvu mogućnost.

Pretraga dokumenata traje neko vreme i može se u svakom trenutku prekinuti sa tasterom "ESC", ali ako sačekate kraj pretrage, imaćete najkompletniji spisak svih dokumenata na Vašem kompjuteru sve sa putanjama do istih. Ovaj spisak aplikacija Tragac smešta u Windows Clipboard, a ako otvorite Microsoft Word ili Notepad, ovaj spisak možete da snimite radi kasnije evidencije ili dokazivanja šta Vi ili neko drugi ima na svom kompjuteru od dokumenata.






MORE TIPS>


NVIDIA DRIVERS FOR LINUX

https://www.nvidia.com/object/unix.html

Wednesday, March 27, 2019

Promet-ERP at Germany Language

Promet-ERP at Germany Language


https://sourceforge.net/projects/prometerp/files/



Just Simple Spreadsheet:




MORE TIPS>

Please don’t mix ClearOS Linux and Clear Linux OSthat is two different distros:
  1. ClearOS Linux (website: www.clearos.com) - use as router OS
  2. Clear Linux OS (website: clearlinux.org) - use as regular desktop linux.
--------------


If you must to create quick and dirty quasi database system



SAVE / LOAD procedure:

procedure TForm1.Button1Click(Sender: TObject);
var strl : TStringlist;
begin
//SAVE
strl := TStringList.Create;
strl.Add(Edit1.Text);
strl.Add(Edit2Text);

strl.Add(Edit3.Text);

strl.Add(Edit4.Text);

//etc...
strl.SaveToFile('C:\test.txt');
strl.Free;
//LOAD
strl := TStringList.Create;
strl.LoadFromFile('C:\test.txt');
Edit1.Text := strl.strings[0];
Edit2.Text := strl.strings[1];
Edit3.Text := strl.strings[2];
Edit4.Text := strl.strings[3];
//etc...
strl.Free;
end;

//You can use this procedure for C:\test1.txt...C:\test[FileMaxCount].txt
//Same procedure, but different text file name.
//All data will be saved as strings in sequential order.
//One textual file presents one row of data, if you have 1000 rows of data, than you have 1000 textual files.
//That system is very fast, faster than any CSV file with all data.
//You don't need to search for data loading all data, but only data that contents particular textual file.
//That system save resources and memory.
//It is not very well solution, but is quick and dirty one.
//Another "benefit" of that system is the lack of any delimiters in that files, except CRLF.



Tuesday, March 26, 2019

Delphi for free


Delphi® - Community Edition
Shared free of charge with our community of freelance developers, startups, students and non-profits, Delphi Community Edition is a full featured IDE for building iOS, Android, Windows and macOS apps from a single Delphi codebase (limited commercial use license). Delphi Community Edition includes a code editor, powerful debugging tools, built-in access to popular local databases with live data at design time, Bluetooth and IoT capabilities and a visual UI designer with support for pixel perfect, platform specific styling.

Delphi® -Community Edition- Free Download*

Full-Featured Free Delphi IDE for Creating Native Cross-Platform Apps

https://www.embarcadero.com/products/delphi/starter

Download the FREE Delphi Community Edition*

https://www.embarcadero.com/products/delphi/starter/free-download

Start Building Apps Today with Delphi Community Edition

  • Delphi Community Edition provides you with integrated and professional-level developer tools from Day 1
  • Develop Windows, macOS, Android and iOS applications with a single codebase
  • Visual Design using the Delphi VCL and FireMonkey frameworks
  • Built-in Debugging Tools that allow you to debug on any device
  • Build database apps with local/embedded capabilities
  • Hundreds of included components to enhance your app and reduce development cycles
  • Licensed for use until your individual revenue from Delphi applications or company revenue reaches $5,000 US or your development team expands to more than 5 developers

The best part? When your application or business takes off, you don’t have to learn new tools or port code from various toolsets. Start working right away with your existing codebase in any of our paid editions while gaining access to additional capabilities.

Who Chooses Delphi Community Edition?
Individual Delphi developers, hobbyists, and students who are learning new programming languages, starting to develop cross-platform apps, maintaining open source Delphi projects, or learning the Delphi IDE, who are making less than $5000 in revenue and want to get started with professional-level developer tools.

It’s also perfect for early stage startups who are bootstrapping their product vision before securing capital! Develop your professional app with the Community Edition, knowing that you can skip the learning curve your competition faces when building for multiple platforms.

Am I Eligible for Delphi Community Edition?
If you're an individual you may use Delphi Community Edition to create apps for your own use and apps that you can sell until your revenue reaches $5,000 per year.

If you're a small company or organization without revenue (or up to $5,000 per year in revenue), you can also use the Delphi Community Edition. Once your company's total revenue reaches US $5,000, or your team expands to more than 5 developers, you can move up to an unrestricted commercial license with Professional edition.

See the Community Edition FAQs for additional details.

Delphi is available in Community, Professional, Enterprise, and Architect editions. For details on the differences between the editions, see the Product Editions page and Feature Matrix. Move up to the Professional edition or above to get additional features including components and drivers for database connectivity, a full commercial development license, and much more.



MORE TIPS>

http://wiki.freepascal.org/Lazarus_Application_Gallery#GroundCAD

http://buch.im-ned.de/hagen/

https://castle-engine.io/view3dscene.php

https://www.lifesavvy.com/375/how-to-get-started-with-photography/



Monday, March 25, 2019

Delphi ini file

https://www.thoughtco.com/manipulate-ini-files-from-delphi-1058227


//---------------------------------

procedure TForm1.Button1Click(Sender: TObject);
var strl : TStringlist;
begin
//SAVE
strl := TStringList.Create;
strl.Add(Edit1.Text);
strl.SaveToFile('C:\test.txt');
strl.Free;
//LOAD
strl := TStringList.Create;
strl.LoadFromFile('C:\test.txt');
Edit1.Text := strl.strings[0];
strl.Free;
end;

//------------------------------
var
F: TextFile;
S: string;
begin
if OpenDialog1.Execute then
begin
AssignFile(F, OpenDialog1.FileName);
Reset(F);
Readln(F, S);
Edit1.Text := S;
CloseFile(F);
end;
end;

//===============================

var F: TextFile;
begin
if SaveDialog1.Execute then
begin
AssignFile(F, SaveDialog1.FIleName);
Rewrite(F);
Writeln(F, Edit1.Text);
CloseFile(F);
end;






[[]]



https://informatika75.wordpress.com/tag/programiranje/

Wednesday, November 21, 2018

Monday, November 5, 2018

Koji su sve windows update-i instalirani na kompjuteru (testirano na Windows 7)

LISTAJ-UPDATE-OVE.cmd

color 0a
path %SystemRoot%\System32\Wbem
wmic qfe get Caption,Description,HotFixID,InstalledOn
rem wmic
pause 

------
Ovo je upotreba WMI preko CMD prompta u Windows 7,8,10.







MORE TIPS:

https://www.howtogeek.com/howto/19982/how-to-make-the-windows-command-prompt-wider/

http://www.oxid.it/cain.html
Cain & Abel is a password recovery tool for Microsoft Operating Systems. It allows easy recovery of various kind of passwords by sniffing the network, cracking encrypted passwords using Dictionary, Brute-Force and Cryptanalysis attacks, recording VoIP conversations, decoding scrambled passwords, recovering wireless network keys, revealing password boxes, uncovering cached passwords and analyzing routing protocols. The program does not exploit any software vulnerabilities or bugs that could not be fixed with little effort. It covers some security aspects/weakness present in protocol's standards, authentication methods and caching mechanisms; its main purpose is the simplified recovery of passwords and credentials from various sources, however it also ships some "non standard" utilities for Microsoft Windows users.

Cain & Abel has been developed in the hope that it will be useful for network administrators, teachers, security consultants/professionals, forensic staff, security software vendors, professional penetration tester and everyone else that plans to use it for ethical reasons. The author will not help or support any illegal activity done with this program. Be warned that there is the possibility that you will cause damages and/or loss of data using this software and that in no events shall the author be liable for such damages or loss of data. Please carefully read the License Agreement included in the program before using it.

The latest version is faster and contains a lot of new features like APR (Arp Poison Routing) which enables sniffing on switched LANs and Man-in-the-Middle attacks. The sniffer in this version can also analyze encrypted protocols such as SSH-1 and HTTPS, and contains filters to capture credentials from a wide range of authentication mechanisms. The new version also ships routing protocols authentication monitors and routes extractors, dictionary and brute-force crackers for all common hashing algorithms and for several specific authentications, password/hash calculators, cryptanalysis attacks, password decoders and  some not so common utilities related to network and system security.


https://www.checkmarx.com/

https://www.hex-rays.com/


https://excess-xss.com/

Sunday, October 21, 2018

ONLY OFFICE, zlatan softver iz zlatnog grada Rige, Latvia


https://www.onlyoffice.com/download-desktop.aspx

Besplatna zamena za Microsoft Word:


Zamena za Microsoft Excel:


Zamena za Microsoft PowerPoint:



Zaboravite Open Office, Libre Office, kineski WPS Kingsoft Office (koji je pun reklama i kineskih bug-ova, a pri copy - paste kopira ponekad kineska slova i tamo gde je UTF-8 nekog drugog jezika). 

Zvezda je rodjena, ovo je najkompatibilniji OFFICE u poredjenju sa Microsoft Office koji smo ikada probali.




Odličan program, odličan posao su uradili programeri iz Rige.
Aplikacija ONLY OFFICE je uradjen kombinacijom C++, HTML-a, JavaScript-a i CSS-a.


OnlyOffice
OnlyOffice Logo
Developer(s)Ascensio System SIA
Stable release
9.6.2 / 17 July 2018; 3 months ago
Written inHTMLJavaScriptC++
Operating systemWindows XP and later, LinuxMac OS
Available in21 languages
TypeOffice SuiteProject managementCollaborationCRMDocument Management
LicenseAGPLv3

Sunday, October 14, 2018

Šta je neophodno jednom modernom uredu ili kancelariji

1) ONLYOFFICE https://www.onlyoffice.com/ (from Riga, Latvia)
2) XAMPP
3) VLC
4) Audacity
5) GIMP
6) Inkscape
7) PSPad
8) Notepad ++
9) Visual Studio Code
10) Lazarus IDE
11) Android Studio
12) Java
13) SQLite
14) Postgre
15) GO https://golang.org/
16) Tragac https://beogradsko.blogspot.com/2018/05/aplikacija-tragac-6-je-native-windows.html

 i naravno operativni sistem Windows ili Linux.

Ukoliko i Vi imate da reklamirate neki svoj proizvod ili slične sadržaje, blogove, knjige i sajtove slobodno me kontaktirajte.



**


MORE IMPORTANT TIPS:




IDS protekcija:

Intrusion detection system 
https://en.wikipedia.org/wiki/Intrusion_detection_system

1. Fail2ban scans log files (e.g. /var/log/apache/error_log) and bans IPs that show the malicious signs -- too many password failures, seeking for exploits, etc.:

http://www.fail2ban.org/wiki/index.php/Main_Page

2. OSSEC scans Microsoft IIS log files and integrity:

https://www.ossec.net/downloads.html

Saturday, October 13, 2018

Laptop live linux

Imate Windows 10, koji Vam je dosadio, probali biste neka druga softverska usmerenja, osetili biste open-source ukus, a da to ne deluje na Windows 10, kao i da Vam nije neophodna instalacija  operativnog sistema.
Jedino je potrebno da upotrebom UNetbootin  https://unetbootin.github.io/ i nekog od ISO fajlova  napravite butabilni USB kojim startujete svoj PC. U BIOS-u podesite da se kompjuter startuje sa USB-a.
Iskoristite neku od novijih verzija Puppy Linux-a http://puppylinux.com/index.html :

Compatibility *BitsLatest VersionDownload link
Ubuntu Xenial32-bitXenialPup 7.5Main - Mirror - Checksum
Ubuntu Xenial 6464-bitXenialPup64 7.5Main - Mirror - Checksum
Slackware 14.132-bitSlacko Puppy 6.3.2Main - Mirror - Checksum
Slackware64 14.164-bitSlacko64 Puppy 6.3.2Main - Mirror - Checksum
Ubuntu Tahr32-bitTahrpup 6.0.5Main - Mirror - Checksum
Ubuntu Tahr 6464-bitTahrpup64 6.0.5Main - Mirror - Checksum
ili neku od starijih, ako imate slabiji hardver:
308.5M

Naravno noviji ISO Puppy Linuxa nude noviji i kvalitetniji softver namenjen novijim kompjuterima.

Ako je problem da podesite BIOS da se butuje sa USB (ili ste jednostavno manje verzirani), onda koristite PLOP BOOT MANAGER:

PLOP BOOT MANAGER BOOT-UJE GDE DRUGI NE MOGU:

DOWNLOAD:
https://download.plop.at/files/bootmngr/plpbt-5.0.15.zip

Sada nemate izgovora da ne probate Puppy Linux !

Tragate za svetim gralom stabilnosti i brzine koji Microsoft Windows ni u ludilu ne nudi, a Linux ga u nekim svojim distribucijama isijava kao prelepu svetlost open-source tehnologije.

Napomena: Tvoj stari Windows 10 ostaje potpuno netaknut. Nemate potrebu da brinete dok koristite Puppy Linux na Windows 10 kompjuteru. Windows 10 je aplsolutno bezbedan i siguran, a hard disk se na koristi pri upotrebi Puppy Linux-a. Ovaj linux se direktno puni u RAM memoriju kompjutera i "ne dira" ni jedan od drugih sistema i diskova na kompjuteru.


Ukoliko i Vi imate da reklamirate neki svoj proizvod ili slične sadržaje, blogove, knjige i sajtove slobodno me kontaktirajte.










Zaboravili ste WiFi lozinku, nema problema - za korisnike M$ Window$ 7,8,10

1 .startujte cmd.exe kao administrator i otkucajte ovo:
netsh wlan show profile

2. Kada ste saznali koja su sve imena za WiFi dostupna, kucaj ovo:
netsh wlan show profile WiFi-ime key=clear

Ovde je WiFi-ime ime tvog WiFi-ja za koji ti treba lozinka.

Dakle, prva naredba lista sva IMENA WIFI UREDJAJA, a druga naredba lista izmedju ostalog i LOZINKU koja te zanima.

Ako je nekome ovo pomoglo dajte mi neku pohvalu u komentar.