Wednesday, July 29, 2009

.NET FRAMEWORK 2.0 legacyUnhandledExceptionPolicy

http://support.microsoft.com/default.aspx?scid=kb;EN-US;911816

http://stackoverflow.com/questions/959337/what-are-the-available-runtime-settings-for-app-config-files-in-net/959355


In the app.config file of a .NET application there is a element that allows you to configure various behaviours of the CLR, usually for backwards compatibility with legacy behaviours.

For example:


<configuration>
<runtime>
<legacyUnhandledExceptionPolicy enabled="true"/>
<legacyCorruptedStateExceptionsPolicy enabled="true"/>
runtime>
configuration>

Friday, July 24, 2009

Tuesday, June 23, 2009

Symantec Workspace Virtualization 6.1 (formerly Altiris SVS) - Symantec Endpoint Virtualization Suite - How to Get SVS or SWV ? Where to Download SVS

How to Get SVS or SWV ? Where to Download SVS 2.1, and SWV 6.1 !

http://www.symantec.com/business/support/index?page=answerlink&url=index%3Fpage%3Dlanding%26key%3D56125&answerid=16777216&iqaction=1028&searchid=1290065576978

http://go.symantec.com/sevdownloads/

http://www.symantec.com/connect/blogs/how-get-svs-download-svs-21

https://www4.symantec.com/Vrt/vrtcontroller#
https://www4.symantec.com/Vrt/offer?a_id=78585

For getting personal user license: it seems to still be www.altiris.com/Download/svsPersonal.aspx

----------------------------------------------------------------------------

Location of Virtualization Beta products.

For those of you looking for the beta version of SWV, please go to the following location.

https://symbeta.symantec.com/callout/apply.html?callid={F0D8E0C4-56BD-4DD0-B2A2-707933A590E0}

Beta cycles for the Virtualization products are stored on Symbeta.

-Andy

Andy Taylor Manager Program Management Beta, EOOC Symantec


---------------------------------------------------------------------------

https://symbeta.symantec.com/home.html 

SWV 6.3 64-bit Customer Preview
Symantec Workspace Virtualization 6.3 64-bit Customer Preview

https://symbeta.symantec.com/project/version/default.html?cap=1DE062C70BE64EE28566A8FB810A623B&arttypeid={A89104A2-7AD4-4032-A7B4-8718211437C4} 

 

Monday, March 9, 2009

Apple Keyboards: How to identify keyboard localizations


The list below shows how the keys on each keyboard localization looks for desktop Macs. Portable built-in keyboards do not include a numeric keypad, and may have slight variations.

http://support.apple.com/kb/HT2841?viewlocale=en_US#English

You can see where characters are located on keyboards used for other languages, including what characters are produced when using the shift and option keys, by following the instructions from these articles:

Tuesday, February 24, 2009

Access .Net

When will .net VBA be in Access?
http://www.utteraccess.com/forums/showflat.php?Cat=&Board=84&Number=1685738&Zf=&Zw=&Zg=1&Zl=b&Main=1685689&Search=true&where=&Zu=13965&Zd=l&Zn=&Zt=3e8&Zs=&Zy=

Access 2003 and .net
http://www.utteraccess.com/forums/showflat.php?Cat=&Board=89&Number=1575105&Zf=&Zw=&Zg=7&Zl=b&Main=1574291&Search=true&where=&Zu=13965&Zd=l&Zn=&Zt=3e8&Zs=&Zy=

Windows Spool Files


http://www.undocprint.org/winspool/spool_files
https://www.iterasi.net/Viewer.aspx?RootAssetID=889679


The following information is provided as is, and the authors take no responsibility for the correctness.






Windows Spool Files





Warning While you might use the informations you find here to extract EMF and other data from the Windows spoolfiles, you should remember, that this informations is undocumented and might change without prior notice!


"You can probably locate the information about the EMF structs in
the spool file format. But note that one major caveat with this
approach is that since the spool file format is MS proprietary, it
might change in future releases without notice. So if your driver
is dependent on a particular spool file format, it could break on
future releases. This is the reason for us recommending that you
not rely on the spool file format."
//Ashwin, Microsoft




Introduction





