milosev.com
  • Home
    • List all categories
    • Sitemap
  • Downloads
    • WebSphere
    • Hitachi902
    • Hospital
    • Kryptonite
    • OCR
    • APK
  • About me
    • Gallery
      • Italy2022
      • Côte d'Azur 2024
    • Curriculum vitae
      • Resume
      • Lebenslauf
    • Social networks
      • Facebook
      • Twitter
      • LinkedIn
      • Xing
      • GitHub
      • Google Maps
      • Sports tracker
    • Adventures planning
  1. You are here:  
  2. Home

Saving file.

Details
Written by: Stanko Milosev
Category: PHP
Published: 18 August 2008
Last Updated: 18 July 2011
Hits: 5571

There is no such thing as TStringList

So, note to my self, for saving files in PHP (good for geting and analyzing queries) :

$fp = fopen('c:data.txt', 'w');
fwrite($fp, $MySQL);
fclose($fp);

Taken from here.

Check if anything is assigned to $_GET

Details
Written by: Stanko Milosev
Category: PHP
Published: 06 August 2008
Last Updated: 18 July 2011
Hits: 6041

So, this is my first post

How to check is anything passed to $_GET or $_POST variables?

Easily:

if (!isset($_GET['download'])) {

Example:

<?php
if (!isset($_GET['download'])) {
echo ('Error download is not assigned');
} else {
echo ($_GET['download']);
}
?>

Taken from here.

Installing the GitHub Copilot CLI on Windows 11

Details
Written by: Stanko Milosev
Category: Windows
Published: 18 January 2026
Last Updated: 18 January 2026
Hits: 35
First, I executed the following command:
winget install GitHub.Copilot

Installing the MarkItDown Python Tool for Converting Files to Markdown

Details
Written by: Stanko Milosev
Category: Windows
Published: 18 January 2026
Last Updated: 18 January 2026
Hits: 35
MarkItDown is a Python tool for converting files and Office documents to Markdown.

First, I executed the following command: Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy RemoteSigned

Otherwise, I received the following error:
.\.venv\Scripts\Activate.ps1 : File C:\Users\user\.venv\Scripts\Activate.ps1 cannot be loaded. The file
C:\Users\user\.venv\Scripts\Activate.ps1 is not digitally signed. You cannot run this script on the current
system. For more information about running scripts and setting execution policy, see about_Execution_Policies at
https:/go.microsoft.com/fwlink/?LinkID=135170.
At line:1 char:1
+ .\.venv\Scripts\Activate.ps1
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : SecurityError: (:) [], PSSecurityException
    + FullyQualifiedErrorId : UnauthorizedAccess
Next, I created a virtual environment by running:

python -m venv .venv
Then, I activated the virtual environment by running:
.\.venv\Scripts\Activate.ps1
With the virtual environment activated, I executed the following command:
(.venv) PS C:\Users\user> pip install "markitdown[all]"
  1. Step-by-Step Guide to Installing Python on Windows 11
  2. Step-by-Step Guide: Installing OpenWebUI on Windows 11 with Docker
  3. TestComplete
  4. List of Windows application which I like

Subcategories

C#

Azure

ASP.NET

JavaScript

Software Development Philosophy

MS SQL

IBM WebSphere MQ

MySQL

Joomla

Delphi

PHP

Windows

Life

Lazarus

Downloads

Android

CSS

Chrome

HTML

Linux

Eclipse

Page 105 of 168

  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109