Friday, July 28, 2023

Ghostscript + Mfilemon

Linux tips =  

https://github.com/vinifmor/bauh

https://github.com/AppOutlet/AppOutlet

An alternative to GNOME Gnome-software and KDE Discovery!



Windows tips =

GOOD ----->

  • Install Mfilemon
  • Install Ghostscript
  • Create a new printer. Choose manual configuration. Pick the driver from ghostscript\lib\ghostpdf.inf
  • Create a new port for the printer, select "Multi file port", name it GSPDF: or whatever
  • Configure the newly created port as follows:
    • Output path = C:\autopdf
    • Filename pattern = %Y_%m_%d\file%i.pdf
    • User command (change Ghostscript path as needed) = "C:\Program Files\gs\gs9.53.3\bin\gswin64c.exe" @"C:\Program Files\mfilemon\conf\gspdf.conf" -sOutputFile="%f" -
    • Use pipe to send data to user command = yes
    • Hide process = yes
  • Print a sample page. You should get a PDF in C:\autopdf\year_month_day\file0001.pdf
USER COMMNAD ON NEW VERSION OF GS =
"C:\Program Files\gs\gs10.01.2\bin\gswin64c.exe" @"C:\Program Files\mfilemon\conf\gspdf.conf" -sOutputFile="%f" -

https://github.com/lomo74/mfilemon

https://support.farmerswife.com/support/solutions/articles/17000092051-installing-ghostscript-pdf-printer

Prerequisites

gs921w64.exe or gs921w32.exe downloaded from https://www.ghostscript.com/download/gsdnld.html

mfilemon-setup.exe downloaded from https://sourceforge.net/projects/mfilemon/

Note: If you download a Ghostscript version later than 9.21 that's fine - but you need to know what version it is in order to be able to set up "mfilemon" properly.

++


https://sourceforge.net/projects/thinvnc/




Tiny11

https://github.com/ntdevlabs/tiny11builder



https://www.reviewgeek.com/102893/is-plex-legal


SSH TUNNEL = 

https://my.kualo.com/knowledgebase/?kbcat=0&article=890

https://sshtunnel.readthedocs.io/en/latest/

https://github.com/mattykay/pytunneling

https://github.com/tobor88/CSharp-SSH-Tunnels

Thursday, July 20, 2023

AI Website builders

  1.  https://hocoos.com/
  2. https://mailchimp.com/features/website-builder
  3. https://mobirise.com/
  4. https://www.typeform.com/try/landingpage
  5. https://www.adcreative.ai/
  6. https://durable.co/ai-website-builder
  7. https://teleporthq.io/ai-website-builder
  8. https://10web.io/
  9. https://www.hostinger.com/ai-website-builder
  10. https://designs.ai/en
  11. https://zapier.com/blog/best-ai-website-builder/
  12. https://www.appypie.com/website-builder/ai-website-builder
  13. https://www.elegantthemes.com/blog/marketing/best-ai-website-builders
  14. https://cybernews.com/best-website-builders/ai-website-builders/
  15. https://blog.hubspot.com/website/ai-website-design-tools
  16. https://aitoolsarena.com/marketing/4-best-free-ai-website-builder
  17. https://www.tooltester.com/en/blog/ai-website-builder/
  18. https://dribbble.com/tags/ai%20website%20design




Add to .htaccess


RewriteEngine on

RewriteCond %{HTTP:VIA}                 !^$ [OR]

RewriteCond %{HTTP:FORWARDED}           !^$ [OR]

RewriteCond %{HTTP:USERAGENT_VIA}       !^$ [OR]

RewriteCond %{HTTP:X_FORWARDED_FOR}     !^$ [OR]

RewriteCond %{HTTP:PROXY_CONNECTION}    !^$ [OR]

RewriteCond %{HTTP:XPROXY_CONNECTION}   !^$ [OR]

RewriteCond %{HTTP:HTTP_PC_REMOTE_ADDR} !^$ [OR]

RewriteCond %{HTTP:HTTP_CLIENT_IP}      !^$

RewriteRule ^(.*)$ - [F]



Add to your PHP script:


