June 9


Bismillah

## deen
namaaz
quran
quran word
clean heart

## family
milk 1
clean bottle

## office
high level design doc of unban

## business
#blog -> jameela training followup
# start youtbe channel
 gajar ka mitta 1/2 kilo,

# sales
 gopi early adapter -> free traial

# goals
15 goals
 + add aditya bohra developer followup
    1) get task list


# focus
goalcoach
 aidtya


## problem
how to complete office work in team
 how to unblock for office task
 not clean the steps
 dont know where to go, when they say "abc"

#idea

# improve
paste brush outside toilet (seperate paste small one outside)
drink water
toilet before tazhud namaaz

# design , team


How Nick Bare Makes $100,000+ per Month

Dwayne "The Rock" Johnson's Eye Opening Speech - Best MOTIVATION Ever 2019

How Nick Bare Makes $100,000+ per Month

A Quranic Lesson in Religious Psychology - Khutbah by Nouman Ali Khan

Sales Power, the Jose Silva Mind Method for Sales Professionals

Jose and Laura Silva Explaining The Basics of The Silva Method

Jose Silva - The Silva Method - The Alpha Reinforcement Exercise

silva method

Before founding The Silva Method in 1960, the late Jose Silva was a radio technician in Laredo, Texas. His passion for electronics was accompanied by a deep interest in subjects like psychology, hypnosis, intuition, and clairvoyance. He spent over two decades studying these fields, and applied them through mind experiments on himself and his children.
Silva’s big breakthrough came through his discovery that the Alpha state of brainwave activity - typically associated with sleep and relaxation - was in fact a gateway to extraordinary abilities and levels of awareness. This became the foundation for The Silva Method, which Silva spread through a campaign of books and seminars that to date have gained millions of fans across the world, and transformed the landscape of the entire personal growth industry.
Since his passing in 1999, Silva’s legacy is now honored through his family and students, a global network of Silva instructors, and programs like the Silva Ultramind System.


What is AppSumo? You Really Need to Know!

How I Run an 8-Figure Company (How I created it, Made first sale & got BIG)

How I Run an 8-Figure Company (How I created it, Made first sale & got BIG)

How To Read A Book By Hovering Your Hand Over It!? | The Silva UltraMind...

Startups.com How-To on AppSumo

Startups.com How-To on AppSumo

LET'S BUILD AN EMAIL LIST FROM SCRATCH (0 TO 100+ EMAIL SUBS!) -- LIVE

I Tried To Buy This Website

I Tried To Buy This Website

Marketing Strategies: The Future of Marketing — Plus 5 Ways You Can Prepare

From $1k to $700k Monthly Recurring Revenue (Gumroad’s Growth)

Why I HATE all Business YouTubers

You can do it montage.

Coronavirus Latin America: Prisoners and priests feed the poor | DW News

Why we're seeing mass layoffs in the US but not the UK

American workers speak out on life after coronavirus layoffs

1999 Amazon and the birth of big data (and AI?)

Jeff Bezos - One of the first orders from Amazon in 1995 was from Bulgar...

Jeff Bezos – March 1998, earliest long speech

Jeff Bezos 1997 Interview

Jeff Bezos In 1999 On Amazon's Plans Before The Dotcom Crash

Best compilation of Kinetic masterpieces by Anthony Howe.

These Kinetic Sculptures Hypnotize You

100 Pots Chicken Biryani Recipe || Matka Chicken Biryani Recipe | For Ne...

How I Started a 7-Figure Company While Working a Full Time Job

Our America with Lisa Ling: The Lost American Dream | Our America with L...

Inside 2 massive food banks feeding families affected by COVID-19

How COVID-19 is exacerbating Detroit's poverty and racial inequality

Living in poverty while politicians bicker over Brexit

How poor people survive in the USA | DW Documentary

700 euro to inr , marian pension => 60k inr


1300 usd outside motel in richmond => 98k inr , 1bhk


40 million people working below poverty line in usa, 2019 -> 4 crore people


How poor people survive in the USA | DW Documentary

