Hacker News new | past | comments | ask | show | jobs | submit | loveJesus's comments login

Aleluya, a book in the Bible is called Judas (after Jesus' brother through Mary and Joseph)


I've vouched for this comment, since it is actually relevant to what it is responding to, but a glance suggests all your other comments are spam. Spamming forums is not generally an effective way of being heard if those forums take spam-prevention seriously.


Luke 17:4 and if he sins against you seven times in the day, and turns to you seven times, saying, ‘I repent,’ you must forgive him.”


Single-purpose accounts aren't allowed on HN, and the religious material is off topic, so I'm afraid we've banned this account. Nothing against Jesus.

https://news.ycombinator.com/newsguidelines.html


Praise the Lord, second commented post on Hacker News. (i try not to capitalize i) i had been diagnosed with OCD, ADHD, and eventually Bipolar Schizoaffective disorder. I had been on all kinds of meds including Haldol, antidepressants, and amphetamines like adderall. My psychiatrist back in 2003 said i was a 9 out of 10 of the worst cases he had seen. I can now focus fine for over 12 hours, yet haven't even had coffee nor any medications in over 5 years. One big thing that helped me was that my dad here would start playing hymns on the piano and i would sing along, and my concentration eventually went up to about 3 or 4 hours, then eventually took up the piano myself and now i feel normal. Another big part was being able to spend time in prayer, fasting, and service to God and others. This helped me to have much more peace with what i choose to be doing, instead of feeling like i am wasting my life when something more important may be available. I am far from perfect but the Lord has been good to me, and i want to share He does miracles like always (i think this is kind of cool https://youtu.be/Pw9iSO7rUUY ). I do want to share how God has helped me through Jesus Christ, if i can help somehow please let me know in Jesus name.


Praise the Lord, I found https://in4k.github.io/wiki/win32 to have useful links. Particularly Compofiller studio is quite easy to get started with and rather well done. To make a final compressed executable takes a couple of steps, where you have to switch the mode and minify the shader code which is on the Compofiller UI before creating the executable. If you can do some coding on shadertoy.com it is rather easy to transfer to a production here.

For the music, a suggestion would be to download the free version of renoise.com which is full featured and works fine for making demos. It is a good piece of software and worth the amount they ask for the full version if you can do it too i think. And then download the http://4klang.untergrund.net/ 4klang vst and use it with Renoise. You set up multiple instruments that link to the same instance of the VST instead of multiple instances of the VST and use different channels for each instrument (basically use the version that shows up top after you create one instance) and you can start by loading one of the preset patches included with 4klang. You record the songs in the 4klang vst and then put the generated files in the compofiller studio project directory and once it recompiles it has your new song.

I played around with this for the release i helped make for revision 2020 ( https://www.pouet.net/prod.php?which=85364 glsl source included ) Glory to Jesus, After this you can go lower level with the other 4k tutorials learning how to integrate with other assemblers or perhaps C++ compilers including Visual Studio community edition. It is possible to make even 4ks in C. If you want to get started in assembler i would recommend starting with the 256byte intros in a freedos installation. While I included source code in a 256byte that was presented at revision, i would start out with other tutorials.

Start out by researching some basic instructions to be able to set memory in a loop to a pointer in es:di. The basic instructions to set memory and registers, increment, compare, jump. Look a little bit into interrupts to be able to detect a keypress, or set graphics mode with 256 colors.

So for a freedos program you can do this with "mov ax, 13h; int 10h;" at the beginning of the program, set a label for the frame_loop_aleluya, then a label for the pixel_loop_aleluya (praising God in my code makes it more enjoyable) write to 0xA0000 for 320*200 bytes in the pixel_loop then detecting if a keypress has been made with "mov ah, 1;int 16h;jz frame_loop_aleluya" and then back to text mode "mov ax, 3h; int 10h" at the end of your program with ret. You can play around with that to make your first own little asm intro. Compile it with nasm to a .com. This is included in freedos.There is a little more boilerplate that goes into a .com as well, put "BITS 16; org 100h; section .text;" and a start: label . This works if you have no memory variables of your own, which is fine for a first step.

Sorry, this is my first hacker news comment so i will see how this looks and make corrections if needed, and post a small full sample program as a reply. God guide us and bless you in Jesus name


Praise the Lord! https://gist.github.com/loveJesus/29b85c3d8d6f4fa5cc85d4f33c... is a verbosely commented simple intro that compiles to 44 bytes. The source is just over the length where I think it would be better to visit the link than post it directly. If someone else could tell me their thoughts on proper protocol here i appreciate it. God guide us and bless you in Jesus Holy name


Perhaps you could also make a YouTube video showing what the intro does, installing Freedos and nasm is not that simple.


May I recommend to add some breaks into your text for easier reading. You have to insert an empty line for it to work. (Press return not just once but twice.)


God be praised, thanks!


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: