back
user profile

oumua_don17

8,747karma·1,337submissions·October 23, 2014
about
* A polyglot programmable programmer.

Note: Any comments on this site attributed to me are my opinions and not those of any current, past, or future employers/clients. Consider yourself so notified.

recent activity (1,337 total)
comment
Anyone knows what 3D visualization software may have been used to generated these views?
10y ago·view thread
comment
Vow, I did not know that. I had tested with beta ios runtimes, then it was not possible. So now you connect the iOS device, change code in slime, recompile and you can see live updates on the device. …
10y ago·view thread
comment
Yes, you are right. I was not explicit in that I meant while mocl does offer a run time repl, it is not the same as a true CL desktop environment. Thanks for pointing my mistake.
10y ago·view thread
comment
I have tried both, but then do not offer the live interactivity that is possible when running off a desktop Lisp implementation. I guess this is so because we are not running a lisp image on the mobil…
10y ago·view thread
comment
This is awesome. Is there an ecl-ios repo? I could not find it on gitlab.common-lisp.net. Sorry if it is there, as I only had a quick glance on the repo.
10y ago·view thread
comment
While I do not deny the value of automated tests, the ability to do incremental, live updates when rapidly prototyping is indispensable.
10y ago·view thread
comment
Has anyone who has used this know if like any other Lisp, one can do live editing while the app is running on the actual mobile device? For example: i have the app running and it fails, I go to emacs,…
10y ago·view thread
comment
>> Are there any apps in the app store that are currently built using this technology? uSquish, the simple example game included in the LambdaNative repository, is available as a free download o…
10y ago·view thread
comment
>> Avoid Graham too. I found this: pg's Ansi Common Lisp while useful will teach you only those parts that pg believes are good in CL. OTOH, PCL teaches you the language almost completely, …
10y ago·view thread
comment
This should help: http://stackoverflow.com/questions/3332454/oop-python-orient... …
10y ago·view thread
comment
Why not learn just one of these: - programming languages with different paradigms (Functional, Imperative, Logic etc) - Data structures and algorithms (implement a few in each paradigm) - Compilers - …
10y ago·view thread
comment
pg wrote an essay on what an essay is and how you can write one. [1] The most important take away from it was to not to write an essay to defend a position, but to write one so you can express your i…
11y ago·view thread
comment
If someone is launching only Vim from tmux, it possibly is an overkill. I have stayed put with Vim, Tmux and shell, a very capable triumvirate. It allows one to build your own IDE. Especially when you…
11y ago·view thread
comment
If I want to move a nested s-exp outside: (foo (bar baz) quux zot) Using d% on (bar baz) then move to desired loc, and p. So % is for matching ( ). Again v% visually selects a form, then < and >…
11y ago·view thread
comment
I code in CL, Clojure using only vim. I use only % operator, set sw = 2, visual > or < to edit lisp forms and I am very happy!!!
11y ago·view thread
comment
For the GUI toolkits, don't know why CAPI was not listed? Yes it is LW specific but it is a worthy choice. I prototyped an entire 3D game scene using CAPI using the OpenGL 1 FFI they provided and…
11y ago·view thread
comment
When I started learning CL, I tried Emacs for a week, but then gave up. I was a VIM user already. So this is my development environment and I have been using it ever since, professionally as well. I h…
11y ago·view thread
comment
In LispWorks, tracing method is possible [1], don't know how to do that with SBCL. Trace is implementation specific, so you have to check SBCL manual to trace methods. See this gist for LW here: …
11y ago·view thread
comment
I too miss trace a lot. Whenever I have worked on a common lisp project, trace has helped a ton to understand the application design, either for a new feature addition or a bug fix. Just knowing the s…
11y ago·view thread
comment
Is Dolphin Smalltalk no longer available? Cannot reach the object arts server. As of today, what is the recommended Smalltalk to use if I wanted to create a 3D scientific visualization app using OpenG…
11y ago·view thread
comment
+10 to the suggestion to layer IDE features progressively. My setup is after trial and error: vim + (nerd tree, command-T, tagbar, Gundo) inside a tmux session. On another tmux window, I use 'fin…
11y ago·view thread
comment
I have also been working my way through learning Blender. 2 years back, when I was writing a 3D game, I learnt Blender in the context of importing models, setting textures, material, exporting to the …
11y ago·view thread