[PATCH v5 1/4] drm/xe/vf: Divide ballooning into allocation and insertion

2025-04-05 Thread Tomasz Lis
(balloon/deballoon functs). Locks are also moved to ensure calls from post-migration recovery worker will not cause a deadlock. Signed-off-by: Tomasz Lis --- drivers/gpu/drm/xe/xe_ggtt.c| 9 +--- drivers/gpu/drm/xe/xe_ggtt.h| 2 + drivers/gpu/drm/xe/xe_gt_sriov_vf.c | 64

Re: [PATCH v6 2/4] drm/xe/sriov: Shifting GGTT area post migration

2025-04-05 Thread Lis, Tomasz
On 01.04.2025 19:24, Michal Wajdeczko wrote: please use "drm/xe/vf:" in the subject as this patch is still more VF oriented, then general SRIOV ok. On 31.03.2025 15:21, Tomasz Lis wrote: We have only one GGTT for all IOV functions, with each VF having assigned a range of address

[PATCH v6 4/4] drm/xe/vf: Fixup CTB send buffer messages after migration

2025-04-05 Thread Tomasz Lis
chal) v4: update the cached head before starting fixups v5: removed/updated comments, wrapped lines, converted assert into error, enums for offsets to separate patch, reused xe_map_rd Signed-off-by: Tomasz Lis --- drivers/gpu/drm/xe/xe_guc_ct.c | 142 +++ drivers

[PATCH v6 3/4] drm/xe/guc: Introduce enum with offsets for multi-LRC register H2G

2025-04-04 Thread Tomasz Lis
following patch. To ensure correctness of these DWORDs, verification in form of asserts was added to the message construction code. Signed-off-by: Tomasz Lis --- drivers/gpu/drm/xe/abi/guc_actions_abi.h | 7 +++ drivers/gpu/drm/xe/xe_guc_submit.c | 4 2 files changed, 11 insertions

[PATCH v6 1/4] drm/xe/vf: Divide ballooning into allocation and insertion

2025-04-04 Thread Tomasz Lis
(balloon/deballoon functs). Locks are also moved to ensure calls from post-migration recovery worker will not cause a deadlock. v2: Moved declarations to proper header Signed-off-by: Tomasz Lis --- drivers/gpu/drm/xe/xe_ggtt.c| 9 +--- drivers/gpu/drm/xe/xe_gt_sriov_vf.c | 64

[PATCH v6 2/4] drm/xe/sriov: Shifting GGTT area post migration

2025-04-04 Thread Tomasz Lis
ted kerneldocs, removed unused funct, properly allocate balloning nodes if non existent v4: Re-used ballooning functions from VF init, used bool in place of standard error codes v5: Renamed one function Signed-off-by: Tomasz Lis --- drivers/gpu/drm/xe/xe_ggtt.c | 33 + drivers/

[PATCH v6 0/4] drm/xe/vf: Post-migration recovery of GGTT nodes and CTB

2025-04-04 Thread Tomasz Lis
modifications. These then allowed to re-use ballooning functions during ggtt node fixing. v6: Minor update - fixed some misplaced funct declarations Tomasz Lis (4): drm/xe/vf: Divide ballooning into allocation and insertion drm/xe/sriov: Shifting GGTT area post migration drm/xe/guc: Introduce enum

Re: [PATCH v6 4/4] drm/xe/vf: Fixup CTB send buffer messages after migration

2025-04-03 Thread Lis, Tomasz
On 01.04.2025 19:25, Michal Wajdeczko wrote: On 31.03.2025 15:21, Tomasz Lis wrote: During post-migration recovery of a VF, it is necessary to update GGTT references included in messages which are going to be sent to GuC. GuC will start consuming messages after VF KMD will inform it about

Re: [PATCH v6 3/4] drm/xe/guc: Introduce enum with offsets for multi-LRC register H2G

2025-04-03 Thread Lis, Tomasz
On 01.04.2025 19:24, Michal Wajdeczko wrote: On 31.03.2025 15:21, Tomasz Lis wrote: Some GuC messages are constructed with incrementing dword counter rather than referencing specific DWORDs, as described in GuC interface specification. This change introduces the definitions of DWORD numbers

Re: [PATCH v6 1/4] drm/xe/vf: Divide ballooning into allocation and insertion

2025-04-03 Thread Lis, Tomasz
On 01.04.2025 19:21, Michal Wajdeczko wrote: Hi Tomasz, Since we use 'ballooning' concept for GGTT, please include 'GGTT' in the title to make it more specific ack On 31.03.2025 15:21, Tomasz Lis wrote: The balloon nodes used to fill areas of GGTT inaccessible for

[PATCH v5 2/4] drm/xe/sriov: Shifting GGTT area post migration

2025-03-28 Thread Tomasz Lis
ted kerneldocs, removed unused funct, properly allocate balloning nodes if non existent v4: Re-used ballooning functions from VF init, used bool in place of standard error codes Signed-off-by: Tomasz Lis --- drivers/gpu/drm/xe/xe_ggtt.c | 33 + drivers/gpu/drm/xe/xe_ggt

