Me (Stanislav Stankov) growing up

Problems showing hebrew from AMFPHP

By default, AMFPHP encoding is:

1
$gateway->setCharsetHandler("utf8_decode", "ISO-8859-1", "ISO-8859-1");

If you change it to:

1
$gateway->setCharsetHandler("iconv", "UTF-8", "UTF-8");

All set. This is in gateway.php file

Unlimited ESET

This post will show you how to update every 1 month your eset to get it free for another month. All this practise take from 5-10 mins per month but it will save you a couple of dollars. OK first I need to tell you that this is working for ESET NOD32 Antivirus or ESET Smart Security, also it maybe be working for other ESET products, but I tested only on those two.

So the trials ends in a few days and you see this image:

install the latest ESET NOD ANTIVIRUS 4

install the latest ESET NOD ANTIVIRUS 4

After this you need to go and create a free email. Because you need every month different email address. No more then 1 email on a unique email address. I use the service of : http://www.guerrillamail.com/ Once you enter you get a free email.

go to guerrillamail dot com

go to guerrillamail dot com

Once you have the email go to http://www.eset.com/

go to www eset dot com

go to www eset dot com

select downloads from the menu

go to www eset dot com downloads

go to www eset dot com downloads

then choose ESET Smart Security

select ESET Smart Security 4

select ESET Smart Security 4

click on download

enter email and click on download

enter email and click on download

and fill it with your email address

set the email

set the email

after clicking on submit, you will see this message:

another 30 days now

another 30 days now

so now we just need to wait to get the email from ESET with the new trial

get email for 20 seconds

get email for 20 seconds

and open it and copy paste the trial username and password into the correct fields:

copy the username and email

copy rhe username and email

and voilà you have another 30 days for free from ESET. Thank you guys!!!

And voilà you have it for another month

And voilà you have it for another month

World wine regions – variety of styles

So today was the last day of the course “World wine regions – variety of styles”. And here is the certificate:

World wine regions - variety of styles

World wine regions - variety of styles

Speaker was PhD. Neda Prodanova oenologist. During the training we become familiar with characteristics of terroir renowned wine regions. We learn about international and local grape varieties typical of the regions and which one wines we like the most. We become familiar with the specifics of the technology and its impact on the character and style of wines. During the training we were tasting 80 wines from high-quality categories of prestigious winemakers.

Charters :)

Some of them are quite old but it is never to late to show-off :D

Second place on CISCO competition in Rouse, Bulgaria

Second place on CISCO competition in Rouse, Bulgaria

High success in the field of informatics and information technology

High success in the field of informatics and information technology

First place on National Competition of IT

First place on National Competition of IT

Evidence is laureate of the National Olympiad

Evidence is laureate of the National Olympiad

Award for excellent performance, Plovdiv, Bulgaria

Award for excellent performance, Plovdiv, Bulgaria

Going to the next competion stage

Going to the next competion stage

Award for excellent performance, Varna, Bulgaria

Award for excellent performance, Varna, Bulgaria

Award for outstanding performance at the end of Secondary Education

Award for outstanding performance at the end of Secondary Education

Digital Marketing Certificate

Digital Marketing Certificate  by Inter Contact Bulgaria

Digital Marketing Certificate

Digital Marketing Sertificate

Topics of training:

  1. Digital Marketing and its “adjustment”
    • Basic principles of digital marketing
    • What and how you can achieve with methods of digital marketing?
    • Why do I need and how to use it?
    • “PUSH” or “PULL” digital marketing?
  2. Application of the main methods of marketing and sales today
    • What is different today and how to apply methods of marketing and sales?
    • Frequency of communication. How long and often need to communicate with the customer to buy from you?
    • What do each other good marketing managers?
  3. Why marketing campaigns fail?
    • The main reasons for success / failure of marketing campaigns.
    • Basics on which to concentrate and to use.
    • Quality of communication. Communicate with you better than your competitors?
    • How to use and combine different communication channels?
    • What are the risk factors and how to reduce them.
    • Comment by real examples.
  4. How best to use your money for marketing activities:
    • What and how to invest your money for marketing?
    • ROI – how to increase the effectiveness of marketing campaigns.
    • Tricks and techniques to use.
    • Real examples from practice

Leading the training:

German Sacristan – Business Development Manager – KODAK

German Sakristan is a marketing consultant and expert with practical experience in digital marketing. Behind a number of successful projects and campaigns for various companies in Europe and the USA. These campaigns include a combination of various communication channels like – Custom printed advertising, e-mail marketing, online and offline advertising and internet marketing. Currently, German is Sakristan manager Business Development KODAK.

In photos:

