This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json", | |
| "blocks": [ | |
| { | |
| "alignment": "left", | |
| "segments": [ | |
| { | |
| "background": "#c8d4dc", | |
| "foreground": "#1c2127", | |
| "leading_diamond": "\n\ue0b6", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m[38;2;216;96;32m▄[0m[38;2;153;51;0m▄[0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m | |
| [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m[38;2;153;51;0m▄[38;2;216;96;32m[48;2;248;192;96m▀[38;2;248;192;96m[48;2;248;192;96m▀[38;2;153;51;0m[48;2;153;51;0m▀[0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [38;2;216;96;32m[48;2;153;51;0m▀[38;2;216;96;32m[48;2;248;192;96m▀[38;2;216;96;32m[48;2;248;192;96m▀[0m[38;2;153;51;0m▄[0m[38;2;153;51;0m▄[0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m | |
| [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m [0m[38;2;216;96;32m▄[0m |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE FUNCTION dbo.SplitString( | |
| @String varchar(8000), | |
| @Delimiter char(1), | |
| @Column int = 1 | |
| ) | |
| returns varchar(8000) | |
| as | |
| begin | |
| declare @idx int |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class cEventos | |
| { | |
| private static string con; | |
| public cEventos() | |
| { | |
| con = ConfigurationManager.ConnectionStrings["CRMCapa"].ConnectionString; | |
| } | |
| internal List<CalendarEvent> ObtenerCalendario(DateTime inicio, DateTime final) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Configuration; | |
| using System.Data.SqlClient; | |
| using System.Security.Cryptography; | |
| using System.Text; | |
| namespace Access | |
| { | |
| public class Login | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # | |
| # Express subtitle translation using Google Translator | |
| # | |
| # Notes: | |
| # - python fansub.py [file] [from language] [to languaje] // i.e.(python fansub.py mySubs.ass en es) | |
| # - Only for ASS Subtitle files | |
| # - Just for fun | |
| # - Too slow |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # | |
| # Encrypts and decrypts messages using the Atbash cipher | |
| # | |
| # | |
| # (c) 2014 Mauricio Cerón <maw.ceron@gmail.com> | |
| # | |
| def atbash(message): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Changes the creation, modification and access date from multiple files | |
| # | |
| # Notes: | |
| # - Limited to a simple type of file | |
| # - Up to 99 files max | |
| # - Works in Linux and Mac | |
| # | |
| # (c) 2014 Mauricio Cerón <maw.ceron@gmail.com> | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| :: | |
| :: Automatized file backup system | |
| :: | |
| :: Creates a compressed file from desired files and folders and sends it to another pc | |
| :: Notes: 7Zip needs to be installed | |
| :: | |
| :: v. 0.4 | |
| :: (c) 2014 Mauricio Cerón <maw.ceron@gmail.com> | |
| :: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # For more info: http://docs.opencv.org/3.0-beta/doc/py_tutorials/py_gui/py_video_display/py_video_display.html | |
| import cv2 | |
| import numpy as np | |
| import os | |
| FILE_OUTPUT = 'output.avi' | |
| # Checks and deletes the output file | |
| # You cant have a existing file or it will through an error | |
| if os.path.isfile(FILE_OUTPUT): |
NewerOlder