[PATCH v5 0/4] drm/xe/vf: Post-migration recovery of GGTT nodes and CTB

2025-03-28 Thread Tomasz Lis
modifications. These then allowed to re-use ballooning functions during ggtt node fixing. Tomasz Lis (4): drm/xe/vf: Divide ballooning into allocation and insertion drm/xe/sriov: Shifting GGTT area post migration drm/xe/guc: Introduce enum with offsets for multi-LRC register H2G drm/xe/vf: Fixup

[PATCH v5 4/4] drm/xe/vf: Fixup CTB send buffer messages after migration

2025-03-28 Thread Tomasz Lis
chal) v4: update the cached head before starting fixups v5: removed/updated comments, wrapped lines, converted assert into error, enums for offsets to separate patch, reused xe_map_rd Signed-off-by: Tomasz Lis --- drivers/gpu/drm/xe/xe_guc_ct.c | 142 +++ drivers

[PATCH v5 3/4] drm/xe/guc: Introduce enum with offsets for multi-LRC register H2G

2025-03-28 Thread Tomasz Lis
following patch. To ensure correctness of these DWORDs, verification in form of asserts was added to the message construction code. Signed-off-by: Tomasz Lis --- drivers/gpu/drm/xe/abi/guc_actions_abi.h | 7 +++ drivers/gpu/drm/xe/xe_guc_submit.c | 4 2 files changed, 11 insertions

[PATCH v4 1/3] drm/drm_mm: Safe macro for iterating through nodes in range

2025-03-06 Thread Tomasz Lis
Benefits of drm_mm_for_each_node_safe and drm_mm_for_each_node_in_range squished together into one macro. Signed-off-by: Tomasz Lis --- Cc: dri-devel@lists.freedesktop.org Cc: Christian König Cc: Arun R Murthy Cc: Matthew Brost include/drm/drm_mm.h | 19 +++ 1 file changed

Re: [RFC 0/1] drm/mm: Introduce address space shifting

2025-03-05 Thread Lis, Tomasz
On 05.03.2025 08:15, Christian König wrote: Am 04.03.25 um 16:39 schrieb Lis, Tomasz: There was no NACK, and no further questions/comments for a month. From that, we conclude that the proposed change is considered acceptable. Well there was also not any comment from Arun nor Matthew who

Re: [RFC 0/1] drm/mm: Introduce address space shifting

2025-03-04 Thread Lis, Tomasz
:41, Tomasz Lis wrote: This RFC asks for introduction of an interface which allows to shift a range managed by drm_mm instance without repeating the node list creation. The long explanation: Single Root I/O Virtualization is becoming a standard GFX feature in server environments. Virtual Machines

Re: [RFC 0/1] drm/mm: Introduce address space shifting

2025-02-05 Thread Lis, Tomasz
On 05.02.2025 09:32, Christian König wrote: Am 04.02.25 um 23:41 schrieb Tomasz Lis: This RFC asks for introduction of an interface which allows to shift a range managed by drm_mm instance without repeating the node list creation. What do you mean with "shift" here? As far as I ca

[RFC 1/1] drm/mm: Introduce address space shifting

2025-02-04 Thread Tomasz Lis
simplifies the code required to adjust a KMD for a change in base address of a space managed by drm_mm instance. Signed-off-by: Tomasz Lis --- drivers/gpu/drm/drm_mm.c | 24 include/drm/drm_mm.h | 1 + 2 files changed, 25 insertions(+) diff --git a/drivers/gpu/drm

[RFC 0/1] drm/mm: Introduce address space shifting

2025-02-04 Thread Tomasz Lis
Graphics Translation Table, which is an example of such non-virtualized resource. Should this interface change be accepted, a series which utilizes this interface in Xe driver will be prepared. Signed-off-by: Tomasz Lis Tomasz Lis (1): drm_mm: Introduce address space shifting drivers/gpu/drm

Re: [LincolnTalk] Mice

2025-01-30 Thread Lis Herbert
Gary of Gary’s Wildlife will seal your house, then set traps to catch mice inside, come back one or two more times to do the same, and guarantees his work for a year. No poison — which alongside killing other wildlife means dead mice in your house that you can’t find as you would a trap, so you hav

Re: [LincolnTalk] Free Shelving

2025-01-16 Thread Lis Herbert
Gone in a flash! Thank you! Sent from my iPhone > On Jan 16, 2025, at 4:02 PM, Lis Herbert wrote: > > Out front at The Old Town Hall — two wooden free-standing shelving units > with 12 shelves between them. > > > > Sent from my iPhone -- The LincolnTalk mailing

[krita] [Bug 498140] New: My art didn't save even though I pressed save several times

2025-01-01 Thread lis
https://bugs.kde.org/show_bug.cgi?id=498140 Bug ID: 498140 Summary: My art didn't save even though I pressed save several times Classification: Applications Product: krita Version: unspecified Platform: Other

[PATCH v4 1/3] drm/drm_mm: Safe macro for iterating through nodes in range

