- AngularJS
- PhoneGap
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I/WindowManager( 511): Screenshot Window{41e90238 u0 com.google.android.gallery3d/com.android.camera.CameraActivity} was all black! mSurfaceLayer=21100 minLayer=21100 maxLayer=21100 | |
V/CAM_PhotoModule(31599): stopPreview | |
E/mm-libcamera2( 174): PROFILE HAL: stopPreview(): E: 1384150355.605338095 | |
E/mm-camera( 208): config_MSG_ID_STOP_ACK: streamon_mask is not clear. Should not call PP_Release_HW | |
D/LocationManager(31599): stopReceivingLocationUpdates | |
E/mm-libcamera2( 174): PROFILE HAL: stopPreview(): E: 1384150355.614890971 | |
E/QCameraHWI( 174): android::status_t android::QCameraHardwareInterface::setPreviewWindow(preview_stream_ops_t*):Received Setting NULL preview window | |
E/QCameraHWI( 174): android::status_t android::QCameraHardwareInterface::setPreviewWindow(preview_stream_ops_t*): mPreviewWindow = 0x0x0, mStreamDisplay = 0x0xb8d2cc98 | |
W/QCameraHWI_Preview( 174): Setting NULL preview window | |
I/CameraClient( 174): Destroying camera 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@media screen and (max-width: $small-screen) { | |
.#{$reveal-modal-class} { | |
&.full-on-small { | |
top: 0; | |
margin-#{$default-float}: 0; | |
#{$default-float}: 0; | |
width: 100%; | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
default: | |
paths: | |
features: ../../features | |
extensions: | |
Behat\MinkExtension\Extension: | |
base_url: 'http://test.localhost:8080/' | |
goutte: | |
guzzle_parameters: | |
request.params: | |
redirect.disable: true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var callout = { | |
create : 'overwritten object' | |
}; | |
$.extend(true, callout, Foundation.libs.tooltips); | |
if (typeof callout.create == 'function') { | |
alert('create() is still a function!'); | |
} | |
if (typeof callout.create == 'string') { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
App::uses('AppShell', 'Console/Command'); | |
class UserIdFromVarcharToInt extends CakeMigration { | |
public $description = ''; | |
public $migration = array( | |
'up' => array( | |
'alter_field' => array( | |
'users' => array( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ ruby main.rb | |
/opt/local/lib/ruby1.9/1.9.1/rubygems/specification.rb:1637:in `raise_if_conflicts': Unable to activate activemodel-3.2.12, because builder-3.2.0 conflicts with builder (~> 3.0.0) (Gem::LoadError) | |
from /opt/local/lib/ruby1.9/1.9.1/rubygems/specification.rb:746:in `activate' | |
from /opt/local/lib/ruby1.9/1.9.1/rubygems/specification.rb:780:in `block in activate_dependencies' | |
from /opt/local/lib/ruby1.9/1.9.1/rubygems/specification.rb:766:in `each' | |
from /opt/local/lib/ruby1.9/1.9.1/rubygems/specification.rb:766:in `activate_dependencies' | |
from /opt/local/lib/ruby1.9/1.9.1/rubygems/specification.rb:750:in `activate' | |
from /opt/local/lib/ruby1.9/1.9.1/rubygems/custom_require.rb:51:in `block in require' | |
from /opt/local/lib/ruby1.9/1.9.1/rubygems/custom_require.rb:50:in `each' | |
from /opt/local/lib/ruby1.9/1.9.1/rubygems/custom_require.rb:50:in `require' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Heroku Read-only Filesystem https://devcenter.heroku.com/articles/read-only-filesystem | |
/** | |
* Configure the cache used for general framework caching. Path information, | |
* object listings, and translation cache files are stored with this configuration. | |
*/ | |
Cache::config('_cake_core_', array( | |
'engine' => $engine, | |
'prefix' => $prefix . 'cake_core_', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ sudo env ARCHFLAGS="-arch x86_64" gem install mysql2 -- --with-mysql-config=/opt/local/lib/mysql55/bin/mysql_config |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if employee_skills.has_key?(skill_name) then | |
employee_skills[skill_name] += 1 | |
else | |
employee_skills[skill_name] = 1 | |
end |