Nil aka null, nada, nothing, zero
0
votes
2answers
19 views
“Where” method with “not nil” checking
How can I check if my variable is not nil when I use the "where" method ?
I tried these on a Product model that has a borrower_id field, but it didn't worked properly :
> ...
1
vote
0answers
36 views
Moving code from user page to root page
I moved some code from the user show page in my RoR app to the root page, and it doesn't work. Let me explain :
First is my controller :
app/controllers/users_controllers.rb
class UsersController ...
0
votes
1answer
29 views
ERROR: attempt to index global object a nil value: corona SDK [closed]
I'm getting the error:
Runtime error
...n-stylr\documents\corona projects\happy_day\game.lau:50: attempt to index global 'city1' (a nil value)
My code is as follows:
function ...
0
votes
1answer
27 views
Unexpected boolean result using .nil? on a hash
I am working through exercises on codecademy and I came across a solution that I do not completely understand involving .nil? Here is my code :
movies = { GIS: 10.0, Phantasm: 1.5, Bourne: 4.0}
puts ...
1
vote
1answer
24 views
.nil? value query when attached to an array
I am working through the codecademy exercises and I cannot figure out what .nil? means in the way that I am required to implement it. Here is my code :
movies = { GIS: 10.0, Phantasm: 1.5, Bourne: ...
4
votes
4answers
120 views
Nil Value for Tree a -> a in Haskell
So I have a tree defined as
data Tree a = Leaf | Node a (Tree a) (Tree a) deriving Show
I know I can define Leaf to be Leaf a. But I really just want my nodes to have values. My problem is that ...
5
votes
3answers
79 views
Result of NULL != value in an SQL query (postgres and rails3)
I ran into a unexpected postgres query issue within my Rails3 app.
I thought I'd run this by stackoverflow and see what the brains of the internet have to say :)
Is this result Expected behaviour ...
2
votes
2answers
52 views
How to check null value of object in decision statement for Objective C
I am getting a object value from server as null value when NSlog this object.I want to identify it in if-else decision statement. How can I check it because nil have reference to a unknown object ...
0
votes
3answers
44 views
Model attribute printing properly in view, but saved in the database as “nil” EDITED
I'm trying to write an app that calculates sick/vacation days and how much an employee has available in either category. Here's my trouble:
In my view, the duration equation works and shows the right ...
0
votes
1answer
40 views
Why does this refactored ruby method return nil? [closed]
I wrote a method in class Float which takes a float (seconds) and converts it into a countdown timer. The code works fine when I write it like this:
class Float
def to_countdown
(self % 60) == ...
0
votes
1answer
16 views
Testing for nil to determine if a coordinate is on a grid
In Learn to Program (Chris Pine) there's a challenge to improve a piece of code that calculates contiguous tiles on a grid. The code he gives you will fail if the tiles border the edge of the grid - ...
0
votes
1answer
54 views
how best to handling ruby nils, and should CSV return empty strings or nils?
in a pairing session we came up against the issue of how to handle ruby nils and whether csv parsing (via ruby's CSV package) would be better if it passed back empty strings ...
You can see the specs ...
0
votes
1answer
27 views
Rails - when a row returns nil
I'm getting this error when loading my view that has a Model User that has no records in it. I simply want it to return "Unassigned" in the view if there is no record. Otherwise, display the first ...
0
votes
2answers
65 views
How to display the highest value from a column in a sqlite database in lua corona
I'm creating a game and when it finishes it stores it in a database (code below that adds it)
-- open SQLite database, if it doesn't exist, create database
local path = ...
3
votes
1answer
83 views
Nil object reference in objective C
I am calling a class method from an outside class in order to obtain an object reference, in this case a reference to a UIImage. I can successfully call it and get it back from within myOtherClass ...
-3
votes
1answer
33 views
Difference between nil and return nothing in Init method
I'm new to objective c, recently I'm doing some exercises by myself:
I create a class and implement the init method, I didn't return anything( I don't even write the return statement ). when I test ...
0
votes
2answers
51 views
Sending NSCFCalendar nil NSDate Sarcastic Error [closed]
A few threads here discuss the new iOS 6 Xcode error that pops up in the console when sending nil dates to Calendar methods:
-[__NSCFCalendar components:fromDate:toDate:options:]: fromDate cannot be ...
0
votes
5answers
84 views
replace nil values with zero in hash map
I have a hash map in clojure which contains some nil values. I am trying to group the data and sum the values, this gives me a null pointer due to the nil values. Can someone please advise on how I ...
-2
votes
3answers
56 views
ruby array checking for nil array
I have ruby array and it is nil but when I check using nil? and blank? it returns false
@a = [""]
@a.nil?
=> false
@a.empty?
=> false
How do I check for the nil condition that return true?
1
vote
2answers
78 views
Objective C NSPredicate predicateWithBlock removing nil/null values
I am trying to populate an array by taking an existing array and removing nil values from it. The array was populated from a the JSON response of an http call. Sometimes the array has a null value at ...
1
vote
1answer
40 views
How do I index values in a multiple data type array in Lua?
This is a strange question but it baffles me. I want to be able to store x and y co-ords on an id based system such as: id.1.x = 10, id.1.y = 15: id.2.x = 50, id.2.y = 42 and I am trying to make a ...
0
votes
1answer
55 views
Troubles in MPI -> Failing at address: (nil)
I'm a beginner in C and MPI and i'm trying to do a program to multiply 2 matrix in MPI.
But I don't kwno what is wrong in my code.
I'm try do 'slice' the matrix M1 in n lines and send then to another ...
0
votes
1answer
229 views
[__NSArrayM insertObject:atIndex:]: object cannot be nil
For some reason that I cannot find I am getting the following error:
Terminating app due to uncaught exception 'NSInvalidArgumentException',
reason: '*** -[__NSArrayM insertObject:atIndex:]: object ...
0
votes
1answer
46 views
When I try to “put” or “<%=” an ActiveRecord (rails) attribute, I get nil, but when I look at the object hash its actually there
So here is an example of a hash for a record of the 'properties' table, the attribute in question being 'owner'
Property.first #=>
#<Property id: 3684, ss_property_id: 1, owner_full_name: ...
0
votes
3answers
66 views
How do I identify an empty NSData Object that appears as empty brackets?
I am dealing with a corruption issue in Game Kit's GKTurnBasedMatch class (see this thread) which sometimes results in an invalid game state, with corrupted matchData.
So as a workaround, I'm ...
0
votes
1answer
85 views
Collision detection : myName nil value
I'm trying to set up collision for my game with code from Corona SDK sample called "Collision Detection".
I'm getting this realy strange error every time ball collides with something -
Runtime ...
1
vote
2answers
146 views
Why can't I add nil objects to NSMutableArrays?
I have a situation where I'd like to be able to maintain an array of pointers that might all possibly point to nil.
Equipment *equipment[19];
However, I've found that I cannot set an array of ...
0
votes
4answers
213 views
undefined method `collect' for nil:NilClass
Can someone help me with this error?
NoMethodError in Posts#create
Showing C:/Users/User/Documents/website/app/views/posts/_form.html.erb
where line #24 raised:
undefined method ...
0
votes
1answer
31 views
adding array.each to variable gives no method for “+” for nil (!?) method in Rails
I'm working on my studies project and I have a problem with taking some data from an array to the variable.
m_id = params[:m_id] #from the search form
headers = {:accept => ...
0
votes
3answers
71 views
undefined method `exists' for :symbol:Symbol
I have a table Program with a field calle Symbol.
I'd like to retrieve all Programs, that have a value in Symbol. Meaning not an empty string, and not nil.
How can I use ActiveRecord to build such a ...
3
votes
1answer
112 views
UIView in nib is nil on iPad, and not nil on iPhone
I have a weird problem with my app. I load a VC at runtime with a NIB named "LoginViewController." That NIB has a bunch of outlets to UIView objects that are placed in the NIB like so:
At runtime ...
1
vote
2answers
116 views
Instance variable is nil when accessed from block
I'm using the EventKit API to fetch a user's Reminders. The fetch API is done asynchrounously and when the fetch is finished there is a completion block you can use. However after I have fetched the ...
6
votes
2answers
264 views
Is PChar('') guaranteed to be a pointer to #0 (not nil)?
I understand that in Delphi, an empty string (AnsiString or WideString) can be represented by a nil pointer, or by a pointer to an actual empty string.
By experiment I've shown that in Delphi XE2 ...
0
votes
0answers
68 views
Why is self.tableView nil when I (think I) set it up correctly?
I have added my custom UICollectionViewController as an object (A) to the interface builder, and given it the proper custom class.
this EOCollectionViewController is also an IBOutlet in my main ...
1
vote
0answers
36 views
Variable in View is always nil
I am new to ruby. I created a new action in controller where I set variable test1
def tsload
@test1 = '00:00'
respond_to do |format|
format.html {
render :template => 'tsload'
...
1
vote
2answers
337 views
Lua - “attempt to compare number with nil” error
a={51,31,4,22,23,45,23,43,54,22,11,34}
colors={"white","white","white","white","white","white","white","white","white","white","white","white","white","white","white","white","white"}
function try(f, ...
0
votes
0answers
95 views
Can't package Sencha Touch app as a local android package
When I want to package on a mac using this template, I get error - source path is nil.
{
"applicationName":"Sal",
"applicationId":"com.crystalnix.SalId",
"inputPath": "/Users/android/Sal",
...
-1
votes
1answer
50 views
Why are all my puts returning =>nil?
I know this may seem like a really simple question, but it really bothers me that my puts keep generating "=> nil" and I scoured for an answer but could not find one. Thanks.
puts 'blink ' *4
...
0
votes
1answer
76 views
How to set belongs_to field to nil in ActiveRecord database(RoR)
I have a database which contains comments. In the model file I state that a comment
belongs_to :user
And in the database there is a user_id field associated with the user it belongs to. Now when a ...
0
votes
1answer
44 views
why is my global table being considered nil?
background:
I am trying to teach myself Lua and I am having difficulty understanding why a table is being considered nil when it has data inside it. Can anyone break it down for me why I am getting ...
0
votes
3answers
175 views
Love2d- attempt to index field 'filesystem' (a nil value)
Whenever I try to open my program I get the error. Attempt to index field 'filesystem' (a nil value) does anyone know what could be causing this problem? help would be appreciated.
-2
votes
5answers
58 views
How can I find all the statement that visit the nil object in objective-C for protected? [closed]
For example:
MySetting * setting = [MyDataCenter shareDataCenter].currentSetting;
if(setting != nil){
BOOL isReceiveMsg = setting.receiveMsg;
if (isReceiveMsg) {
// do something A.
...
0
votes
0answers
134 views
SBJson nil object
I have the following JSON string:
{"BODY":" Fjvhjkkhgl","GUID":"49CB1A5D-EC33-4DCC-9AAA-C437D1CAD220"}
But the result if i run the following method is an nil-object.
+ (NSMutableDictionary ...
5
votes
1answer
173 views
Splat on a hash
A splat on a hash converts it into an array.
[*{foo: :bar}] # => [[:foo, :bar]]
Is there some hidden mechanism (such as implicit class cast) going on here, or is it a built-in primitive feature?
...
3
votes
2answers
140 views
Is it safe to call Block_copy() and Block_release() on nil?
Do I need to check or does it behave like free() and such where it will ignore nil?
I'm unable to find documentation that states clearly one way or the other.
My suspicion is that it is safe. E.g., ...
2
votes
3answers
68 views
Ruby - why this construction return nil?
I have this simple construction:
<% if !@user.address.empty? && !@user.zip.empty? %>
<%= @user.address+', '+@user.zip%>
<% end %>
If are address and zip filled out, ...
-6
votes
1answer
55 views
create obj and send message will Crash - iOS [closed]
@interface A;
@interface B : NSObject
- (void)xx;
@end
@implementation B
-(void)viewDidLoad{
A *a;
NSLog(@"%@", a);
[self xx];
}
- (void)xx{
A *a;
NSLog(@"%@", a);
}
@end
why? ...
0
votes
1answer
165 views
Lua loadfile not finding a file
I had some lua code with the following line:
JSON = loadfile("JSON.lua")()
The file JSON.lua is in the same directory as the lua code that line came from. This code worked for me for a while, and ...
0
votes
1answer
90 views
NSNumberFormatter returns nil on device, not on simulator
I use a NSNumberFormatter to convert a user input to a NSNumber (a decimal number), I use ARC.
NSNumberFormatter *f = [[NSNumberFormatter alloc] init];
[f ...
-4
votes
3answers
100 views
ARC local variable [closed]
First I have this method
- (UIViewController *)viewController
{
UIViewController *vc = [[UIViewController alloc] init];
return vc;
}
then
- (void)pushViewController
{
UIViewController ...