2024-12-20 Thread Tomasz Lis
Benefits of drm_mm_for_each_node_safe and drm_mm_for_each_node_in_range squished together into one macro. Signed-off-by: Tomasz Lis --- Cc: dri-devel@lists.freedesktop.org include/drm/drm_mm.h | 19 +++ 1 file changed, 19 insertions(+) diff --git a/include/drm/drm_mm.h b

[LincolnTalk] Vintage Mercury Glass Garlands

2024-12-19 Thread Lis Herbert
especially a pair of matching or almost-matching shorter ones, for a pair of sconces.) It’s too late to order more from far away so if you have any to sell please let me know. Thank you, Lis Sent from my iPhone -- The LincolnTalk mailing list. To post, send mail to Lincoln@lincolntalk.org. Browse the

[LincolnTalk] This week at The Exchange: Wreaths & Lincoln Gifts

2024-12-04 Thread Lis Herbert
e you soon! Lis -- The LincolnTalk mailing list. To post, send mail to Lincoln@lincolntalk.org. Browse the archives at https://pairlist9.pair.net/mailman/private/lincoln/. Change your subscription settings at https://pairlist9.pair.net/mailman/listinfo/lincoln.

[LincolnTalk] Shop Small Today! Open 11-6 at The Old Town Hall

2024-11-30 Thread Lis Herbert
ot;I want it all". Also, bonus, "this is the best candy store anywhere around, it's true". https://www.littlegeneral.co Thank you and Happiest Holidays! Lis -- The LincolnTalk mailing list. To post, send mail to Lincoln@lincolntalk.org. Browse the archives at https://pairli

[LincolnTalk] A peek at the store

2024-11-19 Thread Lis Herbert
Hi LT, Until the website is (finally!) done, here's a peek at what's in the store: https://www.littlegeneral.co Scroll to the bottom of the page to sign up for the newsletter -- the first will go out this week. Stop by when you can (Tuesday to Saturday, 11-6), hope to see you! L

Ecolog-L Energy and mining - do they belong at ESA?

2024-11-13 Thread Lis Nelis (via ecolog-l list)
nd safety guidelines, so please only volunteer if you are confident you can keep a cool head and have a friendly debate! Thanks! Lis Lis Castillo Nelis PhD Principal, Ecology and Biodiversity Pronouns: she/her D +1 206-336-1659 M +1 773-209-9818 lne...@ramboll.com<ma

[LincolnTalk] New Lincoln Books at The Exchange

2024-10-30 Thread Lis Herbert
pen Wednesday through Saturday from 11-6 this week -- lots of new, well-designed, practical and not-so-practical things are arriving every day, and the website is almost ready to show it all off. Until then, I hope you'll come visit. Lis P.S. There are just 4 of the 01773 pillows left to snap up

[LincolnTalk] Lincoln and 01773 pillows for sale

2024-10-25 Thread Lis Herbert
links: Lincoln ($45): https://square.link/u/WGmaIAex 01773 ($30): https://square.link/u/YEtQn8jv There are a limited number of each available and all revenue goes to the Old Town Hall Corporation. Thank you! Lis -- The LincolnTalk mailing list. To post, send mail to Lincoln@lincolntalk.org. Browse t

[LincolnTalk] Amazing theater, right next door

2024-07-20 Thread Lis Herbert
port on Phantom later tonight). There are performances through next Saturday, some in the morning, some evening. Tickets are here: https://www.westondramaworkshop.org/tickets-season-62/ Go! You will be so glad you did! Lis -- The LincolnTalk mailing list. To post, send mail to Lincoln@lincolntalk.

[LincolnTalk] Tickets for Weston Drama Workshop Summer Shows

2024-06-27 Thread Lis Herbert
productions: Eurydice and Old Jake's Skirts. My son is in Alice by Heart <https://www.westondramaworkshop.org/alicebyheart/>, which is a retelling of Alice in Wonderland -- there are three 10:30am performances (July 20, 25 and 27) that are perfect for children. Hope to see you there! L

Re: [LincolnTalk] Needed Baltic Birch Scrap

2024-06-20 Thread Lis Herbert
I'm all set -- thank you LincolnTalk! On Thu, Jun 20, 2024 at 7:10 AM Lis Herbert wrote: > Hi LT, > Looking for a scrap of 3/4” Baltic Birch plywood measuring 9x32.5” at a > minimum. Even better two scraps or a piece large enough to yield two, but > one will do for now. &

[LincolnTalk] Needed Baltic Birch Scrap

2024-06-20 Thread Lis Herbert
Hi LT, Looking for a scrap of 3/4” Baltic Birch plywood measuring 9x32.5” at a minimum. Even better two scraps or a piece large enough to yield two, but one will do for now. Thank you, Lis Sent from my iPhone -- The LincolnTalk mailing list. To post, send mail to Lincoln@lincolntalk.org

[LincolnTalk] FS 1 Gallon Bona NaturalSeal Floor Finish

2024-06-13 Thread Lis Herbert
For sale a one gallon jug of Bona NaturalSeal, a water-based floor finish with a bit of white pigment, so that the finished wood looks untreated. Opened to test with a tiny amount, but otherwise a full gallon. $50. https://www.bona.com/en-us/products/professional/coatings/waterborne-sealers/bona-n

