LinkedIn.com

VN:F [1.9.22_1171]
Rating: 6.0/10 (1 vote cast)

LinkedIn exists to help you make better use of your professional network and help the people you trust in return.
Linkedin.com

Flickr.com

VN:F [1.9.22_1171]
Rating: 8.5/10 (2 votes cast)

Almost certainly the best online photo management and sharing application in the world

Chantal 2025

6 March 2025 @ 9:47 pm

Untitled

9 February 2025 @ 9:32 am

Snacking on Hot Chips in Dubai

14 January 2025 @ 12:13 pm

2025 -3

1 January 2025 @ 3:54 pm

heat glow

22 December 2024 @ 1:06 pm

Break time

15 October 2024 @ 10:46 pm

"Just over there...."

28 August 2024 @ 11:42 am

Le Train des Pignes PACA FRANCE

12 August 2024 @ 4:19 pm

Ann-02085

23 March 2024 @ 12:49 am

MySpace.com

VN:F [1.9.22_1171]
Rating: 4.0/10 (1 vote cast)

Social mix of music, videos and friends
myspace.com

Facebook.com

VN:F [1.9.22_1171]
Rating: 4.0/10 (2 votes cast)

The largest corporate social network on the web, with censorship at it’s heart.

Twitter.com

VN:F [1.9.22_1171]
Rating: 5.9/10 (8 votes cast)

Social out bursts news and comments all within 140 characters. Beware of BOTS and corporate censorship.

Metacafe.com

VN:F [1.9.22_1171]
Rating: 6.0/10 (1 vote cast)

Online Video Entertainment – Free video clips for your enjoyment
Metacafe.com

StackOverflow.com

VN:F [1.9.22_1171]
Rating: 9.4/10 (10 votes cast)

Random snippets of all sorts of code, mixed with a selection of help and advice.

how can i access image file in external storage with name "Asd.png" and set it as a wall paper in android studio by java

3 July 2025 @ 1:35 am

