Wednesday, February 23, 2011

Vladmodels Are Legal?

Brush Springtime



The set contains 16 brushes. The Photoshop brushes can be used in Gimp. With the stickers, a multi-colored version is included.

Photoshop Brushes
sticker for Create-a-pattern (png files 256x256 Px)

Tuesday, February 22, 2011

Homemade Computer Desks

Brush Galli Freyan symbol



The symbols are the symbols from the series Doctor Who inspired. The set contains a total of 23 brushes. The Photoshop brushes can be used in Gimp.

Photoshop Brushes
sticker for Create-a-pattern (png files 256x256 Px)

Saturday, February 19, 2011

Get Pokemon Roms Cydia

The doctor as Sim

The doctor from the science fiction series Doctor Who in his 10th Incarnation. We played the 10th Doctor of David Tennant .





Thursday, February 17, 2011

Pokemon Snap Sixtyforce Gamefaqs

set provisioned XenApp XenApp servers automatically generate

Have not we all got the XenDesktop Setup Wizard? But yeah, sure!
it quite impressive how quickly so many VMs for use, may generate as XenDesktop VDAS. But what is provisioned with terminal servers? XenApp to offer the provision as provisioned VM for many reasons: easy patch management, flexible scaling, exact same server (we call it for years) and washable server - no profile, no ActiveX plugin, not a corrupt print job survive Now reboot. The old saying "reboot tut gut" never had more truth.
Sorry requires the use of XenDesktop Setup Wizards a DDC - I know of systems integrators, to replace the rapid creation of many XA VMs a DDC or bring a VM just to run the XD Setup Wizard to. It is the creation of virtual desktop VMs fooled only automates the following steps to let it run:

  1. creating multiple copies of a template VM on the XenServer
  2. submit the generated MAC addresses as a target device in the PVS DB
  3. Numbered right to generate and create AD accounts
I offer these steps as a batch file in this blog entry available maybe even save someone's day :-) Finally we can hereby not only a XenApp generate spontaneously but a bunch of Web servers for a load test, an army of XenDesktop provisioned VDAS for 5 or just a lot of identical VMs for whatever purpose .
prerequisite for the use of "xacreator.bat" is running on a system that has both XenCenter, and the PVS Console are installed. The paths to xe.exe and mcli.exe at the beginning of the batch file must be adjusted if necessary.
is sure to IP, username and password to access XenServer adapted to be - I would just point out discreetly that plain text passwords in a batch file represent a risk. Do you know? Sure.
must also be notified of the name of a template, a PVS and PVS Site Collection.

So, here is the script, as always, copy & paste suitable for batch file (fits through any firewall in each clipboard and can be sent via email - every time, unfortunately, beyond just the pretty layout):


@ echo off rem # # # contact
daniel.wipperfuerth @ adn.de for info / improvements.
echo ######
echo ### script to create provisioned XenApp servers as VMs in
echo ### XenServer and target devices in PVS and computer accounts
echo ### in AD as well.
echo ######
echo.
setlocal
rem ### declaring windows specific variables
rem ### you should customize these
set pass=Password1
set host=192.168.88.21
set user=root
set xecmd="c:\program files (x86)\citrix\xencenter\xe.exe"
set xeparms=-s %host% -u %user% -pw %pass%
set mclicmd="C:\Program Files\Citrix\Provisioning Services\mcli.exe"

rem ### check if programs are available
if not exist %xecmd% goto :noxecmd
if not exist %mclicmd% goto :nomclicmd

rem ### ask some stuff
:gettemplatename
echo Tell me the name of your XA PVS template
echo and please respect that it has to be cAsE sENsitIVE
echo and no spaces are allowed inside
set /P xapvstempname=Enter XA PVS template name:
if "%xapvstempname%"=="" (goto :noxapvstempname)

:gettemplateuuid
for /F "usebackq" %%n in (`%xecmd% %xeparms% template-list name-label^=%xapvstempname% --minimal`) do set xapvstempuuid=%%n
if "%xapvstempuuid%"=="" (goto :noxapvstempuuid)
echo I received %xapvstempuuid% as XA PVS Template UUID.

:getxaprefixname
echo.
set /P xaprefix=Tell me a prefix for the new XAs:
if "%xaprefix%"=="" (goto :noxaprefix)

:gethowmany
set /P howmany=How many XAs do you want to create:
if "%howmany%"=="" (goto :nohowmany)