For each print job there are two spool files generated by the Windows NT/2000 spooler. One file with the .SHD extension for job settings, and one with the .SPL extension for the drawing commands.



  • EMF Microsoft® Enhanced Metafile Format


  • SPL Microsoft® Windows Spool File Format


  • SHD Microsoft® Windows Shadow File Format






How to set "Keep Printed Documents"





You can set “Keep Printed Documents” via registry, instead of using the printer control panel. Information about this on the Windows Spooler Registry page.





Printjob size restriction





The maximum size of a printjob on Windows is 4 gigabyte. Jobs that are bigger just drop the page data without any errors. It seems like the spooler just wraps around the internal spool data size counter, when reaching the maximum32bit value.




This size will be further limited if the disk does not have enough free space to store the spool file. When the spool file runs the disk out of space the printer often finishes the job by printing blank pages. No errors are recorded.





Reading job data





Access to the data of a SPL spool file, can be implemented quite easily from within a print processor.




To access the spool stream use the OpenPrinter function, where you specify “PrinterName,Job xxxx” for the pPrinterName parameter. The returned hPrinter handle can be used to read the job data via the ReadPrinter function.




If the printername is "Lexmark W820" and the JobId is 3, the string to be used would be "Lexmark W820,Job 3"




For more information on this see the SDK documentation for OpenPrinter and ReadPrinter.




Information about the SPL file format can be found here: SPL Files.




Comment by Microsoft:


I checked with our developers to find out if there is any change
in behavior as far as spooling of file is concerned in XP compared
to that of Win 2000. The change in XP is that it clears the spooled
file after sending the file to the printer. On the other hand in
Win 2000, the file is kept until the printer prints the file. For
this reason you are getting garbage reading in XP, but as you
mentioned that if you choose to keep the document in the spooler
"Keep printed document" in the Printer properties, it works.

This is a design change in XP behavior, not a bug.

Though the documents does not say that ReadPrinter should not be
called from the driver, the actual use of ReadPrinter is in the
print processor. Relying on reading the spooled file may cause
problem in later OSes. But developers still read the spooled file
to get specific information. The change in behavior in XP and Win
2003 caused problem to some third party print management programs.

The following article describes the problem you are seeing and
provides suggested workarounds:
http://support.microsoft.com/default.aspx?scid=kb;en-us;815913
Third-Party Print Management Program Does Not Work as Expected
After You Upgrade to Windows Server 2003 or Windows XP

In addition to the two workarounds you found, this article has
another workaround of creating and setting the
DisableServerFilePooling in
HKLM/System/CurrentControlSet/Control/Print reg_dword with
value greater than zero.



Comment by Christoph:


Contrary to Microsoft´s statement, that "ReadPrinter should not be
called from the driver", tests have showed, that it is possible to
use ReadPrinter from a printer driver. Only the ReadPrinter calls
should be done from DrvStartDoc. Remember to call
RevertToPrinterSelf!




Force JobID in Spoolfile names





On Windows NT/2000 find the files by name xxxxx.spl where xxxxx was the JobID returned by the EnumJobs API.




However, XP and 2003 create spool files named FPnnnnn.spl where nnnnn is no longer the JobID.




This is the side effect of file pooling. You can “turn off” Spool File Pooling by keeping printed jobs or specify a different spool directory. The workaround to this is as below:





To Turn Off Spool File Pooling on a Per Printer Queue-Basis




  1. Click Start, click Run, type regedit in the Open box, and then click OK.


  2. Locate the following registry subkey, where <printername> is the name of your printer: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Print\Printers\<printername>


  3. In the right pane, right-click SpoolDirectory, and then click Modify.


  4. In the Value data box, type the location where you want the spool files to be stored. For example, type c:\windows\system32\spool\printers as the default location.


  5. Quit Registry Editor.


  6. Restart the Print Spooler service.





All new jobs will be of the form XXXXX.SPL and XXXXX.SHD and will be numbered consistently with their JobIDs.





To Turn Off Spool File Pooling for All Printers





Note: This method only works on Windows 2003 Server. This method does not work for Windows XP.



  1. Click Start, click Run, type regedit in the Open box, and then click OK.


  2. Locate the following registry subkey: HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Print


  3. On the Edit menu, point to New, and then click DWORD Value.


  4. In the New Value #1 box, type DisableServerFilePooling, and then press ENTER.


  5. Right-click DisableServerFilePooling, and then click Modify.


  6. In the Value data box, type 1 to turn off spool file pooling, and then click OK.


  7. Quit Registry Editor.


  8. Restart the Print Spooler service.





