May refer to Linux Init - the parent of all processes, which primary role is to create processes from a script stored in the file /etc/inittab. Or abbreviation of initizlization - giving variables a "starting" value.

learn more… | top users | synonyms

0
votes
1answer
17 views

UIActionSheet - “init” changes button style

Why does the button style on a UIActionSheet for the "cancel" button change when I add "Init" after allocating and initializing it once? If I use this code it shows up properly: UIActionSheet ...
0
votes
1answer
8 views

Get UIView size in init method

When I call self.frame.size.height in the init method of my UIView I get 0 as result. UIView: - (id)initWithFrame:(CGRect)frame { self = [super initWithFrame:frame]; if (self) { ...
0
votes
2answers
27 views

Should init scripts daemonize a process & are pid's essential?

I'm working on getting an init script written for the web-server [1] shiny-server (shiny-server is a version of the R package shiny that allows you to run stand alone web-applications based on [2] R). ...
0
votes
0answers
29 views

createdb: could not connect to database postgres: FATAL: could not write init file [migrated]

RedHat Enterprise Server 3.0 32 Bits psql (PostgreSQL) 8.2.3 user: postgres server is running: /soft/postgres/8.2.3/bin/pg_ctl start pg_ctl: another server may be running; trying to start server ...
0
votes
1answer
32 views

How can i perform my exe file from boot.local

I've written a code for boosting priority of a process on my openSuSE 12.2 system. #include <stdio.h> #include <sched.h> #include <unistd.h> int printUsage(void) { ...
0
votes
1answer
26 views

Applet Not Initialized

I am trying to make a Java applet on Eclipse that will print an array of bars of random lengths, then sort them by length and print the new array. However, when I run my program, it says that my ...
0
votes
3answers
38 views

How can I check if init script called on startup?

I have a init script on FreeBSD. This script called on startup by rc.d. What I want to do that to check if this script called on start up or manually by user. How can I do this check in this script. ...
0
votes
2answers
34 views

Error in enum init

I have a question, what happens if an error happens during of creation of enum constant? I.e. i have an enum Enum statuses{ OPEN(1, init(1)), CLOSE(2, init(2)); private final int value; private ...
-1
votes
0answers
22 views

Find caller of shell script (during startup) [closed]

I've been tinkering with some Linux systems, and I've found a number of different ways to run commands on startup. As far as I know, you can use: .zshrc, or equivalents /etc/init.d/* /etc/rc* ...
2
votes
3answers
60 views

How to throw exceptions for the init() method for servlets

well I'll first show my code: @Override public void init() throws ServletException { super.init(); try { securityController = SecurityControllerFactory.getInstance().create(); } ...
1
vote
0answers
31 views

Debug init on Qemu using gdb

i am trying to emulate cavium octeon's mips64 linux kernel on Qemu.I am currently having some issues with use mode init code and want to debug init.i am starting the Qemu using -s -S option in the ...
3
votes
2answers
143 views

Best way to write an init.d script for start_server and starman?

I'm trying to come up with a nice init.d script that starts a psgi app, using start_server and starman. It needs to have the following features: Run on RedHat (i.e. Debian's start-stop-daemon is not ...
0
votes
3answers
45 views

Python __init__(a,b,c,d) not recognizing “self” as argument

I'm making a silly little game to learn Python and I'm having an issue creating a goblin creature with init here's the generic creature class constructor class Creature(object): def ...
0
votes
3answers
42 views

Alloc and init in Cocoa

Maybe this is a dumb question, but I really want to figure this one out. For example I have the following setup: // .h @interface MyClass : NSObject { NSView *myView; } // .m @implementation ...
0
votes
0answers
35 views

StateBasedGame using Slick2D flickers 3-4 times during startup

I am having issues with my StateBasedGame using Slick2D. My GameContainer is an AppGameContainer. Whenever I begin the program the window flickers and moves 3-4 times before loading my first state. ...
-1
votes
2answers
80 views

Trying to make a text adventure with a game engine somewhat in Python. I keep getting this error. I am stuck :(

Trying to make a text adventure with a game engine somewhat in Python. Anyway I keep getting this error message. TypeError: module.__init__() takes at most 2 arguments (3 given) Here is my code: ...
1
vote
3answers
87 views

Objective-C Why use init?

I'm reading my first book on Objective-C [Programming in Objective-C 4th Edition], I'm midway through the book but one thing that bugs me, is that it didn't explain WHY we initialize objects. I tried ...
0
votes
0answers
40 views

How do I make an initComponent object require something to be passed in to it?

I have a view with a JList, and want to add things to it manually. I've created a DefaultListModel like suggested on other sites, but I can't pass it in to the JList because it's in initComponents ...
-1
votes
3answers
106 views

What is the purpose of calling __init__ directly?

I am having a hard time figuring out the purpose behind some code that I've come across. The code has a class 'Foo', which has an init method that takes multiple arguments. From what I've learned of ...
-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
1answer
41 views

Applet not carrying variables from init method to paint method

This is an applet for my class. Why is my final g.drawString printing 0's for all the variables i have in it? import javax.swing.*; import java.awt.*; public class Days extends JApplet { private int ...
-1
votes
1answer
71 views

fast way to reset 2d jagged array of fixed width

I want to create a 2D jagged array (as previous so answers claims is faster on dot net than multidimensional one). I want to do something like Int [][] myarr = new int [2][3]; But C# doesn't seem ...
4
votes
2answers
131 views

Python class __init__ layout?

In python, is it bad form to write an __init__ definition like: class someFileType(object): def __init__(self, path): self.path = path self.filename = self.getFilename() ...
0
votes
0answers
11 views

Wait until NSManageobjectContext is ready to use

I use NSPersistentDocument to read from a file (which is a SQLite document) and I think I'm not initiate my gui and controller at the right time. Currently I did it at init() function and use my ...
1
vote
1answer
118 views

echo in init.rc

hi I want to add these scripts to init.rc but I get the error that init.rc doesnt support echo. echo device > /sys/devices/platform/usbc.0/mode what is the right way to do such a thing in ...
0
votes
1answer
34 views

How to preserve variable in django model manager?

In django model manager if multiple methods have the same parameter, do I have to pass them every time I call the method? class MyManager(model.Manager): def show(self,request,A,B) pass ...
0
votes
2answers
152 views

radiobuttonlist selectedindexchanged event firing unexpected

I have a radiobuttonlist I change the selected item in codebehid private void DisplayPrivacyTerms(long ImageId) { if (ImageryDataAccess.GetImagePrivacyTerm(ImageId).ToLower() == "me only") { ...
1
vote
1answer
48 views

discriminating whether python object is subclass of current __init__ method

This is an odd one. I have run into a situation a few times where I would like to do some action at the end of __init__ of a python object. I would like to do the action as the last thing in the ...
0
votes
1answer
74 views

Android init shell and sub-processes

#!/system/bin/sh ( lCount=0 while :; do sleep 1 lCount=$(($lCount + 1)) log -p v -t test "Running test number $lCount" done ) & lPid=$! log -p v -t test ...
0
votes
1answer
62 views

Trouble initialising NSMutableArray with NSString

I'm having problem initialising an NSMutableArray called _entryArray with 2 NSString objects @"00:00:00". I'm getting the following error: Terminating app due to uncaught exception ...
0
votes
1answer
60 views

Create dynamics names for UIViews [duplicate]

All is in my title, i want to create some dynamics names, to allocate some differents UIViews but randomly. For example, i want to make : Level1 * level1view = [[Level1 alloc] init]; So i try to ...
0
votes
1answer
78 views

JavaScript init + html5 tag

I have menu code with JS slider: In HTML: window.onload = function() { menuSlider.init('nav', 'slide'); } <nav> <ul> <li value="1"><a ...
1
vote
4answers
114 views

asp.net Button needs to be fired twice

I am generating dynamic html controls. The controls are being generated on Init, after the user has caused a postback by pressing a button. However, he needs to press it twice so that the controls ...
0
votes
1answer
103 views

PhoneGap Facebook plugin Init() function

Do I have to call the FB.Init() function every time I load a page? I'm using PhoneGap, I call facebook init() to initialize the ID app in the index.html, but when I move to another html page, each ...
0
votes
1answer
85 views

Init failed: Galleria could not find the element “#runPics”

I have this error on my page using Galleria I created a test page before and it worked perfectly. but ow I need to use it on a content page from master so when I brought all data over, it gave this ...
0
votes
1answer
65 views

How to delay an action inside the INIT in XCODE?

BELOW INIT yellowbg = [CCSprite spriteWithFile:@"yellowxlixk.png"]; [yellowbg setPosition:ccp(509, 671.75)]; yellowbg.scale = .75; [self addChild:yellowbg z: 1]; How would I go about delaying ...
0
votes
1answer
62 views

Calling a method inside of init function python

I'm having an issue with this code: import math class Money(object): def __init__(self, salary): self.salary = salary sal(self.salary) def sal(self, x): y = ( x - ( ...
1
vote
2answers
38 views

javascript - refer method before init

Why does "write2" work and "write1" doesn't? function Stuff() { this.write1 = this.method; this.write2 = function() {this.method();} this.method = function() { ...
0
votes
1answer
128 views

fork() returns pid of existing process

I'm trying to patch Android's init to allow unloading Android and loading Ubuntu on already initialized hardware. here is the patch I'm trying. But after kill -USR1 1 kernel goes panic and after ...
0
votes
2answers
44 views

what does the numbers mean in /etc/rcX.d?

In order to run a program automatically on the boot of the Linux system, I have to modify the /etc/rcX.d, to add some link to the script in /etc/init.d, and I have 2 questions: what does the number ...
0
votes
0answers
156 views

Starting an Android init.rc service from an Activity

Before I start, this is meant for our own android based device and not for a phone nor for deployment elsewhere. We have a service in init.rc that is a postgresql database server. This launches on ...
3
votes
2answers
96 views

Simple replacement of init to just start console

On a very simple PC, I want to replace Ubuntu 12.04 /sbin/init by the most simple bash script in order to have the very minimum number of running processes. Obviously, no X, no USB, no detection of ...
0
votes
0answers
55 views

I am confused about iOS init of NSString variables [duplicate]

I am a newbie to iOS, having been raised on C for embedded MSP430Fxxx where you get to know each variable personally. I am a bit confused about the correct way to init variable. I have 24 variables to ...
-1
votes
1answer
136 views

Unable to start an init script n background [closed]

I needed to start a python program in background i.e daemonize it,so I wrote a init script for this purpose.But the problem is that whenever I write the command sudo start service ...
0
votes
1answer
37 views

sqlalchemy def __init__ syntaxerror

I get a errormessage on my init function and i can't find the problem class Character(Base): __tablename__ = 'character' id = Column(Integer, primary_key=True) _info_id = Column(Integer, ...
0
votes
1answer
97 views

Init.d script causing boot hang [closed]

I successfully installed a script to automatically launch in /etc/init.d on my new Raspberry Pi. Unfortunately, it is a node.js app that never returns, and therefore hangs the device during boot ...
1
vote
2answers
89 views

execute script on git init

I would like to automate some tasks I made every time I use git init command. I looked at the different templates but I don't even know if it's possible to execute a script directly after an init. ...
1
vote
3answers
173 views

How to properly code “init” method in Objective-C, prevent “Expression result unused” warning

I was given a main by my professor that I have to make the .h and .m files for in Objective-C using Xcode. I have it almost done but have two warnings that I can't figure out how to get rid of, ...
1
vote
2answers
237 views

jquery.autoNumeric plug-in conflict with jquery.tools

I’m using autonumeric 1.8.3 on a page with 3 input text fields – each using autonumeric. When the page loads I get the error: ‘Uncaught autoNumeric has already been initialized. If you are trying to ...
0
votes
1answer
57 views

Init script won't “stop” forked C program

I have a C program what has a "daemon" mode, so that I can have it run in the background. When it is run with "-d" it forks using the following code: if(daemon_mode == 1) { int i = fork(); ...

1 2 3 4 5 10