diff --git a/Readme.txt b/Readme.txt
index ce3f37b6466d8ef7ecba7544a81ef0ba43089116..5935fb138a1e15156545ae55d9330160753da6d7 100644
--- a/Readme.txt
+++ b/Readme.txt
@@ -3,7 +3,7 @@ Welcome to the Miosix kernel
 ============================
 
 You can find information on how to configure and use the kernel
-at the following url: http://www.webalice.it/fede.tft/miosix
+at the following url: http://miosix.org
 
 The testsuite has been moved in the miosix/testsuite directory.
 The examples have been moved in the miosix/examples directory. 
diff --git a/main.cpp b/main.cpp
index d1e015641cb6237944395873f7f3a4c78775f440..8764b9fabb7ead786e8a9eae3d8bd03873dc6ec4 100644
--- a/main.cpp
+++ b/main.cpp
@@ -7,5 +7,5 @@ using namespace miosix;
 
 int main()
 {
-    iprintf("Hello world, write your application here\n");
-}
\ No newline at end of file
+    //iprintf("Hello world, write your application here\n");
+}
diff --git a/miosix/examples/sad_trombone/Readme.txt b/miosix/examples/sad_trombone/Readme.txt
index 4ffadf874addae641ca694c420dc120898ab67ca..a3e9e0e0a79d470964b132ee091790c5e7ba8c27 100644
--- a/miosix/examples/sad_trombone/Readme.txt
+++ b/miosix/examples/sad_trombone/Readme.txt
@@ -17,7 +17,7 @@ make; make program and plug headphone jack to the board's connector.
 
 Follow the kernel configuration procedure for this board here:
 
-http://www.webalice.it/fede.tft/miosix/boards/stm32vldiscovery-config.html
+http://miosix.org/boards/stm32vldiscovery-config.html
 
 To be able to hear the audio file, build one of the two circuits found in
 the circuit.jpeg file. The top one is a speaker amplifier, the bottom one
diff --git a/miosix/kernel/sync.h b/miosix/kernel/sync.h
index f33e4d07be34b5b828f81f8a26265bbd8274c7a1..61f3d2beb2ef71672b8b5cfa3ef5695544be4cef 100644
--- a/miosix/kernel/sync.h
+++ b/miosix/kernel/sync.h
@@ -44,7 +44,7 @@
  * available we can use it to check which compiler is being used.
  */
 #warning "You upgraded to gcc 4.7.2 and mandatory newlib patches, did you?"
-#warning "If not, see http://www.webalice.it/fede.tft/miosix/gcc-4.7.2.html"
+#warning "If not, see http://miosix.org/gcc-4.7.2.html"
 #endif
 #ifndef _MIOSIX
 /*
@@ -55,7 +55,7 @@
  * was defined by the Makefile, now it became a gcc intrinsic.
  */
 #error "You upgraded to gcc 4.7.2, did you?"
-#error "If not, see http://www.webalice.it/fede.tft/miosix/gcc-4.7.2.html"
+#error "If not, see http://miosix.org/gcc-4.7.2.html"
 #endif
 
 namespace miosix {