windows-7-x64

How to install PL/Python on PostgreSQL 9.3 x64 Windows 7?

寵の児 提交于 2019-12-07 03:50:46
问题 I have tried to install the PL/Python v2.x language inside PostgreSQL on my database running the query: CREATE EXTENSION plpythonu; (I got this from http://www.postgresql.org/docs/9.3/static/plpython.html) But I'm getting this error: ERRO: não pôde acessar arquivo "$libdir/plpython2": No such file or directory ********** Error ********** ERRO: não pôde acessar arquivo "$libdir/plpython2": No such file or directory SQL state: 58P01 How to install this in an automated way? I need to install it

PostgreSQL 9.2.4 (Windows 7) - Service won't start, “could not load pg_hba.conf”

落爺英雄遲暮 提交于 2019-12-06 22:02:44
问题 I am trying to get Postgres 9.2.4 to run as a service on Windows 7. After installing postgres, the service was running fine. However, after setting postgres up as a server for another program, the service stopped running. When I try to start the service now, I get a message saying : "The postgresql-x64-9.2 - PostgreSQL Server 9.2 service on Local Computer started and then stopped. Some services stop automatically if they are not in use by other services or programs." When I try running the

Links to games created by Windows when delphi projects create exes with specific names

对着背影说爱祢 提交于 2019-12-06 20:05:55
问题 I have a Delphi project called VR that produces an executable named VR.exe. To my dismay I discovered Windows (I am running Window 7 64 bit Ultimate) has added links to the start menu and under games: Search & Rescue: Vietnam MED+EVAC. The icons for the links are the default delphi app icon. Did a bit of research and I found this post: http://social.technet.microsoft.com/Forums/windows/en-US/a5919fc1-db3d-4f13-b241-d059df2bf11f/renaming-a-file-into-vrexe How can I prevent windows from doing

Convert seconds to hh:mm:ss,fff format in PowerShell

 ̄綄美尐妖づ 提交于 2019-12-06 19:27:04
问题 I have a string representing a time in seconds and milliseconds. I want to convert it to a string in the format "hh:mm:ss,fff". My solution still has the flaw that hours less than 10 are shown with one decimal instead of two: PS> $secs = "7000.6789" PS> $ts = [timespan]::fromseconds($s) PS> $res = "$($ts.hours):$($ts.minutes):$($ts.seconds),$($ts.milliseconds)" PS> $res PS> 1:56:40,679 What is the right way to achieve this? I'm sure there is a more elegant way with -f and datetime. 回答1: In

Can Install EGit: Missing requirement: Git Team Provider Core

若如初见. 提交于 2019-12-06 18:36:48
问题 So I am using Coldfusion Builder with Ecplise. I am trying to get EGit installed in it so I can do Git stuff. The only thing I can ever get installed is EGit 0.11.1 from http://download.ecplise.org/releases/helios/ . When I try to install the latest version from http://download.eclipse.org/egit/updates version 2.3.1.xxx I always get the Missing requirement error: Missing requirement: Git Team Provider Core 2.3.1.201302201838-r (org.eclipse.egit.core 2.3.1.201302201838-r) requires 'bundle org

BHO for capturing user clicks works fine in Windows other than Windows 7 Home Premium with IE9

自作多情 提交于 2019-12-06 14:09:50
问题 I have written a BHO for IE 8 and IE9 that binds and capture certain elements(e.g INPUT element) from a user's page on my website and instead of performing the click event, performs custom post processing and presents user with different options based the data attached to each div/input element on which user has clicked. Now the problem is: it works fine in the following configurations: Windows XP , IE 8 working Windows 7 Ultimate x86 , IE 8 - working Windows 7 Ultimate x64 , IE 8 - working

Git Public Key Access denied

核能气质少年 提交于 2019-12-06 13:47:20
问题 I setup today Git on my Windows 7 64bit Machine. I used the git bash for setting up the public key etc. and copied the information also to my account as proposed in Github help. Now I want to use git within the cmd of my windows machine instead of the git bash. If I now type ssh -vT git@github.com I get the following results: CMD: OpenSSH_4.6p1, OpenSSL 0.9.8e 23 Feb 2007 debug1: Connecting to github.com [207.97.227.239] port 22. debug1: Connection established. debug1: identity file /.ssh

VideoWriter not working on Win7-64Bit VM

倾然丶 夕夏残阳落幕 提交于 2019-12-06 13:21:26
问题 I coded the below which tries to hold a picture and count number hundred and finally grab all them to a video with following codec MP42(MPEG4-V2) #include <stdAfx.h> #include <iostream> #include <opencv2\opencv.hpp> using namespace cv; using namespace std; int n=0; char a; int main(int, char** argv) { Mat image= imread("C:\\Users\\Metin\\Desktop\\images.jpg"); Mat newimage; VideoWriter vide ("Hopdedik.avi",CV_FOURCC('M','P','4','2'),30.0,image.size()); vide.open("Hopdedik.avi",CV_FOURCC('M',

Anaconda : Update conda failed because permission error

倖福魔咒の 提交于 2019-12-06 12:40:06
问题 I'm using Anaconda version 5.1 on Windows 7 (64bit). I have tried to update conda from 4.4.10-py36_0 to 4.4.11-py36_0 but cannot and got error message (base) C:\Windows\system32>conda update -n base conda Solving environment: done Package Plan environment location: C:\ProgramData\Anaconda3 added / updated specs: - conda The following packages will be downloaded: package | build ---------------------------|----------------- conda-4.4.11 | py36_0 955 KB The following packages will be UPDATED:

QGLWidget is slower than QWidget

一个人想着一个人 提交于 2019-12-06 08:02:11
The problem mainly is determined in the title. I tried out the Qt's example ( 2dpainting ) and noticed, that the same code consumes more CPU power if I try to draw on QGLWidget and less if I try to draw simply on QWidget. I thought that the QGLWidget should be faster. And one more interesting phenomenon: In QGLWidget the antialiasing hint seems to be ignored. OpenGL version: 3.3.0 So why is that? Firstly, note this text at the bottom of the documentation that you link to: The example shows the same painting operations performed at the same time in a Widget and a GLWidget. The quality and speed