「Official」Asian Anime, Manga, and Music Lounge
Oct 30, 2013 at 6:52 PM Post #93,796 of 177,742
  Math test in 2 hours.
 
Gonna bang it out, and get home so I can watch all the anime's
 
How is Coppelion so far? I'm still only finished with ep 1 and not sure if I should watch more
 
What do you guys think?

Dropped it.
The visuals are pretty cool, but there are just waaaaay too many random nonsensical/dumb things in it.
People overreacting for no damn reason.
People crying for like 3 seconds and be all cool right after that.
People making lots of dumb/illogical decisions.
Weird dialog (e.g. "I have ten times the physical strength, endurance of a normal person"....no trace of that at all in the anime).
Strange pacing etc.


This anime wants to do a lot of cool things, but everything feels either rushed or only thought through 50%.
 
Oct 30, 2013 at 6:52 PM Post #93,797 of 177,742
dropped 
evil_smiley.gif

 
Oct 30, 2013 at 6:54 PM Post #93,798 of 177,742
  Most unix-like systems will have Telnet by default (some will not have SSH believe it or not).
Also, home networks and embedded systems where the connection is localized and not towards the whole web, telnet is a simple and easy solution.
 
The last part is, well no offense (perhaps a bit intended) - it sounds like something coming from a person who's never used vim before.
 
On the day-to-day front, it cuts out repetitive tasks: like moving around the text in the conventional way, it can jump around to wherever I need without ever leaving the keyboard, searching and replacing text can be so specific, you'll wonder why people do things the way they do.
 
On the programming front, it's insanely powerful. It can do IDE stuff like crazy, parse directories/files with the built-in stuff, or if you really need to, regex, comparing diffs, syntax highlighting customization is unparalleled, you think that IDEs. LaTeX-suite has editing power, guess where the concepts came from. I can do my stuff in half the time with all of the shortcuts (yes, you can have pdf-preview, all the niceties of TexMaker or whatever that you're using, and have it in a GUI).
 
But it's not merely limited to programming use - for regular files, it's simply one of the faster and more efficient ways to edit, the fanciness can get out of the way. Half of these posts are typed in vim. Of course, there's a learning curve. Quite honestly, I find acme to be even harder to learn, since that's a real paradigm shift, everything about it.
 
It's such a braindead mentality when you have people asking why we use this schiit even though it doesn't have "shiny colors" (it can, text colors can be changed to whatever the heck you want) or "mouse support" (of course it does, gpm, visual mode, the GUI version). Yes, there's a GUI version - you compile in the support or use a package that has it compiled in. Actually, most distros have vim with GUI installed right from the start, guess that's a no-go on OS X since it doesn't bundle gtk by default.
 
Three more things that gets it going - it's on most if not nearly all *nix systems, portable, so you eventually learn it, this breaks some common ground since there's always exposure to it. Plus, the fact that so much software nowadays has a vi mode included (Sublime Text's vintage mode is essentially vi mode), that's just a testament to its efficiency. Last thing - it's extendable to do pretty much anything you will ever think of needing text-wise. For even more, that's emacs realm.
 
The thing is, use it for more than a day. It might not be for you specifically, but you can't really deny the power that it offers. It'll become very apparent once you learn beyond the surface (heck, vimtutor - it has a tutor built right in, interactive and all!)
 
Something more visually representative - http://www.viemu.com/a-why-vi-vim.html

Thanks!
biggrin.gif

 
and indeed, I've never used vim before... tried today and I can't even figure out how to edit my document.......
 
Oct 30, 2013 at 6:55 PM Post #93,799 of 177,742
No, I mean I've watched episodes 1 and 2 Bowei...

There we go, now kurisu-chan's face isn't covered up! :D

 
Oct 30, 2013 at 8:01 PM Post #93,802 of 177,742
  Thanks!
biggrin.gif

 
and indeed, I've never used vim before... tried today and I can't even figure out how to edit my document.......

Like I said, vimtutor, it's a godsend. You can usually get the basics down in a day.
 
It implements modal editing - you have a visual mode, and then you have normal mode (where the bulk of the editing is done), insert mode is where you input text. Enter with the "i" key. Escape with Esc to go back to normal. Cut text with d in normal mode, cut multiple words with d[n]w, where n is the number of words (for example, d2w to cut the two words in the path), you can do letters, lines, etc. "y" is copy, instead of cut. "x" to delete a character.
 
Use "gg" to go to the top of the text file, "G" to reach the bottom, "nG"  where n is the specific number of the line you want to go to. Now you should be able to sort-of navigate the text. You can search words with backslash ("/"), and your desired search value. 
 
Here's something a little more complex but very useful, and gives you an idea of what regex and the likes can accomplish - ":%:/[foobar]/[foobar1]/g", where foobar is the text you want to replace in all instances of the file, and foobar1 is the text you want to replace it with.
 
To quit without saving - ""q!", to write to file, ":w", to save and quit ":x".
 
Here's some more commands, but like I said - you can learn it all with vimtutor.
 
Don't be discouraged if you feel you've not scratched the surface of all of the functionality, I've been using it for years and it still gets the best of me sometimes. I'm sure there's only a handful of people in this world who actually know all of the commands for vim.
 
Seems like a large and rather useless learning curve, but you fly through menial editing tasks when you get the hang of it.
 
Oct 30, 2013 at 8:11 PM Post #93,803 of 177,742
Also you want plugins to make things modernly bearable. Plenty and plenty of plugins after you get used to it.
 
Nerdtree - I don't know what I was doing before this, zsh autocomplete after exiting I guess (also, zsh on OS X - godsend). Enters a directory tree on a sidebar, you can use vim commands to mess with the files themselves if you have user permission.
 
ack - grep/search, but better and easier.
 
Latex-Suite - I understand if you have a TeX editor that you're comfortable with in terms of workflow - this thing can be a quick-and-dirty editor for TeX when you need to make a couple of simple edits. Actually, might be a good way to learn vim (yeah, you just need it to edit text, let's just say this is for the sake of learning) through editing documents in TeX. It can be a full-on suite and have pdf-preview side-by-side, all the niceties.
 