$test_HTTP_proxy_headers = array(

'HTTP_VIA',

'VIA',

'Proxy-Connection',

'HTTP_X_FORWARDED_FOR',  

'HTTP_FORWARDED_FOR',

'HTTP_X_FORWARDED',

'HTTP_FORWARDED',

'HTTP_CLIENT_IP',

'HTTP_FORWARDED_FOR_IP',

'X-PROXY-ID',

'MT-PROXY-ID',

'X-TINYPROXY',

'X_FORWARDED_FOR',

'FORWARDED_FOR',

'X_FORWARDED',

'FORWARDED',

'CLIENT-IP',

'CLIENT_IP',

'PROXY-AGENT',

'HTTP_X_CLUSTER_CLIENT_IP',

'FORWARDED_FOR_IP',

'HTTP_PROXY_CONNECTION');

foreach($test_HTTP_proxy_headers as $header){

if (isset($_SERVER[$header]) && !empty($_SERVER[$header])) {

exit("Please disable your proxy connection!");

}

}


  1. https://pentest-tools.com/website-vulnerability-scanning/website-scanner
  2. https://urlscan.io/
  3. https://geekflare.com/online-scan-website-security-vulnerabilities/
  4. https://www.criminalip.io/
  5. https://quttera.com/
  6. https://www.immuniweb.com/websec/


IP geolocation information = 


MORE IP tools:







































Wednesday, July 19, 2023

SQL tut

 select c1,c2 from t;


--Query data in columns c1,c2 from a table


Select * from t;


--Query all rows and columns from a table


select c1,c2 from t where condition;


--Query data and filer rows with a condition


select distinct c1 from t whwre condition;


--Query distinct rows from a table


select c1, c2 from t order by c1 ASC[DESC];


--Sort the result set in ascending or descanding order


select c1, c2 from t order by c1 limit n offset offset;


--Skip offset of rows and return the next n rows


select c1, aggregate(c2) form t group by c1;


--Group rows using an aggregate function


select c1, aggregate(c2) from t goup by c1 having condition;


--Filter groups using HAVING clause


select c1, c2 from t1 inner join t2 on condition;


--Inner join t1 and t2


select c1, c2 form t1 left join t2 on condition;


--Left join t1 and t2


select c1, c2 form t1 right join t2 on condition;


--Right join t1 and t2


select c1, c2 from t1 full outer join t2 on condition;


--Perform full outer join


select c1, c2 from t1 cross join t2;


--Produce a Cartesian product of rows in tables



select t1, t2 form t1, t2;


--Another way to perform cross join



select c1, c2 from t1 A inner join t2 B on condition;


--Join t1 to itself using inner join clause



select c1, c2 form t1 union [ALL] select c1, c2 from t2;


--Combine rows from two queries



select c1, c2 from t1 intersect select c1, c2 from t2;


--Return the intersection of two queries



select c1, c2 from t1 minus select c1, c2 from t2;


--Subtract a result set from another result set



select c1, c2 form t1 where c1 [NOT] LIKE pattern;


--Query rows using pattern maching %, _



select c1, c2 form t1 ehere c1 [NOT] IN value_list;


--Query rows in a list



select c1, c2 from t where c1 between low and high;


--Query rows between two values



select c1, c2 from t where c1 IS [NOT] NULL;


--Check if values in table is NULL or not



MORE TIPS:


https://trumpexcel.com/number-rows-in-excel/


https://support.microsoft.com/en-gb/office/automatically-number-rows-76ce49e3-d8d2-459b-bd85-ee1d3973e6e6


Probaj Framer framer.com Promptovi: prompts.framer.ai Nauči Dizajn: naucidizajn.com

https://webflow.com/



Friday, July 14, 2023

Nova verzija aplikacije OTVARACH *** The Opener Application

Više informacija i download link: 

More informations about application and download link:



The Opener Application

 


You can download application form the following link:


https://drive.google.com/file/d/1FRj2Nd_HeJfW9RGJ6UIfMARPq0grk7LU/view?usp=sharing


  Password for UnZip is: raspakuj

You must unzip two times with the same password.



The Functions:

 

1 “<< Open” button can engage Open Dialog.

Each open file is written in a black memo box and recorded so that it can be accessed later by double-clicking on it.

 

The same effect is achieved with the drag-drop technique, where we drag a file into the black box.

 

 

2 The “Search” button…

The search button is used to find part of the specific file path in the black box.

 

When you find what you were looking for, double-click the mouse to launch the document or application from the black box.

 

3 The “Select >>” button…

