What's your preferred programming language?

Deleted member 150

Guest
Rep
Rep
Vouches
0
0
0
Vouches
0
Posts
0
Likes
0
Bits
56 YEARS
56 YEARS OF SERVICE
I can also recommend VueJS, i'm using it in nearly every web frontend that i've written.
 

Instadev

MySQL & C++ Developer
banned
Instadev Rep
4
0
0
Rep
4
Instadev Vouches
0
0
0
Vouches
0
Posts
338
Likes
152
Bits
2 YEARS
2 YEARS OF SERVICE
LEVEL 2 90 XP
Just saying
 

Attachments

  • Screenshot_20230107_141012.jpg
    Screenshot_20230107_141012.jpg
    635.5 KB · Views: 6

Kerpackie

Well-known member
Kerpackie Rep
3
0
0
Rep
3
Kerpackie Vouches
0
0
0
Vouches
0
Posts
164
Likes
130
Bits
2 YEARS
2 YEARS OF SERVICE
LEVEL 1 105 XP
I've heard good things about Vue. I must look into it sometime myself, tried React before and hated nearly every moment of it.
 

Deleted member 150

Guest
Rep
Rep
Vouches
0
0
0
Vouches
0
Posts
0
Likes
0
Bits
56 YEARS
56 YEARS OF SERVICE
I've heard good things about Vue. I must look into it sometime myself, tried React before and hated nearly every moment of it.
Vue is pretty easy to learn. This here is a fully working Vue 3 single file component (using composition API).
It looks as simple as it is. :)
JavaScript:
<template>
    <div>
        <span>
            You clicked {{ count }} times.
        </span>
        <button @click="onClick">Count higher</button>
    </div>
</template>

<script setup>
    import { ref } from 'vue'
    const count = ref(0);
    const onClick = () => {
        count.value += 1;
    };
</script>
 
Liked By 1 member :

Etox

Gamer | Noob
Divine
Etox Rep
4
0
0
Rep
4
Etox Vouches
0
0
0
Vouches
0
Posts
198
Likes
165
2 YEARS
2 YEARS OF SERVICE
LEVEL 5 70 XP
Back in the day I worked alot with Python and Lua. I was developing different CSS and CSGO servers. And worked alot with the WarCraft Mod for CS. (You had a lot of races that you can play with different skills and effects). But with the years the intrest faded a little bit.
 

Deleted member 150

Guest
Rep
Rep
Vouches
0
0
0
Vouches
0
Posts
0
Likes
0
Bits
56 YEARS
56 YEARS OF SERVICE
Back in the day I worked alot with Python and Lua. I was developing different CSS and CSGO servers. And worked alot with the WarCraft Mod for CS. (You had a lot of races that you can play with different skills and effects). But with the years the intrest faded a little bit.
I played the Warcraft mod in CSS for soooo long, it was awesome!
 

Etox

Gamer | Noob
Divine
Etox Rep
4
0
0
Rep
4
Etox Vouches
0
0
0
Vouches
0
Posts
198
Likes
165
2 YEARS
2 YEARS OF SERVICE
LEVEL 5 70 XP

Noxbox

PHP/JS developer
contributor
Noxbox Rep
0
0
0
Rep
0
Noxbox Vouches
0
0
0
Vouches
0
Posts
33
Likes
11
Bits
2 YEARS
2 YEARS OF SERVICE
LEVEL 2 85 XP
I've heard good things about Vue. I must look into it sometime myself, tried React before and hated nearly every moment of it.
Vue is a simplified react framework, it also origins from there.

super nice, I also use https://github.com/kaorun343/vue-property-decorator to make it look even better code-wise?
Post automatically merged:

I played the Warcraft mod in CSS for soooo long, it was awesome!
it was my favorite gameplay! Oh and superhero mode.

This is where I learned AMXX too.
 

Darksoke

Well-known member
Darksoke Rep
1
0
0
Rep
1
Darksoke Vouches
0
0
0
Vouches
0
Posts
58
Likes
69
Bits
2 YEARS
2 YEARS OF SERVICE
LEVEL 2 50 XP
It's incredible how something illegal helps an entire community develop unimaginable skills, talking about private servers stuff, looks like everybody who was ever interested in private servers has become a self taught programmer, something that most universities can't achieve, how can you not love the emulation <3

On the subject I'm a PHP addict myself been studing PHP ever since PHP 4.4.9 was released I reached that point where I can build all kind of projects from simple websites to advanced web applications with a little help from javascript.
On a C++ note, I own Thorium wow and most of the custom scripts are built by myself from scratch except the most obvious ones like transmogrification.
Recently stated learning C# and i kinda like it even tho it's been a week since I started plying with it.
 
Liked By 1 member :

sweetNinja

New member
sweetNinja Rep
0
0
0
Rep
0
sweetNinja Vouches
0
0
0
Vouches
0
Posts
1
Likes
0
Bits
2 YEARS
2 YEARS OF SERVICE
LEVEL 1 105 XP
When I was 12 years old my friends and I had a Wotlk server that we played on till we were blue in the face (in the country I'm from the internet was strictly limited) but logically that pirate server was full of bugs and I was passionate about fixing as much as I could. I learned a little SQL and a little networking. I wish I had all the tools I have today to learn. Now I get stuck in the tutorial hell trying to learn python.
(I'm new to English too)
 

3,388

1,270

9,554

428

Top