Tuesday, April 26, 2022

भास्कर LIVE अपडेट्स:फोन टेपिंग केस में IPS रश्मि शुक्ला के खिलाफ चार्जशीट दाखिल, 20 सरकारी कर्मचारियों के बयान दर्ज


via देश | दैनिक भास्कर https://ift.tt/SB9YRri

Show HN: Create beautiful quotes that capture your attention (OSS) https://ift.tt/3DrQxWJ

Show HN: Create beautiful quotes that capture your attention (OSS) https://ift.tt/KprWCfb April 27, 2022 at 02:30AM

Show HN: Linen – Make your Slack community Google-searchable https://ift.tt/HcqMZTY

Show HN: Linen – Make your Slack community Google-searchable Hi HN! Kam here. I’m the founder of Linen.dev https://linen.dev , a website that makes your public Slack community Google searchable. Linen will sync your Slack threads and make it SEO friendly so your community can find Slack content that was previously hidden. Previously I worked on a popular open source project which had a sizable Slack community. Slack was great for engaging with community members and with early sales. However as community scales Slack becomes this black hole where context becomes lost. Most public communities can’t afford to pay for several hundred/thousand members so they are limited to 10,000 free messages. You run into the problem of people asking repeat questions and not searching in Slack. It also doesn’t help that the Slack UX encourages posting and not searching. We experimented with Github discussions and Discourse but didn’t want another channel to maintain and split the community on. With Linen I wanted to build a tool that is very low maintenance without changing my current workflow. By making it search engine friendly and putting it on a website the community members can find answers to repeat questions before ever getting into your Slack channel. Linen is the first result that comes up on Google if you search for “seeing a weird issue with flyte” https://ift.tt/q3dNS8l... or “replace beast http with proxygen” https://ift.tt/9hdYeu6... . As a side effect of syncing conversation to a website you end up with a very long tail of unique and relevant content for your community. Linen is free to use and get setup but I offer a paid version (I am still figuring out the pricing model for it) where you can get the content redirected to your own subdomain where your domain gets all the SEO benefits. Linen is built with Nextjs, Node, Typescript, React, Prisma for the ORM and using AWS aurora for the Postgres db. I chose Nextjs for the server side rendering capabilities and wanted to share types between client side with Typescript. I’ve also enjoyed working with Prisma as the ORM since you don’t have to write a lot of boilerplate with other ORMs. I've also been pretty happy with Vercel and Nextjs especially with the server side rendering and client side caching it provides. Here are a few communities on Linen right now: https://ift.tt/i5UDWm8 https://ift.tt/5TNdAIH https://ift.tt/vMtImUT https://ift.tt/gp0lomw https://ift.tt/gFdNQAV https://ift.tt/UmWlTXw The product is very simple right now but I want to add features like related questions detection with semantic similarity, integrating with Github to notify the thread when it is finished, auto thread detection for conversations that aren’t in thread form. You can sign up for free today at https://www.linen.dev . I am doing manual onboarding at the moment to get better feedback and to manually walkthrough some of the less polished parts of the boarding flow. p.s. I’m actively working on supporting Discord on Linen so would love to hear from anyone that is interested April 26, 2022 at 09:10PM

कांग्रेस ने खेला वीरभद्र कार्ड:हाईकमान ने बनाई जंबो कार्यकारिणी, विस चुनाव से पहले सभी को खुश करने का प्रयास


via देश | दैनिक भास्कर https://ift.tt/hxFdyuM

Sunday, April 24, 2022

सिद्धू के बागी तेवर बरकरार:राजपुरा थर्मल प्लांट के बाहर अकेले करेंगे प्रदर्शन; पंजाब कांग्रेस प्रधान वड़िंग से दूरी बरकरार


via देश | दैनिक भास्कर https://ift.tt/Cyln2Qo

आज दिल्ली दौरे पर CM भगवंत मान:2 दिन सरकारी स्कूल और मोहल्ला क्लीनिक देखेंगे; सेहत और शिक्षा मंत्री भी साथ जाएंगे


via देश | दैनिक भास्कर https://ift.tt/MZgUpX4

लखीमपुर हिंसा के आरोपी आशीष की बेल खारिज:सुप्रीम कोर्ट ने कहा- हाईकोर्ट ने जल्दबाजी में दी जमानत, एक हफ्ते के अंदर करना होगा सरेंडर


via देश | दैनिक भास्कर https://ift.tt/qIbNUOP

Show HN: I'm making a dynamic language in Rust https://ift.tt/JIxRljO