:getpadding
set /P padding=How many zeros shall we use for padding? (01=1, 0001=4):
if "%padding%"=="" (goto :nopadding)

:getpvssite
echo.
echo Tell me the name of the PVS Site that you want
echo the new XAs to be added to. This name MUST NOT
echo contain spaces.
set /P pvssite=Which PVS site should we add the XAs to? :
for /F "usebackq skip=4 tokens=2" %%n in (`%mclicmd% get site /p sitename^=%pvssite% /f siteid`) do set pvssiteuuid=%%n
if "%pvssiteuuid%"=="" (goto :nopvssiteuuid)
echo I received %pvssiteuuid% as PVS site UUID.

:getpvscollection
echo.
echo Tell me the name of the PVS collection that the
echo new XAs will be added to. This name MUST NOT
echo contain spaces.
set /P pvscollection=Which PVS collection should we add the XAs to? :
for /F "usebackq skip=4 tokens=2" %%n in (`%mclicmd% get collection /p siteid^=%pvssiteuuid% collectionname^=%pvscollection% /f collectionid`) do set pvscollectionuuid=%%n
if "%pvscollectionuuid%"=="" (goto :nopvscollectionuuid)
echo I received %pvscollectionuuid% as PVS collection UUID.

rem ### Point of no return
echo.
echo Everything seems fine so far, i am going to create
echo %howmany% copies of the XenServer VM template %xapvstempname%
echo and add them with their new MAC addresses to PVS collection
echo %pvscollection% in site %pvssite% including active directory
echo computer accounts.
echo.
echo THIS IS YOUR LAST CHANCE TO QUIT.
choice /c qc /m "Quit or Continue"
if not errorlevel 2 goto :end


rem ### do some stuff
FOR /L %%m IN (1,1,%howmany%) DO (
set s=%%m
call :padding
)
goto :end

:padding
call set padded=%%s:~%padding%,1%%
if "%padded%"=="" set s=0%S%& goto :padding
call :xacreator %s%
goto :EoF

rem ### this is the main routine
:xacreator
echo ________________________________
echo Starting cycle %1 of %howmany%
echo ________________________________
for /F "usebackq" %%n in (`%xecmd% %xeparms% vm-install new-name-label^=%xaprefix%%1 template^=%xapvstempuuid%`) do set newxauuid=%%n
echo i created the vm %xaprefix%%1 with uuid %newxauuid%
for /F "usebackq" %%n in (`%xecmd% %xeparms% vif-list vm-uuid^=%newxauuid% params^=MAC --minimal`) do set newmac=%%n
echo the new mac is %newmac%
set mclimac=%newmac::=-%
%mclicmd% add device /r devicename=%xaprefix%%1 devicemac=%mclimac% collectionid=%pvscollectionuuid% siteid=%pvssiteuuid% copytemplate=1
%mclicmd% run adddevicetodomain -p devicename=%xaprefix%%1
goto :EoF
goto :end


rem ### here are the catchpoints if information is missing
:noxapvstempname
echo No XA PVS Template name entered, sorry.
choice /c ra /m "Retry or Abort"
if not errorlevel 2 goto :gettemplatename
goto :end

:noxapvstempuuid
echo No XA PVS Template UUID received, sorry.
choice /c ra /m "Retry or Abort"
if not errorlevel 2 goto :gettemplatename
goto :end

:noxaprefix
echo No XA prefix entered, sorry.
choice /c ra /m "Retry or Abort"
if not errorlevel 2 goto :getxaprefixname
goto :end

:nohowmany
echo No number of machines to create entered, sorry.
choice /c ra /m "Retry or Abort"
if not errorlevel 2 goto :gethowmany
goto :end

:nopadding
echo No number of zeros for padding entered, sorry.
choice /c ra /m "Retry or Abort"
if not errorlevel 2 goto :getpadding
goto :end

:nopvssiteuuid
echo No uuid for the PVS site you entered received, sorry.
choice /c ra /m "Retry or Abort"
if not errorlevel 2 goto :getpvssite
goto :end

:nopvscollectionuuid
echo No uuid for the PVS collection you entered received, sorry.
choice /c ra /m "Retry or Abort"
if not errorlevel 2 goto :getpvscollection
goto :end

:noxecmd
echo I cannot find your xe.exe - please specify location in this batch file.
echo Verify if XenCenter is installed on this machine...
goto :end

