shell:startup
Ref:
http://www.howtogeek.com/228467/how-to-make-a-program-run-at-startup-on-any-computer/
shell:startup
Ref:
http://www.howtogeek.com/228467/how-to-make-a-program-run-at-startup-on-any-computer/
Scrum methodology helps keeping products on track with the stakeholders interests.
Scrum encourage teams and team members to be honest in their progress and obstacles.
Scrum development may help the entire organization deliver better products.
Just a short note to help remember the event sourcing setup for MySQL.
CREATE DATABASE eventstore_db;
CREATE USER 'eventstoreuser'@'localhost' IDENTIFIED BY 'changeit';
GRANT SELECT, INSERT ON eventstore_db.* TO 'eventstoreuser'@'localhost';
rabbitmqctl status
rabbitmq-service remove
rabbitmq-service install
net start rabbitmq
rabbitmqctl status
Mirroring a repository
To make an exact duplicate, you need to perform both a bare-clone and a mirror-push.
Open up the command line, and type these commands:
git clone --bare https://user:bitbucket.com/exampleuser/source-repository.git # Makes a bare clone of the repository cd source-repository.git git push --mirror https://github.com/exampleuser/target-repository.git # Mirror-pushes to the new repository cd .. rm -rf source-repository.git # Remove our temporary local repository
sudo chown -R $(whoami):admin /usr/local
Close the solution.
Delete the solution user options (*.v12.suo).
Re-open the solution.
Check if the intellisense is back.
sudo /usr/local/mysql/support-files/mysql.server start sudo /usr/local/mysql/support-files/mysql.server stop sudo /usr/local/mysql/support-files/mysql.server restart
Start of the stack overflow era.
Current rep: 1
This tag is for following historical rep evolution…
When using this snippet the thread goes into some infinite loop.
// Handle multipart if (Request.Content.IsMimeMultipartContent()) { IEnumerableparts = Request .Content .ReadAsMultipartAsync() .Result .Contents; foreach (var part in parts) { // Do stuff with the part } }
You can use the following to prevent this:
public HttpResponseMessage Post() { // Handle multipart if (Request.Content.IsMimeMultipartContent()) { IEnumerableparts = null; Task.Factory .StartNew(() => parts = Request.Content.ReadAsMultipartAsync().Result.Contents, CancellationToken.None, TaskCreationOptions.LongRunning, // guarantees separate thread TaskScheduler.Default) .Wait(); foreach (var part in parts) { // Do stuff with the part } } return Request.CreateResponse(HttpStatusCode.OK, "Yeah, some text here..."); }