Skip to content

Instantly share code, notes, and snippets.

View neverkas's full-sized avatar

Emmanuel Lazarte neverkas

View GitHub Profile
@neverkas
neverkas / index.html
Created November 13, 2014 21:03
Ember Starter Kit // source http://emberjs.jsbin.com/fudava
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Ember Starter Kit</title>
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/normalize/2.1.0/normalize.css">
<style id="jsbin-css">
/* Put your CSS here */
html, body {
margin: 20px;
@neverkas
neverkas / crearMaquinaVirtual.md
Last active July 2, 2019 04:39
Crear (VM) Maquina Virtual via terminal

Descargar compiladores viejos

Cambiar en el enlace la version que necesitas https://www.virtualbox.org/wiki/Download_Old_Builds_5_1

Comandos utiles

vboxmanage modifyvm nombreMaquinaVirtual --natpf3 "guestssh,tcp,127.0.0.1,2222,,22" # modificar mientras está apagada

vboxmanage controlvm nombreMaquinaVirtual natpf3 "guestssh,tcp,127.0.0.1,2222,,22" # modificar mientras se ejecuta

vboxheadless -s nombreMaquinaVirtual # correr servidor

package embarcaciones;
import static org.junit.jupiter.api.Assertions.*;
import java.util.LinkedList;
import org.junit.jupiter.api.Test;
class EmbarcacionTest {
@neverkas
neverkas / .Xresources
Created October 15, 2019 20:56
Configuraciones LInux
!Configuracion para la terminal urxvt unicode
!ruta: ~/.Xresources
!Para aplicar cambios ejecutar en la terminal la sig linea de comando
!xrdb ~/.Xresources
URxvt.perl-lib: ~/.urxvt/ext/
!URxvt.font: xft:DejaVu Sans Mono:size=11
URxvt.font: xft:Meslo LG L DZ for Powerline:size=11 !la necesita theme agnoster de zshell
@neverkas
neverkas / exportar-org-files.el
Last active March 17, 2021 04:40
Para exportar archivos .org a html
(defun exportar-archivo (f)
(save-excursion (find-file f) (org-html-export-to-html f)
))
(defun exportar-archivos (dir)
(mapc 'exportar-archivo (directory-files dir t ".org$")
))
;(exportar-archivos "~/Documentos/git/manu-docs/testing/src/")
(exportar-archivos default-directory)
@neverkas
neverkas / README.md
Created March 30, 2021 23:00 — forked from boennemann/README.md
Pushing new releases of a legacy version with semantic-release

If you have a package where a lot of people are still using a legacy version of it you might want to keep pushing (security-)fixes to that "branch".

Let's say the "latest" version of your package is "5.4.0", but there is as significant amount of people still using "4.7.4" – the last version you released before doing "5.0.0".

You found a critical bug in "5.4.0" and push it as out as "5.4.1", but it applies to "4.7.4" as well and so you want to do "4.7.5".

Assuming you have semantic-release already set up, you can follow these steps to get that "4.7.5" legacy support release out.

  1. Go to the relevant commit: git checkout v4.7.4
  2. Create a new branch from it: git checkout -b 4.x (You can choose any branch name, just make sure to use the same in step 3)
@neverkas
neverkas / c_cpp_properties.json
Last active September 14, 2021 16:28
SISOP - Configuración .vscode
{
"configurations": [
{
"name": "linux-gcc-x64",
"includePath": [
"${workspaceFolder}/**",
"/home/tu_ruta_al_tp/static/include"
],
"compilerPath": "/usr/bin/gcc",
"cStandard": "${default}",
@neverkas
neverkas / riot-matrix-workshop.md
Created September 16, 2021 18:26 — forked from attacus/riot-matrix-workshop.md
Create your own encrypted chat server with Riot and Matrix

This guide is unmaintained and was created for a specific workshop in 2017. It remains as a legacy reference. Use at your own risk.

Running your own encrypted chat service with Matrix and Riot

Workshop Instructor:

This workshop is distributed under a CC BY-SA 4.0 license.

What are we doing here?