: nomclicmd
echo I can not find your mcli.exe - please specify location in this batch file.
echo Verify if PVS Console is installed on this machine ...
goto: end

rem # # # This is the end, my friend.
: end
echo.
echo Done. Press any key to exit.
pause



Tuesday, February 15, 2011

How To Play Aoe3 Without A Disc

create theater photography



My friend and colleague Julian has become a father on 13.11.2010 and has asked me a few pictures of his son Charlie to make. "Whew ....", I thought to myself! So far my limited "models" to adults, but babies are indeed people somewhere:) so it should be feasible.
I have therefore taken the internet a couple of inspiration (by the way is always a great idea), loaded my camera batteries and I opened with a few white sheets under her arm one afternoon at his home. We thought in the familiar environment is probably the most comfortable for the little ones, and so was the living room to the photo studio rebuilt.
I'm not a fan of classic studio pictures, so I served as light sources, in addition to daylight, mainly a site lamp with an energy-saving daylight lamp to complement and brighten. The performance of this lamp is impressive, and the color temperature is much more natural than conventional halogen lamps. I've also thought that flashes for the little ones may be less pleasant than a steady light. As a lens I mainly used my Canon EF 50mm f/1.4 USM and the aperture between f/3.2 and the maximum value varies.
Besides all the technical nonsense, the most important thing about baby pictures is probably the baby. The little rascals have their own head and can command or bad conduct. When a baby in a bad mood is gone, all the preparations notwithstanding. Charlie, however, had dazzling humor and held out for over an hour.
I try to capture intimate moments between the young parents and their baby, their joy and pride. The most important lesson from my first baby shoot is to maintain peace and relaxation and to take a long time. A few sample photos I've added below!

Monday, February 14, 2011

Clairol Born Blond Toner

A Sims 3 T-shirt with your own logo to

Required Software

Gimp version 2.6
DDS plugin for Gimp
TSR Workshop


Prerequisites


✔ ✔ Installing the required software
basic knowledge of GIMP or another graphics program
pixels

PDF version of the tutorial There


A PDF version of the tutorial and the tutorial materials mentioned it here .


Intention

A T-shirt in The Sims 3 is provided with its own theme.

Step 1 - The subject

we use as a fox motif girl ElfSedan asked me kindly for this tutorial is available. I have exempted the subject already. If you want to use your own design, you must also release this first. The subject you can here together Download the PDF version of the tutorial.


Step 2 - Mesh clone

Open the Sims 3 workshop and create a new project on File> New . In the first step choose Clothing and click Next . Now choose age, sex, type (Everyday, Formal, ...) and the mesh from, you would like to change. For this example, take Child, Female and Everyday cfTopShirtTee and as a mesh, since we want to tinker a T-shirt for a female child.


then click on Next and give us the project details. These are the name for the project, and a title. With Next it goes on. Finally, you must now again OK to confirm.


Step 3 - Multiplier texture export and open with Gimp

First, we export the texture multiplier to provide an indication of the location of our subject have. Find information at under the Texture tab Textures after Multiplier and click Edit .



will open a new window in which the texture appears. Click there on the top right export and save the texture as a. From dds file.


then load open the texture in Gimp without mipmaps.



Step 4 - Align the image and save

Now click in the Layers window right onto the existing layer and choose Alpha to remove . The image should now look like this:

Now open the downloaded
also creative in Gimp and copy it. Then switch to the previous screen and select Paste . In the layers window click on New Layer . Thus, the floating selection to a new level. The Layers window looks like this:



displacement and scale the subject now so that it is positioned appropriately on the front of T-shirts.

Now click in the Layers window, right on the creative level and choose Alpha to Selection . The motive pick out looks like this:



Now the plane with the T-shirt will be deleted. It was only required for orientation. Now click on the location nor the right level and select Layer to Image Size .


If all goes well you see in the channel window opacity in the shape of the subject as a white area.



The file can now as a DDS file in DXT5 format. Generate mipmaps must be selected here.




Step 5 - Design Workshop in

Add this search in the workshop under the Texture tab under Stencils for Stencil A and click Edit .


will open a new window in which the current location is displayed. Click there on the top right and Import and select die.dds file that you just created with Gimp. Then click below to Done.


Now check in Texture Tab under Stencils whether Stencil A Enabled is set to true . Is there false, then change it to true, otherwise is not the motive be displayed.



