I currently have a setup where on my windows machine with cygwin I added my linux server as a remote origin where I can then push my changes as I have my SSH keys configured.
git add remote origin ip@path.git
git push origin
How would I do this to my windows machine is it as simple as hosting an SSH server and if so which do you recommend?
Solu
it1352
0
2020-11-15
I have a NSWindow/Controller that I display modal. It has a "Close" button hooked up to an action like this:
- (IBAction)close:(id)sender
{
[self.window orderOut:sender];
[self.window close];
[[NSApplication sharedApplication] stopModal];
}
From my main window, I display the modal:
- (IBAction)modal:(id)sender
{
NSLog(@"Before:
it1352
0
2020-09-06
I am working on something similar to this question asked in 2010
How to call Windows application using Windows service in C#?
This answer might be the solution to my problem
http://stackoverflow.com/a/2309089/1270384
Although I don't know how to do that.
Was wondering if somebody could give me an example of what is being mentioned or somethin
it1352
0
2019-05-10
I am trying to build a project using Windows 10 and Qt5.12. The small program is using the smtp protocol available here. I can confirm that on my Windows I have the OpenSSL 1.1.1c 28 May 2019. On my Ubuntu 19.04 the same exact program compiles and run as usual but not on Windows.
I git clone my repository into Windows, followed successfully this
it1352
0
2020-09-27
This is more a task to ask than help but... after 1 day of tries I can't get it work.
This is my code
private string _InetReadEx(string sUrl)
{
HttpWebRequest webReq = (HttpWebRequest)HttpWebRequest.Create(sUrl);
try
{
webReq.CookieContainer = new CookieContainer();
webRe
it1352
3
2019-05-10
I am developing a web based inventory solution for a client and there will be handheld mobile computers involved. I've never developed a web app that has been run on a browser on one of these devices. The devices we are looking at have one of the following OS:
Windows Embedded 6.5
Windows CE 5.0 or 6.0
Windows Mobile
My questions are:
Do all
it1352
0
2020-07-14
I am trying to set up an intranet at work that will use our Active directory
to authorize our users. We also want them to access the site from the
outside (such as at home) and also be authenticated by our Active Directory.
We don''t want to set up a separate Sql setup.
I tried to set up my Web.config file like so:
*****************************
it1352
0
2019-06-25
Hello All,
Can SetWindowsHookEx and a global keyboard hook be implemented in a C#
Windows Service? I can trap the print screen key in a regular windows
application, but the same code simply doesn''t catch the key press when I set
it up as a Windows Service. The service compiles and registers fine...
Thanks,
John Solution
<DIV>"
it1352
2
2019-06-25
Hi,
I have one doubt regarding registry, if we delete some thing in registry what and all it will delete. i think only the path anything else...
thanks in advance.. Solution
Hi,
I have one doubt regarding registry, if we delete some thing in registry what and all it will delete. i think only the path anything else...
thanks in adv
it1352
0
2019-06-25
Hi guys, I need to know, recently I added a user account on my PC because of an invasion of privacy. But on my PC there was already another user, my stupid sister, who just uses my work and messes with my files.
So when I added a user account my user account type was computer administrator, hence I can update any programs I wanted, and set my pas
it1352
2
2019-10-07