All new jobs will be of the form XXXXX.SPL and XXXXX.SHD and will be numbered consistently with their JobIDs.





When is RAW used?





A Print Processor must support the RAW data type or it simply won’t work. Beyond that, the data types it supports have little effect.




The decision on whether to spool EMF or RAW is made by GDI based on various factors.




Here are some of the factors:




Firstly, if the app uses the print APIs directly, it can specify whatever datatype it wants. But if the app prints through GDI:




We’ll go RAW in the following cases:



  • Printing to FILE:


  • Printing directly to port (no spooling)


  • Client disables “advanced printing features” in printer properties.


  • Some drivers always print RAW, regardless of all other options. e.g. “HP LaserJet 4100 PCL 6” from HP Homepage


  • Acrobat Reader prints PDFs to printers with a postscript driver as RAW postscript files.





Additionally, for networking printing:



  • Client is anything other than NT/Win200/XP


  • Client doesn’t use a “true” connection


  • Printing to a “masq” printer (win9x, netware, etc.)


  • Server has “printer attribute RAW only” bit set


  • Server doesn’t accept client’s EMF version





So there is no real guarantee that you will get on particular datatype or the other.




Make sure the PRINTER_ATTRIBUTE_DIRECT and PRINTER_ATTRIBUTE_RAW_ONLY attributes are not set for the printer.





Misc.



















winspool/spool_files.txt · Last modified: 2008/12/08 08:58 by christoph



















All text is available under the terms of the GNU Free Documentation License (see Copyrights for details).
Disclaimers



Recent changes RSS feed

Powered by PHP

Valid XHTML 1.0

Valid CSS

Driven by DokuWiki







Tuesday, February 17, 2009

Vista Installed on USB Hard drive Creating A Bootable WinPE 2.0 USB Key Create a Bootable Windows PE RAM Disk on UFD Separating Vista and XP

Vista Installed on USB Hard drive:
http://www.vistax64.com/tutorials/204022-vista-installed-usb-hard-drive.html
https://www.iterasi.net/Viewer.aspx?RootAssetID=844730

Creating A Bootable WinPE 2.0 USB Key:
http://windowsconnected.com/blogs/joshs_blog/archive/2007/02/05/creating-a-bootable-winpe-2-0-usb-key.aspx
https://www.iterasi.net/Viewer.aspx?RootAssetID=844723

Create a Bootable Windows PE RAM Disk on UFD (USB) By MS:

http://technet.microsoft.com/en-us/library/cc766092.aspx
https://www.iterasi.net/Viewer.aspx?RootAssetID=844719

Separating Vista and XP when using Vista's Boot Manager:
http://themudcrab.com/separatevistaxp.php
https://www.iterasi.net/Viewer.aspx?RootAssetID=844715

Personal Firewall reviews

http://www.matousec.com/projects/firewall-challenge/results.php

Symantec Norton Recovery Disk (NRD) ISO image download

Symantec Norton Recovery Disk (NRD) ISO image download

community.norton.com/norton/attachments/norton/uploads/42/2/MakeNewNRD.pdf

http://209.85.129.132/search?q=cache:DM1bMFcA83kJ:community.norton.com/norton/attachments/norton/uploads/42/2/MakeNewNRD.pdf+ftp.symantec.com+public+english_us_canada+recovery+2009+NIS+recovery_nis_x86.iso&hl=en&ct=clnk&cd=1

https://www.iterasi.net/Viewer.aspx?RootAssetID=843220

http://www.qitera.com/pages/cached/id96ee5627e096e31c4e98a9f6ee22592917

http://cid-2d044dc4a5aa3245.skydrive.live.com/self.aspx/.Public/Norton%20Recovery%20Disc%20%7C5NRD%7C6.pdf


Tuesday, February 3, 2009

Using The Microsoft InteropForms Toolkit v2.0 To Display .NET Forms In A VB6 Application - Interop Forms Toolkit - VB 6.0

http://blogs.vbcity.com/shandy/articles/8912.aspx

