Jump to content
JWTalk - Jehovah's Witnesses Online Community
  • Welcome to the real Jehovah's Witnesses Online Community!

    Welcome to JWTalk! JWTalk.Net is the only online community for real, actual Jehovah's Witnesses - those who are active, loyal, publishers of God's Kingdom - where you can speak with brothers and sisters from all around the world on a wide variety of topics. 

All Activity

This stream auto-updates

  1. Past hour
  2. Hello everyone, The ijw.link will undergo maintenance from time to time to improve the service. If you notice that the domain is suddenly not working or the website displays an error, it means maintenance is in progress. I apologize for the inconvenience, but this is necessary as the service continues to grow and more users use it.
  3. And the stocks are a mess. I always tell them invest into Judge Rutherford Rainbow books. Do you think they listen? No.
  4. Today
  5. 1. Would your meeting tablet kind of be a JW Library 'view only' device since there wasn't anything in the workflow to preserve its edits? Working on testing this now! Can't wait. 2. Does the excel export of 'Notes' also include the ability to change the highlight color, ie: change the note color and the text the note is attached to also changes color? Thanks again. By the way, I really found the 'view' option well done in JWLManager to help me see those notes from the JW Library backup. Bravo.
  6. Dark colored wood combined with lighter shades makes it possible to create a 3-D effect.
  7. Oh noo ;( alright well thanks for the help brother!!
  8. Hi dears, I solved it: by taking the backup from another PC and importing it into the PC with the problems, then it asked me if I wanted to access the sharing already enabled, and it worked, I wrote to you in case anyone has the same problem, best regards.
  9. Brothers, I need your help. I’m building a congregation planner and I need your input. Your honest feedback will help me create something that truly supports and serves the congregation.
  10. They likely need new devices in that case, unfortunately. 🙁 Thankfully there are many modern cheaper or used devices that are adequate. Android 7 came out about 10 years ago, so it's pretty doubtful that any devices that old could be updated, aside from unlocking the bootloader and installing a custom operating system/ROM such as LineageOS, which is a process I doubt most people are willing to go through. I've done it several times in the past, but it generally shouldn't be used for essential devices, newer devices or accounts requiring security unless you're an enthusiast. I used to have a nice phone that was getting a ways behind in Android updates, and I wanted a feature in a newer update, but after getting it set up on LineageOS, when I foolishly relocked the bootloader, it became bricked and the manufacturer never released the files needed to fix it.
  11. KEEP ON THE WATCH! An End to Hate Crimes What does the Bible say? https://www.jw.org/en/library/series/more-topics/an-end-to-hate-crimes/
  12. Many of you here have real experience with congregation planning software (like NWS). I’m currently building Baruch, a planning tool focused specifically on congregation needs. That’s exactly why your input matters to me. You’ve dealt with the daily reality of schedules, assignments, field service groups, updates, changes, and sometimes frustrations. I would really value an open discussion about this: What frustrates you most about current planning tools? What feels more complicated than it should be? Where do things go wrong? What would you improve if you could redesign it from scratch? Even small annoyances are helpful. Honest experiences are incredibly valuable. I’m not looking for complaints — I’m looking to understand what actually makes planning harder than it needs to be. Thank you for taking the time to share your thoughts — it truly helps shape Baruch into something that actually solves real problems.
  13. Lot's of good questions 🙂 Allow me to give a "summary" answer... JWLManager over-writes the open archive with the one you import. In that sense, the one you import becomes the "primary". My workflow is... similar. I prepare on an OLD Samsung tablet with a stylus - it's just easier to highlight with the stylus. I use Syncthing to keep all my devices synchronized, so on my laptop, in JWLManager, I open the backup from this tablet and export the highlights for the WT and CBS publication. My phone is the principal device, so I open the backup from the phone and import the highlights that were exported. The result is restored to all JW Library apps, including a newer (much faster) tablet I use for the meetings. As for searching, I think JW Library has a long way to go yet. That's why some use Obsidian (highly recommended), and export their notes from JWLManager in markdown. Obsidian let's you do all kinds of things: excellent search is just one of many. Regarding large notes and database size... Notes do not increase the size as much as media items (even images) in playlists. I know Excel has a size limit for a field; I don't know what JW Library will allow for note length. But I'm pretty certain that talk transcripts shouldn't be an issue. As for tagging strategies, I'm hope eventually JW Library will allow selecting multiple tags, so that you can find "unions": "Morning Worship" & "Encouragement" & "2025", for example.
  14. When you generate a report in Baruch, the process is simple and organized. First, you choose the type of report (for example, Attendance Records or Congregation Summary). Some reports require you to choose a month, a year, or certain options. The Screen Adapts Automatically Each report defines what information is required. For example: A specific month A year Whether certain details should be included Baruch reads this information and automatically builds the screen for you. That means: If a report requires a month, you will see a month selection. If it requires a year, you will see a year field. If it requires an option (yes/no), you will see a simple switch. The screen is not manually designed for each report. It is created automatically based on what that report needs. This ensures that: You only see relevant options The screen remains clear and simple New reports can be added without redesigning the interface Desktop and Mobile On a desktop computer: You can preview the report before finalizing it. You can adjust options and immediately see the updated preview. On a mobile device: You select the options. You generate the final PDF directly. In both cases, the calculations and results are exactly the same.
  15. How Reports Are Composed in Baruch Baruch uses a clean, layered reporting architecture designed for clarity, maintainability, and flexibility. Reports are built using a projection-driven approach, where data retrieval, transformation, and document rendering are clearly separated. The result is always a PDF file generated from a Word template, allowing congregation administrators to maintain and adjust layout without changing code. High-Level Flow When a user generates a report, the following steps occur: UI → Report Descriptor → Reporting Engine ↓ Projection Query (via MediatR) ↓ Projection (data model) ↓ Word Renderer ↓ PDF (via Syncfusion) Each layer has a single responsibility. 1. Report Descriptor A report in Baruch is defined by a descriptor. The descriptor contains: Report name Report category Required arguments (e.g., Month, Year) Attribute linking to: The projection query Default Word template Default paper format The descriptor does not contain business logic or rendering logic. It only describes what the report is. This keeps reports lightweight and easy to maintain. 2. Reporting Engine The Reporting Engine orchestrates the process. Its responsibilities: Read the descriptor metadata Create the projection query dynamically Execute the query through MediatR Retrieve the projection (data model) Locate the correct renderer Generate the Word document Convert the document to PDF The engine does not know about specific reports. It works generically using reflection and dependency injection. 3. Projection Queries Each report has a dedicated projection query. The query: Gathers domain data Performs aggregation and calculations Shapes the data into a projection model The projection is a pure data object (DTO) that contains exactly what the report needs — no formatting logic. Because projections are separate from rendering, they can also be reused in: Dashboards Analytics views Future APIs 4. Projections A projection is a structured data model that represents the report’s final data state. Example: Active publishers Meeting attendance averages Congregation statistics Upcoming events Projections implement a marker interface (IReportProjection) so the Reporting Engine can enforce type safety. They contain no UI or document logic. 5. Word Renderers Each projection has a corresponding Word renderer. The renderer: Receives the projection Maps projection values to Word template tags Assigns values to placeholders in the document All tag assignments happen in the renderer — not in the report descriptor. Example: report.Assign("ACTIVE_PUBLISHERS_TEXT", projection.ActivePublishers.ToString()); This separation ensures: Business logic stays in queries Document mapping stays in renderers Metadata stays in descriptors 6. Word Templates Templates are standard Word (.docx) files. They contain placeholder tags such as: <CONGREGATION_NAME> <ACTIVE_PUBLISHERS_THIS_MONTH> <PRINTED_DATE> Because templates are normal Word documents: Layout can be edited without code changes Formatting is fully customizable Non-technical users can maintain them 7. PDF Generation After the renderer maps all tags: The Word document is processed using Syncfusion DocIO It is converted to PDF The PDF file is saved and returned to the UI The final result is always a PDF, ensuring consistency and professional output.
  16. Trees ruined endlessly never deteriorate N G E X U
  17. Finishes on wood, when used in the kitchen, should be food safe.
  18. Oooh interesting!! I will keep an eye out next time a brother has a similar issue and make sure their OS is up to date! thanks!!
  19. If you are using an older Android operating system, it will not allow you to download the .jwpub files. Thus you may need to update the Android OS to at least 8.0 (Oreo) if you are using JWLib v15.6, or Android 7 (Nougat) fpr JWLib v15.5. However, if you cannot update the Andoid OS, you still could download the .jwpub files from the website and then manually import the .jwpub file into the app. The issue is with the security and trust certificates that the older Android OS's do not have available, or possible chipsets may not allow certain features on older devices.
  20. TRIED Topics rarely illustrate each dimension. TREND
  1. Load more activity
  • Upcoming Events

    No upcoming events found
  • Our picks

    • Modern references to creative days:
       
      *** w15 6/1 p. 5 How Science Affects Your Life ***
      The Bible fixes no duration for the six creative “days.” Instead, it opens the door for modern scientists to study them and assign accurate time spans to them. We know that the creative “days” were much longer than 24-hour days.
       
      *** g21 No. 3 p. 12 What the Bible Tells Us ***
      So each of the six creative “days” during which God prepared the earth for life and created life on it could represent extremely long periods of time.
       
      *** g 1/14 p. 12 Creation ***
      WHAT THE BIBLE SAYS God created the universe, including the earth, in the indefinite past—“in the beginning,” as Genesis 1:1 says. Modern science agrees that the universe had a beginning. A recent scientific model suggests it to be almost 14 billion years old.
       
      *** lc pp. 26 Science and the Genesis Account ***
      A careful consideration of the Genesis account reveals that events starting during one “day” continued into one or more of the following “days.”
        • Love
        • Thanks
        • Cherish
        • Like
  • Recent Public Status Updates

    • Danobrasil64

      Our congregation is finally moving to NW Scheduler from KHS. I'm having trouble exporting publisher reports from KHS to NW Scheduler. I get log error "cannot import record. Missing Date"
      I tried changing date format to year/month/day as it is in KHS. Same thing.
      I will have to enter data manually, but if there's anyone out there that has found a fix it would be hugely appreciated.
       
      · 0 replies
    • Mom of 7

      Hi everyone !!  Love to all!!
      Im am looking for the free notebook of assembly “ Hear what the spirit says to the congregations”.  Can anyone direct me in Whr to find it pls 
      gracias!! ❤️❤️
      · 1 reply
    • Lori

      I can't view my post that was moved to the Comfort, Recovery etc board because I'm a limited access user.  Can someone please help with this?  
      · 1 reply
    • Jim Jam

      I can spend hours on Google street view looking at Kingdom Halls that I find pretty all around the world
      · 4 replies
    • Tathia  »  Marisa Desanto

      Welcome sister.
      · 0 replies
    • Jim Jam

      Interesting how our illustrators prefer to drawn angels with beards, but other churches prefer angels without beards
      · 0 replies
    • Katony  »  NW Resident

      Good afternoon  Dear sister,
         Can you tell me where I can find the songs you are referring to?
      · 1 reply
    • Lori

      Can I please have an Elder message me?    Thank you so much!    I have an important question.
      · 1 reply
    • Sister Theresa  »  Lori

      You will love it!
      · 1 reply
    • Lori

      I applied to be an Auxiliary Pioneer.  I had a wonderful meeting with two of the Elders in my congregation.   One of them , I'd never met before.  I think that they have a better idea of who I am and what I deal with every day with my mental illnesses.   Not sure if I'll be approved, but it's okay if I'm not.   I've been attending field service on Zoom on Mondays, Thursdays and Sundays.  But will be adding Tuesdays as well.   🧏‍♀️
      Have a good night everyone!!  
      STAY WARM!!
       
      STAY SAFE!!
      · 2 replies
  • Albums

About JWTalk.net - Jehovah's Witnesses Online Community

Since 2006, JWTalk has proved to be a well-moderated online community for real Jehovah's Witnesses on the web. However, our community is not an official website of Jehovah's Witnesses. It is not endorsed, sponsored, or maintained by any legal entity used by Jehovah's Witnesses. We are a pro-JW community maintained by brothers and sisters around the world. We expect all community members to be active publishers in their congregations, therefore, please do not apply for membership if you are not currently one of Jehovah's Witnesses.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.

JWTalk 23.8.11 (changelog)