Powerline - to get status info on the file, where you are in the directory. Also some funky stuff like showing CPU info, monitoring stats, weather, if you're so inclined.
 
And more.
 
Plus, you'd want to rice it up, change the text color, syntax highlighting (very important, this is usually what drives the typical GUI weeny away when they use it), set spell-checking, more, more, more. 
 
Steal someone's vimrc to get a sense of what you can quickly set up to make the experience more pleasant whenever you're "forced" to use vim.
 
Oct 30, 2013 at 8:16 PM Post #93,804 of 177,742
 
No, I mean I've watched episodes 1 and 2 Bowei...

There we go, now kurisu-chan's face isn't covered up!
biggrin.gif

LOL I'm listening to "Hacking to the gate" right now!! :D

Nice! I should probably get around to buying all the Steins;Gate OP/ED CDs before the movie comes out...
 

Also, random lol on MAL:

 
Oct 30, 2013 at 8:23 PM Post #93,806 of 177,742
heck I had to Google how to turn off a computer in Widows 8. I see a big problem right there.
If and when Microsoft brings back the old GUI of Windows

Haha, been there.
People here probably remember me raging at win8 UI. And how stupid it was without instructions.
At least now google actually has answers for you! When I started using it there was no info whatsoever...
 
Windows 8.1 is supposed to bring a bit back. Namely the start button (to bring you to the start screen lol).
So I'm not updating my windows 8.
biggrin.gif

 
Right now I'm trying to balance the benefits and costs of ea option...(better batterylife, faster read/write vs faster processor etc)

I guess I'd be the only idiot here to spend that money on a Vaio Duo 13 instead. I want that built-in pen digitizer!
Though I could care less about touch screen... maybe.
 
What's hanako?

The name of the girl in all Japanese ghost stories, who got bullied and locked in a school washroom stall and nobody found her before she died there.
In other words, Hanako ----> that toilet/washroom-related ghost girl.
 
No, I mean I've watched episodes 1 and 2 Bowei...

There we go, now kurisu-chan's face isn't covered up!
biggrin.gif



I guess you need jailbreak to arrange icons where ever you want them huh. Stoopid Apo. Why can't I rearrange my icons the way I want?!
 
 

 
Oct 30, 2013 at 8:32 PM Post #93,808 of 177,742
Oh, and BTW. If you haven't heard, there is code for free BF3 on Origin, it's reusable: G433-XWLD-ZBW8-JWUC-JDSW
 
Except... it doesn't work. It may have been pulled out by EA, but some people report it still works, so it's probably the activation server getting hammered (since yesterday), like during the Origin Bundle.
 
Oct 30, 2013 at 9:00 PM Post #93,809 of 177,742
  How is Coppelion so far? I'm still only finished with ep 1 and not sure if I should watch more
 
What do you guys think?

I heard there were err... technical details that weren't very accurate. I actually planned on starting it today. I haven't seen a lot of people rage about it, so it should be good, just don't be too technical about stuff. That's all I know, pretty sure I'd enjoy it, when I get home.
 

Users who are viewing this thread

Back
Top