In Patterns you can set the pattern and colors for the T-shirt. Note: Only if the words Enabled on true is , it is used. click to adjust easily to Edit . This will open a dialog window where you customize the colors of the currently selected pattern can or Browse (Order icon on the left above) can select a new pattern.




In the 3D preview the T-shirt looks at me now like this: have



Finally, all unnecessary variations will be deleted. If the above are in the pull-down menu entries other than the current, delete it on the options with Delete .




About File> Save you can now your project . Save So you can reopen it later and make changes. Then the T-shirt export as. Sims3pack file on File> Export> ToSims3Pack .

Install now sims3pack file (by double) and test the result in the game.

White And Black Damask Gift Wrap

6 automatically install and configure

To make a XenApp 6 times from the farm to raise baptism is not much required, and that's what it is to go here. A proof of concept, a farm, at the times you can show just what a course CXA-204/CXA-205 in which the coach has no time again for an installation XenApp perform? For all these concerns can help the following procedure.


The installation and configuration are two separately running processes - that is why the first installation. From the XenApp 6 DVD following command should be discontinued:
"D: \\ XenApp Server Setup \\ bin \\ xenappsetupconsole.exe" / i: xenapp / Platinum


then install the XenApp server. Missing the Microsoft Remote Desktop Services (RDS), is required by its automatic installation, a reboot - after the registration can be continued with the same command line as above the installation.


Ok, now after the installation is the configuration - for this you must first create a DSN file, which paves the way for us here (note, the database must first be created and named an account with DBO permissions be!).


A copy & paste-ready file to customize follow here - is to be adjusted in the name of the database (here XenApp), and the server, possibly with named SQL instance (here dc \\ sqlserver):


[ODBC] DRIVER =
SQL Server
DATABASE = XenApp
APP = Microsoft ® Windows ® Operating System
Trusted_Connection = Yes
SERVER = DC \\ SQLSERVER

This file is copied to a file share, or to any server / Clone-Master, I go in the next section assume that the file called "mydsnfile.dsn" and is in the c: mydsndir \\ content.
What follows is the automatic configuration and creation of the farm with the first Server:


"C: \\ Program Files (x86) \\ Citrix \\ XenApp \\ ServerConfig \\ XenAppConfigConsole.exe" / executionmode : create / farm name: coolidge citrixadministratoraccount /: citrixadmin coolidge \\ / Dsnfile: c: \\ mydsndir \\ mydsnfile.dsn / AuthenticationType: windows / odbcusername: coolidge \\ administrator / odbcpassword: password1 / license server name: dc.coolidge.net / AddAnonymousUsersToRemoteDesktopUserGroup: false / AddAuthenticatedUsersToRemoteDesktopUserGroup true


order to a second server is about to join the farm, the following call - here is essentially the "executionmode" on join instead of create set:


"C: \\ Program Files (x86 ) \\ Citrix \\ XenApp \\ ServerConfig \\ XenAppConfigConsole.exe "/ executionmode: join / farm name: coolidge / Dsnfile: c: \\ mydsndir \\ mydsnfile.dsn / AuthenticationType: windows / odbcusername: coolidge \\ administrator / odbcpassword: password1 / license server name: dc.coolidge.net / AddAnonymousUsersToRemoteDesktopUserGroup: false / AddAuthenticatedUsersToRemoteDesktopUserGroup true


Sun I hope it helps someone :-)

Friday, February 4, 2011

People With Mgus In Toronto

provided at Sims 3 play your own music on the radio

If you want that your Sims can hear your favorite songs, you need to first in the mp3 format. The music files you have to then Custom Music folders to the game.

This is on Windows Vista and Windows 7 here:

C: \\ Users \\ USERNAME \\ My Documents \\ Electronic Arts \\ The Sims 3 \\ Custom Music

and here in Windows XP:

C: \\ Documents and Settings \\ USERNAME \\ My Documents \\ Electronic Arts \\ The Sims 3 \\ Custom Music

This folder already contains a few music files from EA. If you want to hear not from your own songs, you can delete it or move it to another folder.

In the game you can turn on the radio and then on your Sims switching ... Custom. Music choose. Now your own music on the radio.

Thursday, February 3, 2011

Poptropica Cheats Hacking

pattern with the Create-a-pattern utility to create insert in Sims 3

Required Software

Prerequisites
  • software installation

