mercoledì 24 luglio 2013

Telelavoro - Telework

Quand'è che le aziende italiane si ficcheranno in testa che il telelavoro conviene a tutti?? Questi lavori di squadra, il team (automobilistico???). Cosa va a fare un web designer in ufficio??? Che paese arretrato......

When did the Italian companies will unestand  that telework is convenient for everyone? These work as a team, the team (automotive?). What goes into making a web designer in the office?? What a backward country ......


Il telelavoro è eco-logico, e si risparmierebbero almeno €250/mese tra benzina e pasti. Il controllo? Skype, e se non consegni il lavoro sono volatili per diabedici :-)

Telework is eco-friendly, and it would save at least 250/month between gasoline and meals. Control? Skype, and if  the work is not deliverd in time you are in trouble :-) 


Vantaggi: 
  • Il datore di lavoro non ha costi di manutenzione per i PC
  • Il datore di lavoro risparmia energia elettrica
  • Il datore di lavoro non deve acquistare nessun programma
  • Il web designer può fare risparmiare sullo stipendio perchè non ha costi di trasporto

Svantaggi:
  • Nessuno



NR Design
 

martedì 16 luglio 2013

giovedì 11 luglio 2013

A fake person (stolen identity)

Nothing that has to do with my job but with a fake client and person. John Landray. This guy is from Nigeria and uses this name to steal money from people all over the internet. The real John Landray is an honest British guy. Be cauotious when you read that name. He is on Facebook and other dating sites.

Nuccio Ruggia 

martedì 9 luglio 2013

Pagina di errore form - Form error page

Inserita pagina di errore nei 2 form:
Forms error pages created: 
www.ruggia.net/contatti_error.htm
www.ruggia.net/servizi_error.htm
www.ruggia.net/english/servizi_error.htm
www.ruggia.net/english/contatti_error
www.ruggia.net/servizi.htm
www.ruggia.net/english/servizi.htm

CSS to add
div.note {
    text-align: left;
    padding: 10px 10px 10px 48px;
    border: 4px solid;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -khtml-border-radius: 8px;
    margin: 5px 0px;
    line-height: 1350%;
}

div.alert {
    background: #9b0000 url(../img/alert.png) no-repeat 10px 50%;
    border-color: #FF0000;
    color: #FFFFFF;
}
div.white a:link  { font-size:16px;font-family:Trebuchet MS, Arial;color:#FFFFFF;}
-----------------------------------------------------------------------------------
sendmail.php (contact page)

<?php session_start(); ?>
<?php
// - First, we need to set few Variables to handle all the dirty work!
$SiteName = "Dal sito";
$SiteEmail = "nuccio@ruggia.net";
// -  That's it! That's All You Need To Do!!
$AdminMessage .= "Nome: $requiredNome\n";
$AdminMessage .= "Cognome: $requiredCognome\n";
$AdminMessage .= "E-mail: $requiredMail\n";
$AdminMessage .= "$info\n";
// Beginning of Securimage code
include_once $_SERVER['DOCUMENT_ROOT'] . 'D:\inetpub\webs\ruggianet/securimage/securimage.php';
$securimage = new Securimage();
if ($securimage->check($_POST['captcha_code']) == false) {
// the code was incorrect
// you should handle the error so that the form processor doesn't continue
// or you can use the following code if there is no validation or you do not know how
// echo "The security code entered was incorrect.<br /><br />";
// echo "Please go <a href='javascript:history.go(-1)'>back</a> and try again.";
// exit;
header("Location: http://www.ruggia.net/contatti_error.htm#error");
exit;
}
// End of Securimage code
mail("$SiteEmail", "$SiteName ti scrivo", $AdminMessage, "From: $requiredNome $requiredCognome");
?>
<script type="text/javascript">
window.alert("Messaggio inviato correttamente!")
</script>
<script language="javascript"
type="text/javascript">document.location.href="contatti.htm";</script>
<!-- - vecchio refresh: header("Location: http://www.ruggia.net/contatti.htm"); -->
---------------------------------------------------------------------------------
HTML Capcha code

<!-- Begin captcha code -->
            <a NAME="error"></a>
            <img id="captcha" src="/securimage/securimage_show.php" alt="CAPTCHA Image" /><br>Insert code*<br><div class="note alert white">Invalid code, go back and retype the new code.
            <a href="javascript:history.go(-1)">[Go Back]</a></div>
            <input type="text" name="captcha_code" size="10" maxlength="6" />
            <a href="#" onclick="document.getElementById('captcha').src = '/securimage/securimage_show.php?' + Math.random(); return false">[ new code ]</a><br><br>
            <!-- End of captcha code -->

Nuccio Ruggia