Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~1K People Reached
Member Avatar for rectifryer

I am currently trying to use the "find" command with symbollic links created by a tcl script that are pointing at another file in another directory (RH5). My script is written in bash, however: find /home/directory/subdirectory -name *.gz -type f -printf '%T@ %p\n' | sort -n | tail -n 1 …

Member Avatar for rectifryer
0
161
Member Avatar for rectifryer

I have a low end HP 6005 cpu that will not display more than 720p with my dell 30" 1600p monitor. The drivers are current and I am using a dual link cable. If I swap to a smaller 1080p monitor, the cpu swaps to 1080p automatically. What is the …

Member Avatar for rectifryer
0
71
Member Avatar for rectifryer

Sorry for the painfully specific question. My company's policy dictates that we have to acquire dependencies from commercial sources. Does anyone know if RH has TKinter available for download anywhere on the site? I can not find it and unfortunately I cannot access their FTP site either.

Member Avatar for rubberman
0
116
Member Avatar for rectifryer

I have a snippet of code that works when used in its own .sh file: #! /bin/bash LastFileUpdate=`find $dir -name $SearchString -type f -printf '%T@ %p\n' | sort -n | tail -n 1| awk '{print $1}'` echo $LastFileUpdate This code works on its own, but when I insert it into …

Member Avatar for rectifryer
0
241
Member Avatar for rectifryer

Hello fellow code enthusiasts. I am currently trying to figure out how to retrieve text from pdf images submitted to my MS office inbox and put them into an excel spread sheet. At the moment, I plan on using Tesseract as a library (well reference) to do this. Is there …

Member Avatar for tinstaafl
0
119
Member Avatar for rectifryer

I have installed Qt on my ubuntu laptop and I get nothing but errors compiling .cpp files with <QApplication> preprocessor directives. I am new to using Qt and are reading a book online about it hosted here: http://www.informit.com/articles/article.aspx?p=1405562 Specific error i have obtained running g++ hello.cpp -o hello: hello.cpp:1:24: fatal …

Member Avatar for rubberman
0
130
Member Avatar for wwsoft

hello , I need to know how to get the direction from point A to point B eg. point_direction(0 , 0 , 100,100); would equal 315 x1 y1 x2 y2 how do I compute this ? Thanks !

Member Avatar for daviddoria
0
162
Member Avatar for rectifryer

[CODE]#include <cstdlib> #include <iostream> #include <cmath> #include <iomanip> #include <cctype> using namespace std; double distance(double,double,double,double); double radius(double,double,double,double,double); int main() {double X,secX,Y,secY,z,r; r=0; cout<< "Please enter the x value of the center of the circle:"<< endl; cin>>secX; cout<< "Please enter the y value of the center of the circle:" << endl; …

Member Avatar for Banfa
0
397