- Entry is free, Exit is not 🙅♂️
- Don't enter, if you do enter follow the rules of engagement
- Wait for SL and TP
- One sec away from screen can blow your account 💯
- Strike Selection and RR ratio Matters📊
- Before entering any trade, please check it's strike price, delta and RR ratio
- RRR: Your Key to Success🔑
- Only Risk management is the real edge, everything else is just the smoke
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
JSON-to-Go | |
by Matt Holt | |
https://github.com/mholt/json-to-go | |
A simple utility to translate JSON into a Go type definition. | |
*/ | |
function jsonToGo(json, typename) { | |
let data; | |
let scope; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useEffect, useState } from "react"; | |
import { Table, Button, Space, Row, Col } from "antd"; | |
import { LeftOutlined, RightOutlined } from "@ant-design/icons"; | |
const CursorPagination = ({ lastEvaluatedKey, onChange, size }) => { | |
/* Use stack to keep track of which evaluated keys have been previously seen */ | |
const [ prevEvaluatedKeys, setPrevEvaluatedKeys ] = useState([]); | |
/* Keep track of the current evaluated key */ | |
const [ currentEvaluatedKey, setCurrentEvaluatedKey ] = useState(null); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT GROUP_CONCAT('kill ',id SEPARATOR '; ') AS kill_list | |
FROM INFORMATION_SCHEMA.PROCESSLIST | |
WHERE command='Sleep'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const passwordConfig = Object.freeze({ | |
minLength: 8, | |
atleaseOneLowercaseChar: true, | |
atleaseOneUppercaseChar: true, | |
atleaseOneDigit: true, | |
atleaseOneSpecialChar: true, | |
}); | |
function verifyPasswordStrength(password) { | |
if ( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// example code for blog post | |
// https://stackfame.com/javascript-settimeout-promise-chain | |
makeHttpCall("https://api.stackfame.com/1") | |
.then(function(data) { | |
return makeHttpCall("https://api.stackfame.com/2"); | |
}) | |
.then(function(data) { | |
return loadScript("https://api.stackfame.com/3"); | |
}) | |
.then(function(data) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function ex(x, n, s = 1) { | |
if (n === 0) return s; | |
s = 1 + (x * s) / n; | |
return ex(x, n - 1, s); | |
} | |
console.log(ex(1, 10)); // 2.7182818011463845 | |
console.log(ex(5, 10)); // 146.38060102513225 |
I hereby claim:
- I am vithalreddy on github.
- I am vithalreddy (https://keybase.io/vithalreddy) on keybase.
- I have a public key whose fingerprint is 6293 F1F2 EC2D DC04 FD04 A909 8259 DCE2 BE2F C760
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# more at https://stackfame.com/inverse-of-pandas-json_normalize-or-json_denormalize-python-pandas | |
def make_formatted_dict(my_dict, key_arr, val): | |
""" | |
Set val at path in my_dict defined by the string (or serializable object) array key_arr | |
""" | |
current = my_dict | |
for i in range(len(key_arr)): | |
key = key_arr | |
if key not in current: |
NewerOlder