SP
SP
Hello, when I run app with vs code&android&mac m1, it gave error: `ArgumentError (Invalid argument(s): Failed to load dynamic library 'libdart_ffi.so': dlopen failed: library "libdart_ffi.so" not found)`
I want to read some config in application.rb, is it possible?
In the demo: ``` ->add('languages', 'choice', [ 'choices' => [['id' => 1, 'en' => 'English'], ['id' => 2, 'de' => 'German'], ['id' => 3, 'fr' => 'France']], 'selected' => function...
Can I generate some gen skeletons like Emacs?
In letsrate.js.erb: ``` $(function(){ $(".star").raty({ score: function(){ return $(this).attr('data-rating') }, number: function() { return $(this).attr('data-star-count') }, readOnly: function() { //console.log('sss') return false;//$(this).attr('data-readonly') == 'true' }, click: function(score, evt) { $.post('',...
I want to push messages to many of my apps, and it needs to config more than one pem file, is it possible ?
Like this ``` $("#how").click(function(e) { e.stopPropagation() e.preventDefault() $("#com").editable({ 'toggle', validate: function(value) { if($.trim(value) == '') { return 'The content can not be blank!'; } } }) }) ``` I want...
fix class not found exception
``` 1.9.3p374 :001 > require 'linkser' => true 1.9.3p374 :002 > l = Linkser.parse 'http://sports.163.com/nba/' => # 1.9.3p374 :003 > l.title encoding error : input conversion failed due to input...
``` NAMenuItem *item = [[[NAMenuItem alloc] initWithTitle:vc.name image:[UIImage imageNamed:@"hd.png"] vcClass:[VideosListViewController class]] autorelease]; ``` Can I pass some params to VideosListViewController ?