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

sweet mind as honey🍯✨

4 April 2024 @ 11:36 am

Sunshine

5 March 2024 @ 5:41 pm

Wander toward tomorrow

5 September 2023 @ 5:17 am

sunflowers in Kiyose

29 July 2023 @ 2:10 pm

WreckHD

28 July 2023 @ 10:55 am

Sunset

26 July 2023 @ 4:59 pm

Not Those Arches

24 July 2023 @ 2:42 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.

ArtemisMQ wildcard security settings not behaving as expected

8 May 2024 @ 6:32 am

While trying to set up a nice and automatic way to configure artemis users I stumbled on the wildcard routing that can be used within the security-settings block. Leveraging this would make inter application communication easy. Sending something from appA to appB could always be done by using a fixed queue pattern: appA.appB.requestSomething would indicate communication from appA to appB containing requestSomething. Is would be trivial to create a queue with requestSomethingElse etc. Inverse would also be possible, just flip around the pattern: appB.appA.responseSom

Cannot pickle '_thread.RLock' object

8 May 2024 @ 6:31 am

TypeError Traceback (most recent call last) in <cell line: 3>() 2 file_path="vector_index.pkl" 3 with open(file_path, "wb") as f: ----> 4 pickle.dump(vectorindex_openai, f) TypeError: cannot pickle '_thread.RLock' object

AWS Batch AWS SQS and SpringBoot

8 May 2024 @ 6:30 am

I have a requirement to run time driven (cron) jobs with resilience. Is the following a good pattern to use? AWS Batch -> AWS SQS -> Spring Boot The schedule is configured by AWS Batch, when triggered it publishes to an AWS SQS queue, and then the Spring Boot Java application subscribes to the messages on the queue and does the job.

Talend how to handle multiple row headers?

8 May 2024 @ 6:30 am

I am building a pipeline using Talend to ingest data from Share point and output to Snowflake. Currently using dynamic schema as there will be many other files with different structure. current problem is that I have a multi-row headers file as below: current headers the top row are merged cell where when I tried to output to a Snowflake table, it will count the second cell as null, empty. I want to transform the header before output it to Snowflake into below: final headers is there any way to solve this? idk if I explain this correctly I have tried to only take the headers as rows and merge the 2 rows together but idk how to do it when using dynamic schema since I cannot see the column name's. the current test pipeline are input the pipeline using tFileInputExcel and tried to merge the rows using t

Excel create chart from pivot table Run-time error '-2147467259 (80004005)': Method 'SetSourceData' of object '_Chart' failed

8 May 2024 @ 6:30 am

Sub CreateChartsFromPivotTables() Dim sh As Shape Dim ws As Worksheet Dim ch As Chart Dim ptPicker As PivotTable Dim ptSupDept As PivotTable Dim ptTypeOfUse As PivotTable Dim rngData As Range Set ws = Worksheets("DashBoard") Set ptPicker = ws.PivotTables("PivotPicker") Set ptSupDept = ws.PivotTables("PivotSupDept") Set ptTypeOfUse = ws.PivotTables("PivotTypeOfUse") Set rngData = ptSupDept.TableRange1 Set sh = ws.Shapes.AddChart2( _ XlChartType:=XlChartType.xlPie, _ Left:=ws.Cells(7, 2).Left, _ Top:=ws.Cells(7, 2).Top, _ Width:=250, _ Height:=200) Set ch = sh.Chart With ch .SetSourceData Source:=rngData .SeriesCollection(1).ApplyDataLabels Type:=xlShowPercent, AutoText:=True, LegendKey:=False, HasLeaderLines:=False .SeriesCollection(1).DataLabels.NumberFormat = "0.00%" End With Debug.Print rngData.Address End Sub I'm encountering an error when using the .SetS

JavaScript download of large files causes next requests to stay in pending

8 May 2024 @ 6:30 am

