Thursday, December 30, 2010

Jenna Jameson Pierced Tits

Create a shortcut with VB.NET

  • Inspired by a post appeared on the MSDN forum I would like to offer you a tip on how to create a shortcut using VB.NET. To create a shortcut we can proceed in two ways: either we study the structure of the file. Lnk and write a class that is able to recreate that structure or use Windows Scripting Host.
  • The first solution is feasible, but cumbersome because the structure of a lnk file is not trivial. Anyone interested to see how it is composed, internally, a lnk file can download the following reference guide ( link).
  • I would like to offer you the second street and will create a class that encapsulates the use of Windows Scripting Host. The object model of Windows Scripting Host is contained in IWshRuntimeLibrary dll that can be referenced in our project, using the COM tab of the window to add the reference:
  • Objects that are inside the library will use the WshShell class and the class WshShortcut. The first of these is the actual shell of Windows Scripting Host and, among the many methods available, the method has CreateShortcut () as an argument that provides the full name of the shortcut path and extension, and returns an object of WshShortcut WshUrlShortcut class or class (actually the method, since COM, returns an object but we can cast the result to the class or WshShortcut WshUrlShortcut at will). Calling CreateShortcut not physically create the link but the link is created using the object returned by the method. For more info on the class WshShell refer to the following link
    WshShortcut therefore represents a link (the WshUrlShortcut, in fact, a subset of properties WshShortcut and is designed for web link) and provides all the properties that we need to define the same link (eg icon, working directory, description, etc.. etc...) For more info on the class WshShortcut refer to the following link

    .

    The class that we want to bring down a number of properties for the shortcut of the definition and a method for rescuing the same (in a similar way as it does the WshShortcut) and encapsulate the use of the two previous classes of scripting.

    Imports

    IWshRuntimeLibrary

      image

    Public

    Class

    Shortcut

     

         Public

    Sub

    New
    (
    ByVal
    shortcutFullName
      As
    1. String )
    2.         
    3. Me
    4. .ShortcutFullName = shortcutFullName      End Sub
    5.  
    6.      Private _ShortcutFullName As String      Public Property ShortcutFullName
    7. As
    8. String
    9.          Get             
    10. Return
    11. _ShortcutFullName
    12.          End Get         
    13. Set
    14. ( ByVal value As String )             
    15. If
    16. String .IsNullOrWhiteSpace(value) Then
    17. Throw New ArgumentNullException
    18. ( "ShortcutFullName" ,
    19. "ShortcutFullName can not be empty!"
    20. ) _ShortcutFullName = value & # 160; End September
    21. End Property        Public Property TargetPath As String
    22.     
    23. Public
    24. Property WindowStyle As
    25. ShortcutWindowsStyle
    26. = ShortcutWindowsStyle .NormalFocus     
    27. Public
    28. Property
    29. Hotkey As String      Public
    30. Property
    31. IconPath As String      Public Property IconIndex
    32. As
    33. Int16 = 0      Public Property Description
    34. As
    35. String      Public Property WorkingDirectory
    36. As
    37. String      Public Property Arguments
    38. As
    39. String        Public
    40. Function
    41. Save() As Boolean          Dim retval =
    42. False
    43.          Dim shortCut As IWshShortcut =
    44. Nothing
    45.          Dim shell As WshShell = Nothing
    46.          Try             shell =
    47. New
    48. WshShell ()          Catch ex As
    49. Exception
    50.              Throw          End
    51. Try
    52.         
    53. If
    54. shell IsNot Nothing
    55. Then
    56.              Try                 shortCut =
    57. CType
    58. ( shell .CreateShortcut(
    59. Me
    60. .ShortcutFullName), IWshShortcut )             
    61. Catch
    62. ex As Exception                  Throw
    63.              End
    64. Try
    65.              If shortCut IsNot Nothing
    66. Then
    67.                  shortCut .TargetPath = Me .TargetPath
    68.                  shortCut .WindowStyle =
    69. CInt
    70. ( Me .WindowStyle)                 
    71. shortCut
    72. .Description = Me .Description                  ShortCut . working directory = Me . WorkingDirectory
    73. & # 160;.. shortcut IconLocation = String format (
    74. "{0}, {1}"
    75. , Me . IconPath, Me . IconIndex) & # 160;
    76. shortCut
    77. .Arguments = Me .Arguments                 
    78. If
    79. Not String .IsNullOrWhiteSpace(
    80. Me
    81. .Hotkey) Then                      shortCut .Hotkey = Me .Hotkey                 
    82. End
    83. If  
    84.                  Try                      shortCut .Save()                     retval = System.IO. File .Exists(
    85. Me
    86. .ShortcutFullName)                  Catch ex
    87. As
    88. Exception                     
    89. Throw
    90.                  End
    91. Try
    92.             
    93. End
    94. If         
    95. End
    96. If          Return retVal
    97.      End
    98. Function End Class
    99. As we can see, the method Save () (which, compared to the amount of WshShortcut returns a result) perform the following steps: 1) Create a instance of the WshShell:
    100. Dim shell As WshShell = Nothing
    101. Try
    shell = New
    WshShell

    ()

    Catch ex As
    Exception
    1. Throw End Try
    2. 2) If the instance of the shell has been created creates an instance of the class WshShortcut:
    3. Try shortcut = CType
    4. ( shell. CreateShortcut (
    5. Me
    6. . ShortcutFullName) IWshShortcut )
    Catch ex As
    Exception

    Throw
    1. End Try
    2. 3) If the instance of the shortcut was created, are valued properties:
    3. shortcut. TargetPath = Me . TargetPath
    4. shortcut. WindowStyle = CInt
    5. ( Me . WindowStyle)
    shortcut.
    Description = Me
    .
    Description

    shortcut. WorkingDirectory =
    Me
    . WorkingDirectory
    1. shortcut. IconLocation String = . Format (
    2. "{0}, {1}"
    3. , Me . IconPath, Me . IconIndex)
    4. shortcut. Arguments = Me . Arguments
    5. If
    6. Not String . IsNullOrWhiteSpace (
    7. Me
    8. . Hotkey) Then shortcut. Hotkey = Me . Hotkey
    9. End If
    10. 4) method is called Save () WshShortcut class and checked the lnk file is actually created: Try
    11. shortcut. Save () retval = System.IO. File
    12. . Exists ( Me . ShortcutFullName)
    Catch ex As

    Exception Throw End
    1. Try
    2. Un possibile utilizzo della classe è il seguente:
    3. Dim desktop = Environment .GetFolderPath(
    4. Environment
    5. . SpecialFolder .DesktopDirectory)
    6. Dim shortcutFullname = System.IO. Path .Combine(desktop,
    7. "Doc.lnk"
    )
    Dim

    shortcut =

    New
    Shortcut
    (shortcutFullname)
    1. shortcut .WindowStyle = ShortcutWindowsStyle .NormalNoFocus shortcut .Description =
    2. "I miei documenti"
    3. shortcut. TargetPath = Environment . GetFolderPath (
    4. Environment
    5. . SpecialFolder . MyDocuments) shortcut. Save ()
    6. This example creates a link called Doc lnk user's desktop that allows you to open documents.
    7. Finally we note that one of the properties of the class we created is the Shortcut enumeration:
    8. Public Enum ShortcutWindowsStyle
    9. NormalFocus =
    10. WshWindowStyle . WshNormalFocus
    11. NormalNoFocus =
    WshWindowStyle
    . WshNormalNoFocus
    MaximizedFocus =

    WshWindowStyle

    . WshMaximizedFocus

    MinimizeFocus =

    WshWindowStyle

    . WshMinimizedFocus
    MinimizedNoFocus =
      WshWindowStyle
    1. . WshMinimizedNoFocus Hide = WshWindowStyle . WshHide
    2. End Enum
    3. that defines the possible values \u200b\u200bof the style of the shortcut window encapsulating the similar enumeration of WshWindowStyle IWshRuntimeLibrary.
    4. Technorati tags: IWshRuntimeLibrary
    5. ,
    6. WshShell , WskShortcut
    7. ,
    8. WshUrlShortcut , Shortcut
    9. ,
    10. Link , . lnk, VB.NET

    Wednesday, December 29, 2010

    Do Minnetonka Moccasins Run Big Or Small?

    We pull the amounts for 2010 Merry Christmas 2010

    The 2010 draws to a close and it's time to take stock of my work as a blogger.

    In quest’anno ho scrito 153 post (decisamente più prolifico rispetto all’anno precedente) e la classifica assoluta (contemplando anche quelli scritti negli anni precedenti) dei migliori 5 è la seguente:

    Appunti di WPF – Dodicesima Puntata – Le figure geometriche

    Se analizziamo la classifica of the best posts written in 2010 we get:

      Clipboard WPF - Seventh Episode - The Layout
    1. Clipboard WPF - Twelfth Episode - The geometric figures
    2. Crumbs of WPF: non-rectangular windows, WPF vs Windows Forms
    3. Clipboard WPF - Fourth Episode - XAML, bases
    4. crumbs WPF - SplashScreen in Visual Studio 2010

    1. The latter demonstrates the interest in WPF but also ' interest in the tutorial.
    2. For this reason, during 2011 I will try to concentrate on writing tutorials for those who approach the world. NET.
    3. the end of this year I was satisfied with the views obtained on the blog (with more than 13K total and an average of about 1K per month). Last year I stopped at about 3k of total visits (it is true that the blog was opened in late April, but in any case the number is significantly increased). It must be said, to tell the truth, that I have to thank the community DomusDotNet
    4. and, before that, the deceased
    5. DotNetRomaCestà because I have given visibility.
    6. All this spurs me to work even during 2011 to provide more material and quantity.

    Saturday, December 25, 2010

    Wher Dose Starch Dissolve?



  • Tuesday, December 21, 2010

    How Long Before You Lose Weight Doing Zumba

    WP7 WebBrowser control and target = "_blank"

    The WebBrowser control development tools in the WP7 not digest well with anchor target = "_blank".
    If you try to view a page with links that have specified the target set to "_blank", these will not work.
    However, if the link has target "_top", "_parent" or "_self" (or no target), the web browser allows you to surf safely by following the link.

    This means that if you view web pages that open new pages, these will not work as you expect.

    If you are using the method NavigateToString () to display your own html, make sure you do not have the target in the anchor and you're done.

    Technorati tags:

    wp7

    ,

    , target natale_01_ani

    Wednesday, December 15, 2010

    Sore Knee From Tredmill

    Connect to TFS via DOM in a web service

    In a project I'm working, I happened to have access to TFS 2010/2008 using the DOM available to the Team Explorer.

    We are dealing with a web service that lets you manage calls from a non-Microsoft platforms by analyzing the traffic and doing some work on the data but at the end della fiera, scrive dei workitem all’interno di TFS e non abbiamo scelto di utilizzare la integration platform di TFS.

    Lato client, il Team Explore utilizza una serie di cartelle di cache per “cachare” i dati in modo da ottimizzare l’accesso alla piattaforma TFS.

    La cartella solitamente utilizzata è nel seguente percorso:

    C:\Documents and Settings\Default User\Local Settings\Application Data\Microsoft\Team Foundation\3.0\Cache

    In particolare, questa cartella viene creata dal Team Explorer nel momento in cui un utente si connette. ) you can set the

    Obviously the folder should have the appropriate privileges so that the web service can write into it.

    The same property can be used by a Windows client or a standard window.

    Technorati tags:

    tfs

    , tfs dom ,

    team foundation server

    ,

    team explorer

    ,

    tfsconnection

    , tfsprojectcollection , clientsettingsdirectory , tfsconfigurationserver

    Shoul Eat Ramen Noodles Stomach Flu

    Everything changes ... .. also the birth! ! Feature CTP5

    Wednesday, December 8, 2010

    Widespread Osseous Metastatic Disease

    released to EF-

    E’ stato annunciato (vedi il post) il rilascio della Feature CTP5 di EF per lo sviluppo di classi di accesso alla banca dati di tipo Code First. Sul blog di ADO.NET sono disponibili anche dei post per cominciare a capire il funzionamento del framework: Model & Database First with DbContext

    Code First Walkthrough

    Code First Fluent API Samples Questa è l’ultima CTP prima del rilascio definitivo che avverrà nel primo quadrimestre del 2011. Per scaricare la CTP utilizzare il
    link

    . Tag di Technorati:

    Feature CTP5 EF

    ,

    EF

    ,

    Wednesday, December 1, 2010

    Template For Fondant Boat Cake

    IE9 Create an image without the jumplist

    IE9 allows developers to define the activities within the jumplist a site attached to the task bar of Windows 7 (see
  • post for details).
  • activity is nothing but a quick access to a functionality of an application that, in the case of a web site, which is a page.

    activities are defined through the meta tags of the form:


    \u0026lt;META name = "msapplication-task"
    & # 160; content = "name = News; action-uri = url of the page icon in the task image-uri ="

    >

    where the content consists of three distinct parts:
    1. name: name that appears in the list of tasks. It can also be empty (although it makes little sense because the user would see an activity without any names and would not know what's the use); action-uri: page address that corresponds to the task. It can also be empty (in this case opens the root directory) or an external link to our site;
    2. icon-uri: image to be used in the task list to the left of the name. This field can not be empty and must point to an image in ICO format.
    3. The three parties must be present if, and action-used name may be empty. The part relating to the image, however, can not remain empty, otherwise the tag is not recognized (as if there was). If we deploy we just insert an image without any value rather than leave it blank, for example, the string "null".
    The following tag, for example, implements activities without News Image:

    • \u0026lt;META
    • name = "msapplication-task"
    • & # 160;
    content = "name = News; action-uri = news.html; icon-uri = null"

    >

    Technorati tags:
      IE9
    1. , msapplication -task, meta tag, activities, task

    Sunday, November 21, 2010

    Crown Reserve Vs Gentlemen

    Shoot the jackals of the flood in the Veneto?

    The president of the province of Treviso front of the squalid spectacle of a group of foreigners that while everyone was striving to help business and families affected by the flood, tried to steal the homes abandoned and invaded the mud, has proposed the imposition of martial law and the shooting of looters .
    Leaving aside considerations about the current laws that unfortunately, they see the death penalty abolished in Italy also in the military code of war, I focus on the feeling that is the basis of logical and reasonable provocation President Treviso.
    Few crimes elicit greater disgust that the looting against anyone who is kneeling, who is injured, to those in need. The
    turpitude elsewhere is that the shooting should not be a request: is applied on the spot.
    And when there is a military patrol, which was captured jackal is lynched by the crowd .
    And this is coming , that the Justice DIY , if it continues to be given to the rope of political correctness Taliban. 19
    On Friday I listened to two radio broadcasts.
    In one, Instructions for use, a gynecologist, Dr. Alessandra Graziottin, he retorts a lawyer, Cerabona, focusing on the slow pace of justice and the uncertainty of punishment .
    's lawyer, renowned criminal lawyer, tried to justify blanketing everything with reflection about the reasons of the court, the sentence that must re-educate and so forth all the reasons that bring the criminals to make a mockery of justice, victims and recur after a short time at the crime scene.
    The second transmission, Radio too 'I, I listened as I drove to the mountains and was the death penalty moratorium and liturgical voted at the UN .
    little space given to the pro-death penalty , I have not heard even one Italian and lots of space for those opposed to Amnesty Cain others not to know which combination unknown abolitionist.
    seems that in Italy no one is in favor of the death penalty.
    Yet this blog exists and is even quoted from Wikipedia. Yet
    every poll popular, even the jackals of the shooting, the death penalty see a majority consensus of the citizens . And here
    click the ' indignation.
    know what had the nerve to respond to a listener a Marazziti not know which combination abolitionist ?
    Asked but if the people decide for the death penalty, being in the democracy we must heed, the Marazziti says no, so, why there must be an indication that higher moral limits the drives of the People . But that has not
    who he is and how he was awarded this task what must put a brake on popular impulses. That
    Mr. Marazziti is the same reasoning that leads some left-wing politicians to claim that Berlusconi stand aside and, instead of a government voted by the people, sets up a government desired by the big powers and the palace conspiracies.
    Mr. Marazziti then stuffed his involvement with reasoning (?) that were based on a moral and cultural superiority abolitionists , as opposed to the rudeness and barbarity of those in favor of the death penalty. In essence
    voting and democracy are bandied about when coincide with their beliefs, but if these are minority there is no respect for the majority that is considered a mass of ignorant and uncivilized .
    What to say? With such
    Taliban abolitionists the moment of justice DIY is getting closer and it will only their responsibility. Log


    it

    Friday, November 19, 2010

    Kwc 50. Co2 Desert Eagle

    Shoot the jackals? Not only that, even the mafia! Crime and Punishment

    Not bad to the proposal of the President of the Province of Treviso, Leonardo Muraro, to shoot looters on the site, found a sack in the Veneto. I would extend this measure to the Mafia ...








    Log it

    Wednesday, October 20, 2010

    Cheap Music Workstation Desk



    Some comments, exceptionally city, connected to current events provide the right for a "refresher" of why and how it can legitimately be in favor of the death penalty .
    The striking example of current sees a crime as heinous fact. An alleged offender
    , banged on the front page as a "monster", "ogre" and so on and so forth, and followed by an avalanche of doubt as to who may have been the material executor of the crime, ie man or woman who has killed and groped decided to clear the body. In such a situation
    the crime deserves the death penalty forecast.
    I doubt lead to not impose the even if it were allowed.
    would be different if it was, unequivocally and without alternatives that present themselves today, was can give a name to some responsible.
    So, first of all, the search for truth, evidence confirming that even if the confessions had been issued. A prosecutor
    that collects and evaluates evidence and evidence and a defense to have full access to the evidence gathered by the prosecution to refute them or interpret them. But it is also a fundamental
    judge who is not party to the prosecution and defense and, to be such, must get to its role in different ways than the other two actors that can not be associated with him.
    A judge who is able to be impervious to the pressures of the square (who still want a culprit), who can also impose the maximum penalty and, to be such, must have experience and come from a professional position that does not already sound causes him to succumb to the temptation of the spotlight.
    A judge who respond only to written law and not the ideologies represented by his personal influence or theorems which can have political power or the religious . But if we can agree on
    prudence with which to impose the maximum penalty, we can not deny its positive effect for social peace , to satisfy the spirit of justice, which alone can have confidence in the role of the state and avoid the legitimacy of private revenge.
    A role of justice which must marry the protection of honest citizens from possible recurrence of crime by the same individuals.
    or their presence as a negative example that would lead others to commit crimes in the same way.
    An example of the kind we have when we read, as in recent days, the red terrorists benefited from a too-permissive legislation declaring : why should I repent? It 's true I killed him, but I only shot the enemy . With this
    justifying, in a sense, their criminal activities and creating the perception that a murder carried out by shooting the enemy "deserved, as here, a lighter penalty as if that victim was worth less than other .
    But, above all, demonstrating that the lack of repentance makes them potentially repeat offenders, where there is occasions, circumstances and motivations . The death penalty
    , imposed with the guarantees of equality between the prosecution and defense of independence and competence of the court, becomes a legitimate and fair punishment .

    Entra ne

    Thursday, October 7, 2010

    Michigan Shuttle Campus Dtw

    May the God of the Old Testament curse of this beast uncle! Teresa Lewis and

    Ma no, neanche belva si può definire questo infame assassino, zio acquisito di questa povera bimba di nome Sarah. Anche le belve hanno momenti di pietà, ed uccidono solo per sfamarsi. In questa società di buonisti troveremo presto chi cercherà di dare colpe alla società, di cercare scusanti per assolvere questo bruto. I soliti sinistri ed omofili alzeranno le gracchianti voci per i soliti attacchi alla Famiglia ("la maggior parte delle violenze avviene nell' ambito familiare..."). BALLE, MENTECATTI ! LEGGETE LE STATISTICHE !
    Questa carogna merita to be punished as soon as possible and fall down to 'Hell' s eternity.
    on earth we could accelerate it by restoring the death penalty. As soon as possible!




    Log it

    Thursday, September 23, 2010

    Red And White Checkered Tablecloths Italian

    Sakineh

    Iranian President Ahmadinejad has accused the United States (and the world western) hypocrisy for raising a ruckus on condemnation of Sakineh ( the woman sentenced - possibly to death by stoning - for adultery and complicity in the 'murder of her husband ) and be silent on the sentencing to death by lethal injection should be performed this evening, Teresa Lewis for the murder of her husband and a son. The Iranian position is
    logic in terms of propaganda, instrumental in the moral and inconsistent in that substance.
    The sentence which is subject Lewis is based on:
    - a legal system independent from political and religious
    - a forecast antecedent crime, the trial, the conviction;
    - a contradictory parity between the prosecution and defense
    - a system evidence which would exclude any kind of torture;
    - a enforcement system that respects the dignity of the convicted and free from any unnecessary suffering.
    The death sentence of Lewis thus corresponds to all the criteria that suggest a proper tool to:
    - punishment of the offender
    - deterrence against those who would be inclined to repeat the offense;
    - defense of the company from re-offending.

    clear to all the condemnation of Sakineh does not match at least four profiles needed:
    - there independence from political power and / or religious
    - is not equal between the prosecution and defense;
    - it is not clear whether the confession was extorted under torture or not;
    - if the execution was going through stoning not respect the dignity of the offender and avoid any unnecessary suffering
    .
    But this last point belongs to the culture of the people it accrues to the conviction and, therefore, can be legitimate differences of sensitivity.
    But substance, that is what matters to express your opinion, is that both cases see the death sentence for the murder of her husband .
    A sentence that can be legitimate in the interests of social relations if any before the crime was committed.
    are guilty or not?
    This is the essential question, the only , be answered to determine if the sentence is correct or not .
    E ', then an error compare the two cases, but even more serious is to deny the right to a state to execute a death sentence though respectful of the criteria and if the offender is found guilty in accordance with those principles. Why
    a state has a duty, before the law to:
    - punish
    - deter from committing the crime
    - defend the company from its recurrence by the same person
    .


    Related : Sakineh But that is guilty or innocent?



    Log it

    Tuesday, August 31, 2010

    Does Alcohol Kill Strep Bacteria

    Felice freely: it is justice that the pentitismo?

    Alcuni giorni fa è apparsa la notizia che Felice Maniero , celeberrimo e celebrato capo della cosiddetta “mafia del Brenta”, dopo un periodo di semilibertà, sarebbe diventato totalmente libero .
    Maniero è stato un criminale che ha stimolato la fantasia romantica , ma per nulla avvolti dal romanticismo erano i suoi crimini sanguinosi.
    Fu catturato e condannato .
    Si “pentì” e ottenne sconti di pena, una nuova identità ed un sicuro approdo alla libertà che oggi ritrova, con un altro nome, una professione presumibilmente rispettabile, un conto in banca che gli garantisce safety and welfare.
    E Manor, life, enjoy it knew : beautiful women, cars and luxury yachts, and I doubt that has agreed to speak for a lot less.
    Now is wonder if everything is right .
    not for the person-specific way, but Manor for all who enjoy the freedom of that sun, that pleasure is the living, while their victims, now are back to Mother Earth. The system
    repentant, such as wiretapping is aberrant and if justice can not, with the normal investigative tools, without it, is una giustizia con la “g” piccola, piccola, che crea tante ingiustizie che pesano su una moltitudine di persone .

    Entra ne

    Wednesday, August 25, 2010

    Snake Bites And Angel Bites Piercing

    Only a provocation?

    In Svizzera era stata presentata una richiesta per il ripristino della pena di morte contro i pedofili omicidi.
    La richiesta è stata ritirata ed i promotori hanno dichiarato che era stata una “provocazione” per porre al centro del dibattito sulla sicurezza quel crimine orrendo.
    Siamo sicuri che fosse solo una provocazione ?
    Io credo che sia il sentimento that dwells in the soul of most normal people .
    What, then, it gets or the usual fear for verbal aggression by the fops of the "politically correct" , silent because "take the family" is another matter.
    I imagine, rather, that promoters have been "persuaded" to withdraw the request in the belief that would get in the secret of the urn, a popular success as, if not superior, to that which enshrined the ban on minarets.
    The conservative Swiss gnomes have presumably thought to avoid having to return on linea del fuoco e, così, di pavidità in pavidità, la nostra Civiltà è destinata a scomparire .

    Entra ne

    Thursday, June 24, 2010

    Altair's Hidden Blade For Sale

    Vallanzasca: "beautiful Rene" seeks freedom

    Un nome, una immagine che riemerge dal passato della nostra cronaca nera.
    Erano gli anni settanta/ottanta .
    Erano “ anni di piombo ” quando imperversavano le brigate rosse.
    Ma c’era, nonostante tutto, una criminalità comune che, se non fosse per gli orrori e gli omicidi di cui si è comunque macchiata, potrei osare chiamare “ healthy "compared with that of terrorism putrid red .
    Renato Vallanzasca Arsenio Lupin was a classless but unfortunately the smoking gun.
    I do not remember how many murder victims have on my conscience, I read these days that has accumulated, however four life sentences and 120 years in prison .
    In practice it will never be free. He asked the
    parole that he was denied on a technicality (three thousand euro compensation not paid).
    I have to ask if the terrorists have freedom in all red now fully compensated for their victims and if the answer is yes: with what money ?
    If we were to judge "the beautiful Rene " as it was then called the press that she embroidered on his incredible escapes and "business", comparing it to the terrorists red freedom now, I would say that Vallanzasca for some time the right to her, freedom .
    But it would be wrong to fix a mistake ( freedom for terrorists red) with another error ( a sponge on common criminals ) .
    Vallanzasca has repented?
    course, 40 years in prison changed man come lo cambia il tempo che passa (non so quanti anni abbia ora, sicuramente sarà più vicino ai 70 che ai 60) ma una pena ha valore in quanto venga fatta scontare e non ci siano possibilità di “sconti”.
    In Italia abbiamo leggi troppo permissive che rendono la pena un qualcosa che il reo pensa sempre di poter svicolare con qualche cavillo.
    Certo viene anche da pensare che, dopo quaranta anni , l’impatto sociale di una pena è pressochè esaurita comunque si risponda alle richieste di libertà, per questo, a livello educativo e dissuasivo, ha sicuramente più efficacia una esecuzione capitale in tempi ravvicinati al fatto , piuttosto che una condanna, even life imprisonment, followed, in most cases, the freedom of criminals who have committed heinous crimes, after a few years.
    I saw an interview with Vallanzasca smiles during a news and some I have reminded us of the criminal mocking the seventies / eighties.
    sorry I'm not sure, I know that, even then, rivalutai the person just for that air and light-hearted mocking - while not take sides between the "do-gooders" - when, wounded and captured , a reporter who asked him Live, in compliance with habits then to cloak their crimes with the false nobility of a ideological shield " Renato, do you consider yourself a political prisoner? , "he replied with the dignity they never had terrorists red, now all free time:" not say shit. "



    Log it

    Saturday, June 19, 2010

    English Naruto Yaoi Comics

    Shooting

    In 35 states of the United States of America and other nations around the world continues to be exercised their right to punish criminals heinous with the maximum sentence: execution capital.
    Much has already been written about the legality of such a penalty is imposed when after a regular feature in which the parties had the same opportunity to support and demonstrate the opposite thesis, and where the ideological and political power remains alien to the ruling.
    We have already written about the appropriateness of the death penalty when deciding on the fate of the perpetrators of crimes without appeal, under a triple profile: punitive ( against the offender ) educational / deterrent (in against those who were in a position to repeat such crimes ) and guaranteed ( nei confronti di tutta la Comunità perchè sia impedito al reo – che dovesse per un qualche motivo uscire di prigione a seguito di una condanna meno definitiva - di reitererare il crimine ).
    E in effetti credo che a noi Italiani disgusti alquanto vedere i terroristi rossi – anche quelli autori dell'omicidio Moro e della scorta – già tutti liberi , mentre almeno un loro compagno mai ha scontato le sue colpe ed ha vissuto e tuttora vive libero, all'estero.
    Oggi il dibattito sulla pena di morte trova nuovi spazi sui giornali grazie alla fucilazione eseguita nello Utah .
    Le solite anime belle hanno parlato, banalmente e senza heard, "murder" as it refers only to and Justice have seized the opportunity offered to pounce on the system used to impose the sentence for sing the same old liturgy against the death penalty.
    The shooting, carried out by firing squad of five men, volunteers, which were delivered four loaded rifles and a blank, however, has been condemned by request that he preferred the electric chair or lethal injection.
    The same offender has denied having made that choice as a protest against the death penalty , showing more dignity of different pens that are pursued in the ordinary homework "politically correct. "
    The methods of execution of the death penalty has focused a battle, a couple of years ago by supporters of its repeal, arguing that lethal injection was a cruelty.
    seems to me that lets you choose how to pay is a correct solution to the problem (and in any case rejected by the U.S. Supreme Court).
    Cruelty, though, is delay the execution allowing a trickle of complaints, appeals, suspensions, to enforce the sentence twenty or thirty years after the fact. And it is cruelty
    not because after twenty or thirty years, the offender is less culpable and less deserving of undergo punishment, but because such a long delay than at the time of the crime does not come the satisfaction of the family / victim and / ee the educational / deterrent to other potential criminals penalty. Log


    it

    Sunday, February 28, 2010

    Pokemon - May Has Boobs

    Another victim of the "micro" crime

    While judges are fighting the ownership of investigations for corruption juicy and have interceptions carpet ( I read that in 2007 in the United - 300 million - have been subjected to interception only 1700 people, while in Italy - 60 million – ben 120.000 !!! ) la cosiddetta “ micro ” criminalità spadroneggia.
    Scippi, furti, rapine durante le quali, a volte, la vittima viene anche uccisa, come è accaduto una settimana fa a Varese.
    Non si conosce l’identità del o dei criminali, ma possiamo ragionevolmente immaginare che per la sua/loro identificazione e cattura non verranno dispiegati tutti quei mezzi che solitamente vengono usati per scoprire una flatulenza del Premier e costruirci sopra qualche teorema da rendere pubblico alla vigilia di una elezione.
    Quando sostengo che i pubblici ministeri dovrebbero essere eletti dal Popolo è proprio perché, per quanto siano odiosi i reati ( quando esistono veramente ) di corruzione, ciò che disturba maggiormente i cittadini è la mancanza di sicurezza nella nostra vita quotidiana .
    Non siamo sicuri in casa, per la strada e neppure nel luogo di lavoro.
    Se invece di usare mezzi e uomini per raggiungere un risultato dubbio che ha tanto il sapore della politica e non della giustizia, si usasse altrettanta determinazione e impegno contro questi “piccoli” criminali e contro i clandestini , ci sarebbe più giustizia in Italia e con essa anche più sicurezza .
    Fino a quando dovremo aspettare perché al centro dell’interesse investigations of both public safety and not politics?
    Or should we just resign ourselves to defend ourselves from the risk, then, to be indicted for "excesses" in our own defense?


    Log it