Skip to content

Instantly share code, notes, and snippets.

View tsabirgaliev's full-sized avatar

Tair Sabirgaliev tsabirgaliev

  • BTS Digital, LLP
  • Astana, Kazakhstan
View GitHub Profile
@thedroidgeek
thedroidgeek / nokia-router-cfg-tool.py
Last active July 12, 2024 20:49
Nokia/Alcatel-Lucent router backup configuration tool
#!/usr/bin/env python3
#
# Nokia/Alcatel-Lucent router backup configuration tool
#
# Features:
# - Unpack/repack .cfg files generated from the backup and restore functionnality
# in order to modify the full router configuration
# - Decrypt/encrypt the passwords/secret values present in the configuration
@xinthink
xinthink / gradle-dependencies-github.gradle
Created April 4, 2012 10:30
gradle dependencies resolving against GitHub download url
repositories {
add(new org.apache.ivy.plugins.resolver.URLResolver()) {
name = 'GitHub'
addArtifactPattern 'http://cloud.github.com/downloads/[organisation]/[module]/[module]-[revision].[ext]'
}
}
dependencies {
classpath '<githubId>:<artifact>:<revision>'
}