No Adobe Indesign and trying to create a brochure with Illustrator? With artboards you can control all ‘pages’ in one file.
More on artboards:
Jan Verkoyen
Informatie -en communicatietechnologie, (web)ontwikkeling, software, …
No Adobe Indesign and trying to create a brochure with Illustrator? With artboards you can control all ‘pages’ in one file.
More on artboards:
It goes back to Internet Explorer 3.0, but EMs are still the better way to define font-sizes. It takes a small learning curve to get the hang of it, but when it comes to quick changes in overall font-size, this is the way to go. Default font-size for most common browsers is 16 pixels. There are only three articles you need to read to tame that size with relative ems.
1em = 12pt = 16px = 100%
Child pixels / Parent pixels = Size in EM
Not good at calculating? Use the EM calculator
While Internet Explorer handles EM, it does so only when the base font is set to a percentage!
body { font-size: 62.5%; } body wrapper { font-size: 1em; }
Here’s a crash course into Lightroom 4: two youtube video’s and a few of my own tips.
One of my favorite features is the vigneting lens correction.
So you have bought ‘Adobe Premiere Pro CS5: classroom in a book’ and you are searching for a way to remove noise from an audio file? Your frustration might be skyrocketing when you find out on page 256 you need Adobe Soundboouth to do that and you don’t have an Adobe Master Collection license. Don’t despair, you won’t need Soundbooth to do that or any other third party software like Audacity .
Unfortunately, the book doesn’t mention this trivial solution for such a common problem.
Here’s how you can remove noise from an audio clip in Adobe Premiere itself. The benefit of this procedure is that it doesn’t change the audio-file in any way.
– Make sure you have an audio clip on your timeline
– In the effects panel (normally to the left of the timeline), look for ‘DeNoiser’ (Audio Effects 5.1 (or Audio Effects stereo / Audio Effects mono) > DeNoiser)
– Drag and drop this effect onto the audioclip in the timeline
– Double click the audio clip and it will be loaded into the source monitor (by default the ‘monitor’ to the left)
– Go to the effects control tab/panel: you will notice that the ‘DeNoiser’ has been added here)
– Play around with the settings (I prefer using the custom setting and set the Reduction button to -5Db or anything around that area). Start playing the video in the ‘program monitor’ and listen to the effect on the fly (while changing the settings to your liking)
Looking for a crop tool in Illustrator CS5? Try a clipping mask instead! This way all your outside canvas drawings won’t be lost.
Still looking for cropping ways? Here are two examples:
Recently I came across a very strange behaviour in a regular expression I wrote years ago.
The webserver upgraded to PHP 5.3.3 and it suddenly stopped working.
Case as follows: I use PHP to read a text-file and with the aid of PCRE (preg_match & preg_split) I look for certain matches in that text-file. The program splits different paragraphs into seperate records. But suddenly preg_split stopped working:
<?php $paragraphs = preg_split("/\n\n/",$contents_of_file); ?>
Multiple newlines could not be detected, whereas
<?php $lines = preg_split("/\n/",$contents_of_file); ?>
generated no problem at all. At first I thought I had to use the multiline modifier /m but that didn’t work out either.
Although a HEX editor didn’t indicate any carriage returns in the text-file I managed to get things working by doing this:
<?php $paragrapgs = preg_split("/\r?\n\r?\n/",$contents_of_file); ?>
Curious thing: previous and newer versions of PHP (e.g. 5.3.8 in a XAMPP test environment) did not require to look for possible occurrences of carriage returns (\r).
Wonder how to create ‘cutting marks’, ‘cutting lines’ in Illustrator? This feature is called ‘crop marks’. An excellent tutorial can be found here:
XAMPP is a very easy to use local webserver. Can be slow sometimes, but hey! it’s for testing purposes.
Ever tried to import a large SQL file? Doing so with phpMyAdmin will cause you headaches when tweaking php.ini to accept large data sets: memory_limit, post_max_size, etc…
Ever considered using the shell option? Once you have started your Apache and mySql module in the control panel, click “Shell”.
A command prompt will open and all you need to do is use this command line:
mysql -u root -p <DB_NAME> < <location of your large sql file
Example:
mysql -u root -p test < "d:\sql exports\file.sql"
Use -v to output the import process to screen
mysql -u root -p -v test < "d:\sql exports\file.sql"
Alternative method (no quotations in source command location!)
mysql -u root -p; use <db-name>; source C:\Temp\filename.sql;
Disable indexes before you start importing, re-enable them when completed.
ALTER TABLE `table_name` DISABLE KEYS;
ALTER TABLE `table_name` ENABLE KEYS;
Further reading: https://support.tigertech.net/mysql-large-inserts
It’s possible that this error occurs in XAMPP. It’s easily resolved by changing
I’ve used these settings on a Lexmark X4650, but it will do fine on other printers too, if you want to make sure all measurements resemble on paper.
Om lokaal wat programmeerwerk als voorbereiding op een live omgeving te verrichten, is XAMPP de ideale omgeving. XAMPP komt pas echt tot zijn recht met de opstelling van een eigen mailserver (Mercury Mail) waarmee je lokaal het verzenden van mails kan testen.
De uitgebreide versie van XAMPP bevat zo’n SMTP service. Bij een eerste kennismaking word je overstelpt door een hele reeks vensters die kris kras op het scherm staan. Om hierin wat wegwijs te raken, is er een uitstekende videotutorial op YouTube:
Een van de belangrijkste zaken die je moet weten bij dit programma is dat voor quasi elke aanpassing het programma opnieuw moet opstarten omdat Mercury Mail in XAMPP geen service is!
De basisinstellingen
Het enige wat je nu nog moet doen is de configuratie van deze local mail account in je favoriete e-mailprogramma. Daarin volg je dezelfde werkwijze alsof je een remote mailserver zou aanspreken, maar bij de serversettings plaats je gewoon ‘localhost’.
De vooraf gedefinieerde accounts hebben volgende paswoorden:
User: newuser
Password: wampp