- 1 core / 2 GB RAM / 20 GB SSD
- 1 core / 1 GB RAM / 8 GB
- 1 core / 512 MB RAM / 20 GB SSD
# Copyright (c) 1993-2009 Microsoft Corp. | |
# | |
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows. | |
# | |
# This file contains the mappings of IP addresses to host names. Each | |
# entry should be kept on an individual line. The IP address should | |
# be placed in the first column followed by the corresponding host name. | |
# The IP address and the host name should be separated by at least one | |
# space. | |
# |
I would like to share with you what I discovered about "no backlight" (or "the blackscreen") when you install a newer than 13.4 driver pack from AMD. | |
:D Finally, user from polish forum partially solved this problem. | |
All you have to do is to launch Registry Editor (regedit), then look for a key | |
`HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Class\{4D36E968-E325-11CE-BFC1-08002BE10318}\0000` | |
and add there a value: DWORD Value (32-bit). Set the name of the value "KMD_EnableBrightnessInterface2" and set it on "1". | |
All done, but there is a little problem :p When you set your brightness below ~30% the screen goes dark. |
<div id="TVmap"></div> | |
{$field_full_address_mask = $_config.yandexmaps_field_full_address_mask} | |
{$fields = | |
[ | |
'field_full_address' => $_config.yandexmaps_field_full_address, | |
'country' => $_config.yandexmaps_field_country, | |
'countryCode' => $_config.yandexmaps_field_countryCode, | |
'region' => $_config.yandexmaps_field_region, |
In clover: `Kernel and Kext Patches`: | |
name find replace | |
AppleIntelSNBGraphicsFB C745BC00000020 C745BC00000080 | |
In file: /System/Library/Extensions/AppleIntelHD3000Graphics.kext/Contents/Info.plist | |
after | |
``` | |
<key>VRAMOverride</key> | |
<integer>0</integer> | |
``` | |
insert: |
<?xml version="1.0"?> | |
<root> | |
<item> | |
<name>Mouse control chrome and mission control</name> | |
<identifier>private.mouse.control.chrome.and.missioncontrol</identifier> | |
<appendix>prev\next tabs in chrome on option+buttons 4,5</appendix> | |
<autogen> | |
__KeyToKey__ | |
PointingButton::BUTTON5, ModifierFlag::OPTION_L, | |
KeyCode::CURSOR_RIGHT, ModifierFlag::COMMAND_L | ModifierFlag::OPTION_L, |
<?xml version="1.0" encoding="UTF-8"?> | |
<module type="WEB_MODULE" version="4"> | |
<component name="NewModuleRootManager"> | |
<content url="file://$MODULE_DIR$" /> | |
<orderEntry type="inheritedJdk" /> | |
<orderEntry type="sourceFolder" forTests="false" /> | |
</component> | |
</module> |
<?php | |
// /core/model/modx/pdotools/pdotoolscustom.class.php | |
require_once MODX_CORE_PATH . 'components/pdotools/model/pdotools/pdotools.class.php'; | |
class pdotoolscustom extends pdoTools { | |
public function getFenom() { | |
if (!$this->fenom) { | |
try { | |
if (!class_exists('Fenom')) { |
//in public function generateThumbnails(modMediaSource $mediaSource = null) | |
//before if ($image = $this->makeThumbnail($options, $info)) { | |
//start center watermark insert | |
if(isset($options['fltr']) && !is_array($options['fltr'])) $options['fltr'] = [$options['fltr']]; | |
$fltrs = []; | |
foreach ($options['fltr'] as $fltr){ | |
$width = $this->get('properties')['width']; | |
$height = $this->get('properties')['height']; | |
if ($width > $height) { | |
$h = floor(($height/$width)*$options['w']); |
<?php | |
class TaggerFilter extends mse2FiltersHandler { | |
public function getTaggerValues(array $groupids, array $ids) { | |
$filters = array(); | |
$q = $this->modx->newQuery('TaggerTagResource'); | |
$q->innerJoin('TaggerTag', 'TaggerTag', '`TaggerTag`.`id` = `TaggerTagResource`.`tag` AND `TaggerTag`.`group` IN ("' . implode('","', $groupids).'")'); | |
$q->select('TaggerTagResource.resource, TaggerTag.id, TaggerTag.group'); | |
$q->where(array('TaggerTagResource.resource:IN' => $ids)); | |
$tstart = microtime(true); | |
if ($q->prepare() && $q->stmt->execute()) { |