[MARMAM] New publication: dwarf minke whales

2024-02-21 Thread Lis Bittencourt
/articles/10.3389/fmars.2024.1338538/full Kind regards, Lis PhD in Oceanography Laboratório de Mamíferos Aquáticos e Bioindicadores - MAQUA Universidade do Estado do Rio de Janeiro - UERJ Brazil ___ MARMAM mailing list MARMAM@lists.uvic.ca https://lists.uvic.ca

[LincolnTalk] Piano Removal

2024-01-02 Thread Lis Herbert
Hi LT, If you have had trouble finding a taker for an old upright piano, and managed to remove it somehow, I’d love to hear how you went about it. Thank you, Lis Sent from my iPhone -- The LincolnTalk mailing list. To post, send mail to Lincoln@lincolntalk.org. Browse the archives at https

[LincolnTalk] Lincoln Artist Directory

2023-12-06 Thread Lis Herbert
Is there such a thing? I am especially interested in plein air painters who might live in town. Thank you, Lis Sent from my iPhone -- The LincolnTalk mailing list. To post, send mail to Lincoln@lincolntalk.org. Browse the archives at https://pairlist9.pair.net/mailman/private/lincoln/. Change

Re: [LincolnTalk] Primer on units in Options C and E

2023-12-01 Thread Lis Herbert
57! For once, a number that matters. Thank you, Louis.Sent from my iPhoneOn Dec 1, 2023, at 8:54 PM, Louis Zipes wrote:Hi Greg,I'm glad you highlighted the subjective nature of your figures. Therefore, as a Supporter of Proposal C in that spirit I'm going to try and summarize your scenario under

Re: [LincolnTalk] Voting on incomplete options

2023-12-01 Thread Lis Herbert
Yes — total nonsense.Sent from my iPhoneOn Dec 1, 2023, at 7:18 PM, DJCP wrote:What you're saying isn't even internally consistent. How does the Planning board keep decisions to itself AND put things up to vote at town meeting? On Fri, Dec 1, 2023, 6:03 PM Karla Gravis wro

Re: [LincolnTalk] question

2023-12-01 Thread Lis Herbert
One obvious solution that seems like it should be manageable for tomorrow at least would be to allow people to cast their paper ballots as soon as they have checked in and filled them out. I know what I’m voting for, and since those paper ballots aren’t going to be modified during the discussion pe

Re: [LincolnTalk] Lincoln Residents for Housing Alternatives and HCA Choices

2023-11-29 Thread Lis Herbert
“Presented” is pretty generous. On the one hand the E option was covered in about 10 minutes, with confused details, few specifics, offers of things like “none of this will actually be built” and “we can add that parcel in if needed”, as if it’s some throwaway, and half of the presentation came fro

Re: [LincolnTalk] Housing Choice FAQs

2023-11-28 Thread Lis Herbert
y/real-estate-prices-housing-inequality-by-robert-j--shiller-2017-07> <https://www.project-syndicate.org/commentary/real-estate-prices-housing-inequality-by-robert-j--shiller-2017-07> Lis [One advantage of being moderated is the ability to edit, when you remember that pasting a link isn&

Re: [LincolnTalk] Lincoln and the Housing Choice Act: What Lies Ahead

2023-11-28 Thread Lis Herbert
hing they've said through that lens, it all comes into focus. Lis On Tue, Nov 28, 2023 at 10:41 AM Margo Fisher-Martin < margo.fisher.mar...@gmail.com> wrote: > Hi, > > Yes. It came from Barbara Peskin who created the slide show with maps and > parcel lists and screencast whi

Re: [LincolnTalk] Mass. Investment in Communities that Build Around Commuter Rail Stations

2023-11-22 Thread Lis Herbert
It would likewise be much more transparent for proponents of E to identify themselves and their respective properties within the boundaries that have been drawn on Lewis Street, which appear to comprise just a handful of lots. Sent from my iPhoneOn Nov 22, 2023, at 6:32 PM, ٍSarah Postlethwait wro

Re: [LincolnTalk] Mass. Investment in Communities that Build Around Commuter Rail Stations

2023-11-21 Thread Lis Herbert
decades for improvements, frequency of service and reliability to occur. The waiting continues.VicOn Tue, Nov 21, 2023 at 6:09 PM Lis Herbert <lisherb...@gmail.com> wrote:Nowhere does it say that the train has to stop in Lincoln. We might not have a sense for how the state plans to approach th

Re: [LincolnTalk] Mass. Investment in Communities that Build Around Commuter Rail Stations

2023-11-21 Thread Lis Herbert
Nowhere does it say that the train has to stop in Lincoln. We might not have a sense for how the state plans to approach the MBTA shortfalls, but I think it's a certainty that unless Lincoln demonstrates a commitment to meaningful density around the station, we can bet against improvements in servi

Re: [LincolnTalk] Housing Choice Act and Exclusionary Zoning Report-the HAC will make us even more exclusive.

2023-11-13 Thread Lis Herbert
This process has been discussed and surveyed for so long that it is hard to believe anybody really thinks it’s been rushed. And the reason the proposed zoning is concentrated at Lincoln Station is because that is what the long process resulted in — most people (still) think this is right for any nu

