-
Commit your git using
git add -A git commit -m "commit message"
-
Change time or date of your latest commit
GIT_COMMITTER_DATE="Wed Sep 9 22:00 2020 +0530" git commit --amend --date="Wed Sep 9 22:00 2020 +0530"
import struct | |
# Loads the save file having name `gtasasf1.b`. | |
with open("gtasasf1.b", "rb") as f: | |
data = bytearray(f.read()) | |
# Generate blocks for the save file. | |
blocks = [] | |
for i in range(len(data)-4): |
bisection[f_, l_ : 0, u_ : 1, iters_ : 10] := ( | |
a = l; | |
b = u; | |
If[f[a]*f[b] > 0, | |
Print["We cannot find the roots in the given interval"], | |
c = N[(a + b) / 2]; | |
OutputDetails = {{0, a, b, c, f[c]}}; | |
Do[ |
/* | |
* CRC | |
* Created on: 01-Oct-2014 | |
* Author: Gourav Siddhad | |
*/ | |
#include <cstring> | |
#include <iostream> | |
#define MAX 20 | |
using namespace std; |
const crypto = require('crypto'); | |
var { publicKey, privateKey } = crypto.generateKeyPairSync('rsa', { | |
modulusLength: 4096, | |
publicKeyEncoding: { | |
type: 'spki', | |
format: 'pem' | |
} | |
}); |
# path to file for to read | |
set fc to read POSIX file "/Users/phoenix/Github/devops/app.py" as «class utf8» | |
global chars1 | |
set prev_char to "a" | |
set chars1 to {" ", "\"", "(", ",", "\\", "=", "_", "@", ")", ".", ":"} | |
set the text item delimiters to (ASCII character 10) | |
set mylines to text items in fc |
#!/bin/bash -x | |
# | |
# Startup script to install Chrome remote desktop and a desktop environment. | |
# | |
# See environmental variables at then end of the script for configuration | |
# | |
# Run this script by root | |
# a user will get created with name: user and password: root |