Chaque fois que je dois créer une application du type console, c’est le même problème. Alors, je publie la version que je vais utiliser sur toutes mes applications. Effet, j’ai analysé plusieurs solutions, et détails techniques de chaque solution et j’ai fini pour choisir une solution publiée sur CodeProject. Ma...

Easy way to convert a generic objet to xml string and xml string to generic object. public static string Serialize<t>(T xml); public static void Deserialize<t>(ref T obj, string xml); 1 2/// <summary> 3/// Deserialize xml --> obj 4/// </summary> 5/// <typeparam name="T"></typeparam> 6/// <param name="obj"></param> 7///...

How convert a text to a Title text with TSQL. It’s “easy” solution. 1 2CREATE FUNCTION udf_TitleCase (@InputString VARCHAR(4000)) 3RETURNS VARCHAR(4000) 4AS 5BEGIN 6 DECLARE @Index INT 7 DECLARE @Char CHAR(1) 8 DECLARE @OutputString VARCHAR(255) 9 10 SET @OutputString = LOWER(@InputString) 11 SET @Index = 2 12 SET...

How can we send email by sql script ? To enable Database Mail XP 1 2USE msdb; 3GO 4EXEC sp_configure 'Database Mail XPs' 5GO 6RECONFIGURE 7GO 8EXEC sp_configure 'Database Mail XPs', 1 9GO 10RECONFIGURE 11GO 12EXEC sp_configure 'Database Mail XPs' 13GO To configure database mail 1 2USE msdb 3GO 4 5DECLARE @ProfileName...

On a besoin *parfois* de connaitre ou avoir la liste de toutes les tables et les colonnes Ce script crée une table avec toutes définitions. ex: 1 2select * from _text_table_dictionary 3where Datatype = 'datetime' 1 2PRINT @@servername; 3GO 4 5IF EXISTS ( 6 SELECT * 7 FROM dbo.sysobjects 8 WHERE id =...

*- If you have nothing to hide, you have nothing to fear. It’s not that I have something to hide, I have nothing I want you to see.* Puis-je vous demander le mot de passe de votre ordinateur, de votre boîte mail et de votre compte Facebook ? Promis, je ne ferai rien de mal, seulement lire.# Comment oseriez-vous...

– Since SQL Server 2005 Management Studio lacks the Object Search feature, here is the simple query to find any column in a database 1 2Select O.name objectName, C.name ColumnName 3from sys.columns C inner join sys.objects O 4ON C.object_id=O.object_id 5where C.name like &lsquo;%ColumntoFind%&rsquo;order by...

Le document présente la suite de protocoles TCP/IP. Ce document sert d’introduction à l’ensemble des cours et TP sur les différents protocoles Ensemble de documents réalisés pour la freeduc-sup. Site d’origine : http://www.linux-france.org/prj/edu/archinet/systeme/index_monopage.html#id2499341 Présentation du document...

Site d’origine : http://www.hongkiat.com/blog/auto-backup-website-dropbox/ As owners of websites, one of the more important things you should do is to regularly backup the website. Most web hosting providers will enable daily or weekly backups, mainly for their disaster recovery purpose only. If you want to personally...

Why we must check permissions BEFORE to install an Android Application Site d’origine : https://f-droid.org/repository/browse/?fdid=com.actisec.clipcaster Proof of concept that shows how easily any installed app can read passwords when they’re used from password management applications. Proof of concept that shows how...

Site d’origine : http://stackoverflow.com/questions/9135290/how-to-redirect-page-to-https-in-php Ajouter aux fichier : index.php # Add to redirect to HTTPS if(!isset($_SERVER[‘HTTPS’]) || $_SERVER[‘HTTPS’] == "" || $_SERVER[‘HTTPS’] == “off”){ $redirect = “https://”.$_SERVER[‘HTTP_HOST’].$_SERVER[‘REQUEST_URI’];...

Portugueis, English, or français…. Mes annotations. My stuffs…. I will try to abandon shaarli because inMyPluxml is parfait. My old blogs stay privately, but I will transfer it to here! 1 2<pre> 3/* Test */ 4function writeMessage() { 5 echo "You are really a nice person, Have a nice time!"; 6} 7 8/* Calling a PHP...