Uzaren.com

Снять квартиру в Москве

На нашем сайте вы сможете ознакомиться со всежими объявлениями по аренде недвижимости в Москве. Если Вы хотите снять или сдать квартиру - Вы можете оставить объявление на нашем сайте. Объявление о сдаче квартиры увидят тысячи потенциальных клиентов.

Fonts Download | Шрифты скачать

Truetype font download. Fonts for Windows, Fonts for Mac OS, Fonts for Photoshop, Fonts for Word. Largest Font Collection online. 15000 TTF-fonts with preview, ZIP-archives.

English-Russian Dictionary Explorer
Англо-русский словарь

Search for:
Primacall. sport betting site. Diazepam cod
What is the difference between Location.href and Location.replace()?
location.href='http://uzaren.com'; // will write this URL into browser history location.replace('http://uzaren.com'); // will not write this URL into browser history So back-button will take different...
How to create PNG whith transparency in PHP/GD?
// Create a 55x30 image $im = imagecreatetruecolor(55, 30); $red = imagecolorallocate($im, 255, 0, 0); $black = imagecolorallocate($im, 0, 0, 0); // Make the background transparent imagecolortransparent($im, $black); // Draw a red rectangle ...
Only data MySQL dump example.
mysqldump --no-create-info -u user -p DBNAME >...
Linux tmpfs in RAM
mount -t tmpfs -o size=200m none...
The stat() function returns information about a file.
This function returns an array with the following elements: 0 dev device number 1 ino inode number * 2 mode inode protection mode 3 nlink number of links 4 uid userid of owner * 5 gid groupid...
MySQL: different ORDER inside GROUP BY structure
Example: SELECT * FROM ( SELECT * FROM table AS table1 WHERE statment_column='condition' ORDER BY order_column DESC ) AS table2 GROUP BY...
PHP: User browser info example
mixed get_browser ([ string $user_agent [, bool $return_array = false ]] ) Download php_browscap.ini: http://browsers.garykeith.com/downloads.asp Edit your /etc/httpd/php.ini file: [browscap] browscap = /path/to/php_browscap.ini Example: ...
MySQL: unix_timestamp function examples
mysql> SELECT UNIX_TIMESTAMP(); -> 1196440210 mysql> SELECT UNIX_TIMESTAMP('2007-11-30 10:30:19'); ->...
MySQL: How to change mysql-root password
1. Stop the mysqld daemon process. 2. Start the mysqld daemon process with the --skip-grant-tables option. 3. Start the mysql client with the -u root option. 4. Execute the UPDATE mysql.user SET Password=PASSWORD('password') WHERE User='root'; 5....
PHP-function to format a local time/date
Format character / Description: Y (2009) A full numeric representation of a year, 4 digits m (00-11) Numeric representation of a month, with leading zeros d (00-31) Day of the month, 2 digits with leading zeros H (00-23) 24-hour format of an hour...
PHP: JS unescape UNICODE to Windows-1251
function convert_unicode($t) { return preg_replace( '#%u([0-9A-F]{4})#se', 'iconv("UTF-16BE","Windows-1251",pack("H4","$1"))', $t ); ...
How to schedule TOP command in Crontab.
The crontab entry should be: <b>30 * * * * /usr/bin/top c n 1 b >> /home/top.txt</b> Make sure you have write permission on the directory...
MySQL out of memory, calculate memory usage.
Version: '5.0.45-log' socket: '/tmp/mysql.sock' port: 3306 FreeBSD port: mysql-server-5.0.45 090909 14:51:06 - mysqld got signal 11; This could be because you hit a bug. It is also possible that this binary or one of the libraries it was linked...
How to solve BITRIX POPUP-JS calendar BUG?
It works fine with admin tool bar, and dont work with anonymous user. How to solve: Just insert into your bitrix/template/xxx/header.php <script type="text/javascript" src="/bitrix/js/main/utils.js"></script> Example: <!DOCTYPE html...
Using of Apache Benchmark example.
Command-line example: [uzaren:apache /home/www]<b> ab -kc 5 -n 1000 -t 300 http://my.site.info/</b> Arguments: <b>k</b> - enable the HTTP KeepAlive feature <b>c</b> - number of multiple requests <b>n</b> - number of...
Resolving SSH permission error with local LIST OF KNOWN HOSTS.
Problem: <code> [user@hosting ~]$ ssh www.example.com The authenticity of host 'www.example.com (123.45.67.89)' can't be established. DSA key fingerprint is 12:34:56:78:90:aa:bb:cc:dd:ee:ff:1a:2b:3c:4d:5e. Are you sure you want to continue...
Creating and extracting JAR archives. TAR-like archiver.
It's simple, especially if know unix TAR command. <b>Create .JAR file:</b> jar -cf myJar.jar *.class jar -cf myJar.jar .\mycode\games\CoolGame\*.class <b>Extract .JAR file:</b> jar -xf...
How set sleep/awake time on Mac Os X?
In Mac OS X 10.3 and later, you can schedule a time for your Mac to automatically shut down by setting a time and interval in the Energy Saver pane in System Preferences. However, please note that your computer must be awake at the time...
Simple 'screen' command how-to for LINUX.
screen detach from screen: CTRL+a d list screens: screen -ls reconnect to screen: screen -r...
How to make BASH foreach line read?
for axample list.txt file contain lines: 1 - bash 2 - foreach 3 - lines 4 - output using our BASH-script: #!/bin/bash FILE="list.txt" exec < $FILE while read LINE do echo $LINE done # script will output line by line contents of...
How to set JAVA_HOME env?
> cd /etc/profile.d then create file java.sh with content: #!/bin/bash export JAVA_HOME=/path/to/java export JRE_HOME=/path/to/java_runtime_env export...
How to get TOTAL number of rows in MySQL query?
Execute 2 queries: SELECT SQL_CALC_FOUND_ROWS name, email FROM users WHERE name LIKE 'a%' LIMIT 10; -- Directive SQL_CALC_FOUND_ROWS is required SELECT FOUND_ROWS(); -- Returns total number of rows in previous query where name LIKE 'a%'. Can be...
Proper string functions working with different locale settings.
<? /* show system available locales: []# locale -a ... ... pt_PT.ISO8859-15 pt_PT.UTF-8 ro_RO.ISO8859-2 ro_RO.UTF-8 ru_RU.CP1251 ru_RU.CP866 ru_RU.ISO8859-5 ru_RU.KOI8-R ru_RU.UTF-8 sk_SK.ISO8859-2 sk_SK.UTF-8 sl_SI.ISO8859-2 ...
How to build MySQL FULLTEXT search qeuery request?
SELECT *, ((MATCH (utitle) AGAINST ('keywords'))*1000 + (MATCH (kw) AGAINST ('keywords'))*100 + (MATCH (description) AGAINST ('keywords'))*10 + (MATCH (body) AGAINST ('keywords'))) AS rel FROM `pages` HAVING rel>0 ORDER BY rel...
How to change gnome-terminal window size geometry?
gnome-terminal...
Escaping characters in MySQL queries.
<?php // Connect $link = mysql_connect('mysql_host', 'mysql_user', 'mysql_password') OR die(mysql_error()); // Query $query = sprintf("SELECT * FROM users WHERE user='%s' AND password='%s'", mysql_real_escape_string($user), ...
CSS Font-Styling.
CSS-file: <b> body { font-style: italic } </b> Values: <b>normal</b> - Default. The browser displays a normal font <b>italic</b> - The browser displays an italic font <b>oblique</b> - The browser displays an oblique...
CSS 'text-decoration' Property description.
CSS-File: <b> p { text-decoration: underline } </b> Description: <b>none</b> - Default. Defines a normal text <b>underline</b> - Defines a line under the text <b>overline</b> - Defines a line over the text ...
How to output highlighted PHP code?
function (mixed) highlight_string ( string $str [, bool $return ] ) $str The PHP code to be highligthed. This should include the opening tag. $return Set this parameter to TRUE to make this function return the highlighted code. ...
How to set MySQL connection charset with PHP?
<? // Connect and select database: $link = mysql_connect($host, $user, $pass); $db_selected = mysql_select_db($name, $link); // Create function: if (function_exists('mysql_set_charset') === false) { /** * Sets the client...
Creating MySQL triggers.
Syntax: CREATE [DEFINER = { user | CURRENT_USER }] TRIGGER trigger_name trigger_time trigger_event ON tbl_name FOR EACH ROW trigger_stmt Example: DELIMITER | CREATE TRIGGER testref BEFORE INSERT ON test1 FOR EACH ROW BEGIN ...
How to remount partition, if the FS failed to boot?
mount -F ufs -o rw,remount / Used to remount root to make it writeable Also watch: mount --help usage: mount [-adflpruvw] [-F fstab] [-o options] [-t ufs | external_type] mount [-dfpruvw] special | node mount [-dfpruvw] [-o options]...
Displaying MySQL users.
SELECT * FROM...
How to change MySQL password?
SET PASSWORD FOR 'username'@'host' =...
Valid CSS! Valid XHTML 1.0 Transitional