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
[user] | |
name = Sebastian Javier Marchano | |
email = <email> | |
[color] | |
branch = auto | |
diff = auto | |
status = auto | |
[color "branch"] | |
current = yellow reverse |
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
Verifying that +sebasjm is my blockchain ID. https://onename.com/sebasjm |
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
function log(){ | |
echo [status] $(date +%x-%X) $@ | |
} | |
log install | |
mvn clean install || exit 1 | |
log copy deps | |
mvn dependency:copy-dependencies || exit 1 | |
log ready | |
inotifywait $(find src/main/java -type f) -m -e close_write | while read file op; do |
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
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfnJlBmeUumnYBiqTqgfB4Mh8fsTUOWQyOg2GauuZMLWS+ZnP9z0aj1uDlgmRT0n79Bl0YIJep1iQzcyF+0GVhAhXptcYNIuKqLupkg0ysfeUqYACdPjZf+p8NTUofyBzhy/OJbfj7Wf12bq9FCE3IGAs2BIgkTtBWI0SdU17tI7w2ylCIAKrw+9JhmDGT4fi6VY20vYw5mOFh4ab7lADynEaOkAtzOqspOMFhkwYaAXUIa3UOwK88+wUXRR7evKZ7XY8orFMCXffvFhjy4rJ86Xs9ydamRSnTBTzWDN4vmftuNpaquWi6tvG9NyXPh883Kq8gXZERINZ7OVLLyt0v smarchano@donsatur |
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
echo ' | |
#include <iostream> | |
#include <string> | |
using namespace std; | |
int main() { | |
string x = "Hello"; | |
auto say_hi = [x] (string y) { return x + " lambda " + y; }; | |
cout << say_hi("world") << endl; |
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
<!-- GEO LOC --> | |
<script type="text/javascript" src="https://maps.google.com/maps/api/js?sensor=true"></script> | |
<input id="ubicacion" type="text" value="" /> <a href="javascript:confirmar_ubicacion()"> confirmar ubicación </a> | |
<script> | |
// new google.maps.Geocoder().geocode({'address':'buenos aires'},function(r,s){$('#personal-data-location-input').html(pepe(r[0].formatted_address));}) | |
function confirmar_ubicacion(){ | |
var geocoder = new google.maps.Geocoder(); | |
var ubicacion = $('#ubicacion').val(); | |
if (!ubicacion || ubicacion == "") console.log( "Something went wrong"); |
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 static void main(String args[]) throws IOException, ClassNotFoundException { | |
JarFile jarFile = new JarFile("/System/Library/Frameworks/JavaVM.framework/Versions/1.6/Classes/classes.jar"); | |
Enumeration allEntries = jarFile.entries(); | |
while (allEntries.hasMoreElements()) { | |
JarEntry entry = (JarEntry) allEntries.nextElement(); | |
String name = entry.getName(); | |
if (name.startsWith("java/lang") && !name.substring(10).contains("/") && !name.contains("$")) { | |
int value = JarDir.class.getClassLoader().loadClass(name.substring(0, name.length() - 6).replace("/", ".")).getModifiers(); | |
if (Modifier.isPublic(value)) { | |
System.out.print(name.substring(10,name.length()-6) + "|"); |
NewerOlder