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
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 |
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
package main | |
import ( | |
"net/http" | |
"database/sql" | |
"fmt" | |
"log" | |
"os" | |
) |
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
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 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 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 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
$TYPE$ $NAME$ { get; } |
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
# bring up the vagrant box | |
vagrant up | |
=> [default] Importing base box 'lucid32'... | |
# ssh into the vagrant box | |
vagrant ssh | |
=> Linux lucid32 2.6.32-38-generic #83-Ubuntu SMP Wed Jan 4 11:13:04 UTC 2012 i686... | |
# take special note of the ip address of your host machine that ssh reports here | |
# in my case it is 10.0.2.2, a value that I will use later to allow connections |
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
var ffi = require('ffi'), | |
ref = require('ref'), | |
Struct = require('ref-struct'), | |
Library = require('./Library'), | |
Type = ref.Type, | |
NULL = ref.NULL, | |
isNull = ref.isNull; | |
var groups = ['libs', 'types', 'structs', 'callbacks', 'enums']; |
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
var express = require('express') | |
, app = express(); | |
app.get(/\/?(\w{2}-\w{2})?\/details/gi, function(req, res) { | |
res.send('Hola mundo from:', req.params[0]); | |
}); | |
var server = app.listen(3000, function () { | |
var host = server.address().address; |
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
var logs=document.getElementById('logs'); | |
function logIt(msg){ | |
var e=document.createElement('div'); | |
e.innerHTML=msg; | |
logs.insertBefore(e,logs.firstChild); | |
} |
NewerOlder