На фотографијама се налазе лица 3267 Срба, које су побили припадници 28. Дивизије тзв. Армије БиХ из Сребренице под командом Насера Орића. pic.twitter.com/pu7n2FIIqu
Porteus, literally mean, portable OS, installed in an USB disk and carried over , in your pocket. Where ever, you are , when you have access to a Pc, insert the usb disk, change boot order in bios and boot to your favourite porteus OS.
When you need an application, go to slackfinder.org, search for your need and download. The file extension will be *.txz.
Right click on downloaded file, and convert it to xzm module.
Copy the module to your porteus/modules folder and activate(context menu)
If all required libraries are present, The application will work, when you start it from menu.
If not, open terminal, and type ldd /usr/bin/xxxx name. it will list out not found libraries. Search the net for them and add to /usr/lib64.Thumbs up.
No idea about zim notes. Check if this module works for you.
Identify the possible Boot Menu keys for the computer depending on the computer manufacturer in the following list:
Manufacturer
Key
Acer
F12, F9, F2, Esc
Apple
Option
Asus
Esc
Clevo
F7
Dell
F12
Fujitsu
F12, Esc
HP
F9
Huawei
F12
Intel
F10
Lenovo
F12
MSI
F11
Samsung
Esc, F12, F2
Sony
F11, Esc, F10
Toshiba
F12
others…
F12, Esc
Kako dodatno ubrzati Windows 10 ?
Settings > Update & security > Advanced options > Delivery optimization i isključiti Allow downloads from other PCs.
Settings > System > Notification&Actions i isključiti stvari kao što su Get tips, tricks and suggestions kada koristite Windows ili Show me the Windows welcome experience after updates and occasionally when I sign in to highlight what’s new and suggested i predložena i pojedinačna obaveštenja o aplikaciji.
Settings > Personalization > Start > Show suggestions occasionally in Start.
Settings > Privacy > General > Let apps use advertising ID to make ads more interesting to you based on your app activity (Isključivanjem ovoga ćete resetovati vaš ID).
Settings > Privacy > Inking & typing i isključiti opciju.
Settings > Privacy > Background apps i ili isključite Let apps run in the background ili isključite svaku aplikaciju pojedinačno.
Settings > Accounts > Sync your settings. Možete isključiti sinhronizaciju svih podešavanja ili možete selektivno isključiti određena podešavanja.
Settings > Updates > Advanced options i pod Pause updates izaberite datum u narednih 35 dana. Međutim, nećete moći ponovo da pauzirate nakon tog trenutka dok sistem ne ažurirate.
Šta jesti ? Pa ono što jede Nole:
Kinou mogi korste kao zamenu za meso, obiluje vitaminima i mineralima i vrlo je hranjiva. Ona sadrži mnogo više proteina, vitamina B, dijetalnih vlakana i minerala nego mnoge druge žitarice.
Ako je jedete uz neo varivo gotovo da nećete primetiti razliku između ove žitarice i mesa.
Ono što je bitno navesti je to da kinoa sadrži svih osam aminokiselina koje su čoveku potrebne, za razliku od ostalih žitarica koje sadrže najviše tri. Čak su i Ujedinjene nacije prihvatile kinou kao superhranu.
Takođe, kinoa ne sadrži gluten i veoma je laka za varenje.
Kinoa pomaže kod varenja, a samim tim i mršavljenja, izbacuje nataložene toksine, ali i povoljno utiče na imuni sistem.
Narodna medicina kinou još koristi i za lečenje kožnih bolesti, reume, a zbog visokog sadržaja kalijuma ona blagotvorno utiče na kardiovaskularni sistem.
Rapid-application development (RAD), also called rapid-application building (RAB), is both a general term for adaptive software development approaches, and the name for James Martin's method of rapid development. In general, RAD approaches to software development put less emphasis on planning and more emphasis on an adaptive process. Prototypes are often used in addition to or sometimes even instead of design specifications.
Lazarus-ide možete koristiti i za programiranje u Windows 10, ali nije u tome poenta, nego da više promovišemo open sors i Linux koji je zapostavljen u Srbiji.
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.:
Вероватно се питате зашто у истом тексту комбинујемо ћирилицу, латиницу, енглески и неки други језик, то је зато што су сва та писма и језици опште прихваћени у Србији и тако треба да остане, разноликост је богатство Србије.
Питате се зашто су наши постови краћи него на другим сличним блоговима, па то је из разлога што нас занима само суштина, а објашњење дајемо детаљније, само уколико је то веома битно за разумевање онога што смо желели рећи.
Наши постови садрже много линкова ка другим сајтовима, а сваки од тих линкова је веома битан и веома квалитетан избор, већ проверено квалитетан, тако да Вам штеди време које би сами провели "чешљајући" Гоогле и друге интернет претраживаче.
Оно што желимо себи, то дајемо на увид и вама, а све небитне ствари које се могу прочитати на другим технолошким блоговима остављамо другима.
Наши постови нису већином сензационалистички настројени, мада смо увек веома апдејт, свежи и актуелни, па се провуче и нека сензација, али само ако иоле вреди нашим верним читаоцима и циљној групи.
Наша циљна група су "суви" практичари, већином програмери и девелопери, мада има садржаја од значаја и дизајнерима, систем инжењерима и многим другим делатностима у ИКТ бранши.
Ukoliko i Vi imate da reklamirate neki svoj proizvod ili slične sadržaje, blogove, knjige i sajtove slobodno me kontaktirajte.
Simply put a file is a binary sequence of some type. In Delphi, there are three classes of file: typed, text, and untyped. Typed files are files that contain data of a particular type, such as Double, Integer or previously defined custom Record type. Text files contain readable ASCII characters. Untyped files are used when we want to impose the least possible structure on a file.
Typed Files
While text files consist of lines terminated with a CR/LF (#13#10) combination, typed files consist of data taken from a particular type of data structure.
For example, the following declaration creates a record type called TMember and an array of TMember record variables.
type
TMember = record
Name : string[50];
eMail : string[30];
Posts : LongInt;
end;
var Members : array[1..50] of TMember;
Before we can write the information to the disk we have to declare a variable of a file type. The following line of code declares an F file variable.
var F : file of TMember;
Note: To create a typed file in Delphi, we use the following syntax:
var SomeTypedFile : file of SomeType
The base type (SomeType) for a file can be a scalar type (like Double), an array type or record type. It should not be long string, dynamic array, class, object or a pointer.
In order to start working with files from Delphi, we have to link a file on a disk to a file variable in our program. To create this link we must use AssignFile procedure in order to associate a file on a disk with a file variable.
AssignFile(F, 'Members.dat')
Once the association with an external file is established, the file variable F must be 'opened' to prepare it for reading and/or writing. We call Reset procedure to open an existing file or Rewrite to create a new file. When a program completes processing a file, the file must be closed using the CloseFile procedure. After a file is closed, its associated external file is updated. The file variable can then be associated with another external file.
In general, we should always use exception handling; many errors may arise when working with files. For example: if we call CloseFile for a file that is already closed Delphi reports an I/O error. On the other hand, if we try to close a file but have not yet called AssignFile, the results are unpredictable.
Write to a File
Suppose we have filled an array of Delphi members with their names, e-mails, and number of posts and we want to store this information in a file on the disk. The following piece of code will do the work:
var
F : file of TMember;
i : integer;
begin
AssignFile(F,'members.dat') ;
Rewrite(F) ;
tryfor j:= 1 to 50 do
Write (F, Members[j]) ;
finally
CloseFile(F) ;
end;
end;
Read from a File
In order to retrieve all the information from the 'members.dat' file we would use the following code:
var
Member: TMember
F : file of TMember;
begin
AssignFile(F,'members.dat') ;
Reset(F) ;
trywhile not Eof(F) do begin
Read (F, Member) ;
{DoSomethingWithMember;}end;
finally
CloseFile(F) ;
end;
end;
Note: Eof is the EndOfFile checking function. We use this function to make sure that we are not trying to read beyond the end of the file (beyond the last stored record).
Seeking and Positioning
Files are normally accessed sequentially. When a file is read using the standard procedure Read or written using the standard procedure Write, the current file position moves to the next numerically ordered file component (next record). Typed files can also be accessed randomly through the standard procedure Seek, which moves the current file position to a specified component. The FilePos and FileSizefunctions can be used to determine the current file position and the current file size.
{go back to the beginning - the first record}
Seek(F, 0) ;
{go to the 5-th record}
Seek(F, 5) ;
{Jump to the end - "after" the last record}
Seek(F, FileSize(F)) ;
Change and Update
You've just learned how to write and read the entire array of members, but what if all you want to do is to seek to the 10th member and change the e-mail? The next procedure does exactly that:
procedure ChangeEMail(const RecN : integer; const NewEMail : string) ;
var DummyMember : TMember;
begin{assign, open, exception handling block}
Seek(F, RecN) ;
Read(F, DummyMember) ;
DummyMember.Email := NewEMail;
{read moves to the next record, we have to
go back to the original record, then write}
Seek(F, RecN) ;
Write(F, DummyMember) ;
{close file}end;
Completing the Task
That's it -- now you have all you need to accomplish your task. You can write members' information to the disk, you can read it back and you can even change some of the data (e-mail, for example) in the "middle" of the file.