 | |
local function centerDefaultText() | |
local winWidth = vim.api.nvim_win_get_width(-1) | |
local winHeight = vim.api.nvim_win_get_height(-1) | |
local gutterWidth = vim.api.nvim_win_get_option(-1, "numberwidth") or 0 | |
local textAreaWidth = winWidth - gutterWidth | |
local leftPadding = math.floor((textAreaWidth - #defaultText) / 1) |
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
package main | |
import ( | |
"bytes" | |
"context" | |
"io" | |
"github.com/openai/openai-go" | |
) |
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
/* | |
Typescript erroring: | |
--- | |
Type 'Promise<(T | undefined)[] | [any, undefined]>' is not assignable to type 'Promise<[void | Error, void | T]>'. | |
Type '(T | undefined)[] | [any, undefined]' is not assignable to type '[void | Error, void | T]'. | |
Type '(T | undefined)[]' is not assignable to type '[void | Error, void | T]'. | |
Target requires 2 element(s) but source may have fewer.ts(2322) | |
*/ | |
export default function <T> (promise: Promise<T>): Promise<[Error | void, T | void]> { |
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
Verifying my Blockstack ID is secured with the address 1NBmXpzWD5qHQNR7gB7Weod1d7FhFBXeuV https://explorer.blockstack.org/address/1NBmXpzWD5qHQNR7gB7Weod1d7FhFBXeuV |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>WFWorkflowClientVersion</key> | |
<string>700</string> | |
<key>WFWorkflowClientRelease</key> | |
<string>2.0</string> | |
<key>WFWorkflowIcon</key> | |
<dict> |
I hereby claim:
- I am dlo on github.
- I am dloewenherz (https://keybase.io/dloewenherz) on keybase.
- I have a public key ASAQ6PnT0vImLLmN24l6auaXYb-YbpB0BO2wIEjoHe1s9wo
To claim this, I am signing this object:
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
class HadoopAT24 < Formula | |
desc "Framework for distributed processing of large data sets" | |
homepage "https://hadoop.apache.org/" | |
url "https://archive.apache.org/dist/hadoop/common/hadoop-2.4.1/hadoop-2.4.1-src.tar.gz" | |
sha256 "09f897738e9d34bceb7e7d4494bbc75e363fb32993f56dc5a6de8aab3419b990" | |
env :std | |
bottle :unneeded | |
depends_on :java => "1.8+" |
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
--- a/hadoop-common-project/hadoop-common/src/main/native/src/org/apache/hadoop/security/JniBasedUnixGroupsNetgroupMapping.c | |
+++ b/hadoop-common-project/hadoop-common/src/main/native/src/org/apache/hadoop/security/JniBasedUnixGroupsNetgroupMapping.c | |
@@ -73,7 +73,10 @@ | |
// was successful or not (as long as it was called we need to call | |
// endnetgrent) | |
setnetgrentCalledFlag = 1; | |
-#ifndef __FreeBSD__ | |
+#if defined(__FreeBSD__) || defined(__MACH__) | |
+ setnetgrent(cgroup); | |
+ { |
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
""" | |
This is from mixpanel customer service, I just PEP8ified it. Update api key, secret and token. | |
You can define which users you want to delete on line 125. Right now it will delete users who haven't | |
been seen in over 7 weeks. You will recieve a confirmation prompt before the people are deleted. | |
""" | |
import hashlib | |
import time | |
import urllib | |
import base64 |
NewerOlder