Re: [LincolnTalk] From Arlington Talk

2023-11-02 Thread Lis Herbert
There is so much to say on this topic but the best advice I heard a few years ago was, when cutting back perennials and other stems in the fall, to cut them at approximately 6” lengths and let the stems collect in a pile above the roots for overwintering bugs etc. This was from the gardener in c

[MARMAM] Publication on cetacean exposure to underwater noise

2023-10-12 Thread Lis Bittencourt
scapes and the necessity for taking underwater noise into consideration for space-time regulation of marine areas in cetacean conservation efforts. Kind regards, Lis -- Dr. Lis Bittencourt Post-doctoral fellow in Oceanography Laboratório de Mamíferos Aquáticos e Bioindicadores - MAQUA Universidade

Re: [LincolnTalk] Community Center- size considerations

2023-09-27 Thread Lis Herbert
.On Sep 27, 2023, at 6:34 PM, Lis Herbert <lisherb...@gmail.com> wrote:I don’t believe for a second that numbers don’t matter — far from it. But I have no doubt that there is a vocal minority of people who seem to believe that by throwing numbers around — only the numbers they have seized u

Re: [LincolnTalk] Community Center- size considerations

2023-09-27 Thread Lis Herbert
aspirations about “values and beliefs", without a close look at the relevant facts -- including the relevant numbers -- is so mind boggling that words fail me.Message: 24Date: Tue, 26 Sep 2023 19:04:53 -0400From: Lis Herbert <lisherb...@gmail.com>To: Lynne Smith <ly...@smith.net>

Re: [LincolnTalk] Community Center- size considerations

2023-09-26 Thread Lis Herbert
#x27;t up to par, accessible, pleasant, etc.? That is a number worth talking about. Lis On Tue, Sep 26, 2023 at 8:28 AM Lynne Smith wrote: > Dennis, > > Thank you for your thoughtful discussion of the Community Center size. I > agree that the CCBC has not responded to the que

Re: [LincolnTalk] Back by Popular Demand!

2023-09-02 Thread Lis Herbert
, as she should, at the beginning. I’d love to hear from old and new volunteers. My hope is to see the building buzzing with activity, to make the shop a destination, and to give it a gentle push into the future. I hope you’ll stop by, Lis On Fri, Sep 1, 2023 at 9:38 AM DEBBY ADAMS via Lincoln

Re: [LincolnTalk] Old Car Seats: What to do with them?

2023-09-02 Thread Lis Herbert
months. Thanks everybody, Lis On Thu, Aug 31, 2023 at 5:53 PM Lis Herbert wrote: > Hi LT, > We have started a big cleanout and have 3 Maxi-Cosi car seats -- 2 > toddler/front-facing and 1 infant -- that we would like to get rid of > somehow. They are 10+ years old, so I think they&

[LincolnTalk] Old Car Seats: What to do with them?

2023-08-31 Thread Lis Herbert
in the bin at the dump or do they need to be disposed of in a specific way? (And, if they can be cleaned and used, where would they go?) Thank you, Lis -- The LincolnTalk mailing list. To post, send mail to Lincoln@lincolntalk.org. Browse the archives at https://pairlist9.pair.net/mailman/priva

Re: [LincolnTalk] Photo sorting/album making help sought

2023-06-17 Thread Lis Herbert
Hi Rosemary, Artifact Uprising makes beautiful custom albums at a range of price points, and they have an easy to use drag and drop tool on their website to customize layouts and rearrange/reorder pages. Turnaround is quick too. https://www.artifactuprising.com/ Lis Sent from my iPhone >

[Corpora-List] Second Call for Task Participation: Medical NLP for Social Media and Clinical Texts (NTCIR-17 MedNLP-SC)

2023-05-22 Thread Lis Kanashiro via Corpora
Aramaki, Ph.D. (NAIST, Japan) Yuta Nakamura, M.D. (The University of Tokyo, Japan) Shoko Wakamiya, Ph.D. (NAIST, Japan) Shuntaro Yada, Ph.D. (NAIST, Japan) Lis Weiji Kanashiro Pereira, Ph.D. (NAIST, Japan) Shouhei Hanaoka, M.D., Ph.D. (The University of Tokyo, Japan) Gabriel Herman Bernardim Andrade

Re: [LincolnTalk] MBTA Vision

2023-04-20 Thread Lis Herbert
besides, they already have a lot of apartments. From the standpoint of this very late-to-drive, public-transportation-loving relative outsider, it is hard to believe that anybody in Lincoln is trying to make a similar claim. Lis On Wed, Apr 19, 2023 at 12:16 PM Sara Lupkas wrote: > I agree. A

Re: [LincolnTalk] INF: My Turn: CCBC has tight timeline for public input

2023-03-30 Thread Lis Herbert
Thank you, Lynne. Has the CCBC explained why Maryann Thompson is no longer the project architect? I'm sorry if I missed it but recall somebody asking the same question recently and can't find the answer. Lis On Thu, Mar 30, 2023 at 12:44 PM Lynne Smith wrote: > I recently wrote a

