Skip to content

Instantly share code, notes, and snippets.

View dminca's full-sized avatar

Daniel Andrei Mincă dminca

View GitHub Profile

MacOS

Build 3059

MD5: 59bab8f71f8c096cd3f72cd73851515d

Rename it to: Sublime Text

Make it executable with: chmod u+x Sublime\ Text

@dminca
dminca / xubuntu_panels.md
Last active August 29, 2015 14:19
Lost panels in Xubuntu 14.04

Lost panels in Xubuntu 14.04

Description

When OS launches the splash screen slowly loads (takes about 2-7min to load), then in one flash, the default upper panel appears and disappears forever. After the OS loads, no panels are showing (not even in Thunar file manager).

Steps to fix bug

  1. run xfce4-settings-manager
  2. Open Theme configuration
@dminca
dminca / deltags.md
Created June 22, 2015 07:14
Delete git tags both on local and remote

Delete all git tags:

On local

git tag | xargs git tag -d

On remote

git tag -l | xargs -n 1 git push --delete origin
@dminca
dminca / keymap.cson
Last active August 29, 2015 14:24
atom-keymap
# Daniel's keymap
#
# Atom keymaps work similarly to style sheets. Just as style sheets use
# selectors to apply styles to elements, Atom keymaps use selectors to associate
# keystrokes with events in specific contexts.
#
# You can create a new keybinding in this file by typing "key" and then hitting
# tab.
#
# Here's an example taken from Atom's built-in keymap:
@dminca
dminca / speedtest.sh
Created August 2, 2015 20:00
Test internet speed from ubuntu terminal
#!/bin/bash
wget -O /dev/null http://speedtest.wdc01.softlayer.com/downloads/test10.zip
@dminca
dminca / Preferences.sublime-settings
Last active July 18, 2016 12:27
Personal sublime configs
{
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme",
"draw_white_space": "all",
"font_face": "Hack",
"font_size": 8,
"highlight_line": true,
"ignored_packages":
[
"Markdown",
"Vintage"
@dminca
dminca / pedantically_commented_playbook.yml
Created August 30, 2016 15:24 — forked from marktheunissen/pedantically_commented_playbook.yml
Insanely complete Ansible playbook, showing off all the options
---
# ^^^ YAML documents must begin with the document separator "---"
#
#### Example docblock, I like to put a descriptive comment at the top of my
#### playbooks.
#
# Overview: Playbook to bootstrap a new host for configuration management.
# Applies to: production
# Description:
# Ensures that a host is configured for management with Ansible.

Keybase proof

I hereby claim:

  • I am dminca on github.
  • I am dminca (https://keybase.io/dminca) on keybase.
  • I have a public key whose fingerprint is C4A3 8F02 9F1F 6567 6957 BC34 90CD 7C62 81DF 875D

To claim this, I am signing this object:

@dminca
dminca / Jenkinsfile
Created March 25, 2019 09:02 — forked from abayer/Jenkinsfile
An example Declarative Pipeline Jenkinsfile for Feb 15 2017 demo
// A Declarative Pipeline is defined within a 'pipeline' block.
pipeline {
// agent defines where the pipeline will run.
agent {
// This also could have been 'agent any' - that has the same meaning.
label ""
// Other possible built-in agent types are 'agent none', for not running the
// top-level on any agent (which results in you needing to specify agents on
// each stage and do explicit checkouts of scm in those stages), 'docker',
@dminca
dminca / workflow.gdsl
Created March 25, 2019 21:31 — forked from gclayburg/workflow.gdsl
Jenkins workflow plugin groovy code completion support for IntelliJ IDE
/*
Author: Gary Clayburg
This file allows IntelliJ IDEA to perform basic syntax checking and code completion for
Jenkins workflow groovy scripts. https://github.com/jenkinsci/workflow-plugin
These methods are supported
sh
readFile
node
echo