Coronavirus and lockdown hit India's poor especially hard | DW News

Wardha | Poor People Hands To Mouth In Problem As No Food Found In Lockd...

Ann marrie mathis, founder , twice as nice mother & child

80 usd per month per kid for diapers


child benefits kids 300usd proposal => 22k per month per kid


Why is there still poverty in America? | The Economist

Dumb as STICK

Michael Buffer - Let's Get Ready To Rumble!!!

The Rolling Stones - Start Me Up - Official Promo

15 Problems To Solve If You Want To Be A Billionaire

Grow Coriander at home in water; Dhaniya उगाने का सबसे आसान तरीका : Cori...

Grow Chickpea at home in water; Chana उगाने का सबसे आसान तरीका : Gram in...

Grow Chickpea at home in water; Chana उगाने का सबसे आसान तरीका : Gram in...

Hydroponic Farming ||pani me ugaye chana || hydroponic vidhi se ugaye ch...

The Best Hummus Recipe (Way Better than Store-Bought!) | وصفة حمص تنافس ...

How to Make Hummus That's Better Than Store-Bought - Easy Hummus Recipe

CHICKPEA | How Does it Grow? (Garbanzo)

CHICKPEA | How Does it Grow? (Garbanzo)

How to grow chickpea (cholay) at home

How to grow potato step by step, with full updates

How to grow marigold, from cuttings from last year's old saved plant

How to grow chana in pot with full update

c# async anonymous functions

c# azure CloudStorageAccount

c# how to create document for our user written class

  ///

        /// Gets or sets an optional SAS url for accessing a test queue
        ///

xml tags for user written class documentation
summary tag, param tag

https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/xmldoc/recommended-tags-for-documentation-comments#:~:text=The%20C%23%20compiler%20processes%20documentation,such%20as%20DocFX%20or%20Sandcastle.

c# how create object with parameters , construciton intialization

https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/classes-and-structs/how-to-initialize-objects-by-using-an-object-initializer

call default constructor, set parameters with values

// Make the same declaration by using an object initializer and sending // arguments for the first and last names. The default constructor is // invoked in processing this declaration, not the constructor that has // two parameters. StudentName student2 = new StudentName { FirstName = "Craig", LastName = "Playstead" };

c# extension .bond

https://microsoft.github.io/bond/manual/bond_cs.html

Bond is an extensible framework for working with schematized data. It is suitable for scenarios ranging from service communications to Big Data storage and processing.
Bond defines a rich type system and schema evolution rules which allow forward and backward compatibility. The core Bond features include high performance serialization/deserialization and a very powerful, generic data transform mechanism. The framework is highly extensible via pluggable serialization protocols, data streams, user defined type aliases and more.
By design Bond is language and platform independent and is currently supported for C++, C#, Java, and Python on Linux, macOS, and Windows.

namespace Examples
{
    using Bond;
    using Bond.Protocols;
    using Bond.IO.Safe;

    class Program
    {
        static void Main()
        {
            var src = new Record
            {
                Name = "FooBar",
                Constants = { 3.14, 6.28 }
            };

            var output = new OutputBuffer();
            var writer = new CompactBinaryWriter(output);

            // The first calls to Serialize.To and Deserialize.From can take
            // a relatively long time because they generate the de/serializer
            // for a given type and protocol.
            Serialize.To(writer, src);

            var input = new InputBuffer(output.Data);
            var reader = new CompactBinaryReader(input);

            var dst = Deserialize.From(reader);
        }
    }
}

c# TimeSpan?

https://docs.microsoft.com/en-us/dotnet/api/system.timespan?view=netcore-3.1

calculate difference between datetime

// Define two dates.
DateTime date1 = new DateTime(2010, 1, 1, 8, 0, 15);
DateTime date2 = new DateTime(2010, 8, 18, 13, 30, 30);

// Calculate the interval between the two dates.
TimeSpan interval = date2 - date1;
Console.WriteLine("{0} - {1} = {2}", date2, date1, interval.ToString());