German Sacristan

German Sacristan

Digital Marketing Room

Digital Marketing Room

Files

36 page PDF doc with German advices for better marketing campaigns

Regular Expression specific URI check

This is Regular Expression that my friend written for my project. It check if the URL is from specific domain:

1
var reg:RegExp = /^(.*:\/\/)?(www\.)?([a-zA-Z0-9_-]*\.)*mydomain\.com(.*)$/;

In this RegExp I check if URLs belong to mydomain.com as root domain.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
var reg:RegExp = /^(.*:\/\/)?(www\.)?([a-zA-Z0-9_-]*\.)*mydomain\.com(.*)$/;

var test1:String = "http://mydomain.com/ecard4/";
var test2:String = "mydomain.com/ecard4/";
var test3:String = "http://www.mydomain.com/ecard4/";
var test4:String = "www.mydomain.com/ecard4/";
var test5:String = "http://notmydomain.com/ecard4/";
var test6:String = "notmydomain.com/ecard4/";
var test7:String = "http://asdas.asdasd.mydomain.com.asd.mydomain.com/ecard4/";
var test8:String = "http://www.notmydomain.com/mydomain.com/ecard4/";
var test9:String = "http://stanislav.com.notmydomain.com/mydomain.com/ecard4/";
var test10:String = "http://sdfsmydomain.com/";
var test11:String = "http://www.stanislav.com.notmydomain.com/mydomain.com/ecard4/";
var test12:String = "https://mydomain.com/ecard4/";
var test13:String = "ftp://mydomain.com/ecard4/";

trace(1, reg.test(test1));
trace(2, reg.test(test2));
trace(3, reg.test(test3));
trace(4, reg.test(test4));
trace(5, reg.test(test5));
trace(6, reg.test(test6));
trace(7, reg.test(test7));
trace(8, reg.test(test8));
trace(9, reg.test(test9));
trace(10, reg.test(test10));
trace(11, reg.test(test11));
trace(12, reg.test(test12));
trace(13, reg.test(test13));

the output is:

1 true
2 true
3 true
4 true
5 false
6 false
7 true
8 false
9 false
10 false
11 false
12 true
13 true

And So You Code

Course Certificate: Effective Organization

Almost moth delay, but it is:

Course Certificate: Effective Organization

Course Certificate: Effective Organization

Seminar introduction (translated from Bulgarian):

How to effectively organize your business from strategic perspective and to free myself as a manager

Dear managers,

  • Do you play the role of firefighter instead of manager?
  • Do you have enough time to plan and organize? Can you efficiently manage time and tasks?
  • Do you delegate successfully the duties to your employees?
  • Do you manage to always be effective enough?
  • Do you adapt your team to the difficult economic environment?
  • Do you know how to create a working and effective team?

As a result of the workshop participants will receive:

  • A clear understanding of all functions in the company to enable it to survive and to grow steadily;
  • A clear understanding of how best to use available human resources in the company and what kind of people it needs;
  • Knowledge of preparing a plan to reach where the owner / manager wishes;
  • Instrument for measuring performance and functionality of the various positions in the company;
  • Instrument for growth and success regardless of market changes;
  • Clearer understanding of the vital elements of successful and productive team and where things can go wrong.

Program of the seminar:

  • What is an organized scheme of a company, what elements are composed and how through it we have a clear picture of each function and department in the company;
  • Determining the ideal situation for each function and department – what would you like to achieve for each function;
  • Identification of the actual situation and the direction in which it moves over the ideal;
  • Opening of the reason for the upward or downward trend there;
  • Produce a strategic plan what steps to take to move closer to the real ideal situation;
  • Elaboration of monitoring system for each function;
  • What is a team and how with its help to achieve higher efficiency.

Certified Expert Flash CS3 Professional

So its little to late to show off, but just want to show you guys.
certified expert
Adobe Certified Expert in Flash CS 3

adobe flash cs3 ACE Exam

Multiple ContextMenuItem for different objects

OK here is a simple way to create as many objects as you want context menus:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import flash.ui.ContextMenu;
import flash.ui.ContextMenuItem;


function addContext(sprite_:Sprite):void {
    var menu:ContextMenu = new ContextMenu();
    menu.customItems = [new ContextMenuItem("Select only " + sprite_.name)];
    menu.hideBuiltInItems();
    sprite_.contextMenu = menu;
}

addContext(yellow);
addContext(green);
addContext(red);
addContext(blue);
addContext(this);

note that yellow, green, red, blue are Sprites, but it can be also buttons

Example:

This movie requires Flash Player 10

Nice post about The Right-Click Menu in Flash by Raiyan