Questions tagged [bootstrapping]

[DO NOT USE FOR THE BOOTSTRAP FRAMEWORK (formerly Twitter Bootstrap)] A bootstrap is a series of procedures ran when an application starts up or a request over the web is received. For questions about Twitter's Bootstrap CSS framework, please see the [twitter-bootstrap] tag. For "bootstrapping" in statistics, please see the [statistics-bootstrap] tag.

Do not use for the Bootstrap framework (formerly Twitter Bootstrap)

A bootstrap is a series of procedures ran when an application starts up or a request over the web is received. For questions about Twitter's Bootstrap CSS framework, please see the tag. For "bootstrapping" in statistics, please see the tag.

953 questions
8
votes
2 answers

Running a mini-program in Mono.Csharp

I'm trying to write an interactive C# teaching app, where the user can experiment/change code examples and see what happens (kinda like jsfiddle). I've found a lot of examples for small expressions or REPL-like uses of Mono.Csharp as runtime…
Matthew Groves
  • 25,181
  • 9
  • 71
  • 121
7
votes
1 answer

Higher half kernel initialization

When initializing my kernel, I have a few things that need to happen: 1) paging needs to be enabled, 2) the physical memory manager needs to parse the memory map from grub, and 3) assorted startup code needs to access data that needs to stay there…
rpjohnst
  • 1,612
  • 14
  • 21
7
votes
3 answers

Grails: Accessing spring beans in the destory closure of Bootstrap code?

I'm looking to access a bean in my destroy closure in the Bootstrap.groovy of my grails project. Any ideas on how to achieve this? I seem to have no access to servletContext...?
wilth
  • 705
  • 2
  • 8
  • 19
7
votes
1 answer

AngularJS add dependencies after bootstrapped

I want to add dependencies after AngularJS is bootstrapped. I tried to do it via app.requires.push('app.main'); as suggested in this post (re-open and add dependencies to an already bootstrapped application). However, it does not work. Here's my…
user1995781
  • 19,085
  • 45
  • 135
  • 236
6
votes
3 answers

How to perform low-level IO with a USB flash drive under the BIOS (compared to a floppy)?

I have recently been studying some bootstrap code which was intended for use with a floppy drive. My goal is to modify the program so that it uses my USB flash drive. Now I see how the INT 13H function has been used with the floppy device, but I…
Mr. Shickadance
  • 5,283
  • 9
  • 45
  • 61
6
votes
4 answers

How to overwrite classes from jdk?

I'm trying to change some classes from open jdk, so I'm creating the same package structure as the open jdk classes have and I'm changing the classes using netbeans. When i'm building the project if something is wrong in the overwritten classes i'm…
Marius
  • 3,253
  • 5
  • 25
  • 29
6
votes
2 answers

How to use Bootstrap drop down in Angular2 application?

In my current project I want to add the dropdowns, for that I took the code from this link. After added the below code, the dropdown appears as in the example but when I click it nothing happens.
6
votes
4 answers

Grails bootstrap on integration tests

Im trying to insert some test data into my database, for which a class called BootStrapTest does the work. In my BootStrap.groovy file its called like this environments { test { println "Test environment" …
Tom
  • 43,810
  • 29
  • 138
  • 169
6
votes
1 answer

Failure to find autoload.php

I'm stuck on a very basic problem: I'm trying to use Laravel, which I installed on my windows 7 with composer. When I try to access my website locally with Wamp, I get the error: Warning: …
Pierre P.
  • 890
  • 1
  • 18
  • 41
6
votes
2 answers

Zend framework: Forms in modules

What I want to do: Create a number of modules with the forms folder inside them. What I did: Create a bootstrapper inside the module and added an _initAutoload function with the specific module name as namespace. For instance, an admin module with…
6
votes
3 answers

MBR Booting from DOS

For a project I would like to invoke the MBR on the first harddisk directly from DOS. I've written a small assembler program that loads the MBR in memory at 0:7c00h an does a far jump to it. I've put my util on a (DOS) bootable floppy. The disk…
Rogier
  • 121
  • 9
6
votes
4 answers

How to indicate zend framework where my custom classes are

I have a folder with custom classes in a ZF 1.10 application. The folder is located in /library. How can I tell ZF where they are? Both application.ini and index.php set the path to the library but then ZF can't find the files. Thank you
curro
  • 167
  • 1
  • 2
  • 11
6
votes
3 answers

.net 3.5 SP1 Bootstrapper not found for Setup

I am getting a warning when trying to include the .net 3.5 sp1 prerequisite for my setup project. The warning states Prerequisite could not found for bootstrapping. Any suggestions? Thanks
Ryan
  • 791
  • 16
  • 31
6
votes
3 answers

Understanding the request lifecycle of a Play! application

I am new to the Play! web framework, and in order to understand how it works, as well as how it compares with other web frameworks, I would like to be able to trace, in the Play! source code, the request lifecycle from start to finish. I will be…
Ben Wilhelm
  • 1,898
  • 3
  • 15
  • 12
6
votes
2 answers

composer package testing bootstrap

I've written a package and as part of the development proccess I want to run unit tests on it. This basically means I need a bootstrap file to register the autoloader for my package. Any package I look at doesn't have a specific bootstrap file, thus…
Alex
  • 11,479
  • 6
  • 28
  • 50