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.Collections.Generic; | |
using System.Linq; | |
using System.Net; | |
using System.Net.Http; | |
using System.Threading; | |
using System.Threading.Tasks; | |
using System.Web.Http; | |
namespace StartNewIsDangerous.Controllers |
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
package main | |
import ( | |
"context" | |
"log" | |
"net/http" | |
"os" | |
"os/signal" | |
"time" | |
) |
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
VAGRANTFILE_API_VERSION = '2' | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
config.vm.box = 'bento/ubuntu-16.04' | |
config.vm.network :private_network, ip: '10.0.15.10' | |
config.vm.synced_folder 'vagrant/', '/tmp/redis-conf' | |
config.vm.network :forwarded_port, guest: 6379, host: 6379 | |
config.vm.provider :virtualbox do |vbox| | |
vbox.customize ['modifyvm', :id, '--memory', 1024] |
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
package main | |
import ( | |
"net/http" | |
"database/sql" | |
"fmt" | |
"log" | |
"os" | |
) |
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
Buen día, | |
De acuerdo con el analítico de partidas presupuestales del segundo trimestre del 2022, | |
se erogó un total de $64,714,570 en la partida 44101 de la unidad SUBSECRETARÍA DE CONCERTACIÓN del ente obligado. | |
Con fundamento en el artículo 3 LEY DE TRANSPARENCIA Y ACCESO A LA INFORMACIÓN PÚBLICA DEL ESTADO DE SONORA, | |
solicito la versión PÚBLICA de las facturas, recibos y/o cualquier otro DOCUMENTO que sustenten | |
la erogación de recursos públicos para la partida citada. | |
Entiendáse por DOCUMENTO aquello fundamentado por el Artículo 3 de la LEY DE TRANSPARENCIA Y ACCESO A LA INFORMACIÓN PÚBLICA |
OlderNewer