Skip to content

Instantly share code, notes, and snippets.

View nmicht's full-sized avatar

Michelle Torres nmicht

View GitHub Profile
@nmicht
nmicht / soft-eng-agentur-fur-arbeit.json
Created March 5, 2023 12:23
Software Engineer roles lists in the Agentur fur Arbeit site
[ {
"bezeichnung" : "Softwareentwickler/in",
"berufId" : 15260,
"istReglementiert" : false
}, {
"bezeichnung" : "Leiter/in - Softwareentwicklung",
"berufId" : 90610,
"istReglementiert" : false
}, {
"bezeichnung" : "Mathematisch-technische/r Softwareentwickler/in",
@nmicht
nmicht / lehrer-argentur-fur-arbeit.json
Created March 5, 2023 11:47
List of Lehrer roles listed in the Argentur fur Arbeit site
[ {
"bezeichnung" : "Lehrer/in (Uni) - Gesamtschulen",
"berufId" : 9297,
"istReglementiert" : true
}, {
"bezeichnung" : "Lehrer/in - Alexander-Technik",
"berufId" : 15103,
"istReglementiert" : false
}, {
"bezeichnung" : "Lehrer/in - Begabtenförderung",
@nmicht
nmicht / README.md
Created March 14, 2019 01:36
Deploy Docker to GCloud

Create the cluste

gcloud container clusters create kaka-cluster --num-nodes=1

  • kaka-cluster: the name of the cluster

Run the docker (the workload)

kubectl run kaka-server --image=gcr.io/kaka-234500/dockerflask_docker-flask:latest --port 5000 --env="FLASK_APP=app/main.py" --env="PORT=5000" --env="HOST=0.0.0.0"

  • kaka-server: the name of the workload
  • image: the name of the image on the hub
  • port: the exposed by the docker
  • env: the environment variables
@nmicht
nmicht / *Docker-Flask.md
Last active August 23, 2022 02:18
Docker files for flask app

Docker for flask app

  1. Create a Dockerfile with all the specs for your image
  2. Create a docker-compose.yml file for the basic setup
  3. Create docker-compose.env.yml files for the specific rules for each environment

To build the image execute:
docker-compose -f docker-compose.yml -f docker-compose.env.yml build

To run the container execute:

@nmicht
nmicht / .htaccess
Last active February 17, 2019 22:00
Apache htaccess to list files with a beauty format
# ENABLE DIRECTORY
# Docs: https://httpd.apache.org/docs/2.4/mod/mod_autoindex.html
Options +Indexes
IndexOptions IgnoreCase FancyIndexing FoldersFirst HTMLTable NameWidth=* SuppressHTMLPreamble ScanHTMLTitles SuppressLastModified DescriptionWidth=*
# SPECIFY HEADER FILE
HeaderName /header.html
# SPECIFY FOOTER FILE
ReadmeName /footer.html
@nmicht
nmicht / *RC-Notes.md
Last active March 12, 2019 00:16
Herramientas, paquetes y cositas interesantes para usar. Todo aprendido durante mi tiempo en RC

Recurse Center W2'19 notes

This are my notes during the W2'19 at Recurse Center

  • Tools A file with a list of tools, software and links to interesting development things.
  • Projects A list with interesting projects created by recurses.
@nmicht
nmicht / recursos-para-aprender.md
Last active April 2, 2024 14:05
Recursos para aprender
@nmicht
nmicht / emoticons.md
Last active January 10, 2019 17:18 — forked from rxaviers/gist:7360908
Lista completa de emoticons para github markdown

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@nmicht
nmicht / .npm-init.js
Last active April 5, 2024 12:22
Script to override the npm init. Prompts for the normal stuff, but also creates a github repository
/**
* This script can be used to override the current behave of `npm init`
* Can have a set of "defaults" values and also, will include functionality
* to create a Github repository for the project.
*
* You can set it:
* npm config set init-module YOUR-PATH/.npm-init.js
*
* Note: This is a work in progress, so there are some failures, mostly because
* npm is using promzard for the prompts, and it doesn't have async methods, so
@nmicht
nmicht / tic-tac-toe.php
Created December 19, 2018 19:59
A Tic-Tac-Toe game for any square board and any number of players
<?php
class TicTacToe {
/**
* Board for the game
* @var array
*/
private $board = [];
/**