Hey everyone who codes in c# what do you use to code?
Jetbrains Rider
Visual Studio Code
Visual Studio 2022
Vim
Notepad++
Sublime Text
Cursor
Other (share!)
seen from United States

seen from Italy
seen from China
seen from United States

seen from Malaysia
seen from United States
seen from Canada
seen from Malaysia

seen from Malaysia

seen from Estonia

seen from United States
seen from United States
seen from Germany

seen from Germany
seen from China
seen from United States

seen from Malaysia
seen from United States

seen from Australia

seen from Poland
Hey everyone who codes in c# what do you use to code?
Jetbrains Rider
Visual Studio Code
Visual Studio 2022
Vim
Notepad++
Sublime Text
Cursor
Other (share!)
ChoiceScript for Sublime
🔗 [ Github | Package Control ]
❕ Current version: 1.0.0
⚠️ Compatible with Sublime 3 and 4. Not an IDE. Requires a copy of ChoiceScript or CSIDE to playtest your game. View the README for more information.
💎 Features
Custom syntax highlighting for the ChoiceScript language.
Full support for multireplace and stat charts.
Optional custom color scheme for enhanced syntax highlighting.
Autocomplete commands to quickly create common lines of code (page breaks, line breaks, choices, if/else statements, stat charts, comments, etc).
Auto-indent following appropriate lines of code ( *choice, #options, *if/else, *stat_chart).
Spell check for plain text, text for choice options, and text in multireplace.
Word wrap automatically enabled, tabs to indent conversion enabled, auto match disabled (to keep from matching quotes).
💡 For information on the included autocomplete commands and how to modify the syntax highlighter, its settings, or the color scheme, as well as additional screenshots and tips, view the README on Github.
Installation instructions and screenshots down below.
match: \d{2}(\d{2})?([/-])\d{2}\2(?(1)\d{2}|\d{4})
what: matches strings (ostensibly dates) in the format of xx-xx-xx or xx xx-xx-xx, using either / or - for separators.
why: custom syntax highlighting in sublime text.
18 Sublime Text Themes. ollection of free Sublime Text UI themes (dark, light and other). Update of March 2018 collection. 4 new items. 🔗 https://freefrontend.com/sublime-text-themes-ui/
Why visual studio code is a good editor ?
I’ve always thought that Visual Studio Code was a bad editor and I use Sublime text and Atoms since I started to code. But in fact, visual studio code is a really good editor on few points : - very very fast to launch
- easy to use
- minimal and smooth interface
- simple plugin system After few houres of code in visual studio code, i can say that this editor is verry usefull and makes coding easier. Howewer, i will continue to use Atoms which offers a lot of possibilities and options. So, if you are looking for a good code editor and you don’t like Atoms or Sublime text, try Visual Studio Code ^^
Favicon Woes & New Editor
A favicon is the little picture that appears in a browser tab. The one I’ve been using had relatively dull colours from the old palette so my goal was to get the favicon to look as nice as the one on this Tumblr blog. It’s very bright and crisp.
The first pic is the current icon, while the second is the Tumblr blog. At some point I updated the Tumblr blog’s avatar to the new one and since Tumblr automatically generates your blog’s favicon from your avatar that was updated too.
Okay, change the favicon. Five minute job, right? Well, it turned out to be surprisingly tedious...
First off, I wanted to be able to save the .ico file in Photoshop — I hate depending on online tools unless it’s absolutely necessary. I found a plugin that allowed saving in .ico format but it neglected to mention that if your file is larger than 256 x 256 pixels the option won’t even show up in the save menu.
At this point I tried an online converter and it generated a bunch of files for all different devices that you can see above. (Holy fuck, I just wanted an icon for my site!) For reasons I’ll go over in a second, I’m not going to use these files but it was useful to have a list of all the different dimensions and the code to use with them.
As you can see from that list the files are of various sizes, the largest being 310 x 310 pixels (I cropped the image that’s why it’s not in the list). So the online generator needs an image of at least that size or it’ll be up-scaling to create the larger icons. Which is bad.
Down-scaling is fine provided you choose the right algorithm... which this generator site doesn’t. Down-scaling results is a blurry image, rather than the crisp image Tumblr produced from my avatar. At this point I figured out that the Photoshop plugin needs an image less than 256 x 256 pixels. So I downscaled it myself using the Bicubic Sharper resampling method.
So, that was that! As you can imagine, this blurry problem affects all the generated files. I’m gonna just manually downscale the icon to all the different sizes so that it’s crisp for them as well but re-use the generated file names and code.
Syntax Theme Fail
I briefly attempted to make a syntax highlighting theme that uses StoryDevs’ colours and uh... it doesn’t look very good. I tried. Gonna stick to what I have. Maybe it could work with more thought put into it but it’s not something I can really justify doing right now.
New Editor
Not exactly news but I switched from WebStorm to Sublime Text 3 recently. WebStorm is just too slow. Sometimes it’ll take literally 5 minutes to open while Sublime takes maybe 1 - 5 seconds to open. Naturally the first thing I did was install a nice theme:
Sublime has been great so far and is quite easy to extend. WebStorm was mistakenly identifying “errors” in my code that I couldn’t turn off, which meant I always had red highlights in the scroll bar. In general WebStorm is a very hand-hold-y, “I know better than you” type editor and that irritated me a lot.
StoryDevs is a place for developers of visual novels and story-oriented games to find each other and collaborate. The site is under development but handle reservations are open: www.storydevs.com/reserve
Website: www.storydevs.com Twitter: https://twitter.com/storydevs Discord: https://discord.gg/eeWHtHY Email: [email protected]
question: what is sublime?
Sublime Text is a popular, free-to-use text editor.
You can use it to write and edit code for pretty much any language, and it has built in support for a lot of the most popular ones, like CSS, HTML, JavaScript, C, C#, Python, Ruby, etc. It also has something called Package Control which makes it very easy to install packages like plugins, syntax definitions, themes, and color schemes.
It's a very solid text editor that still, in my opinion, feels pretty lightweight and isn't a huge drain on your computer's resources, unlike something like Visual Studio Code. That's what makes me really like it for ChoiceScript, even though I use VS Code for actual web development.
If you've never used a real text editor before, Sublime is very good place to start.
While I adore CSIDE, having to constantly scroll up and down through a file while writing was a pain, so I decided to use a text editor, since it allows you to have multiple files open at once, side by side, including the same file. I'll often have the same file open in both columns so I can reference another part of it while I write. It makes my life so much easier, honestly.
I recommend checking it out. It's available for Windows, Mac, and Linux.
Worth noting, btw, that I do still use CSIDE to run and test my games. I just use Sublime to write and edit. I have some tips about using them together on my Github README.