Skip to content

Instantly share code, notes, and snippets.

View albizures's full-sized avatar
🤷‍♂️

Jose Albizures albizures

🤷‍♂️
View GitHub Profile
#! /usr/bin/env zsh
LAB=""
TASK=""
TEST=""
TEST_TYPE="pos"
while test $# -gt 0; do
case "$1" in
-h|--help)
@albizures
albizures / lab2.py
Last active April 1, 2021 04:42
labi
import math
import tkinter as tk
from tkinter import ttk, messagebox
import tkinter.font as tfont
import sys
about_message = """
Эта программа позволяет выполнять основные математические операции и преобразовывать результат в 5-ю и обратно
Автор: Альбисурес дель валье Хосе Алфредо
Группа: ИУ7-25б
@albizures
albizures / README.md
Last active December 31, 2019 13:00
SCRIPT-8
{
"it should": {
"prefix": "itShould",
"body": [
"it('should ${1}', () => {",
"\t${2:// body...}",
"})$3"
],
"description": "create a mocha `it`"
},
@albizures
albizures / .profile
Created April 2, 2019 14:23
My profile
alias stop-indexing-nm="find . -type d -name "node_modules" -exec touch "{}/.metadata_never_index" \;"
@albizures
albizures / scope.js
Last active September 20, 2017 13:30
Scope
function foo () {
var a = 1
}
@albizures
albizures / message.bat
Created August 5, 2017 19:02
shutdown
@echo off
set /p pc="Enter PC id: "
set /p message="Enter message:"
shutdown /r /t 99999 /m \\%pc% /c %message%
ping 127.0.0.1 -n 6 > nul
shutdown /a /m \\%pc%
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;
using System.Threading;
public class Program
{
public static void Main(string[] args)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication1
{
@albizures
albizures / .bashrc
Created January 25, 2017 00:30
terminal style
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u\[\033[00m\]:\[\033[01;33
4m\]\W\[\033[00m\]\$ '