Showing posts with label copy. Show all posts
Showing posts with label copy. Show all posts

2014-06-04

Level Up - Android Dev: KeyboardlessEditTest

Today, I've released a new open source project that has help me build my latest app. I needed an EditText with full capabilities, except for the keyboard showing up. All of the possible answers that I found on StackOverflow and GitHub all had their limitations, especially the lack of native editing (cut/copy/select/paste) options.

All of the problems have been abstracted out to a simple subclass of EditText that you can use easily in any project.

You can try it out on GitHub now: https://github.com/danialgoodwin/android-widget-keyboardless-edittext
Or, you can go directly to test the APK: https://play.google.com/store/apps/details?id=net.simplyadvanced.simplytonegenerator

If you have any questions or need clarifications on how to use the project, then please let me know.



~ Danial Goodwin ~



2014-02-13

Published New App: Flappy Fishes

(YAFBC = Yet Another Flappy Bird Clone)

I really wasn't going to make a copy, but then I did.

Available for:
- Windows 8
- Windows Phone
- HTML5 (slightly older version)

~ Danial Goodwin ~



2014-02-07

Level Up - Windows 8: How to Copy/Move Files From Many Subfolders To Just One Folder

Long Title: How to Transfer Files From Many Subfolders To Just One Folder and Rename Them All Easily and Quickly.

Example: I had about 100 images that were all neatly organized into 100 different subfolders. I wanted to put them in just five different subfolder as painless as possible. Manually moving each image one-by-one was not ideal, so here's what I did, using the Windows Command Prompt and a Batch file:

1. Create a BAT file.
2. Add the following code:
FOR /L %%i IN (0,1,19) DO (
copy %cd%\ic_launcher(%%i)\res\drawable-mdpi\ic_launcher.png %cd%\_mdpi\data_cycle_%%i.png
copy %cd%\ic_launcher(%%i)\res\drawable-hdpi\ic_launcher.png %cd%\_hdpi\data_cycle_%%i.png
copy %cd%\ic_launcher(%%i)\res\drawable-xhdpi\ic_launcher.png %cd%\_xhdpi\data_cycle_%%i.png
copy %cd%\ic_launcher(%%i)\res\drawable-xxhdpi\ic_launcher.png %cd%\_xxhdpi\data_cycle_%%i.png
copy %cd%\ic_launcher(%%i)\res\drawable-xxxhdpi\ic_launcher.png %cd%\_xxxhdpi\data_cycle_%%i.png
)
3. Run the BAT by double-clicking the file (or right-click->Open) (or run via command prompt).

Note:
- The parenthesis after "DO" must go on the same line. Putting it on the next line will cause the file to not work properly.
- If you want to move files rather than copy, then change "copy" to "move".
- If you want to keep the same file names, then you don't have to specify the file name on the second parameter.

Now in a simpler English, what this batch file does:
- There are five "copy" commands with a source and destination.
- These commands are each ran 20 times because of the "FOR" command.
- The "FOR" line says do the following commands within the parentheses 20 times. The first time will have the variable "%%i" equal to 0. The second run will have "%%i" equal to 1. The variable will keep incrementing until "%%i" is equal to 19. This behavior is defined at "%%i IN (0,1,19)", where 0 is the starting number, 19 is the ending number, and 1 is the increment number (which could also be negative).


For more information about for-loops, then type "for /?" into the command prompt.


Here's some more commands that you can try: Windows Command Prompt Cheat Sheet
~ Danial Goodwin ~



2013-06-05

A Few Notes On Entrepreneuring

(The following list of notes on entrepreneuring and businesses are in no particular order. I probably could have titled this "Things to know/remember when building your business".)

Difference between a service company and a product company: The first is easily scalable.

Build something that does one thing really well.

Difference between a huge market and the right market.

Experience+knowledge >> knowledge. (Read: Experience and knowledge is much greater than just knowledge.)

"The trend is your friend" when asking for venture capital. Current trends: mobile, cloud, big data, and social.

--
Describe your service/product better. Better doesn't mean specific, it means making an impression. Ex: My service is the oracle of big data. The words you should use evolve with time and with usage by others. The best copy now should use just one of the following: comprehensive, genuine, convenient , accessible, prestigious, premier, pioneers, quality, we obsolete .

Other terms should be purposely excluded because they are either overused, not true, or sound templated: innovative, groundbreaking, fresh, leader, unique. It is tough to know which words to stay away from; you don't want to make people doubtful and put their defenses up. One tip is to keep up-to-date with everything investors, businesses, and consumers see.

I have much more to say about this, but it could take up at least two more long blog posts. Here's a small list of currently neutral descriptive words for your business: functional, effectively, revitalizes, the original. "My business is a multinational corporation" could mean that I run a website.)
--

Descriptions should appeal to each of the senses. (Copy is very important)

There are always tradeoffs. Know them.

"People who get MBAs learn how to draw timelines."

The ability to communicate effectively is your strongest asset.

When building for businesses, the ultimate goal is to either raise revenue or reduce costs.

"Engineers are not hired to create programs, they are hired to create business value."

Any more quick thoughts? What are your first thoughts? Then what are your second thoughts?
~ Simply Advanced ~