The Microsoft InteropForms Toolkit v2.0 allows a VB v6.0 application to display .NET forms from within the VB6 application. This article is specifically for displaying forms and does not involve the use of .NET controls. I found information on how to do this on the internet a bit patchy, especially as I was converting existing forms rather than using the templates provided to create new .NET forms. All my experience is in using VB6 and VB.NET 2005.

  1. Download and install the Microsoft InteropForms Toolkit v2.0.
  2. Configure the .NET project you want to access from VB6. There are two basic methods you can employ to do this:
    • You can create a project from scratch using a ready made template installed by step 1. This template is located in the New Project dialog box under Visual Basic, Windows, My Templates and is called VB6 InteropForms Library.
    • You can convert an existing VB.NET project.
      • If the application type is not already a Class Library you will need to change it to a class library. You do this in the Project Properties, Application, Application type:
      • Ensure the assembly is COM Visible. You do this in Project Properties, Application, Assembly Information..., Make assembly COM-Visible.
      • Ensure that the application is registered for COM interop. You do this in the Project Properties, Compile, Register for COM interop.
      • Add a reference to the VB.NET project to the Microsoft.InteropFormTools.Dll library. By default this is located at c:\program files\Microsoft Visual Basic 2005 Power Packs\Interop Forms Toolkit 2.0\SDK\Libraries. You do this in Project Properties, References, Add...
  3. Configure the .NET forms you want to access from VB6.
    • Additional, new forms can be added using the Project, Add New Item, My Templates, VB6 InteropForm.
    • Existing forms can be modified.
      • Place the statement Imports Microsoft.InteropFormTools at the top of the form.
      • Place the statement _ on the line immediately before the form class definition.
      • The form class must have a constructor with no parameters.
  4. Within the .NET project create the InteropForm wrapper classes.
    • Use the Tools, Generate InteropForms Wrapper Classes option on the VS IDE menu bar.
    • This will create a folder in the Solution Explorer called Interop Wrapper Classes.
    • Each form class marked as an interop form will have a corresponding wrapper file created in the InteropForm Wrapper Classes folder. The corresponding wrapper file is named with the format .wrapper.vb. This file extends the original class.
    • If you change information such as the form class name you will need to re-create the InteropForm wrapper classes. I therefore advise re-creating the Interop wrapper classes before rebuilding the project.
    • Creating the InteropForm wrapper classes will mean you will lose any modifications you manually made to the InteropForm wrapper classes.
    • The re-creation of InteropForm wrapper classes will not remove any wrapper classes previously created for a form class that is no longer marked as an InteropForm. You must remove these manually.
  5. Build the .NET project.
  6. Configure the VB6 Project To Display The .NET Form.
    • Add a reference to the Microsoft Interop Form Toolkit Library.
    • Add a reference to the .NET project DLL.
    • Ensure that the .NET forms are properly cleaned up by the VB6 application.
      • Declare a global instance of the toolbox.
        Public g_InteropToolbox As InteropToolbox
      • Instantiate the toolbox, call Initialize on it for debugging support, and then signal the start of the application when the application starts (Sub Main or Main Form Load):
        Set g_InteropToolbox = New InteropToolbox
        ' Call Initialize method only when first creating the toolbox
        ' This aids in the debugging experience
        g_InteropToolbox.Initialize
        ' Signal Application Startup
        g_InteropToolbox.EventMessenger.RaiseApplicationStartedupEvent
      • Signal the shutdown of the application when the application ends (Sub Main or Main Form QueryUnload):
        g_InteropToolbox.EventMessenger.RaiseApplicationShutdownEvent
    • Add the code to call the .NET form.
      Dim oForm As ProjectName_FormClassName
      Set oForm = New ProjectName_FormClassName
      Call oForm.Show

Friday, January 2, 2009

hyper-v bootcamp bios efi imac OR macbook windows server 2008

http://theinquisitivegeek.com/blog/?p=3

http://blogs.msdn.com/volkerw/archive/2008/03/19/turning-a-mac-mini-into-a-virtual-windows-hpc-server-2008-compute-cluster.aspx

http://www.jowie.com/blog/post/2008/02/24/Select-CD-ROM-Boot-Type-prompt-while-trying-to-boot-from-Vista-x64-DVD-burnt-from-iso-file.aspx

