1

Is it purely advisory or does it have some teeth? Have their been any cases where the constitution has affected the outcome of a court decision?

0

I watched this YouTube video https://youtu.be/WP-ktk7Tt6w?si=hnKOC08_KYGn8UBW

How bad is it over there and how widespread? As a foreigner I thought my country was bad. How bad is it for people on average wages? Is it really hard to pay the rent and put food on the table or is that just a small minority who don't know how to manage their money?

[-] kiwiheretic@lemmy.ca 2 points 1 year ago

How many rooms is that and how much percentage of the average wage would that be?

[-] kiwiheretic@lemmy.ca 3 points 1 year ago

Lenovo TB125FU

The update I think was to Android 13

4

After updating my Android tablet it completely changed the layout. Now when the tablet starts up and asks for the pin number the numbers are all tiny. Also when trying to access the drop down menu from swiping down from the top the list of options are all pushed to the side of the tablet. Does anyone know how to get the old layout back?

[-] kiwiheretic@lemmy.ca 2 points 1 year ago

That sounds so StackOverflow

[-] kiwiheretic@lemmy.ca 1 points 1 year ago

AI exists because not everyone frequents a low toxicity forum like Lemmy.

[-] kiwiheretic@lemmy.ca 1 points 1 year ago

Like toxic mods

[-] kiwiheretic@lemmy.ca 1 points 1 year ago

Gosh, that was an image that had already flashed into my mind before I read this

[-] kiwiheretic@lemmy.ca 1 points 1 year ago

If there are supply side shortages wouldn't that make the inflation rate higher? I would imagine it would at least affect the PPI as import shortages impact supply prices and that could still trickle through to the CPI.

5

As a foreigner who follows the Canadian news I saw on https://www.ctvnews.ca/business/economists-expect-rise-in-inflation-as-price-growth-fight-enters-new-phase-1.6517322 that the Canadian inflation rate is 2.8% which surprised me as in our country it is around 7%.

If so then how did Trudeau do it? How did he soak up all the money he printed during Covid?

Does that mean that housing and cost of living pressure has also been eased?

Would like to know your thoughts.

21

Admittedly I don't know Acts policies well but their leader I find a bit of a turnoff. He looks like a grinning goblin to me.

[-] kiwiheretic@lemmy.ca 3 points 1 year ago

Agreed. I got ChatGPT to convert python code to JavaScript and I got a buggy code sample back with new bugs.

[-] kiwiheretic@lemmy.ca 13 points 1 year ago

I understand Google and Microsoft getting into it as it makes sense as a "better" Google search but for StackOverflow that sounds like they have just given up on their current platform.

[-] kiwiheretic@lemmy.ca 1 points 1 year ago

I thought Erlang superceded it?

0

I guess it depends on province but I heard you have high inflation over there. How is it affecting the average person over there?

[-] kiwiheretic@lemmy.ca 2 points 1 year ago

Surprising how quiet it is here. Beginning to wonder what the question/answer ratio is.

11

I've been working on a way of analysing a page of text stored in image format (a PNG file) to try and break the text up into normal text, separated text, mathematical equations and things that are just diagrams. I post it here so that hopefully I might get some feedback.

I posted this previously in Reddit but it didn't get a lot of traction or start much of a discussion. I am hoping I might here.

I am by no means an expert in Javascript. My language of choice has been in Python but there was no good way of getting visual feedback quickly and easily as to how well my algorithm was working.

At the moment the whole thing is experimental and more of a proof of concept. In the future I am hoping it will be able to analyse uploaded PDFs and convert them to a combination of paragraph text (possibly using something like Tesseract) and for the mathematical equations to AsciiMath or Latex using something like MathPix. Then I would be able to pass it into some kind of text to speech engine.

I am still at the preliminary stages but a working demo is on https://jsdemo.kiwiheretic.xyz/

Source code is accessible from there but is also on https://github.com/kiwiheretic/textextract

Someone, after viewing an earlier version of my project, suggested that Tesseract should already do this. However, as far as I can tell, Tesseract only gives the location of decipherable text on the page and not things like diagrams.

It was written initially in Python but I converted it to Javascript because it was far easier to debug visually with Chrome developer tools. As a side benefit it also seems to run much faster. It's not particularly optimised so I am sure it could even go much faster.

The process of boxing the characters and rows of text but is probably grossly inefficient but the basic idea is as follows:

Pixel data is converted into horizontal line segments by the data_to_raster function. The line segments being stored in an array of the format [y, [x1, x2], [x3, x4]. [x5,x6].... ] where y is the height offset of that particular image pixel row and data like [x1,x2] says that all the pixels from x1 to x2 are coloured in.

Then find_boxes attempts to reread that array and turn it into boxes containing individual characters. It returns an array of arrays where the inner array takes the form [x1, y1, x2, y2] which describe the bounding box for the character inside. I initially thought it should try and find glyphs (character shapes) by working out how the individual dots were connected to make up a character. However this doesn't apply for the small letter "i" which contains a small dot at the top, for example. Therefore what I opted for in the head is that that a given character is anything that overlaps with its horizontal space. This does render the occasional false positives (like on the first line of the demo where "Ch" are wrongly guessed as one character) but doesn't seem to cause any real problems.

The get_row_sorted function, which is rather badly named, is to sort the boxes of the characters in the array to the order that they would appear in the page from left to right.

The group_into_paragraphs function attempts to divide the rows into paragraphs by computing the quartile of the row spacing and then using that to determine if the previous row belongs to the same paragraph as the next row.

The stepBoxes.step function is then used to pull all the characters out of a two dimensional array (called rowData) where the major index refers to which "line" the characters are onand the minor index is the position of that character on the line. Then I try to do some crude statistical analysis on the median and upper quartile spacing on the spacing between characters in order to further break up a row into independent segments. (You can see this in the demo on the first line and also with many of the lines containing mathematical equations.) This method is pretty crude and there is probably a better way of doing this. This whole function runs on a timer callback for the purpose of running it slower to make it easier to see what is happening in practice.

Plans for the future include a Node JS backend and the ability to load PDFs and have it produce a new PDF with image of text replaced by actual OCR'd text.

This code is by no means work of art. It needs to be refactored. I am just not 100% sure yet where that refactoring should occur. Certainly it could be made more Dry. The code could contain Javascript generators instead of loops in some places. However I think there are also places where it is unavoidable to run through an array or list twice. For instance in computing the median spacing between characters which also requires a sort. I probably also need to do the same thing for the text rows in order to identify where the paragraphs are.

Even at this stage I am happy for anyone to point me to a library or web application that already does this. Especially if it can convert the mathematical equations into text as well. (I just don't know of any.)

Anyway, constructive criticism and advice are welcomed.

Thanks

[-] kiwiheretic@lemmy.ca 1 points 1 year ago

I like the idea of running a home media server. Then I could watch youtube videos without waiting for it to download fully over a slow internet. However I would probably need a step by step guide to setting one up. Currently I run Fedora 37 linux. Maybe if there are Docker installs ?

view more: next ›

kiwiheretic

joined 1 year ago