Polish is the English name for the language spoken in Poland.
Questions tagged [polish]
122 questions
0
votes
0 answers
This code works on my computer but not at online compilers. I am getting segmentation fault at sscanf. Whats's the problem?
This is my code:
I have a problem with the evaluate function. I want to sscanf 2 characters from token[i] and determine weather its a +,-,*,/ or a number.
I used sscanf because I dont have any idea how to convert a string into double. If i include…

durgo
- 3
- 2
0
votes
1 answer
Wrong encoding when importing JSON with Polish characters in JavaScript
I have the below JSON file "locations.json":
{
"lubelskie": [
"abramów",
"adamów",
"aleksandrów",
"annopol",
"baranów",
"batorz",
"bełżec",
"bełżyce"
]
}
I import the JSON in to my Class, using the below…

pawelglow
- 708
- 1
- 10
- 20
0
votes
1 answer
Polish characters have different weight
I've bought html template -> https://themeforest.net/item/bredh-multipurpose-web-hosting-with-whmcs-template/23474111 , now I need to add there some polish pharses but the problem is that some of the polish characters look different.
Font used:…

Marcin Styczeń
- 1
- 1
0
votes
0 answers
How to get all records without and with special (polish) characters
Here's my current query:
SELECT * FROM example WHERE name LIKE '$myName%'
I have a lot of different rows in my database, and I want this query to get all rows with name starting with "myName". It works fine with this code, but it doesn't return…

mk27
- 1
- 1
- 1
- 2
0
votes
1 answer
How to automate finding sentences similar to the ones from a given list?
I have a list of let's say "forbidden sentences" (1000 of them, each with around 40 words). I want to create a tool that will find and mark them in a given document.
The problem is that in such document this forbidden sentence can be expressed…

Kamila96
- 1
0
votes
0 answers
Python - saving a web scraped file - error in encoding of Polish characters
I have created a block of code, which web scrapes information for property listings of a Polish website.
import bs4
import csv
from urllib.request import urlopen as Open
from urllib.request import Request
from bs4 import BeautifulSoup as…

goldsilvy
- 41
- 7
0
votes
1 answer
Is there any Polish implementation for similar words in word2vec?
I found GoogleNews-vectors-negative300.bin library, but only for ENG words, Is there any Polish implementation for similar words in word2vec?
I have already tried using cc.pl.300.bin and NKJP-PodkorpusMilionowy libraries...
public Word2Vec…

Fakinoo
- 49
- 1
- 8
0
votes
1 answer
J2Me Polish Serialization
First of all I would like to say thanks in advance because I know this is the best website to get answers related to IT problem.
Currently I am working on Code Generation that would convert my Class Beans(simple class
files) from J2SE to J2ME now…

Makky
- 17,117
- 17
- 63
- 86
0
votes
1 answer
Local polish character support for return type of api in spring boot
I am using springboot version = 1.5.13.RELEASE.
If I return data using object in Response Entity by first way shows below it returns character à as Ã\u008d
and if I return same by converting object into String using ObjectMapper by second way and…

Coder Guru
- 513
- 3
- 18
- 37
0
votes
0 answers
R: uplad doc file with readtext() with Polish characters
Let's have a .doc file (DOC not DOCX!!!) containing following sentence in Polish:
"
Na każde 40 mg% powyżej 100 mg% dodać 1j NovoRapidu, przy glikemii poniżej 100 mg% odjąć 1j NovoRapidu od dawki wyliczonej na WW w posiłku głównym. Przekąski liczyć…

Mikołaj
- 385
- 4
- 17
0
votes
0 answers
Offline Polish TextToSpeech in Linux
I already found and tried espeak/espeak-ng and espeak with mbrola but speech quality is less what desirable.
I aware about Festival and Flite engines but unable to find any Polish voice for them.

Mike666
- 459
- 5
- 12
0
votes
0 answers
unknown characters Polish to English
I have JSON API server its working fine.
What my server does is,
It takes the requests from clients in text format, example "Movie Name".
And look for the requested string (Movie Name) on the other server, the other server will reply back the…

Mohammed Azeem
- 31
- 8
0
votes
0 answers
Unresponsive card with Polish electronic ID
I have inserted my polish ID with an electronic layer into my Lenovo Integrated Smart Card Reader, but pcsc_scan gives me following results:
Wed Mar 27 15:21:14 2019
Reader 0: Lenovo Integrated Smart Card Reader 00 00
Event number: 15
Card…

Albert221
- 5,223
- 5
- 25
- 41
0
votes
1 answer
Printing the Stack in Java so that number are usable
I am currently building a Reverse Polish Notation Calculator in Java. I have written code so that that when "d" is entered, it prints the numbers on the stack. However, the numbers printed are then unusable for further calculations going forward…

Ben Craig
- 77
- 7
0
votes
1 answer
How can I detect the codepage of a serial of text,2 byte for a character,It's polish
How can I detect the codepage of a serial of text,2 byte for a charactor,It's polish.And for normal English charactor ,just add 0x00 to the ansi code, for special Polish character,the two byte have the special meaning. there is no file head ,just…

thed
- 45
- 3