Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View herodrigues's full-sized avatar
🏠
Working from home

Herinson Rodrigues herodrigues

🏠
Working from home
  • Porto Nacional, Brazil
View GitHub Profile

Linux:

timedatectl set-local-rtc 1 --adjust-system-clock

Windows:

  • Navigate to the following key in the left pane of the registry editor:
@herodrigues
herodrigues / apps.csv
Created January 18, 2024 14:34
apps.csv
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
Name;Cloud;Server
CBECC_Com2019_LargeFile;Rackspace 520341;cf6r.com
ReportGenerator;Rackspace 520341;cf6r.com
ReportGeneratorCBECC2022_DEV;Rackspace 520341;cf6r.com
ReportGeneratorCom2019.2.0;Rackspace 520341;cf6r.com
ReportGeneratorCom2019.2.1_RV;Rackspace 520341;cf6r.com
ReportGeneratorCom2019_IES;Rackspace 520341;cf6r.com
ReportGeneratorCom2019_SVN;Rackspace 520341;cf6r.com
ReportGeneratorCom2019_SVN2;Rackspace 520341;cf6r.com
ReportGeneratorCom2022.3.0-RC;Rackspace 520341;cf6r.com
@herodrigues
herodrigues / oxygen_dark_theme.xml
Last active September 23, 2022 11:49
Dark Theme for Oxygen XML Editor
<?xml version="1.0" encoding="UTF-8"?>
<serialized version="22.1" xml:space="preserve">
<serializableOrderedMap>
<entry>
<String>annotation.highlight.color</String>
<String>71,89,76</String>
</entry>
<entry>
<String>author.background-color</String>
<String>21,26,37</String>
@herodrigues
herodrigues / rules.xml
Last active July 29, 2022 05:55
rules.xml
<?xml version="1.0"?>
<!-- edited with XML Spy v4.4 U (http://www.xmlspy.com) by Scott Lewis (Big Huge Games) -->
<!--==================================================-->
<!---->
<!--RULES.XML - Rise of Nations - Copyright (c) 2003 Big Huge Games Inc.-->
<!---->
<!--==================================================-->
<!---->
<!-- edited with XMLSPY v5 rel. 2 U (http://www.xmlspy.com) by XMLSPY 5 Professional Ed. Release 2 (Big Huge Games) -->
<!--NO LOCALIZATION-->
@herodrigues
herodrigues / README.md
Created October 26, 2020 20:03 — forked from fgeorges/README.md
Graph with expandable nodes, with D3

Note: A solution has been found, see below.

I am trying to create an SVG graph of nodes with D3, with "expandable nodes." That is, when one clicks on a node, its siblings are added to the graph (or more precisely: its siblings in the graph data are added to the graph visualization.)

The visualization uses a d3 force simulation (using D3 v5). When a node (an SVG circle) is clicked, the simulation is stopped (in case it was still running, to make sure there is no new node with no coordinates added in the middle of a run,) the corresponding nodes and links are added to the corresponding arrays,

@herodrigues
herodrigues / Installing BOCA Online Contest Administrator.md
Last active July 23, 2019 21:52
BOCA Online Contest Administrator installation tutorial

Installing BOCA Online Contest Administrator

Requirements

The system was tested with:

  • postgresql 9.4
  • apache 2.2
  • php 5.6

Note: The symbol $ means that you have to execute the commands in a terminal

@herodrigues
herodrigues / restore_refind_on_windows.md
Last active March 18, 2019 13:27 — forked from dragon788/longwindedname.md
Restore rEFInd as default boot manager from Windows after updates

After losing access to rEFInd yet again (Windows 10 Anniversary Edition), I was able to find the proper invocation of BCDEdit thanks to a helpful person on StackOverflow. None of the Microsoft documentation mentions this, but you NEED single quotes around {bootmgr} for sure if you are in the PowerShell shell, but possibly also if you are in the Command Prompt. This allowed me to add a new entry for rEFInd and I've had to do this multiple times so I know it works on Windows 10.

bcdedit /set {bootmgr} path \EFI\refind\refind_x64.efi 

becomes

bcdedit /set '{bootmgr}' path \EFI\refind\refind_x64.efi
@herodrigues
herodrigues / StarCraft II API installation with Eclipse.md
Last active November 12, 2017 19:57
StarCraft II API installation with Eclipse
  • Build SC2 API project
$ git clone --recursive https://github.com/Blizzard/s2client-api && cd s2client-api
$ mkdir build && cd build
$ cmake ../
$ make
  • Install the SC2 API libraries and headers to your system