Comment by Hubro on Can decorators modify type hints in the function...
In hindsight, this would probably have been better solved by connection pooling, keeping the connection logic out of the business logic altogether.
View ArticleComment by Hubro on Is it possible to implement a trait on specific...
@jthulhu That's a new concept to me, if you could write a short example in a new answer I'll give it a +1 :)
View ArticleComment by Hubro on Is it possible to implement a trait on specific...
Ooh that's cool, that makes total sense. Perhaps a token! macro is the best fit for my needs.
View ArticleComment by Hubro on Is it possible to compile and test a single module in...
@PitaJ I can do that. The build errors are all in modules that depend on the current module, but the current module and all its dependencies compile just fine. I could extract the current module and...
View ArticleComment by Hubro on Conditionally compile only one module at a time
"the basic unit of compilation is a crate, so you can't compile a subset of a crate" - I keep hearing this, but it doesn't make any sense to me. Is this just an ideological position or are there...
View ArticleComment by Hubro on Can you get the number of lines of code from a GitHub...
The premise of the original answer was without cloning the repository, i.e. without having it available locally. You've entirely skipped that part in your answer, assuming that the repository is...
View ArticleComment by Hubro on How do I debug why a key mapping is randomly getting...
Before, it says i <C-K> *@<Cmd>lua vim.lsp.buf.signature_help()<CR> and "Last set from Lua". Afterwards it just says "no mapping found".
View ArticleComment by Hubro on Docker follow symlink outside context
I don't understand the rationale. How is adding files from URLs repeatable, but not from the parent directory in the same Git repository?
View ArticleComment by Hubro on Retrieving environment variable with Robot
Bonus tip: Set a default value like %{STAGING_SERVER=127.0.0.1}
View ArticleComment by Hubro on How does the "registry-mirrors" setting work in Docker?...
@BMitch There is no scenario. I'm trying to figure out what will happen if this configuration is added to every github runner in a very large k8s cluster at my company. I don't think the right approach...
View ArticleComment by Hubro on How to test dockerignore file?
"reads glob patterns in the same format as .gitignore and .dockerignore" <- This doesn't make any sense, .gitignore and .dockerignore files are not the same. For example, in .dockerignore, file...
View ArticleComment by Hubro on Is it possible to style a text input to fill the width of...
@JGallardo Well that's good, it has been 12 years after all 😀
View ArticleWhy is phpunit skipping most of my tests even though their dependency succeeded?
I have a PHPUnit test that looks something like this:/** * @dataProvider provideSomeStuff */public function testSomething($a, $b, $c){ ...}/** * @dataProvider provideSomeStuff * @depends testSomething...
View ArticleIs there a module equivalent of Python's argparse for node.js?
argparse for python makes it quick and easy to handle command-line input, handling positional arguments, optional arguments, flags, input validation and much more. I've started writing applications in...
View ArticleWhy isn't my Exception being caught by catch? [duplicate]
I have some code that looks like this# Try to import filetry{ DataManager::fileImport($_FILES['datafile']['tmp_name'], $_POST['zones'], $_POST['statuses']);}catch(Exception $e){ print 'Herp.';...
View ArticleAnswer by Hubro for Why isn't my Exception being caught by catch?
SolutionI neglected to specify use Exception; in the file containing the try/catch.PonderingI know it's intentional that each namespace in PHP should define its own Exception for many reasons, but I...
View ArticleAnswer by Hubro for Is there a Vim plugin for previewing markdown files?
I recently found a Chrome extension that makes Chrome able to properly open and display markdown files: Markdown preview (no longer available, you can use Markdown Preview Plus now).Then it was just a...
View ArticlePython/tkinter - How do I get the window size including borders on Windows?
I'm trying to position my window based on with width and height of the window. On Windows, the window size reported by wm_geometry, winfo_width and winfo_height is the size of the client area, i.e. the...
View ArticleIs there any documentation on the package.json file?
Here's an instance of the package.json file that express.js generates{"name": "packagename","version": "0.0.1","private": true,"dependencies": {"express": "2.5.5","stylus": "0.22.2" }}It's fairly...
View ArticleWhy are parentheses optional when using print in Python 2.7?
In Python 2.7 both the following will do the sameprint("Hello, World!") # Prints "Hello, World!"print "Hello, World!" # Prints "Hello, World!"However the following will notprint("Hello,", "World!") #...
View ArticleIs it possible to pass a Literal type to a function and have that function...
I'm trying to write a function for asserting that user input matches a defined Literal type.Basically, given:MyLiteral = Literal["foo", "bar"]I want to write a function that lets me do...
View ArticleSQL: MD5() vs hex()
SQLite doesn't have MD5 built in, so I'm considering using the hash function instead. I don't know much about hashing, but I can see that hash() output is numerical and of varying length while MD5()...
View ArticleHow can I have multiple sibling instances of the same top level fragment...
I am following this guide: https://relay.dev/docs/en/quick-start-guide#composing-fragmentsI am trying to create a higher level fragment container that queries data from the RootQuery:export const...
View ArticleDoes Python classes support events like other languages?
I'm working on my first Python project, and I'm already missing events in my classes. Perhaps it's not even called events in Python, but I would like to create "groups" in my classes to which function...
View ArticleAnswer by Hubro for Interpret as fixed string/literal and not regex using sed
If you're not opposed to Ruby or long lines, you could use this:alias replace='ruby -e "File.write(ARGV[0], File.read(ARGV[0]).gsub(ARGV[1]) { ARGV[2] })"'replace test3.txt abc defThis loads the whole...
View ArticleHow do I attach calculated properties or methods to collections in Astro?
I'm using Astro with strict type checking.I have a collection called "portfolio" and I have a couple of conventions for where images are stored for my portfolio. It goes something like:If...
View ArticleCan I redirect all output to /dev/null from within python?
I'm writing a Python script that'll fork a child process. The parent process should be able to write stuff like Started child at xxxxx, but the child process output should be redirected to /dev/null....
View ArticleHow do I save the current cursor position and load it later in Vimscript?
I've written a function for removing the excess white space in a file:let g:trim_whitespace = 1function! TrimWhitespace() if g:trim_whitespace normal :%s/\s\+$//e endifendfunctionThe issue is that the...
View ArticleCan you get the number of lines of code from a GitHub repository?
In a GitHub repository you can see “language statistics”, which displays the percentage of the project that’s written in a language. It doesn’t, however, display how many lines of code the project...
View ArticleIs it possible for a web server to respond to a HTTP request with an extended...
When you run PHP scripts in the console, all the standard output text from that script shows up in the console window while the script is running. Is it possible for a browser window to similarly...
View ArticleIs it possible to style a text input to fill the width of it's parent?
I have had this issue for years and I've seen similar questions before, but none of them have addressed the fact that when setting width: 100% on an element - paddings, margins and borders will...
View ArticleHow can I tell PHP to dump exceptions as raw text instead of HTML?
When I'm developing my REST API in PHP I'm working with application/json output, so when I get errors while testing in the browser they look like this:<b>Fatal error</b>: Uncaught exception...
View ArticleGet full package module name
For verbose debug messages in my application I'm using a function that returns a helpful prefix. Consider the following example:import inspectdef get_verbose_prefix():"""Returns an informative prefix...
View ArticleWhy doesn't parameter type "Dict[str, Union[str, int]]" accept value of type...
I have a type for a dictionary of variables passed to a template:VariablesDict = Dict[str, Union[int, float, str, None]]Basically, any dictionary where the keys are strings and the values are strings,...
View ArticleHow can I get Bottle to restart on file change?
I'm really enjoying Bottle so far, but the fact that I have to CTRL+C out of the server and restart it every time I make a code change is a big hit on my productivity. I've thought about using Watchdog...
View ArticleCan I make SSH ForwardAgent and ProxyJump work with Git?
I have two computers; my workstation and a laptop I use to run my company VPN. I need to go through the VPN in order to reach my Git remote (BitBucket).I have an SSH agent running on my workstation...
View ArticleWhat does a "version file" look like?
I've been googling this for ages now without results. The PyInstaller manual says:--version-file=FILE add a version resource from FILE to the exeThat sounds nice. I want to put version information in...
View ArticleIs it possible to define custom/local linters in vscode?
I have a simple home made linter that I use for work, it's invoked like this: python3 scripts/lint.py FILENAMEThe output is completely standard linter-style output, like:path/to/file.yang:5:19: Linter...
View ArticleHow can I allow django admin to set a field to NULL?
I've set my Model field to null=True, which allows NULL in MySQL, but I can't seem to assign NULL to the field through Django Admin. I've tried also setting blank=True, but that just sets the field to...
View ArticleAre Python sets mutable?
Are sets in Python mutable?In other words, if I do this:x = set([1, 2, 3])y = xy |= set([4, 5, 6])Are x and y still pointing to the same object, or was a new set created and assigned to y?
View Article