http://209.85.129.132/search?q=cache:H4KgOENOdxgJ:www.jowie.com/blog/post/2008/02/24/Select-CD-ROM-Boot-Type-prompt-while-trying-to-boot-from-Vista-x64-DVD-burnt-from-iso-file.aspx+hyper-v+bootcamp+bios+efi+imac+OR+macbook+windows+server+2008&hl=en&ct=clnk&cd=2

Apple's EFI has a number of bugs regarding VT activation. On some Mac systems, VT is only enabled on some processor cores. On some Mac systems, VT is not reactivated after waking the system from certain sleep states. Since it is a Mac-specific product, Fusion has workarounds for these issues. The ideal solution is to get an updated EFI release from Apple that fixes these bugs.

In the interim, you can try the following: 

Add "hv.enableIfUnlocked = TRUE" to your system-wide VMware configuration file. On Linux hosts, this is /etc/vmware/config. On Windows hosts, try 
C:\Documents and Settings\All Users\Application Data\VMware\VMware Workstation\config.ini
or
C:\Users\All Users\Application Data\VMware\VMware Workstation\config.ini

If the firmware leaves VT disabled but does not lock it in this state, this setting should enable VT for you.

(In the interest of full disclosure, I have never tried this, since I have no systems with broken firmware.)

http://communities.vmware.com/message/932302#932302

http://209.85.129.132/search?q=cache:DjxAdVB2UGwJ:discussions.apple.com/thread.jspa%3FthreadID%3D1427832%26tstart%3D29+hyper-v+bootcamp+bios+efi+mac&hl=en&ct=clnk&cd=6 (http://discussions.apple.com/thread.jspa?threadID=1427832&tstart=29)


Thursday, January 1, 2009

Vmware Time (and Date) Sync (synchronisation)

WS 6.5

Disabled all time synchronisation via both the VMTools applet and the VMX file itself.

Set the rtc.starttime parameter so it always starts in Oct 08.

I have also disabled the Windows Time synchronisation .

Relevant portion of VMX file reproduced below.

tools.syncTime = "FALSE"
rtc.startTime = "1224871200"
time.synchronize.continue = "FALSE"
time.synchronize.restore = "FALSE"
time.synchronize.resume.disk = "FALSE"
time.synchronize.resume.memory = "FALSE"
time.synchronize.shrink = "FALSE"
time.synchronize.tools.startup = "FALSE"

http://communities.vmware.com/message/1103292

http://sanbarrow.com/vmx/vmx-always-start-tonight.html

http://communities.vmware.com/thread/115436


Saturday, December 27, 2008

LCDs

DELL ULTRASHARP 2709W
http://accessories.euro.dell.com/sna/productdetail.aspx?c=it&l=it&s=dhs&cs=itdhs1&sku=170552


26'' LG W2600HP-BF (forse IPS, forse HDMI) - Da verificare.
27'' LG - LG ELECTRONICS M2794D (con HDMI e prese SCART, sembra quasi una TV).
Monitor 26" sotto i €500:

Samsung 2693HM
Samsung T260
IIYAMA ProLite E2607WS-B1
LG W2600H-PF
Asus VK266H
-----------------------------------------
LG W2600HP-BF (tecnologia IPS)
Viewsonic VP2650wb (TN?)
Viewsonic VX2640w
Viewsonic VX2835wn
Samsung 2693HM
Samsung T260HD
Asus VK266H
Eizo SX2431W (tecnologia S-PVA)
HP W2558HC (TN?)
-----------------------------------------
Asus Vk266h (con web)
Asus Vv266h (senza web)
Iiyama e2607ws-1
Novita 2602whd
Samsung 2693hm
Samsung t260 (senza tuner)
Samsung t260hd (con tuner)
Viewsonic va2626wm
Viewsonic vx2640w (senza dvi)
--------------------------------------
Iiyama Prolite E2607WS

LG M2794D




Friday, December 12, 2008

VMware ThinApp / Thinstall

VMware ThinApp / Thinstall GUI:
http://thinstallhelper.cis-group.nl/

Application Troubleshooting Tools and Tips for VMware ThinApp:
http://blogs.vmware.com/thinapp/2009/05/app-troubleshooting.html

Wednesday, December 3, 2008

