|
I am setting up git between two AWS instances (call them A and B). I can pull from A fine and see changes in those files on B.
If I create a new file on B and commit it, when I push from B to A, all seems to go well (I get the git message about writing...
Started by Mitch on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
A push is like.
Roll your working directory forward on A.
However, it seems like you apparently are having issues.
If it was apparently successful then it would be apparent that there was success.
|
|
I'm learning python and Qt to create graphical desktop apps. I designed the UI with Qt Designer and converted the .ui to .py using pyuic, according to the tutorial I'm following, I should be able to run my app. but when I do it, a terminal window opens...
Started by MrAn3 on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
It seems a little unusual that your Ui_MainWindow class isn't actually a subclass of QMainWindow; it isn'... .
The problem is that your python code is merely defining a class, but has no main program which invokes the class or causes QT to pop up a window .
|
|
I am trying to get a Comodo certificate recognized on a webserver written in Python using ssl. When I visit in IE8, the certificate is recognized without difficulty. But when I visit with Firefox 3.0.11/Ubuntu, it says the CA is invalid.
Should Firefox...
Started by JonathanHayward on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
It may be that ....
Browsers come installed with a collection of trusted root certificates from certificate authorities like VeriSign .
Certificate authorities issue certificates and sign them using their root certificates .
Certificates are based on trust.
|
Ask your Facebook Friends
|
I have some problem with the .net runtime since installing some recent sharepoint fixes but as I can't see anyone else having had this problem I think it may be coincidental and the runtime just needs repairing.
So, I do the usual thing, open Add/Remove...
Started by glenatron on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
Maybe try using the Windows Installer Cleanup Utility to resolve this one?
Uninstall it first? Or try installing 3.5 SP1 as it will take care of previous version dependencies as well. .
|
|
Please, may somebody explain me, what can raise an exception in this code?
function CreateBibleNames: TStrings; begin Result := TStringList.Create; try Result.Add('Adam'); Result.Add('Eva'); Result.Add('Kain'); Result.Add('Abel'); except Result.Free; ...
Started by lyborko on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
That seems like overly defensive programming for making....
If there isn't enough memory to add a couple strings to a list, free the whole list and re-throw the exception .
The most obvious exception would be whatever Delphi uses for an OutOfMemoryException .
|
|
I have some VB.NET (which I don't normally deal with) code which must be converted to C# (which I normally do).
The code happens to be in a Windows Forms app. I notice a couple of places such as:
Public Sub New() ParentWindow = Me
where there is no ParentWindow...
Started by Buggieboy on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Try adding the following to the top of the file
Option Explicit On
VB is case insensitive... .
This is a feature of VB.Net that allows for variables to be used before they are declared .
If this is working it's likely that you have Option Explicit set to off .
|
|
Hi,
I have been playing around with the MS Source Server stuff in the MS Debugging Tools install.
At present, I am running my code/pdbs through the Subversion indexing command, which is now running as expected. It creates the stream for a given pdb file...
Started by Tim Peel on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Also you need the latest version of srcsrv.dll, just download the latest WinDBG copy the DLL from there and make sure that Visual Studio uses it .
There is an option in the Options\Debugging\Symbols of Visual Studio to emit logs of the source server .
|
|
Lets say I have some markup like this:
<html> <head> <style type="text/css"> #container { margin: 0 auto; width: 900px; background: green; } </style> </head> <body> <div id="container"> </div> </body&...
Started by Tom on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
W W - original width PW WP - original width plus padding either side PW----WP - smaller width plus padding either side
Box model courtesy of Can Berk Güder... .
Padding is additive to the width.
You need to change the width to 800px and then add your padding .
|
|
Hi, I apologise if I'm a litre vague and can give more info if needed.
My vista machine has been working fine until today when I tried booting it. Vista loads showing the loading bar then goes to a black screen with the cursor on which you can move. It...
Started by Joomaz on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
I'm partial to SpinRite , which costs a bit of cash, but I believe it does have a money... .
Hit it with a hard drive repair utility - something a little more heavy duty than the one Microsoft provides .
Sounds like something bad happened to your hard drive.
|
|
In the following method, FreeMem(), throws an EAccessViolation. What are the possible reasons?
procedure TCustomDataset.FreeRecordBuffer(var Buffer: PChar); begin FreeMem(Buffer); end;
EDIT: As far as I understand TDataset Buffers are only allocated in...
Started by JPvdMerwe on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Basically what happened was I wrote over the end of the memory buffer I allocated and this somehow... .
It's hard to say more without at least a tiny bit of context .
Probably Buffer is already freed or otherwise invalid.
I assume you mean EAccessViolation.
|