Skip to content
View MobeenAshraf's full-sized avatar

Organizations

@devclahore

Block or report MobeenAshraf

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Personal-Site Personal-Site Public

    Forked from dencorg/flexdinesh.github.io

    Personal Site ✨ https://mobeenashraf.com

    CSS

  2. osquery osquery Public

    Forked from osquery/osquery

    SQL powered operating system instrumentation, monitoring, and analytics.

    C++

  3. Support katex for marked. Support katex for marked.
    1
    const renderer = new marked.Renderer()
    2
    let originParagraph = renderer.paragraph.bind(renderer)
    3
    renderer.paragraph = (text) => {
    4
      const blockRegex = /\$\$[^\$]*\$\$/g
    5
      const inlineRegex = /\$[^\$]*\$/g
  4. serverless-go-payload-signer serverless-go-payload-signer Public

    Go Service Serverless function Hosted on Netlify to sign payload using Key

    Go 1

  5. True and False vs. "Truthy" and "Fal... True and False vs. "Truthy" and "Falsey" (or "Falsy") in Ruby, Python, and JavaScript
    1
    ## true and false vs. "truthy" and "falsey" (or "falsy") in Ruby, Python, and JavaScript
    2
    
                  
    3
    Many programming languages, including Ruby, have native boolean (true and false) data types.  In Ruby they're called `true` and `false`.  In Python, for example, they're written as `True` and `False`.  But oftentimes we want to use a non-boolean value (integers, strings, arrays, etc.) in a boolean context (if statement, &&, ||, etc.).
    4
    
                  
    5
    This outlines how this works in Ruby, with some basic examples from Python and JavaScript, too.  The idea is much more general than any of these specific languages, though.  It's really a question of how the people designing a programming language wants booleans and conditionals to work.