- can use from googlefonts. (Include
<link>in html page) - can use font-family from os installed fonts.
cp YOURFONT-regular.ttf, YOURFONT-Bold to /Library/Fonts/
Ubuntu
| ln -s /proc/self/fd /dev/fd |
| DatabaseError: (1118, 'Row size too large (> 8126). Changing some columns to TEXT or BLOB or using ROW_FORMAT=DYNAMIC or ROW_FORMAT=COMPRESSED may help. In current row format, BLOB prefix of 768 bytes is stored inline.') | |
| SET GLOBAL innodb_file_format=Barracuda; | |
| SET GLOBAL innodb_file_per_table=ON; | |
| ALTER TABLE nombre_tabla | |
| ROW_FORMAT=COMPRESSED | |
| KEY_BLOCK_SIZE=8; |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" | |
| "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
| <html> | |
| <head> | |
| <title>NBTC</title> | |
| <meta charset="utf-8"> | |
| <meta name="keywords" content="" /> | |
| <link rel="stylesheet" type="text/css" href="styles.css"> | |
| </head> | |
| <body> |
| sudo apt-get install mysql | |
| sudo apt-get install libmysqlclient-dev |
| <?php | |
| function generate_xml_element( $dom, $data ) { | |
| if ( empty( $data['name'] ) ) | |
| return false; | |
| // Create the element | |
| $element_value = ( ! empty( $data['value'] ) ) ? $data['value'] : null; | |
| $element = $dom->createElement( $data['name'], $element_value ); | |
| // Add any attributes |