|
isn't intellij like big $$$?
|
![]() |
|
![]()
|
# ? May 29, 2023 19:35 |
|
significant whitespace is dumb as gently caress
|
![]() |
|
redleader posted:isn't intellij like big $$$? no it is in fact $0
|
![]() |
|
gonadic io posted:no it is in fact $0 big if true
|
![]() |
|
i've been ignoring it because i thought it was a hecka enterprisy big dollar big licence ide
|
![]() |
|
![]() i mean you can pay if you like (work pays for mine for example) but it doesn't give you much and does cost infinity dollars yes. for rust specifically you can pay to use clion's built-in debugger instead of loving around with lldb and that's the only thing e: maybe database tools? gonadic io fucked around with this message at 22:05 on Sep 18, 2018 |
![]() |
|
also for the purposes of playing around with code snippets and poo poo when following the book you can even just use the web code-runner (not really an ide) https://play.rust-lang.org/
|
![]() |
|
Vscode also appears to work to some degree for rust if you're willing to wait 5 minutes every time you stop typing for errors to appear.
|
![]() |
|
mystes posted:Vscode also appears to work to some degree for rust if you're willing to wait 5 minutes every time you stop typing for errors to appear. no you see it's 1.0 now (yeah vscode is usable if you like really really really can't use intellij)
|
![]() |
|
Spime Wrangler posted:Thanks for this. I'm not sure I understand how it all works but it looks sweet and it's a direction to move in! it's really simple. here's a better example, i guess: code:
|
![]() |
|
so it's a subclass
|
![]() |
|
gonadic io posted:so it's a subclass its implementing an interface but delegating everything automatically.
|
![]() |
|
awesome, thanks. in the 20 minutes I got to play with it today that was what seemed like the answer but your second example really helped make it clear. it’s v. helpful to know that that a certain approach is indeed how you’re supposed to do a thing and not just me being captain square-peg-round-hole with some jerk’s breathless medium tutorial
|
![]() |
|
Spime Wrangler posted:some jerk’s breathless medium tutorial god i hate those
|
![]() |
|
cinci zoo sniper posted:can’t wait what will happen in october 2019 when eu does the one last, final dst switch and every terrible coder has to fix hardcoded time zones for an entire continent mmm, I just know I'm going to have to chase up for timezone updates to servers for this.
|
![]() |
|
cinci zoo sniper posted:can’t wait what will happen in october 2019 when eu does the one last, final dst switch and every terrible coder has to fix hardcoded time zones for an entire continent Oh god, SAP is going to blow up. ![]()
|
![]() |
today I saw how to make (& wrap) a burrito with 44 different recipes on my reddit feed and at first glance assumed it was a rust monad tutorial
|
|
![]() |
|
Powerful Two-Hander posted:followup to my dB source control quesitons, I looked at flyaway dB and thought "hmm so I have to janitor my scripts to use a specific filename and this just logs execution of specific scripts with a bit of wrapping I don't really need, this just moves the problem around" and then went and talked to a team using liquibase and they basically said "yeah so we use it and now we spend ages janitoring the liquibase xml files so we've really just moved the problem around". just use a loving sql server database project. like file > new sql server database project. right-click in solution explorer, import from database, shazam you're loving done check it in.
|
![]() |
redleader posted:i've been ignoring it because i thought it was a hecka enterprisy big dollar big licence ide lol no it’s not more, often less, than 30 usd per month for the enterprise editions, should you need it, with rolling permanent licence left in wake of 12 months of subscription
|
|
![]() |
|
I’m still on my free student IntelliJ Ultimate but community really isn’t bad if you don’t need JavaScript
|
![]() |
Maximum Leader posted:I’m still on my free student IntelliJ Ultimate but community really isn’t bad if you don’t need JavaScript same, i only have pycharm pro because i need remote python interpreter stuff. community was needs suiting for years
|
|
![]() |
|
hello i am a terrible test engineer trying to become a terrible programmer, is this the right thread for me
|
![]() |
|
VostokProgram posted:hello i am a terrible test engineer trying to become a terrible programmer, is this the right thread for me most certainly
|
![]() |
|
Fiedler posted:just use a loving sql server database project. like file > new sql server database project. right-click in solution explorer, import from database, shazam you're loving done check it in. yeah this is what I've already done, I was just looking for a way to avoid having butts.table.sql, butts.table.v1.sql, butts.Table.v2.sql etc to capture the initial create and then incremental alters but whatever you use it basically ends up being that so I'll embrace it
|
![]() |
|
argh, javascript canvas images are complete bullshit to work with as media files who in the gently caress thought this would be an acceptable replacement for flash or literally any other media format
|
![]() |
|
Fiedler posted:just use a loving sql server database project. like file > new sql server database project. right-click in solution explorer, import from database, shazam you're loving done check it in. thats fine until you go to deploy it to the next environment at which point you have to pick out which individual objects you want to migrate since your checkin will contain objects from different applications/work in progress
|
![]() |
|
Main Paineframe posted:argh, javascript canvas images are complete bullshit to work with as media files works4me for games at least
|
![]() |
|
Main Paineframe posted:argh, javascript canvas images are complete bullshit to work with as media files web pages are supposed to be pages
|
![]() |
|
"Hmm. Browsers and phones default to this smooth scrolling thing, but wouldn't it be nice if we added a bunch of JavaScript that made everybody have to use it, even if they've turned it off on purpose?" — Some rear end in a top hat
|
![]() |
|
javascript is the worst thing
|
![]() |
|
Main Paineframe posted:argh, javascript canvas images are complete bullshit to work with as media files what are you trying to do that's giving you trouble? I assume you're talking about consuming an image that was generated by a canvas? there are definitely some APIs where it's like, "give me a URL, an <img>, or a <canvas>" where I'm pretty sure that option 3 works more jankily. like one escape hatch is to create a blob URL for your image and then use that this guy: https://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement/toBlob blob URLs: a way to take javascript-generated content and get your browser to use it in a sane fashion
|
![]() |
|
Probably data URLs? idk, the nomenclature is quite specific otherwise you hit multiple different possibilities. Blobs are JavaScript's binary values, so you can have a data URL, convert to a Blob using fetch(), convert that to an ImageBitmap using CreateImageBitmap(), then paint that to a canvas in an async chain.
|
![]() |
|
CRIP EATIN BREAD posted:its implementing an interface but delegating everything automatically. yep, it’s like an auto-adapter. presumably(?) you can use “by” for more than one interface.
|
![]() |
|
prisoner of waffles posted:what are you trying to do that's giving you trouble? I assume you're talking about consuming an image that was generated by a canvas? there are definitely some APIs where it's like, "give me a URL, an <img>, or a <canvas>" where I'm pretty sure that option 3 works more jankily. 1) imagine using canvas stuff as a replacement for Flash, by coding interactive or animated "images" in javascript 2) now imagine a webpage that pulls in arbitrary user-supplied media of any type via AJAX and then displays it on the page. this includes animated or interactive media, like Flash and various obscure plugin poo poo 3) now remember that browsers are killing plugins and even Flash is on the chopping block, and thus that page was in need of the ability to support "modern, web-compliant" media formats that can accomplish the same things Flash does but with native browser support combine those three things and you have a roadmap to the circle of hell i'm currently in the worst part is that i probably could have stopped it if i'd pushed back much harder and much earlier, but i took way too long to realize just how bad it was going to be
|
![]() |
|
cinci zoo sniper posted:lol no it’s not more, often less, than 30 usd per month for the enterprise editions, should you need it, with rolling permanent licence left in wake of 12 months of subscription yeah i had a personal license of everything of theirs for a while and it was very reasonably priced
|
![]() |
|
Main Paineframe posted:1) imagine using canvas stuff as a replacement for Flash, by coding interactive or animated "images" in javascript I'm sure the actual requirements for your task were way more concrete than your quick sketch description but yeah, push push push back hard
|
![]() |
|
did u know? canvas can get tainted https://developer.mozilla.org/en-US/docs/Web/HTML/CORS_enabled_image#Security_and_tainted_canvases
|
![]() |
|
my taint is a canvas you can paint on with your tongue
|
![]() |
|
DELETE CASCADE posted:my taint is a canvas you can paint on with your tongue wish I could document.removeChild(you)
|
![]() |
|
![]()
|
# ? May 29, 2023 19:35 |
Bloody posted:yeah i had a personal license of everything of theirs for a while and it was very reasonably priced same, subscribed to full package and it’s 30 eur, so 30 dollars+vat
|
|
![]() |