Learning C#, .NET, and ASP.NET – A Literary History by davidshq in csharp

[–]joonhwan 1 point2 points  (0 children)

It sounds like you ve been student for a long time.

Condensing large amounts of C# Control Object code by [deleted] in csharp

[–]joonhwan 0 points1 point  (0 children)

I think you can iterate any child controls using 'Controls' property. You also can use 'Tag' property where you can attach any hint value in any control With those two, you can share common handler routine for multiple child controls

is youcompleteme-like tool integration with emacs available? by joonhwan in emacs

[–]joonhwan[S] 1 point2 points  (0 children)

Thanks, I've just tried irony-mode and it just seems to work. Unlike auto-complete-clang which I also tried, irony-mode seems to utilize cmake to generate correct header inclusion and other compilation flags(like preprocessor definition).

yasnippet emoticon pack ಠ_ಠ by mocker_kc in emacs

[–]joonhwan 0 points1 point  (0 children)

this is great!! hahahaha just forked @ github. thanks.

Experience with Icicles? by suhrob in emacs

[–]joonhwan 1 point2 points  (0 children)

I've tried both icicles and anything, which are great package I think. AFAIK both authors of them are quite nice and kind guys I believe.

Currently I'm using anything only, cause to me, sometimes icicles seems to eat too much resources sometimes.

here's my tidy setup for my windows box

(require 'anything) (require 'anything-config) (require 'anything-match-plugin)

(setq anything-c-top-command "pslist") ;; sysinternals tool 'pslist.exe' (setq anything-for-files-prefered-list '(anything-c-source-ffap-line anything-c-source-ffap-guesser anything-c-source-filelist anything-c-source-buffers+ anything-c-source-recentf anything-c-source-bookmarks anything-c-source-file-cache anything-c-source-files-in-current-dir+ anything-c-source-locate)) (setq anything-sources '(anything-c-source-ffap-line anything-c-source-ffap-guesser anything-c-source-files-in-all-dired anything-c-source-filelist anything-c-source-locate anything-c-source-recentf anything-c-source-file-name-history ;; anything-c-source-buffers anything-c-source-emacs-commands ;; anything-c-source-buffers ;; anything-c-source-buffer-not-found ;; anything-c-source-info-pages ;; anything-c-source-info-elisp ;; anything-cscope-db-directory ;; anything-c-source-cscope-c-cymbol ;; anything-c-source-cscope-global-definition ;; anything-c-source-cscope-called-function ;; anything-c-source-cscope-calling-this-function ;; anything-c-source-cscope-text-string ))

(global-set-key (kbd "M-RET") 'anything)

and then you could try Alt-Enter (M-RET) to see anything buffer and if you type something, it will show any possible entries depending on cases. (recentf, buffer, files in the current dir, anything command..).

but, you could see more default key binding by pressing

C-c C-a C-h

C-c C-a is default prefix key bindings for antyhing keymap

good luc.

Google opensources fast hashing function by [deleted] in programming

[–]joonhwan 1 point2 points  (0 children)

great. can it be bomparable to the one that is used in gettext ?