Friday, November 7, 2008

Osx86 ZD7000 Go5600 HP ZD7000 Nvidia FX Go5600

http://forum.insanelymac.com/index.php?showtopic=61773

I have an HP ZD7000 with an Nvidia FX Go5600 that always had a problem with black vertical lines every other column.

Gotoh over at the OSx86 forums (formerly MacVidia) has come up with a solution using his NVinjectGo.kext by changing the NVCAP values.

I now have a fully working internal laptop display with QE/CI and full resolution to 1440x900.

Check out:
http://forum.osx86scene.com/viewtopic.php?...;p=13272#p13272

This is still in development and my external display is not working yet (but it will).

Just wanted to share the good news. biggrin.gif


Update:
Both internal and external displays are now working. Thanks to gotoh.

Monday, November 3, 2008

Search Engines

http://www.searchengineshowdown.com/
http://searchenginewatch.com/
http://searchengineland.com/

WEB:


http://www.google.com/
http://search.yahoo.com/
http://www.live.com/
http://www.ask.com/

http://www.gigablast.com/
http://www.exalead.com/
http://www.cuil.com/
http://www.entireweb.com/

http://www.hakia.com/
http://www.powerset.com/

http://www.mahalo.com/

http://search.wikia.com/

http://clusty.com/

http://a9.com/

http://www.surfwax.com/

http://www.baidu.com/
http://www.yandex.ru/

http://www.dogpile.com/

http://www.alexa.com/

http://www.blekko.com/ (by skrenta creator of www.topix.net)

Vertical:

http://citeseer.ist.psu.edu/ http://citeseerx.ist.psu.edu/
http://dblp.uni-trier.de/
http://www.elsevier.com/ http://www.scirus.com/ http://www.sciencedirect.com/
http://scholar.google.com/
http://www.nlsearch.com/
http://www.questia.com/

Deep Web:


Human search engines;

http://www.mahalo.com/
http://www.chacha.com/

Social search engines:

http://www.oneriot.com/ (based on Yahoo index)
http://scour.com/
http://www.qitera.com/

News:

http://www.topix.com/
http://techmeme.com/
http://searchenginewatch.com/2156261

Blogs:

http://technorati.com/
http://www.icerocket.com/
http://www.bloglines.com/
http://www.blogdigger.com/
http://www.blogscope.net/

Video:

Encyclopedias and Magazines:


Online Communities - Professional Knowledge About Information Technology:

http://www.ittoolbox.com/

Wikipedia Search Engines:

http://www.wikiwax.com/
http://wiki.lumrix.net/en/

Categorization:

Thursday, October 2, 2008

Tuesday, August 12, 2008

New good LCDs to buy

--------------

HP LP2475w

--------------

Dell 2408WFP (new revision)

--------------

Hazro HZ24Wi
Hazro HZ26Wi

--------------

Monday, May 19, 2008

Prestiti tra privati senza banche Boober Zopa

http://www.google.it/search?hl=it&q=boober+zopa&btnG=Cerca+con+Google&meta=lr%3Dlang_it


http://it.wikipedia.org/wiki/Social_lending


Social lending
Da Wikipedia, l'enciclopedia libera. 

Per social lending (in italiano prestito sociale) si definisce un prestito da parte di privati ad altri privati su Internet a titolo di prestito personale. Viene anche chiamato prestito peer-to-peer, in analogia ai sistemi di diffusione dati tra utenti diretti.

PeculiaritĆ  [modifica]

Le peculiarità di questa forma di prestito rispetto, ad esempio, a quella offerta dalle banche è un duplice vantaggio per gli utilizzatori: chi presta denaro e chi lo riceve percepiscono mediamente una quota di interessi più favorevole rispetto a quella proposta dal mercato bancario attuale. Ciò è possibile perché i costi di intermediazione sono ridotti, in quanto il prestatore e il contraente del prestito vengono messi in comunicazione diretta. Questa forma di prestito è solitamente un servizio erogato da una società online, che dispone strumenti di sicurezza per evitare casi di morosità. Ad ogni utente che richiede un prestito viene assegnato un rating, cioè un livello di affidabilità dell'utente, in modo del tutto simile a quello assegnato dalle banche. Più il livello è basso e più i tassi di interesse dovrebbero, in teoria, essere alti per compensare il rischio assunto dai prestatori. Comunque, in caso di morosità, la società intermediaria attiva velocemente un programma di recupero crediti.

