Skip to content

Instantly share code, notes, and snippets.

View gunta's full-sized avatar
🎯
Focusing on UX for AI

Gunther Brunner gunta

🎯
Focusing on UX for AI
  • CyberAgent Co., Ltd
  • Tokyo, Japan
View GitHub Profile

Title

New SecretOps Provider – Evaluate Doppler Over Current ESC Solution

Context

I am considering a change in our SecretOps provider to enhance our development experience and efficiency.

This comparison evaluates four potential solutions – Infisical, Pulumi ESC, HashiCorp Vault, and Doppler – based on factors such as pricing, integration capabilities, user experience, and our specific organizational needs.

@gunta
gunta / test.mmd
Last active February 17, 2023 08:17
test.mmd
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@gunta
gunta / make-text-red-and-add-comment.vba
Created January 28, 2023 18:29
Make text red and add comment
Sub MacroRED()
Selection.Font.Color = wdColorRed
ActiveDocument.Comments.Add Selection.Range, Selection.Text
ActiveWindow.View.ShowComments = True
Selection.GoTo wdGoToComment, wdGoToNext
End Sub
@gunta
gunta / standarizejs.sh
Created October 27, 2015 07:47
Standarize everything for node.js
find . -path ./node_modules -prune -o -name "*.js" -type f -exec standard {} --format --verbose \; | snazzy
@gunta
gunta / webpack.config.js
Created June 26, 2014 04:33
Webpack test
module.exports = {
entry: './main.js',
output: {
filename: 'bundle.js'
},
module: {
loaders: [
// 拡張子がCSSの場合はCSSのLoaderを採用
{ test: /\.css$/, loader: 'style!css' },
@gunta
gunta / createSheetSample.js
Created September 28, 2012 10:44
Example of createSheet
var fruit = new Sprite({target:efLayer, x:50, y:50});
fruit.createSheet({url:Game.Options.imgTopDir + "reel/reel_sprite_gray.png", w:69, h:40, frame:0 });
@gunta
gunta / disable touch selection
Created September 18, 2012 02:39
Disable touch
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
@gunta
gunta / localStorageSync.js
Created July 30, 2012 05:13 — forked from akgupta/localStorageSync.js
Overriding backbone sync to use local storage
// overriding sync to use local storage when possible
sync : function(method, model, options){
var key, now, timestamp, refresh;
if(method === 'read' && this.constants.isStoredInLocalStorage) {
// only override sync if it is a fetch('read') request
key = this.getKey();
if(key) {
now = new Date().getTime();
timestamp = $storage.get(key + ":timestamp");
refresh = options.forceRefresh;
@gunta
gunta / make-manifest.js
Created July 13, 2012 09:52 — forked from k33g/make-manifest.js
Nodejs script -> create manifest (cache)
var lib = require("./manifest.js");
lib.mkmanifest({
filename : "cache"
,path : "../coffee"
,version : "02"
,exclude : ['/.DS_Store', '/.htaccess', '/cache.manifest']
/*
,network : ['/connect.php','/read.php']
,fallback : ['/offline.html']
@gunta
gunta / webviewoverride.java
Created October 4, 2011 02:31
Androidで電話番号WebView
// http://以外のURLは新しいIntentを呼び出す
public boolean shouldOverrideUrlLoading(WebView view, String url) {
if( url.startsWith("http:") || url.startsWith("https:") ) {
return false;
}
// Otherwise allow the OS to handle it
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
startActivity( intent );