Re: [LincolnTalk] Free Wool Rug

2023-03-29 Thread Lis Herbert
Rug has a new home, thank you. Sent from my iPhone > On Mar 28, 2023, at 6:46 PM, Lis Herbert wrote: > > This is a beautifully made, albeit damaged, flat-weave chocolate brown and > pale grey wool rug from Schoolhouse Electric, about 10 years old. I think it > is 8.5x11’

Re: [LincolnTalk] Free Tissue Paper

2023-03-29 Thread Lis Herbert
Spoken for, thank you. Sent from my iPhone > On Mar 28, 2023, at 6:33 PM, Lis Herbert wrote: > > I ordered some tissue paper, they shipped the wrong color, and don’t want it > back. If you’d like it please let me know — 480 sheets of 20x30 SatinWrap > tissu

[LincolnTalk] And Craig, too

2023-03-24 Thread Lis Herbert
People who know Craig Nicholson and his mindful, thoughtful service as a volunteer in town don’t need to be reassured, but maybe other people do: Craig is not a threat to wildlife, or open spaces, or Lincoln’s special character. Suggesting otherwise is untrue and unfair. Lis Sent from my

Re: [LincolnTalk] COMMUNITY CENTER

2022-11-30 Thread Lis Herbert
ore. On Wed, Nov 30, 2022 at 11:23 AM Carol Ryan wrote: > I think the cost of the school ultimately doubled because the town lost > the offer of state funding. > > Carol R > > Sent from my iPhone > > On Nov 30, 2022, at 11:11 AM, Lis Herbert wrote: > > Sara: > &

Re: [LincolnTalk] COMMUNITY CENTER

2022-11-30 Thread Lis Herbert
projects has shown that 11M can balloon to 25. The first school vote was for roughly half what the new school ultimately cost. That’s mostly the result of waiting, and little else. Lis Sent from my iPhone > On Nov 30, 2022, at 9:19 AM, Sara Mattes wrote: > > Calling $25 million “pean

Re: [LincolnTalk] Community Center

2022-11-29 Thread Lis Herbert
mean inflation -- because of the delay. Delaying other projects -- including this one! -- has shown that to be the case many times over. Aren't we far better off advancing the process, and spending the money on something concrete that moves us closer to something that will be objectively go

[LincolnTalk] A vote for the Community Center

2022-11-28 Thread Lis Herbert
d I do, that if their proposal is unpalatable it will be voted down. Please let's give them a chance. Thank you, Lis -- The LincolnTalk mailing list. To post, send mail to Lincoln@lincolntalk.org. Search the archives at http://lincoln.2330058.n4.nabble.com/. Browse the archives at https:/

Re: [LincolnTalk] Needed: Swim Team Trunks

2022-07-05 Thread Lis Herbert
Thank you to everybody who has emailed -- I think we're all set. On Mon, Jul 4, 2022 at 1:15 PM Lis Herbert wrote: > Hi everybody, > We were late to sign up for swim team and missed the suit order. There’s a > meet on Thursday and we are hoping somebody in town might have swim tru

[LincolnTalk] Needed: Swim Team Trunks

2022-07-05 Thread Lis Herbert
Hi everybody, We were late to sign up for swim team and missed the suit order. There’s a meet on Thursday and we are hoping somebody in town might have swim trunks for boys that we can buy or claim — their pants sizes are usually size 8 and 10. Thank you! Lis Sent from my iPhone -- The

[LincolnTalk] Get your tickets for Codman's Summer BBQ + Campout on June 18!

2022-05-28 Thread Lis Herbert
Come celebrate summer at Codman’s June BBQ + Campout! Pasture-raised hot dogs, sausages and burgers will be on the grill (delicious veggie sandwiches too), and the *Chillwagon* will be serving up sweet treats. Our most favorite band, *The Splinters*

Re: [LincolnTalk] Saab Service

2022-05-26 Thread Lis Herbert
> Stephen Dirrane > > Sent from my iPhone > > > On May 26, 2022, at 9:41 AM, Lis Herbert wrote: > > > > Lincoln Saab owners: > > Please will you share where you bring your cars for service? > > Thank you, > > Lis > > > > Sent from my iPho

[LincolnTalk] Saab Service

2022-05-26 Thread Lis Herbert
Lincoln Saab owners: Please will you share where you bring your cars for service? Thank you, Lis Sent from my iPhone -- The LincolnTalk mailing list. To post, send mail to Lincoln@lincolntalk.org. Search the archives at http://lincoln.2330058.n4.nabble.com/. Browse the archives at https

Re: [LincolnTalk] ISO Blanket Shipper Recommendations

2022-05-21 Thread Lis Herbert
ately from Minnesota down to Texas. His contact info is as follows: Tim Terhune cell: 802.624.0032 email: terhune@gmail.com Lis On Wed, May 4, 2022 at 1:26 PM Lis Herbert wrote: > I am hoping that somebody might recommend a reliable blanket shipper for > furniture and other large items. I ha

[LincolnTalk] ISO Blanket Shipper Recommendations