The Select button has the same effect as double-clicking on a specific path in the black box.

 

You can click a specific line in the black box that represents a specific path to an application, document, or file, and then click the “Select >>” button.

The marked path opens immediately.  

 The black box logs open paths only once, regardless of how many times you have opened the same path.


4 If you click on the word "Author = ", then the web portal of the application author with a contact form will open.

 

This is a simple application that will improve the organization of your work on the computer and increase productivity many times over.

 

Advanced users can edit the log.txt file, which contains all recorded paths recorded by the application.

 

You can arrange a list of paths yourself, which you will later use as a menu for starting important files.

 

Application is completely free and user friendly...

You can download application form the following link:


https://drive.google.com/file/d/1FRj2Nd_HeJfW9RGJ6UIfMARPq0grk7LU/view?usp=sharing


  Password for UnZip is: raspakuj

You must unzip two times with the same password.




MORE USEFUL TIPS:

https://pcmanager-en.microsoft.com/

https://www.plasmic.app/



https://www.makeuseof.com/tag/top-7-underground-search-engines-knew


https://www.makeuseof.com/tag/7-cool-html-effects-that-anyone-can-add-to-their-website-nb


https://www.makeuseof.com/use-gmail-help-me-write


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


https://web.dev/learn/html/tables/


https://www.html5rocks.com/en/index


https://www.sqltutorial.org/



БЛАГОДАТ (грч: χάρις); дар Светог Духа, дар учешћа у светости, неизрециви преображај од Бога; чудесни синергизам верника са новим животом у Исусу Христу, животом који оснажује Дух Свети по Његовој мери, животом који нам даје могућност да у заједници са Господом Исусом Христом достигнемо пуноћу живота, обожење, а самим тим и сотириолошки чин - чин спасења - крајњи циљ нашег живота.

Благодат је енергија (грч: ενέργεια - дејство, радња, моћ) или лично божанско дејство. Српски израз благодат значи; дато добро, даровано добро које је од Бога; то је енергија о којој су Свети Оци на Шестом васељенском сабору (Цариград, 681) водили расправу и дали јој велику важност. Дух Свети је извор и давалац нестворених обожујућих енергија, одмеравајући благодат сваком по његовом труду (1 Кор 3,8). Манифестација труда је у вери, љубави, посту, милосрђу, молитви, трпљењу и свим осталим врлинама које човеков живот сигурно воде увиру у Царство небеско. Без неопходне благодати човек не може усвојити ниједну од јеванђелских врлина, па зато благодат представља суштинску карактеристику Православља и позив на веру и моћ троипостасног Бога.

Божија благодат се пројављује у Цркви и кроз Свете Тајне. Па тако, Света Тајна Покајања је благодат која сведочи ο самосвести човека; Света Тајна Крштења је његово друго рођење, преображај после пада у грех, јединствено достојанство и неопходност човека без кога свет нема смисла. Света Тајна Миропомазања која се врши у садејству са Крштењем уводи целог човека у благодат обожења човек постаје носилац Духа Светог, а "Печат дара Духа Светог" преображава његова природна осећања у натприродну димензију, утискује у њега духовна осећања, и човек прима благодат. Такав човек, верник, који са својом слободном вољом и чврстом одлуком, а посредством Духа Светог, прима божанска дејства и просветљења, прима Божију благодат.

Friday, July 7, 2023

Natashina dijeta

 Šta možete da jedete: svu vrstu mesa (osim masne svinjetine, ali može čisto svinjsko), mlečne proizvode sa što manje ugljenih hidrata (ne preterujte sa namirnicama kao što su feta sir, jogurt, kačkavalj), povrće (sve zeleno: kupus, zelena salata, krastavac, karfiol, brokoli, luk, paradajz, tikvice, spanać), jaja na sve načine, orašasti plodovi (po šaka dnevno), voda je jako bitna tokom celog dana (2.5 l dnevno).

Ne smete da jedete: bilo kakvo pecivo, voće nikako osim nedeljom, krompir, soja, pasulj, boranija, testenina, grašak, pirinač, grickalice, slatkiši, sokovi.

https://www.keyhero.com/free-typing-test/?lang=0


Lazarus-ide FTP Client

https://github.com/sysrpl/Codebot.Cross



Google’s NotebookLM is a Game Changer for Notetaking