* A2
|
| * B2
| |
| * B1
| |
This file contains 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.Collections; | |
using System.Collections.Generic; | |
using System.Linq; | |
// https://softwareengineering.stackexchange.com/questions/300242/will-the-database-connection-be-closed-if-we-yield-the-datareader-row-and-not-re | |
Console.WriteLine("Prueba foreach"); | |
foreach (var i in GetItems("Prueba foreach")) | |
{ |
This file contains 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
# alias radio='function __radio(){ r=`grep -v "#" radios_nacionales.txt | grep -m 1 -i $1 | cut -d" " -f1`; cvlc $r 2> /dev/null; }; __radio' | |
# podria utilizarse mplayer en vez de vlc | |
AMs Nacionales | |
http://66.70.255.8:9436/baires?type=.mp3 Radio Madre 530 | |
http://www.servidorstreaming1.com:9962/; Radio Colonia 550 | |
http://195.154.182.222:25223/live.mp3 Radio Argentina 570 | |
http://playerservices.streamtheworld.com/api/livestream-redirect/CONTINENTAL_SC Continental 590 | |
http://209.95.35.49:7012/stream Rivadavia 630 |
This file contains 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
body { | |
background: #000; | |
} |
This file contains 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
/* | |
EXAMPLE EXECUTION | |
testname: GetNeverPonyNumber | |
uniques: 50000000 | |
collisions: 0 | |
examples: 8702a199572565e1, 84a4a866d8222e3f, 7de9de6bc852e14d | |
elapsed: 00:03:47.0953452 | |
This file contains 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.Text; | |
using System.Linq; | |
public static class EmailUrlObfuscation | |
{ | |
private static string AtSymbolEncode(this string email) => email | |
.Replace("]", "-]") | |
.Replace("@", "[a]"); |
This file contains 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.Diagnostics; | |
using System.Linq; | |
using System.Net.Http; | |
using System.Threading.Tasks; | |
namespace Client | |
{ | |
class Program | |
{ |
- Download and install p4Merge (Helix P4Merge: Visual Merge Tool) from Perforce page
- Configure Git Extensions (Tools / Settings / Git Config) with the follow values (see image):
- Mergetool:
p4merge
- Path to mergetool:
C:/Program Files/Perforce/p4merge.exe
- Mergetool command:
"C:/Program Files/Perforce/p4merge.exe" "$BASE" "$LOCAL" "$REMOTE" "$MERGED"
- Difftool:
p4merge
- Path to difftool:
C:/Program Files/Perforce/p4merge.exe
- Mergetool:
- Difftool command:
"C:/Program Files/Perforce/p4merge.exe" "$LOCAL" "$REMOTE"
This file contains 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
(function () { | |
'use strict'; | |
angular | |
.module('dopplerRelay') | |
.directive('validationErrors', validationErrors); | |
validationErrors.$inject = [ | |
"$compile" | |
]; |
This file contains 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
(function () { | |
'use strict'; | |
angular | |
.module('dopplerRelay') | |
.controller('TemplateCtrl', TemplateCtrl); | |
TemplateCtrl.$inject = [ | |
'$scope', | |
'templates', |
NewerOlder