topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Saturday April 27, 2024, 2:54 pm
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - phitsc [ switch to compact view ]

Pages: prev1 ... 8 9 10 11 12 [13] 14 15 16 17 18 ... 48next
301
This is actually expected behavior. In the case you describe, as soon as you press "copy output to input", the current output becomes the new input, which itself gets the "F" prepended, hence the double-F prefix.

302
Developer's Corner / Niklaus Wirth Birthday Symposium
« on: March 05, 2014, 03:29 PM »
Niklaus Wirth turned 80 this last February. ETH Zürich organised a Niklaus Wirth Birthday Symposium to celebrate this. All the talks are available online if anyone's interested. I have to admit that I only skimmed over some of them so I can't say much about how interesting they really are. I watched Wirth's own talk though where he talks about his past career mainly, which really is a look back into the history of personal computing (well, a tiny part of it anyway).

303
New release:

0.12
  • Added Capitalisation - Title
  • Added Capitalisation - Toggle
  • Added possibility to use \t for tab and \n for newline where it might make sense


304
Mini-Reviews by Members / Re: Atom - A new editor is born
« on: March 03, 2014, 03:15 AM »
Looks very interesting. Thanks for sharing!

305
Worked flawlessly here. What's the exact problem you encounter?

306
You're welcome dr_andus. I've put sentence case onto the todo list.

307
DC Gamer Club / Visual comparison between PS3 / 4, Xbox 360 / ONE
« on: February 20, 2014, 01:57 AM »
http://www.joystiq.c...-platform-compariso/

The PS 4 very obviously has much better weather than the other three :D


308
New release:

0.11
  • Renamed category 'List' to 'Lines'
  • Renamed category 'Search' to 'Search & Replace'
  • Added Search & Replace - highlight non-ascii characters
  • Added Lines - Keep / Remove words at beginning / end of lines (can be used to remove line numbers as well)
  • Added Lines - remove duplicate lines
  • Added Lines - remove extra empty lines
  • Added Lines - delete to tag
0.10
  • Added Search & Replace
  • Can now specify line number start and increment

I've also added DeVamp's list to the first post (to tick done stuff off).

309
Living Room / Re: Project Christine - Modular PC from Razer
« on: February 11, 2014, 01:46 AM »
Looks like a (and probably also serves as a) radiator.

311
And here's the opposite opinion: http://sealedabstrac...-the-games-industry/
and toucharcade.com's comment about it: http://toucharcade.c...-the-games-industry/

Personally, I don't "buy" free-to-play games, and probably never will. I prefer knowing up-front how much a game is going to cost me. The only IAP that are ok with me are the ones where you buy additional "campaigns" (like the Zen Pinball series, Sentinel 3 and GOF2 HD for example).

312
0.9:
* Save window size/position and state of 'ignore case' and 'reverse output direction'
* Print number of highlights (matches) in status bar (e.g. in search)
* Highlight filter text
* Added Web - Remove tags

313
Just learned about Text Monkey Pro, mentioned by skwire in this thread.

314
When you use order -> reverse words, scramble lines and scramble within words
the layout is completly gone.

How do you mean the layout's gone with scramble lines?

315
0.8:
* Fixed reverse words, scramble within words layout
* Added prepend line number (as suggested here without the <>)
* Added tooltips to the buttons

316
0.7 adds:
* Streamlined layout
* Added ignore case toggle button (and Ctrl + I)
* Added reverse output toggle button (and Ctrl + R)
* Some additional keyboard shortcuts
* Using monospace font for input/output boxes
* Clicking the link in About now opens a web browser

317
Sorry, forgot to update the download link. Fixed.

318
Added:

* Filter for text manipulation tree
* Improved keyboard handling
* File open and save

319
Living Room / Re: Warning for chrome extension users
« on: January 20, 2014, 01:43 AM »
Thanks for the heads up!

320
New release available. Started to implement some of DeVamp's suggestions.

321
Thanks skwire. I have to say I was very surprised about the length! Feeling honored someone spent the time writing all this down. :)

322
I'll upload the next release somewhere else.
You could attach it to the original release-post, so it's stored somewhere in the forum-space, and always available as long as the forum is :up:

I've done this now. Sorry to everyone who had trouble downloading it from mega.

323
Thanks for the heads up mouser! :)

324
I'll upload the next release somewhere else.
You could attach it to the original release-post, so it's stored somewhere in the forum-space, and always available as long as the forum is :up:

Makes sense!

325
Some more suggestions:
(taken from an old plugin for Notepad++,but that plugin doesn't works anymore...)

Some functions ask multiple optional parameters. Just see what you can do with it.

All line functions

  • ReverseLines(): Reverses the order of all the lines.
  • Scramble(): rearranges the lines in random order.
  • SetBlanks(int minblank, int maxblank, int threshhold): Changes the number of blank lines between lines.
  • SortCase(): Like sort, but case-sensitive.
  • Wrap(int columncount, int ignorewords): Adds hard returns to force columns to a certain width.

Per-Line Functions

  • AddLineNumbers(string separator, string padchar, int length): Puts the line number on the front of each line, with an optional separator.
  • AddLineNumbersOffset(string separator, string padchar, int length, int offset): Puts the line number on the front of each line, with an optional separator.  Offset is the number of the first line.
  • BeginLine(string text): Appends text to the beginning of every line.
  • CutLeft(int count): Removes count characters from the beginning of each line.
  • CutRight(int count): Removes count characters from the end of each line.
  • DeleteToTag(string tag): For each line, deletes all characters before first instance of tag
  • EndLine(string text): Appends text to the end of every line.
  • PadLeft(string padchar, int length): Pads the beginning of each line with padchar to extend the length where necessary
  • PadRight(string padchar, int length): Pads the end of each line with padchar to extend the length where necessary
  • ShortenLeft(int length): Removes characters from the beginning of each line if the line is too long
  • ShortenRight(int length): Removes characters from the end of each line if the line is too long
  • SizeLeft(string padchar, int length): Pads or cuts the beginning of each line to make it the exact length
  • SizeRight(string padchar, int length): Pads or cuts the end of each line to make it the exact length
  • Trim(string badchars): Strips all badchars from the beginning and end of every line.
  • TrimLeft(string badchars): Strips all badchars from the beginning of every line.
  • TrimRight(string badchars): Strips all badchars from the end of every line.

Deleting Lines

  • DeleteDupes(): Deletes any line that is identical to a previous line.

Search and Replace

  • Replace(string oldtext, string newtext): Replaces all instances of oldtext with newtext.

Thanks DeVamp. That's quite a list! Have any priorities?

Pages: prev1 ... 8 9 10 11 12 [13] 14 15 16 17 18 ... 48next