Skip to content

Instantly share code, notes, and snippets.

View mcnemesis's full-sized avatar
💭
DNAP hackathons on days with good weather ;-)

Nemesis Fixx Da JWL mcnemesis

💭
DNAP hackathons on days with good weather ;-)
View GitHub Profile
@mcnemesis
mcnemesis / ImportADUsersIntoLync.ps1
Created December 21, 2015 10:40
How to automatically import all (or some) AD users into Lync
Get-ADUser -filter {name -like "*"} | Select SamAccountname | Foreach { $username=$_.SamAccountname; enable-csuser -identity REA\${username} -RegistrarPool YOUR.POOL.FQDN -SipAddressType EmailAddress }
http://www.advance-africa.com/
http://www.scholarshipforafricans.com/
http://scholarship-positions.com/
http://allscholarships.info/
http://www.scholars4dev.com/
------ OTHERS ------
1. Australia Award Scholarship : http://australiaawardsindo.or.id
@mcnemesis
mcnemesis / run_all_sql_scripts_in_dir.bat
Created August 5, 2016 06:20
Using Windows Batch Scripting, and the SQLCMD utility, this little script will run, recursively, all the MS SQL scripts under a given directory... with options for setting DB access parameters and more.
@ECHO OFF
ECHO ***********************
ECHO Remember Batch sCripts?
ECHO Good ol days... but, right now, we got work to do ;-)
ECHO ***********************
ECHO SCRIPT: run_all_sql_in_dir.bat
ECHO SYNTAX: run_all_sql_in_dir [DIR] [HOST] [SERVER] [DBNAME] [USER] [PASSWORD]
ECHO Purpose: should be obvious by now... checks the DIR, and using the connection params, executes all SQL scripts found in that dir, against the specified DB
ECHO Uses some convinient defaults... check the source-code of this script!
@mcnemesis
mcnemesis / macro_insert_image_based_on_cell_url.vba
Created August 11, 2016 12:55
Excel VBA Macro to insert image into a cell based on url in another cell
Sub InstallPictures()
Application.ScreenUpdating = False
Application.Calculation = xlCalculationManual
Dim url_column As Range
Dim image_column As Range
'column with url...
Set url_column = Worksheets(1).UsedRange.Columns("AE")
'column where image will be inserted
@mcnemesis
mcnemesis / flow-data-stream-ui-concept-1.markdown
Created November 14, 2017 12:04
FLOW (Data Stream UI - Concept#1)

FLOW (Data Stream UI - Concept#1)

A technique to create an infinitely scrolling background (evolves into the World's most loved technology, one bit at a time).

My name is AK1N NEMESIS FIXX, of the Nu Chwezi Hackers, and I am the creator of Flow. Ask me anything, or, welcome, let's hack for the advancement of mankind!

A Pen by Nemesis Fixx on CodePen.

License.

@mcnemesis
mcnemesis / index.html
Last active November 20, 2017 22:57
Ministry of ICT - Uganda Neddagala Ly'ayo
<section id="app">
<div class="container-fluid">
<div class="row">
<div class="container banner">
<h1 class="neon small">{{ title }}</h1>
</div>
</div>
<div class="row">
@mcnemesis
mcnemesis / index.pug
Created December 7, 2017 10:41
Only CSS: Truck a GO, GO!
p.nu-title Nu Chwezi KIDS
#truck
.body
.shadow
.cockpit
.front
.back
.left
.right
@mcnemesis
mcnemesis / index.html
Created December 14, 2017 18:04
NGOMA
<!-- msg template -->
<script type="text/template" id="msg_template">
<li class="content">
<p class="img" style='background-image: url("<%= img %>")'> </p>
<p class="msg"><%= msg %></p>
</li>
</script>
<!-- main html -->
<a href="https://github.com/uriuriuriu/beat.js" target="_blank"><h1 id="title">NuChwezi Chan</h1></a>