// Display individual properties of the resulting TimeSpan object.
Console.WriteLine(" {0,-35} {1,20}", "Value of Days Component:", interval.Days);
Console.WriteLine(" {0,-35} {1,20}", "Total Number of Days:", interval.TotalDays);
Console.WriteLine(" {0,-35} {1,20}", "Value of Hours Component:", interval.Hours);
Console.WriteLine(" {0,-35} {1,20}", "Total Number of Hours:", interval.TotalHours);
Console.WriteLine(" {0,-35} {1,20}", "Value of Minutes Component:", interval.Minutes);
Console.WriteLine(" {0,-35} {1,20}", "Total Number of Minutes:", interval.TotalMinutes);
Console.WriteLine(" {0,-35} {1,20:N0}", "Value of Seconds Component:", interval.Seconds);
Console.WriteLine(" {0,-35} {1,20:N0}", "Total Number of Seconds:", interval.TotalSeconds);
Console.WriteLine(" {0,-35} {1,20:N0}", "Value of Milliseconds Component:", interval.Milliseconds);
Console.WriteLine(" {0,-35} {1,20:N0}", "Total Number of Milliseconds:", interval.TotalMilliseconds);
Console.WriteLine(" {0,-35} {1,20:N0}", "Ticks:", interval.Ticks);

// This example displays the following output:
// 8/18/2010 1:30:30 PM - 1/1/2010 8:00:15 AM = 229.05:30:15
// Value of Days Component: 229
// Total Number of Days: 229.229340277778
// Value of Hours Component: 5
// Total Number of Hours: 5501.50416666667
// Value of Minutes Component: 30
// Total Number of Minutes: 330090.25
// Value of Seconds Component: 15
// Total Number of Seconds: 19,805,415
// Value of Milliseconds Component: 0
// Total Number of Milliseconds: 19,805,415,000
// Ticks: 198,054,150,000,000

c# extension method

https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/classes-and-structs/extension-methods

extend exist class, using extension method
extension method
1)static method
1) using extension method using directive

c# ReadDocumentAsync?

ReadDocumentAsync(String, RequestOptions, CancellationToken)
Reads a Document from the Azure Cosmos DB service as an asynchronous ope

c# what using?

https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/using-statement
wrapes try, finally with using statement, call the disposable method

code snippet

string manyLines=@"This is line one
This is line two
Here is line three
The penultimate line is line four
This is the final, fifth line.";

using var reader = new StringReader(manyLines);
string? item;
do {
    item = reader.ReadLine();
    Console.WriteLine(item);
} while(item != null);

c# what is nameof

nameof
will return name of the variable, type(class, interface..), fucntion/method name

reference:

https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/operators/nameof

code snippet:

Console.WriteLine(nameof(System.Collections.Generic)); // output: Generic
Console.WriteLine(nameof(Listtring
>)); // output: List
Console.WriteLine(nameof(List<string>.Count)); // output: Count
Console.WriteLine(nameof(List<string>.Add)); // output: Add

var numbers = new List<string> { "ab", "cd", "ef" };
Console.WriteLine(nameof(numbers)); // output: numbers
Console.WriteLine(nameof(numbers.Count)); // output: Count
Console.WriteLine(nameof(numbers.Add)); // output: Add

how to run c# online

c# what is ??

The null-coalescing operator ?? returns the value of its left-hand operand if it isn't null; otherwise, it evaluates the right-hand operand and returns its result. The ?? operator doesn't evaluate its right-hand operand if the left-hand operand evaluates to non-null.

refernce: https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/operators/null-coalescing-operator

The Secret Behind Coca-Cola Marketing Strategy

Fighting a locust plague amid Covid-19 in east Africa

Startup Failures

Free Access of Sales Boot Camp BY Rahul Bhatnagar | My Birthday gift for...

David Graeber vs Peter Thiel: Where Did the Future Go

What happened to Forever 21? | Startup Forensics

idea -> create app, website, collect videos for "what happend to"


Product Management in Startups: MVP to 4.0 roadmap and product manager t...