close
Skip to main content
Filter by
Sorted by
Tagged with
3 votes
1 answer
96 views

I am working with a graph of 11 nodes (representing friends) using NetworkX. I manually divided the graph into two groups, and I want to find the edges that connect these two groups (cut edges). Here ...
Joe root's user avatar
Advice
1 vote
7 replies
106 views

I'm a bit stuck on the concept of an Abstract Data Type (ADT), what I know is that, and ADT is an idea (implemented through an Interface) that dictates how a program structures its data. But when ...
user32506010's user avatar
Best practices
0 votes
4 replies
107 views

I've got Display and FromStr, but what else? I'm working on releasing my first general-use library in rust that creates a struct and implementation for general use to assist with integrating with some ...
lilHar's user avatar
  • 1,903
Advice
0 votes
0 replies
93 views

Android FRP asks for PIN or Google account FRP Google account only disable PIN Factory reset protection PIN vs Google I want to set particular gmail to provisioned device through Qr enrollment. I am ...
harsh's user avatar
  • 1
Best practices
0 votes
4 replies
133 views

I'm a self-taught beginner learning through trial and error. I'm working on a card game in Unity (C#), and I'm trying to design a clean and extensible system for validating targets during gameplay. ...
Parkhomovsky Oleksander's user avatar
0 votes
1 answer
56 views

While implementing a simple filesystem for FUSE, I have arrived to the write() operation: /** Write data to an open file * * Write should return exactly the number of bytes requested ...
t-w's user avatar
  • 41
1 vote
1 answer
138 views

I'm playing around with implementing looping using call/cc and wrote a map function like this: (define (map1 f l) ((lambda (state) (let ((cc (car state)) (l (cadr state)) (...
NateT's user avatar
  • 312
1 vote
0 answers
106 views

Consider l = [1, 2, 3, 4, 5] print(l is l[:]) t = (1, 2, 3, 4, 5) print(t is t[:]) print(t[1:] is t[1:]) print('aa'[1:] is 'aa'[1:]) print('aaa'[1:] is 'aaa'[1:]) The result is, somewhat surprisingly,...
ByteEater's user avatar
  • 1,221
2 votes
1 answer
87 views

SAVE-INPUT should save the current state of the input source specification, but where? It can't be saved to a fixed location, as SAVE-INPUT can be called multiple times before calling RESTORE-INPUT. ...
user avatar
1 vote
0 answers
49 views

First of all, I am new to developing applications with flutter. I am developing my project in android studio. When I select windows(desktop) as the flutter device, my application works without any ...
NonameNo's user avatar
0 votes
1 answer
59 views

In the Android API reference, UsbDevice objects have a function, getDeviceId(), that returns a unique integer ID. The API reference notes that IDs are not persistent across disconnects. However, the ...
SoItBegins's user avatar
-1 votes
1 answer
62 views

Every language I've done some form of file handling in has some form of read/write specification when interacting with a file, something like open_file(file_name, read=true) Is this typically ...
bhfelliot's user avatar
  • 677
4 votes
2 answers
181 views

CPython implements arbitrary-precision integers as PyLongObject, which extends PyObject. On 64-bit platforms they take at least 28 bytes, which is quite memory intensive. Also well-known is that it ...
qwr's user avatar
  • 11.7k
-2 votes
1 answer
116 views

I am currently reading "The Fuzzing Book" and I am trying to determine how I should apply or implement the fuzzing techniques that I have learned from the book. For instance, in the book, ...
TylerMDGL's user avatar
1 vote
2 answers
186 views

I am working on K&R's exercise 2-8: Write a function rightrot(x,n) that returns the value of the integer x rotated to the right by n positions. The implementation I'm using appears to fill in ...
Angus Hay's user avatar

15 30 50 per page
1
2 3 4 5
148