this is my method to do this : public void set_wallpaper(View view) throws IOException { File imgFile = new File("/storage/emulated/0/Download/Asd.png"); if(imgFile.exists()){ Toast.makeText(this, "file is here", Toast.LENGTH_SHORT).show(); Bitmap myBitmap = BitmapFactory.decodeFile(imgFile.getAbsolutePath()); if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.N) { WallpaperManager wallpaperManager = WallpaperManager.getInstance(getApplicationContext()); try { wallpaperManager.setBitmap(myBitmap, null, true, WallpaperManager.FLAG_SYSTEM); Toast.makeText(test.this , "done", Toast.LENGTH_SHORT).show(); } catch (IOException e) { e.printStackTrace(); } }else{ Toast.makeText(test.this, "Home screen walpaper not supported", Toast.LENGTH_SHORT).show(); }

private(set) var _X: SwiftData.Query<C.Element, C> = .init() error

3 July 2025 @ 1:31 am

Disclaimer: new to Swift, but programming since early 70's Have the following code: import SwiftUI import SwiftData @main struct Fu: App { var body: some Scene { WindowGroup { ContentView() } .modelContainer(for: Bar.self) } } @Model class Bar{ var a: String var b: String init(a: String = "", b: String = "") { self.a = a self.b = b } } struct ContentView: View { @Environment(\.modelContext) var modelContext @Query var fu: Bar // build generates: private(set) var _fu: SwiftData.Query<Bar.Element, Bar> = .init() // with error: 'Element' is not a member type of class 'example.Bar' public var body: some View { if (fu.a.isEmpty) { Hither() } } struct Hither: View { var body: some View { @Environment(\.modelContext) var modelContext @Query var fu: Bar

Filter github issues by parent issue of type

3 July 2025 @ 1:28 am

I've checked this page but only found a way to filter by specific parent issues: Github filters I'm looking for something that would look like has:parent-issue:label:in-progress, but it doesn't work. If there is a direction that I could be pointed in that would be helpful.

iCal: HTML descriptions in calendar events

3 July 2025 @ 1:27 am

Why it matters: With online meetings and their multiple long "Join" URLs in the meeting description, esp. those generated by Zoom, Teams and the like, HTML descriptions have become a must, for better or for worse. (I am talking about semantic HTML only, i.e. link, bulleted lists, bold, headers, not <script> and <video>.) The problem: iCal DESCRIPTION is defined to be plaintext. There is no explicit provision in original iCal (RFC2445 or RFC5545) for an inline HTML version of the description. Also, iCal doesn't support MIME, which is how HTML is expressed in emails. We've discussed this a year ago, but implementing it now again a second time, I can see that problem is far more complex than RFC 9073 pretends. Actually, the above is not entirely correct: RFC 2445 4.2.1, 4.2,

How to use pitest CrossModule?

3 July 2025 @ 1:26 am

I have a set of maven projects. civitas-ng-crypto contains classes I want to mutation test. civitas-ng-cryptotest contains the tests for it. civitas-ng-cryptotest/pom.xml contains: <dependency> <groupId>com.kodekonveyor</groupId> <artifactId>civitas-ng-crypto</artifactId> <version>0.0.1-SNAPSHOT</version> </dependency> and <plugin> <groupId>org.pitest</groupId> <artifactId>pitest-maven</artifactId> <version>1.19.4</version> <configuration> <crossModule>true</crossModule> <excludedClasses>*Stub</excludedClasses> </configuration> </plugin> As I understand the documentation this crossModule setting should mutation test my classes in civitas-ng-

How to render transparent objects with transparency in Pygame

3 July 2025 @ 1:24 am

I have a .png file with a transparent cutout. I need to blit it to the screen with the transparency, but also with the entire image 50% transparency. self.costume = pygame.image.load("costumes/light2.png").convert_alpha() self.costume.set_alpha(128) self.screen.blit(self.costume, self.rect) If I understandPygame's transparency, this should blit "light2.png", 50% transparent, with the original transparency as well. But, this doesn't do that. All I get is a black screen. Is the self.costume.set_alpha(128) removing the original image's transparency? Is it possible to even do this?

AttributeError: 'torch.Size' object has no attribute 'size'

3 July 2025 @ 12:01 am

I'm working on an OCR inference pipeline using a custom PyTorch decoder that returns a variable called weights and includes a models_faster_dan.py file defining the model. Initially, I was calling .size() on weights like this: print(weights.size()) which gave me the error: AttributeError: 'torch.Size' object has no attribute 'size'. I learned that weights is actually a torch.Size object, and calling .size() on it is invalid because torch.Size itself represents the shape. So, I replaced the call with: print(len(weights)) But I get an error like: AttributeError: 'torch.Size' object has no attribute 'size'. What I've done so far: Added checks to verify if weights is None before using it. Tried replacing .size() calls with len(weights). Added debug prints of type(weights) and found sometimes it is <class 'torch.Size'>. In the decoder, when weights is None, I replace it with torch.zeros(1, device=output.device) to avoid crashes. Why

Method to set minimum column width in flextable

2 July 2025 @ 10:33 pm

I'm looking for a way to apply autofit() only to columns that are too small. This is my current method but I'm looking for a better way to do it: library(flextable) library(magrittr) ### Ex. Tbls vendor <- data.frame("Vendor" = rep("Acme", 4), "Sales" = c(20,30,12,32)) vendor <- data.frame("Vendor" = rep("A long Company Name", 4), "Sales" = c(21,23,43,12)) vendor <- data.frame("Vendor" = rep("A longer Company Name", 4), "Sales" = c(1e20,2e20,3e20,4e20)) ### Current Method: desiredWidths <- c(.5,.5) flextable(vendor) %>% autofit() %>% width(j = which(dim(.)$widths < desiredWidths), desiredWidths[which(dim(.)$widths < desiredWidths)]) Ideally I would like something like this: flextable(vendor) %>% width(width = desiredWidths) %>% autofit(--Only expands columns that are too narrow--) Is

Filter with multiple checkboxs and fetching data with react

2 July 2025 @ 10:05 pm

Im trying to implement a filter with checkboxs I have my data in a json file. I'm fetching my data from a json It looks like: { "subjects": [ { "año_cuatri": "1° 1°", "codigo": "1.1.1", "nombre": "Técnicas de Programación", "estado": "Promocionada", "año_cursada": "2024 2°C", "nota": 8, "tiene_apuntes": true, "link_apuntes": "111_tecnicas_de_programacion" }, ... ]} I'm trying to render it, and everything's fine till there, but when I implement filters with checkboxes I'm having trouble. I can't filter the data, and re-render the filter data. Would you mind helping me? So I've got this: const Materias_List = () => { const [dataApi, setData

Tokio + Quinn app crashes when using libvma acceleration (GitHub issue #6923 unresolved) [closed]

2 July 2025 @ 9:25 pm

I am trying to run a tokio based app which uses the quinn crate to manage QUIC connections. When trying accelerate this application with libvma - the application crashes. This issue has been raised in the tokio github with no resolution (https://github.com/tokio-rs/tokio/issues/6923). I tried the suggested tips, but my application still crashes. Is it just me or have other folks faced the same issue. This is a quinn echo server - accepts a QUIC connection and echoes back the received payload. It runs fine when the LD_PRELOAD is removed. LD_PRELOAD=/usr/lib64/libvma.so /home/ubuntu/bkaria/testprogs/quic-echo-quinn/target/release/server --bind 192.168.50.55:8443 VMA INFO: --------------------------------------------------------------------------- VMA INFO: VMA_VERSION: 9.8.60-0 Development Snapshot built on Mar 27 2025 13:03:31 VMA INFO: Git: 536ca51fb61bff316bc7b

HootSuite.com

VN:F [1.9.22_1171]
Rating: 7.0/10 (2 votes cast)

Professional Twitter, FaceBook, MySpace & Linkedin client online

blogTV.com

VN:F [1.9.22_1171]
Rating: 5.0/10 (1 vote cast)

Watch Live Internet TV and webcam video chat
blogTV.com

Scribd.com

VN:F [1.9.22_1171]
Rating: 7.0/10 (1 vote cast)

Scribd is the largest social publishing company in the world
Scribd.com