Φθηνό Software

Φθηνό Software

Παρακολουθώντας IT κανάλια στο youtube έπεσα πάνω σε ένα από τους γνωστούς testers για hardware, το Tech Yes City. Σε βίντεο τους βεβαιώνουν ότι έχουν ελέγξει τα κλειδιά που δίνουν και είναι εντάξει. Δημιουργήσαμε κωδικό για “Affiliate Program” με την ελπίδα ότι αν...
Ακουστικά για PC με καρφί ή usb?  hama 184013 vs sandberg cyclone

Ακουστικά για PC με καρφί ή usb? hama 184013 vs sandberg cyclone

Έχουμε 2 φτηνά ακουστικά το hama “184013” με καρφί ίσως το φτηνότερο της αγοράς με 10-15 ευρό και το sandberg cyclone με usb λίγο πιο ακριβό περίπου στα 35-40 ευρό Με μια γρήγορη ματιά hama 184013 μειονεκτήματα: ποιότητα κατασκευής αστεία, είναι όλο από...
When VPN fails Use a “KillSwitch” to protected yourself

When VPN fails Use a “KillSwitch” to protected yourself

Using VPN is something of a must these days and if you really want to click ALL links and install everything that you want to test, is NOT advisable to do it from your working machine. So, I created a Virtual Machine(VM) for that job. BUT, I think I clicked TOO many...
Dial Up Modem and Caller ID in Greece

Dial Up Modem and Caller ID in Greece

Making an application that uses a dial-up modem is not only tricky because of the hardware-software connection, but also for finding the right hardware and setting it up properly. Be careful when you are buying a modem for caller id, make sure not only that it says...
PHP echo all post variables for debug

PHP echo all post variables for debug

You started your session, then you asked if it is a post request or not. Then you checked if that post variable isset() to start your code. Unfortunately the code never run and you have no idea what happened. Add the 2 lines in red in the following code to find out...
PHP echo all post variables for debug

How to add / remove month(s) to a date in PHP

This is an easy function to add or remove months from a date in PHP. There is a limitation, you can only subtract up to 999 years, but you can change that by increasing the 12000 number in the code, to whatever you want to. function add_month($strbegin, $count) {...