This isn't made to protect any passwords, just to work better with something like KeePass, where you copy-paste your password into a text field. Like I said before, not all websites/games will allow you to paste into the text field, so that's what this is for :l
How is this secure? You have to write your password in plain text, copy it then use your program. Also, I don't see how copying and pasting your password instead of just typing it in changes anything... Well unless you "hunt and peck" type at 5wpm.
I'm assuming you don't know what KeePass is.
What it is is a program that you have a master password for, which holds all of your passwords for anything. Of course everything is encrypted. When you're using it, you right-click and select copy to paste the passwords. I made this program basically for this in mind, because not all websites let you paste into a text field.
You're not writing your password in plain text ever, and my program will never even save your clipboard into any variables, it simply retrieves and sends the keys.
It feels almost like you didn't even read most of my post to begin with..
Well I've had both Verizon and Sprint. Currently I have Sprint, mostly because their plan is the best I've seen.
When I had Verizon, they had great coverage and speeds. The only downside was their high prices, which seem to be getting worse, because they got rid of unlimited data.
Sprint, on the other hand, is cheap with great plans. But the downside is that their coverage isn't the greatest. They did mention something about a rather large increase in coverage soon. I still like them though, and I have hopes that they won't change their data plan like Verizon did.
My vote is for Sprint, although I live in America, so I'm not sure how it is up there.
So if anyone of you are a little overly-cautious about your passwords, like me, you use something like KeePass. I love this thing. The downside though is that sometimes you can run into a website or game that doesn't let you copy-paste into the text field.
My solution was to code up an auto-typer. It's a simple program, compiled into a small .exe file, that has a changeable delay to the time till it auto-types into your selected text field.
Public Class frmMain
Private Sub frmMain_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load
txtAutoTypeDelay.Text = 10
chkbxDoClose.Checked = True
chkbxDoClearClipboard.Checked = True
End Sub
Private Sub btnStartDelayedAutoType_Click(sender As System.Object, e As System.EventArgs) Handles btnStartDelayedAutoType.Click
If TextboxAllNumericAndValid() = True Then
btnStartDelayedAutoType.Enabled = False
txtAutoTypeDelay.Enabled = False
Dim TempAutoType As New DelayedAutoType
TempAutoType.SetAndStartTimer()
Else
MessageBox.Show("Invalid delay time!", "ERROR", MessageBoxButtons.OK, MessageBoxIcon.Error)
End If
End Sub
Private Function TextboxAllNumericAndValid() As Boolean
If txtAutoTypeDelay.Text <> "" Then
Dim LoopTextCount As Byte = 0
For LoopTextCount = 0 To (txtAutoTypeDelay.TextLength - 1)
If IsNumeric(txtAutoTypeDelay.Text.Substring(LoopTextCount, 1)) = False Or txtAutoTypeDelay.Text.Substring(LoopTextCount, 1) = "." Or txtAutoTypeDelay.Text.Substring(LoopTextCount, 1) = "-" Then
Return False
End If
Next
If System.Convert.ToUInt32(txtAutoTypeDelay.Text) <= 0 Then
Return False
Else
Return True
End If
Else
Return False
End If
End Function
End Class
Public Class DelayedAutoType
Private WithEvents tmrAutoType As New Timer
Public Sub SetAndStartTimer()
With (tmrAutoType)
.Interval = System.Convert.ToInt32((System.Convert.ToUInt32(frmMain.txtAutoTypeDelay.Text)) * 1000)
.Enabled = True
End With
End Sub
Private Sub tmrAutoType_Tick() Handles tmrAutoType.Tick
tmrAutoType.Enabled = False
SendKeys.Send(My.Computer.Clipboard.GetText)
If frmMain.chkbxDoClearClipboard.Checked = True Then
My.Computer.Clipboard.Clear()
End If
If frmMain.chkbxDoClose.Checked = True Then
frmMain.Close()
Else
frmMain.btnStartDelayedAutoType.Enabled = True
frmMain.txtAutoTypeDelay.Enabled = True
End If
End Sub
End Class
Feel free to just take the code and put it into Visual Basic if you want, doesn't matter to me. Just sharing some simple software.
Anyone know why they don't go together? When I have them both open and I hit the record button, it does nothing. I do have the retail version, not the Steam version, which I've found other people having problems with too.
Would there possibly be a fix for this somewhere, or an update for something to make it work?
V5.02 is up with..
-A new Insane difficulty
-Health for Easy/Hard (indicated by your characters color) that absorbs bullets (you'll still die if they touch you)
This just seems like something that shouldn't be in an ad.fly link...
Trying to squeeze money out of something, which is already has a lot of free tutorials, is rather stupid. Even if someone makes a unique and awesome map, it probably doesn't deserve an ad.fly link.
Alright, new plan, I'm getting a chair that can go higher (because I like my desk a lot). Anyways, can anyone recommend a comfortable desk chair that can go rather high? From the floor to the top of my desk is about 29 inches, so I need a chair that will bring the arm rests to about that high.
If it's a little expensive, that's fine. Price range at about $100. I can shop online, although there's a Walmart & Best Buy in driving distance.
EDIT: A high back would be nice also, because I'm about 6 ft 2 in tall.
So I'm looking for a better/shorter desk since mine has no space for a bigger mouse mat. Anyways, this is the one I found http://www.amazon.co...8072603&sr=1-10, and it's good. Only problem is, it has to be 25 inches (or less) in height because my computer chair can't go any higher.
I'm wondering on this desk if it's 19.7 inches in height or length? Also, if you know a better desk that's 25 inches or less in height that's less than $80, then post it !
0
Sprint - "Everything Data Family", with 2 phones total on the plan.
0
This isn't made to protect any passwords, just to work better with something like KeePass, where you copy-paste your password into a text field. Like I said before, not all websites/games will allow you to paste into the text field, so that's what this is for :l
0
I'm assuming you don't know what KeePass is.
What it is is a program that you have a master password for, which holds all of your passwords for anything. Of course everything is encrypted. When you're using it, you right-click and select copy to paste the passwords. I made this program basically for this in mind, because not all websites let you paste into a text field.
You're not writing your password in plain text ever, and my program will never even save your clipboard into any variables, it simply retrieves and sends the keys.
It feels almost like you didn't even read most of my post to begin with..
0
When I had Verizon, they had great coverage and speeds. The only downside was their high prices, which seem to be getting worse, because they got rid of unlimited data.
Sprint, on the other hand, is cheap with great plans. But the downside is that their coverage isn't the greatest. They did mention something about a rather large increase in coverage soon. I still like them though, and I have hopes that they won't change their data plan like Verizon did.
My vote is for Sprint, although I live in America, so I'm not sure how it is up there.
0
My solution was to code up an auto-typer. It's a simple program, compiled into a small .exe file, that has a changeable delay to the time till it auto-types into your selected text field.
Download here: https://www.box.com/...60e56fa040e686e
A picture of the actual program..
All the code, seperated by the build actions..
Feel free to just take the code and put it into Visual Basic if you want, doesn't matter to me. Just sharing some simple software.
0
I'll post the results, probably by tomorrow or the next day.
0
That makes sense, but I find it odd because I can record any other game. This is the first I've had issues with.
0
It's in my best interests to not answer that question
0
Would there possibly be a fix for this somewhere, or an update for something to make it work?
Also, my current Fraps version is 3.5.4.
0
-A new Insane difficulty
-Health for Easy/Hard (indicated by your characters color) that absorbs bullets (you'll still die if they touch you)
Enjoy!
0
Trying to squeeze money out of something, which is already has a lot of free tutorials, is rather stupid. Even if someone makes a unique and awesome map, it probably doesn't deserve an ad.fly link.
But that's just me..
0
But yeah CNB is awesome, don't know what you could be hating on him about :l
0
If it's a little expensive, that's fine. Price range at about $100. I can shop online, although there's a Walmart & Best Buy in driving distance.
EDIT: A high back would be nice also, because I'm about 6 ft 2 in tall.
0
wat
Anyways, any desks (25 inch height or less) that anyone can recommend (or a chair that can go really high while still being very comfortable)?
0
I'm wondering on this desk if it's 19.7 inches in height or length? Also, if you know a better desk that's 25 inches or less in height that's less than $80, then post it