- Name: Sakshi
- Father's Name: Mr. Kavindra Singh
- Address: V+P: Kaserwa Khurd, Distt: Shamli, Pin: 247776 (UP)
- Mobile: +91-7310981128
- Email: [Insert your email address here]
- Date of Birth: 01.07.1994
- Marital Status: Single
This file contains hidden or 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
(async () => { | |
class ChatGPT { | |
constructor() { | |
this.accessToken = ""; | |
this.userAgent = | |
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36"; | |
this.history = new Map(); | |
this.currentConversation = null; | |
} | |
It's hard to browse through the ChatGPT history.
Here's a command palette implementation.
Just press 'Cmd + k'.
This file contains hidden or 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
// ==UserScript== | |
// @name Deployment - fur elise | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://jenkins.shipsy.in/blue/organizations/jenkins/* | |
// @icon https://www.google.com/s2/favicons?domain=shipsy.in | |
// @grant none | |
// ==/UserScript== |
This file contains hidden or 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
.project-pane { | |
width: 100% !important | |
} | |
.lh-default { | |
line-height: 0.9 !important; | |
} | |
.Link--primary.js-project-card-details-external-link { | |
font-size: 12px; | |
} | |
.p-3 { |
This file contains hidden or 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
var gifAlt = document.getElementsByTagName("h1")[0].textContent; | |
var myImage = getImagesByAlt(gifAlt)[0]; | |
var downloadWithLink = (link) => { | |
var a; | |
a = document.createElement('a'); | |
// myIframe.src = 'https://media.giphy.com/media/h2MLtoOjxtkGY/giphy.gif'; | |
a.href = link; | |
// iframe.id = 'directGif'; | |
a.style.display = 'none'; |
This file contains hidden or 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
#!/usr/bin/python3 | |
from subprocess import Popen, PIPE, CalledProcessError | |
def execute(cmd, with_type=False): | |
""" | |
:param cmd: | |
:param with_type: Yield output type as well | |
:return: |
This file contains hidden or 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 { connect } from 'react-redux'; | |
const = MyComponent => (props) { | |
props.dispatch('MY_ACTION_STRING', {/*some data*/}); | |
return null; | |
} | |
const mapStateToProps = function(state) { | |
return { |
This file contains hidden or 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 { connect } from 'react-redux'; | |
const = MyComponent => (props) { | |
console.log(props.reduxState); | |
return null; | |
} | |
const mapStateToProps = function(state) { | |
return { | |
reduxState: state, |
NewerOlder