Problem: When trying to download large files from backend all requests that come afterwards are in pending status until download is done / canceled. This issue persist in same browser window, if I open another browser or same one in incognito I can navigate through UI without any issue (indicating that backend is blocked and can response to new requests) Using Express and React, from backend perspective I'm using streams (GET endpoint), here is code snippet: res.writeHead(200, { 'Content-Disposition': `attachment; filename=${encodedFileName}`, }); stream.pipe(res); On the frontend side I tried couple of things. Using <a href="API_URL/download/id" /> Using web workers Using package streamsaver But seems like issue is persistent on each solution I have tried.

Docker-compose: Creating same container for different projects

8 May 2024 @ 6:29 am

I'm facing an issue with my Django projects that have a similar structure. Each project has a backend folder containing a docker-compose.yml and Dockerfile. The structure is as follows: project1/backend/docker-compose.yml project2.backend/docker-compose.yml The problem arises when I switch between projects and run docker-compose up. It seems that the container named backend is reusing services from the previous project instead of creating a new container. Here's an example of the docker-compose.yml for each project: Project 1: version: '3.9' services: redis: image: redis:latest ports: - "6379:6379" postgres: image: postgres:12 container_name: postgres environment: POSTGRES_PASSWORD: project_name POSTGRES_DB: project_name env_file: - .env ports: - "5432:5432" volumes: - postgres

Java code to compare integer and string array and get the corresponding sum

8 May 2024 @ 6:29 am

There two string Arrays, array1 and array2. String[] array1 = {"1", "2", "3", "4","5","6","7"} String[] array2= {"apple", "", "", "banana", "", "", "orange"}; Could you please help me with a java code to produce output like String[] desiredOutput = {"1","5","4","11","7"} Logic: whereever there is empty value in array2, add the corresponding values in array1 Example: array2[0] = "apple", so desired output is value of array1[0], output ={"1"} array2[1] = "" and array2[2] = "" so desired output is sum of (array1[1]+array1[2]) , output ={"1","5"} array2[3] = "banana", so desired output is value of array1[3], output ={"1","5","4"} array2[4] = "" and array2[5] =

Recalculate derived data after dynamic and recurring timeout (useEffect and useState?)

8 May 2024 @ 6:26 am

I have a custom hook in one of my projects that gets data from an API and then returns a filtered subset of that data. Each item inside data has a timestamp that determines whether it is active or not. Right now I get the shortest duration until an item changes and trigger a recalculation inside a timeout inside a useEffect hook. My hook stores the filtered data with useState and very explicitly manages changes inside the useEffect hook (setFilteredData). My question is if there is a better way. Would it be better or more idiomatic to use useMemo to derive filteredData? How would I trigger it to rerun on every timer change in that case? This is a minimal example with some mock functions to showcase the problem. import React from "react"; // Mock functions const getMillisecondsToNextCalculation = () => Math.round(Math.random() * 10000); const filterData = (data) => data.filter(Math.random() > 0.5); const useFilteredData = () => {

Encountering error while building a URL shortener project in Node.js, Express, and MongoDB

8 May 2024 @ 6:23 am

C:\Users\Dev\Desktop\frontend project\URlShortner\controllers\url.js:6 if (!body.redirectUrl) { ^ TypeError: Cannot read properties of undefined (reading 'redirectUrl') at handleGenerateNewShortURL (C:\Users\Dev\Desktop\frontend project\URlShortner\controllers\url.js:6:15) at Layer.handle [as handle_request] (C:\Users\Dev\Desktop\frontend project\URlShortner\node_modules\express\lib\router\layer.js:95:5) at next (C:\Users\Dev\Desktop\frontend project\URlShortner\node_modules\express\lib\router\route.js:149:13) at Route.dispatch (C:\Users\Dev\Desktop\frontend project\URlShortner\node_modules\express\lib\router\route.js:119:3) at Layer.handle [as handle_request] (C:\Users\Dev\Desktop\frontend project\URlShortner\node_modules\express\lib\router\layer.js:95:5) at C:\Users\Dev\Desktop\frontend project\URlShortner\node_modules\express\lib\router\index.js:284:15 at Function.process_params (C:\Users\Dev\Desktop\frontend project\URlS

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

Delivr.com

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

Effortless sharing with a tricked-out, mobile-friendly URL.