Messages - BigVent [ switch to compact view ]

Pages: prev1 2 [3] 4 5 6 7 8next
11
N.A.N.Y. 2014 / N.A.N.Y 2014 Submission: FTP File Uploader
« on: November 27, 2013, 10:37 AM »
NANY 2014 Entry Information


Application NameFTP File Uploader
Version1.0
Supported OSesWin XP or greater
Web pageNone
Download linkhttp://www.datafilehost.com/d/4c754c9a
System RequirementsWin XP or greater
AuthorBigVent

  • Idea obtained from: this post
  • This program will parse a selected text file & then upload those file names within said folder.
  • EXE must be in the folder of the images to be PUT via FTP.
  • Uses cURL for the PUT
  • Clears variables at the end so that nothing is stored
  • ESC key is the exitapp hotkey

Typical txt file: (only file_names & ext)

1.JPG
2.JPG
3.JPG

Download link:

http://www.datafilehost.com/d/9e50c56a

New Link:
http://www.datafilehost.com/d/4c754c9a


12
Living Room / Great sites for guitar learning
« on: November 26, 2013, 09:37 AM »
The purpose of this thread is to share links that would help *everyone* get a jump-start on the learning curve.

Please post your favorite sites, links, etc to help the community.

Thanks!


Justin Guitar -- Great site overall from beginners to advanced guitar

tropicalmba  -- Great site for beginners to start




13
Post New Requests Here / Re: comma remover and name order changer
« on: October 24, 2013, 12:09 PM »
Assuming all your file_names have "Lastname, Firstname Middle_init.ext" this should work for your purposes.  However, it WILL NOT work if they do not have a middle initial.  I based this upon your example above... "Abbott, John B.jpg"

Here's an easy example of what you need.  I know that this can be done via RegEx & other various ways, but I wanted to keep it simple. 
I felt it was easier to understand if you modified the code yourself. 

Feel free use as needed.

Enjoy!

Code: Autohotkey [Select]
  1.  
  2. FileSelectFolder, WhichFolder  ; Ask the user to pick a folder.
  3. Loop, %WhichFolder%\*.*, , 1
  4. {
  5.         file_name := A_LoopFileName
  6.  
  7.         StringReplace, file_name, file_name, `, , ,All    ;//removes the commas
  8.         StringReplace, file_name, file_name, ., %A_Space%, All     ;//changes the period to space
  9.        
  10.         name_array := StrSplit(file_name, A_Space)   ;//break it apart using the spaces & put into array
  11.        
  12.         final_name := name_array[2] " " name_array[3] " " name_array[1] "." name_array[4]    ;//combine array to new file struct
  13.        
  14.         FileMove, %WhichFolder%\%A_LoopfileName%, %WhichFolder%\%final_name%  ;//renames a single file
  15. }
  16.  
  17. msgbox, File Name(s) have been changed!
  18.  
  19.  
  20. Esc::   ;//panic button
  21.         critical

14
Count me in for one too.

15
Perhaps I should've clarified that this was an example that can be modified to suit your needs & I only tested it on my XP box, sorry about that.
Anyway, I've made an adjustment to the window & it should work as desired.  (e.g. "Date and Time Properties" on XP & "Date and Time" on > Vista)

Tested on Win XP, Vista, & 7


Enjoy!

Code: Autohotkey [Select]
  1.        
  2.     ;//change hotkey to your desired key
  3.     Numpad5:: ;//Number Pad 5 hotkey
  4.     {
  5.      
  6.                 while GetKeyState("Numpad5")    ;//while Number Pad 5 key is held
  7.                 {
  8.                         Traytip, Key Is Held, Your hotkey is being held., ,1
  9.      
  10.                         IfWinExist, Date and Time ;//Windows clock & date
  11.                                 Continue
  12.                         IfWinNotExist, Date and Time
  13.                                 run, Timedate.cpl
  14.                 }
  15.  
  16.                 sleep, 3000    ;//small delay
  17.                 Traytip
  18.      
  19.                 WinClose, Date and Time ;//upon release close the window
  20.     }
  21.     Return
  22.      
  23.     ESC & Numpad5:: ;//esc & Number Pad 5 will exit the script
  24.                 Critical
  25.                 ExitApp
  26.     Return

Pages: prev1 2 [3] 4 5 6 7 8next
Go to full version