2022-05-04 Thread Lis Herbert
back and forth. Any leads? Please let me know, and thank you. Lis -- The LincolnTalk mailing list. To post, send mail to Lincoln@lincolntalk.org. Search the archives at http://lincoln.2330058.n4.nabble.com/. Browse the archives at https://pairlist9.pair.net/mailman/private/lincoln/. Change your

Re: [LincolnTalk] Bemis Hall Thursday evening

2022-05-04 Thread Lis Herbert
lieu of another would be helpful. Lis Sent from my iPhone > On May 4, 2022, at 8:12 AM, Caitlin Hogue wrote: > >  > Hello all, > > As Adam has said multiple times, this event is NOT hosted by Adam Hogue and > is NOT hosted by or organized by the Veteran's Associat

Re: [LincolnTalk] Pizza places

2022-04-28 Thread Lis Herbert
After moving from Cambridge about 6 years ago we were very happy to find Sorrento's in Concord, which was a good enough stand-in for Armando's on Huron Ave for slices. But we are now completely devoted to the Upper Crust in Lexington, which amazingly delivers to Lincoln (not via one of the food de

[LincolnTalk] CLAIMED Re: FR Moen Faucet

2022-04-15 Thread Lis Herbert
The faucet has been claimed, thank you. On Thu, Apr 14, 2022 at 8:46 AM Lis Herbert wrote: > We needed a temporary faucet and installed this one in November: > > > https://www.homedepot.com/p/MOEN-Brecklyn-Single-Handle-Pull-Out-Sprayer-Kitchen-Faucet-with-Power-Clean-in-Spot-Resi

[LincolnTalk] FR Moen Faucet

2022-04-15 Thread Lis Herbert
We needed a temporary faucet and installed this one in November: https://www.homedepot.com/p/MOEN-Brecklyn-Single-Handle-Pull-Out-Sprayer-Kitchen-Faucet-with-Power-Clean-in-Spot-Resist-Stainless-87557SRS/303746288 It's in very good shape after just about 4 months or so, and free to anybody who wa

[LincolnTalk] FS Deborah Ehrlich Jelly Jar Lights

2022-01-25 Thread Lis Herbert
for the pair Please reply directly, thank you! Lis -- The LincolnTalk mailing list. To post, send mail to Lincoln@lincolntalk.org. Search the archives at http://lincoln.2330058.n4.nabble.com/. Browse the archives at https://pairlist9.pair.net/mailman/private/lincoln/. Change your subscription

[Koha] Cover Flow Plugin : unable to set style

2021-11-05 Thread Yatheesh lis
hi koha opac coverflow (koha 21.5) I am using bywater solution Cover Flow Plugin. I am unable to set style. its just showing default cover pages. its not rotating i want cover pages should automatic rotate : carousel please suggest --- - id: 3 selector: "#coverflow" - id: 3 selector: ".rand

[jira] [Created] (MINVOKER-293) Profiles are passed to invoked executions

2021-10-21 Thread Zbigniew Lis (Jira)
Zbigniew Lis created MINVOKER-293: - Summary: Profiles are passed to invoked executions Key: MINVOKER-293 URL: https://issues.apache.org/jira/browse/MINVOKER-293 Project: Maven Invoker Plugin

[jira] [Commented] (MINVOKER-180) Profiles are passed to invoked executions since version 1.6

2021-10-20 Thread Zbigniew Lis (Jira)
[ https://issues.apache.org/jira/browse/MINVOKER-180?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17431427#comment-17431427 ] Zbigniew Lis commented on MINVOKER-180: --- [~khmarbaise] I know this is y

Re: [Koha] patron permission for one library

2021-10-20 Thread Yatheesh lis
2 PM vikram zadgaonkar < > vikramczadgaon...@gmail.com> wrote: > >> Hi, >> You may enable prevent patron option in administration. >> >> On Mon, 18 Oct, 2021, 2:06 pm Yatheesh lis, wrote: >> >> > Hi >> > >> > how to set pat

Re: [Koha] patron permission for one library

2021-10-18 Thread Yatheesh lis
2 PM vikram zadgaonkar < > vikramczadgaon...@gmail.com> wrote: > >> Hi, >> You may enable prevent patron option in administration. >> >> On Mon, 18 Oct, 2021, 2:06 pm Yatheesh lis, wrote: >> >> > Hi >> > >> > how to set pat

[Koha] patron permission for one library

2021-10-18 Thread Yatheesh lis
Hi how to set patron permission for only one library (all permissions). This patron should not edit other library data -- Y.Yatheesh Babu 8247838231 ___ Koha mailing list http://koha-community.org Koha@lists.katipo.co.nz Unsubscribe: https://list

[ceph-users] Re: after upgrade to 16.2.3 16.2.4 and after adding few hdd's OSD's started to fail 1 by 1.

2021-05-15 Thread Bartosz Lis
bitmap allocator is stable. Kind regards, -- Bartosz Lis On 5/15/2021 01:10:57 CEST Igor Fedotov wrote: > This looks similar to #50656 indeed. > > Hopefully will fix that next week. > > > Thanks, > > Igor > > On 5/14/2021 9:09 PM, Neha Ojha wrote: > > On F

Re: [Koha] how to create board , Class and Section (Additional attributes and identifiers)

2021-03-31 Thread Yatheesh lis
I got it from indranil Das Gupta blog CreatedAuthorized values -Board -Class-Section *academic details :*PA_CLASS Thanks to indranil Das Gupta sir On Wed, Mar 31, 2021 at 11:43 AM Yatheesh lis wrote: > hi > > how to create Additional attributes and identifiers > Boa

[Koha] how to create board , Class and Section (Additional attributes and identifiers)

2021-03-30 Thread Yatheesh lis
hi how to create Additional attributes and identifiers Board---> class---> Section---> *S.No* *Board* *Class* *Section* *1* *CBSE* *1,2,3,..12* *A,b,c,d,---z* *2* *CIE* *1,2,3,..12* *A,b,c,d,---z* *3* *IB* *6,7,8,9,1O* *A,b,c,d,---z* -- Y.Yatheesh Babu +918247838231 ___

[Koha] check in error: koha 19.05

2021-03-19 Thread Yatheesh lis
Hi when i am doing check in I am getting the following error can any one suggest solution Some of your tables have problems with their auto_increment values which may lead to data loss. You should not ignore this warning. The problem is that InnoDB does not keep auto_increment across SQL serve

[Koha] koha hardware requirement

2021-03-17 Thread Yatheesh lis
hi can any one suggest hardware requirement for 50,000 books and 5,000 users -- Y.Yatheesh Babu 8247838231 ___ Koha mailing list http://koha-community.org Koha@lists.katipo.co.nz Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha

[Koha] Adding to opac autocomplete search feature

2021-01-28 Thread Yatheesh lis
Hi Can anyone suggest me how to add opac pulgin autocomplete search. Thank you ___ Koha mailing list http://koha-community.org Koha@lists.katipo.co.nz Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha

[MARMAM] New publication on Atlantic spotted dolphin whistles

2020-11-26 Thread Lis Bittencourt
and became more similar to those reported for North Atlantic populations. The article is open access and can be downloaded at: https://asa.scitation.org/doi/10.1121/10.0002637 Kind regards, Lis -- Lis Bittencourt Doutora em Oceanografia Laboratório de Mamíferos Aquáticos e Bioindicadores - MAQUA Un

[Koha] Unwanted Field Delete in staff client[ Guarantor information] koha 19.05

2020-11-22 Thread Yatheesh lis
Hi how to delete Unwanted Field in staff client[ Guarantor information] when i am using "surname|fistname" it deleted from [ Patron identity not from gauarantor information patron> BorrowerUnwantedField] I am using koha 19.05 -- Y.Yatheesh Babu 8247838231 ___

[Koha] sql query

2020-11-10 Thread Yatheesh lis
Hi I would like to add the following fields to sql query after OnlineURL koha 19.05 1. 8 - Collection code 2.c - Shelving location SELECT items.Barcode,biblio.Author,biblio.Title AS Titles,biblioitems.Pages,biblioitems.Editionstatement AS Edition,biblio.Copyrightdate AS Year,items.Price,bibli

[Koha] logo including barcode

2020-09-18 Thread Yatheesh lis
Hi how to include logo in barcode ? please see below link https://1.bp.blogspot.com/-gaG8gYOhs0s/X2RvsXAAYJI/Hpk/ A62BrPdvVkkeMygVcTgPTNOSzYP9F_iRgCLcBGAsYHQ/s1280/Image%2B2.jpeg -- Y.Yatheesh Babu ___ Koha mailing list http://koha-communi

Odzyskaj swoje pieniądze. Pomoc dla frankowiczów.

2020-09-03 Thread Anna Lis
*Jesteś frankowiczem?* Odzyskaj nadpłacone raty! Powierz swoja sprawę najlepszym expertom, a zyskasz: ->*1/3* sumy wszystkich spłaconyvh rat ->obniżenie kolejnych rat o *1/2* ->unieważnienie całej umowy ->redukcja długu ok. *70 %*

Re: Problem with pg_service.conf

2020-07-23 Thread Michał Lis
. I my opinion it has no sense, and looks like a bug. Regards Michal W dniu 2020-07-22 o 18:14, Adrian Klaver pisze: On 7/21/20 2:35 PM, Michał Lis wrote: Hello, I can't connect to a database via service defined in pg_service.conf file from remote machine. Connection from local mac

Problem with pg_service.conf

2020-07-22 Thread Michał Lis
Hello, I can't connect to a database via service defined in pg_service.conf file from remote machine. Connection from local machine using this service definition works fine. I tested it on PostgreSQL 9.4 and 9.6. The other problem is with the localization of the pg_service.conf file. Readi

Re: [Python-es] Que libro me recomendaís

2020-07-18 Thread Angel Lis
IMHO, Sin lugar a dudas, automate the boring stuff with python. https://automatetheboringstuff.com/ El sáb., 18 jul. 2020 10:39, Javier Perez escribió: > Hola, > > > Para un nivel medio de python, ¿qué libro me recomendáis? > > No tiene porque ser impreso, me valdría: PDF, web, curso. > > Es

  1   2   3   4   5   6   7   8   9   10   >