PDF version of the tutorial

is a PDF version of the tutorial, it here.


Intention

An existing texture should be imported into the game with the help of Create-a-pattern tool . We obtain as a result, a pattern that in the game one changeable color that affects the entire pattern. Who would like to create patterns with up to four separately adjustable colors, descriptions will be held in the tutorial series create patterns.


Step 1 - Choose a suitable texture

This looks like the result in the game as well, should be seamless, the texture used. Seamless textures are there for example The Fat Strawberry . Quickly and easily you can create your own seamless pattern with the program Repper .

What is a seamless texture?

A seamless texture can be added to itself, without any visible surface occurs.


I use in this tutorial, a pattern that I created with Repper :


And so does the individual tile, pictured above, which seamless pattern emerges:


The tile is the image with which I will continue the same. If you want to use their own patterns Repper, choose to save it Export> Save Tile . Then you get the required tile.


Step 2 - Create-a pattern in the pattern tool download

Open Create-a-pattern and decide for yourself for a sticker category in which your pattern is to be classified. Then click on the button Add New Sticker .



If you are using the image file is larger than 256x256 pixels, the following message. If you will confirm it with the tool your OK Zoom out automatically.


was now added to your texture with the stickers.


Step 3 - Your own texture in the pattern tool

The procedure used in this step now differs slightly depending on how obtain the texture tile is that you have imported the last step . If the tile element is very large, it may be that it looks huge in the game. Conversely, the tile element can also be very small. Then your model is losing quality if you magnify it too much. In both cases, the solution is the same: From the tile element is in Create-a-pattern tool assembled a tiled surface.

First they choose at the stickers from your pattern and draw it on the desktop.


The work space in the center of the network shows a tile of your Sims 3 pattern, which is the range that is in the game down again together. This area is 256x256 pixels. Since your model is seamlessly imported lie to each other, are you now in the properties of the sticker a following. B: 256 H: 256 Even the pattern fills the entire area.




To check whether your tiling pattern also fits the network you can use Hide and the zoom function. If you zoom out your pattern out, she shows you more of your tile pattern side by side. If you are using the texture is seamless, you should have no borders to find out.



To get an idea of how your model looks like in the game, you can preview mode . Use


Select in the preview mode the object on which your model to display and click on ads . (With the pen-button you can use the preview mode later left again.)


I chose for the carpet.


For my taste, the pattern on the carpet something too big, so I will now work area does not fill my whole texture, but instead use four times a smaller version. Even if your model looks very blurry, because the quality is not your texture is good, can be used the same approach. But if you're already satisfied at this time with your texture, you can go on to Step 4 .

As already mentioned, a tile game of 256x256 pixels. It can be good in four parts of size 128x128 pixels or in 16 parts of the divided size 64x64 pixels.


The above two figures contain the coordinates that have to get the parts to be joined into one another.

First they return back to the edit mode (pencil button). There, click on your texture in the work area and the properties I enter the following: B: 128 , H: 128 , X: 0 , Y: 0 .


If your texture in the work area is not selected, select it now again. Then press the key combination Ctrl + C copy them and then insert Ctrl + V the copy. In the properties the copy give the following: X: 0 , Y: 128 .
Now click once in the work area to activate it again and add to Ctrl + V another copy for you at the properties X: 128 , Y: 0 typing. Now, you lack one final copy that you get as usual on Ctrl + V . She gets as values X: 128 and Y: 128 .

you can look at your pattern again in the preview mode.


this time I am satisfied with the size of the pattern. If you your pattern should still be too large, you can instead continue to use smaller parts, such as 64x64 pixel parts. For this size you'll see in the picture above is also the appropriate coordinates. You can view the individual components also push each other by sight, but I personally find it faster and easier to directly specify the appropriate coordinates.


Step 4 - The final export model

To open the menu and choose Export.


you can then enter a name and description for your model and select a category.


Finally you get a message that your design has been successfully exported.

The finished model can be found in your Sims 3 export directory. This directory is located at Windows Vista and Windows 7 here:

C: \\ Users \\ USERNAME \\ My Documents \\ Electronic Arts \\ The Sims 3 \\ export

and here in Windows XP:

C: \\ Documents and Settings USERNAME \\ My Documents \\ Electronic Arts \\ The Sims 3 \\ export

Finally, to install your finished pattern, click twice on the Sims3Packs file. Then you can use your model in the game.