Show HN: I'm making a dynamic language in Rust https://ift.tt/lfAdGk3 An implementation of a dynamic programming language in Rust. Includes: Parser/Compiler, REPL, Virtual Machine, Bytecode Disassembler This started out as a learning project to teach myself Rust. It has grown into a decently substantial piece of software and I've learned quite a bit in the process! Some neat things: + A garbage collector that can store dynamically sized types without any double-indirection (i.e. I have my own Box implementation with manual alloc/dealloc) + The smart pointer used to reference GCed data is a thin pointer. The ptr metadata needed for DSTs is stored in the GC allocation itself, so that the GC smart pointer is just a single usize wide. This allows me to keep the core value enum Variant down to 16 bytes (8 bytes for data, the enum discriminant, and some padding). + The GC also supports weak references! + Statically dispatched type object model using a newtype wrapper and Rust's declarative macros. Ok, what that means is that I have a MetaObject trait that I can use to easily add new data types and define the behavior for specific types. Similar idea to Python's PyTypeObject though very different in implementation. However, I don't resort to dynamic dispatch or trait objects despite working with dynamically type data. Instead, I have a newtype wrapper over the core value enum Variant that statically dispatches to each of the enum branches! And then a few macros that minimize the boilerplate required if I want to add a new branch to Variant or a new method to MetaObject (just a single line in each case). + Different string representations! This was inspired by the flexstr crate. Strings that are short enough to fit inside a Variant are "inlined" directly in the value. Longer strings are either GCed or interned in a thread-local string table. All identifiers are interned. + An efficient implementation of closures inspired by Lua's upvalues. The language is still pretty WIP. I'm planning to add an import system, a small standard library, and a few other things (Yes, the name might not be the best, being also used by a well-known ReST docs generator, I'll take suggestions. I do like the name though, both as a reference to the mythological creature and the cat :D) April 25, 2022 at 05:16AM

आज का कार्टून:इलेक्ट्रिक स्कूटरों में हो रहे धमाके, विस्फोटक सामान मानकर घरों पर रेड कर रही पुलिस


via देश | दैनिक भास्कर https://ift.tt/4Cqe58W

Saturday, April 23, 2022

भास्कर LIVE अपडेट्स:चंडीगढ़ में जेल दीवार के पास मिला टिफिन बम, आर्मी बुलाई गई


via देश | दैनिक भास्कर https://ift.tt/r5OSNAl

महाराष्ट्र में हनुमान चालीसा पर बवाल:सांसद नवनीत राणा और उनके विधायक पति गिरफ्तार, मिलने पहुंचे भाजपा नेता किरीट सोमैया पर शिवसैनिकों ने किया हमला


via देश | दैनिक भास्कर https://ift.tt/Gl2XZx8

आज का इतिहास:'गॉड ऑफ क्रिकेट' का जन्मदिन, 100 इंटरनेशनल सेंचुरी जड़ीं; टेस्ट-वनडे में बनाए सर्वाधिक शतक और रन


via देश | दैनिक भास्कर https://ift.tt/3CNJZ4U

बुड़ैल जेल के बाहर 'टिफिन बम' मिला:चंडीमंदिर से आर्मी बुलाई गई; NCG करेगी डिस्पोज ऑफ़, बैग से डेटोनेटर-वायर मिले


via देश | दैनिक भास्कर https://ift.tt/STjwd2U

लोपोके से मिला ड्रोन:पंजाब पुलिस ने खेतों से किया रिकवर, BSF ने भी पकड़ी 19 करोड़ रुपए की हेरोइन


via देश | दैनिक भास्कर https://ift.tt/JhHOB8D

Show HN: A better Reddit search engine to find Menswear recommendations https://ift.tt/cpzxXC1

Show HN: A better Reddit search engine to find Menswear recommendations Hey HN Community! We built this simple community search tool that basically allows people to search through thousands of past Reddit threads and tens of thousands of recommendations using tags. It mostly covers a few bigger subreddits like r/BIFL, r/MFA, r/AskMen, r/SkincareAddiction but along the way, I expanded it to include other smaller subreddits too. In addition to filtering by category, power users can also search by -Body Fit (big thigh, long torso) -Occupation (work in retail, teacher, doctor) -Age (18-24, 25-35), Size (height, weight) -Brand comparison (similar to: X) -Use (suitable for wedding, everyday wear) -Location (available in UK, use in Northeast US) -Mood/Style (minimalist, vintage, retro) Check it out. Buy fewer, buy better. Happy Earth Day! https://reddrecs.com April 24, 2022 at 03:12AM

Show HN: Def – A zsh plugin for default folder behavior https://ift.tt/1aJoq4i

Show HN: Def – A zsh plugin for default folder behavior https://ift.tt/7xAwrZ8 April 24, 2022 at 02:12AM

Show HN: PHP-fts – Full-text search engine in pure PHP, no extensions https://ift.tt/wgSBiJP

Show HN: PHP-fts – Full-text search engine in pure PHP, no extensions https://ift.tt/WpBoNzV May 7, 2026 at 01:58AM