Social lending in Italia [modifica]

In Europa sono presenti da tempo società che offrono servizi di intermediazione online tra privati. Recentemente alcune di queste si sono espanse in altri paesi, in particolare in Italia, la quale è considerata un mercato molto promettente. In Italia infatti i tassi bancari sono più alti rispetto alla media europea e quindi ci sono le condizioni favorevoli per lo sviluppo di questa forma di prestito.

Collegamenti esterni [modifica]
Boober Italia
Zopa

Saturday, February 23, 2008

INFO ABOUT ISO OF VISTA DVD SP1

From http://www.avforums.com/forums/showthread.php?p=6471447



Build: 6001.18000.080118-1840
Platform: 64-bit
ISO Name: 6001.18000.080118-1840_amd64fre_Client_en-us-FRMCXFRE_EN_DVD.iso
DVD Label: FRMCXFRE_EN_DVD
Size: 3,930,677,248 bytes
Size on disk: 3,930,677,248 bytes
CRC: 0x5CC5BE14
MD5: e4ce0b193d94279e4dce1098d6b5afeb

Build: 6001.18000.080118-1840
Platform: 32-bit
ISO Name: 6001.18000.080118-1840_x86fre_Client_en-us-FRMCFRE_EN_DVD.iso
DVD Label: FRMCFRE_EN_DVD
Size: 3,086,147,584 bytes
Size on disk: 3,086,147,584 bytes
CRC: 0xCE4CB528
MD5: b09267740ddd1a08d80b04ec6bbc232a
__________________

Thursday, January 3, 2008

Sunday, December 30, 2007

Best Forum Search Engines





Google is good, but there are very good forum search engines which can get you the information you want. And the best ones are…

  1. Omgili
  2. Board Tracker
  3. Board Reader


Tuesday, December 25, 2007

Mac OS X Serials

Serial Box / Serial Seeker (Mac OS X)

http://www.serialz.to/serialbox.html

Sunday, December 2, 2007

Sme Euronics Expert Trony Mediaworld Saturn Eldo Unieuro

Volantini e offerte dei Centri Commerciali e megastore di elettronica e informatica
http://www.bestofferte.com/volantini_offerte_megastore_centri_commerciali.html

http://www.airesitalia.it/

Aires (Associazione Italiana Retailer Elettrodomestici Specializzati), costituita nell’ottobre 2005 (dal 2006 aderente a
Federdistribuzione), associa aziende e gruppi specializzati che operano nella distribuzione di elettrodomestici, audio/video, informatica,
telefonia, foto digitale e climatizzazione. Gli associati sono il Consorzio Elite (insegne Carretti, Comet, Cove, Disalvo, Disalvo & Della
Martira, Grancasa, Grande Migliore, Jumbo Master, Sme), Euronics (insegne Euronics e Euronics Point), Expert, GRE (insegne
Trony e Sinergy), Mediamarket (insegne Mediaworld e Saturn), TLC (insegna Eldo), Unieuro (insegne Unieuro e Unieuro City). I punti
vendita degli associati sul territorio italiano a novembre 2007 sono 2200 con 22.000 addetti e un fatturato 2006 di 9,5 miliardi di euro.

http://www.airesitalia.it/

LCD Monitors

--------------------------------------------------------------
24" LCD Monitors Roundup (10/23/2007)
http://www.xbitlabs.com/articles/other/display/24inch.html
--------------------------------------------------------------


Good Models:

1) Samsung SyncMaster 245T

2) Eizo FlexScan HD2451W / HD2441W
(EIZO Flexscan HD2441W: per comprarlo -> http://www.hwupgrade.it/forum/showthread.php?t=1566135&page=11)

3) BenQ FP241WZ / BenQ FP241VW

Monday, November 26, 2007

Apple Mac OS X US English keyboard layout

http://docs.info.apple.com/article.html?artnum=304933#US

Keep your Mac OS X Apps always updated

VersionTracker Pro: http://versiontracker.com
MacUpdate Desktop: http://www.macupdate.com/desktop
AppFresh: http://metaquark.de/appfresh

Mimmo97 Blog Archive