python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
ViewModel injection failing on Dagger + Kotlin Android
class MovieListFragment : Fragment() {
@Inject
lateinit var movieListView: MovieListViewModel
private lateinit var movieListAdapter: MovieListAdapter
private lateinit var binding: ListFragmentBindi...
Minwoo Ju
Votes: 0
Answers: 1
How to change one class in an external package for my use?
I use an external pacakge which I bring in via pip.
This package has a structure as follows:
class OuterThing:
field: Innerthing
def outer_method1(self...
class InnerThing():
def inner_method1...
halloleo
Votes: 0
Answers: 2
SQL injection attack. Best possible defense review
For the last few days my logs have been revealing an attack on my system. I don't know what they are trying to accomplish?
They seem to be attacking my style sheets only with GETS and POSTS to them.
t...
James
Votes: 0
Answers: 0
SQL sanitize python
What is the best way to sanitize a SQL to prevent injection when using python? I'm using mysql-connector. I have read that I should use a structure similar to:
import mysql.connector
connection = mys...
Learning from masters
Votes: 0
Answers: 1