Skip to content

Instantly share code, notes, and snippets.

View jameshibbard's full-sized avatar

James Hibbard jameshibbard

View GitHub Profile
allsoftware.cloud
appshigha.com
autosoftware.pw
bebrasoft.com
free-crack-soft.com
hacksoftware.fun
softload.tech
softwarecloud.space
wh1tesoftware.me
free-warez.site
3m-us.com
abercrombie-fitch.shop
abercrombiefr.com
abussconto.com
academkstar.com
acclaim-usa.com
acdelco-store.com
agentprovocateurshop.com
aircraft-security.com
alexandersoldes.com
@jameshibbard
jameshibbard / skyrim-and-vortex-mod-manager-on-linux.md
Created September 17, 2022 14:22 — forked from attusan/skyrim-and-vortex-mod-manager-on-linux.md
Manage Skyrim SE/AE mods via Vortex Mod Manager in Linux

Manage Skyrim SE mods via Vortex Mod Manager in Linux

The below walkthrough is for those who are running Skyrim SE via Steam Proton, and want to be able to manage mods via Vortex Mod Manager in Linux. You should be able to apply the same walkthrough to Oldrim or Fallout 4 as well. Note that with this guide you'll get an older version of Vortex (1.1.15), but IMHO it is still a better choice than Mod Manager 2. Also, you'll start Skryim through Steam as usual, not through Vortex.

  1. If you have previously added mods through the Skyrim game menu, I recommend removing them all since all mods will be managed through Vortex. Mods => Load Order => Delete All. Also, consider taking a backup up your (vanilla) Skyrim game directory.
# archive vanilla game (update path to suit your needs)
cd /mnt/gameData/archive
cp -a /mnt/gameData/SteamLibrary/steamapps/common/Skyrim\ Special\ Edition/. skyrim-se
@jameshibbard
jameshibbard / esnextbin.md
Last active May 10, 2016 06:48
esnextbin sketch
@jameshibbard
jameshibbard / gist:8773e608cba8b1fb17b1
Last active December 10, 2016 09:43
Userscript to TitleCapitalize Headings in StackEdit
// ==UserScript==
// @name TitleCapitalize Headings in StackEdit
// @namespace http://hibbard.eu/
// @version 0.1
// @description Apply titlecapitalization to h2 and h3 headings in StackEdit.
// @description Inspired muchly by Bruno Skvorc: http://www.sitepoint.com/implementing-titlecapitalization-stackedit/
// @author James Hibbard
// @match https://stackedit.io/editor*
// @copyright 2015, hibbard.eu
// @require http://code.jquery.com/jquery-latest.js
@jameshibbard
jameshibbard / archive_trello.rb
Created May 5, 2015 19:07
Archive Trello cards from a specified list, which are older than a specified date
# Archive Trello Cards Programatically
#
# Get TRELLO_DEVELOPER_PUBLIC_KEY from:
# https://trello.com/1/appKey/generate
#
# Get TRELLO_MEMBER_TOKEN from:
# https://trello.com/1/authorize?key=TRELLO_DEVELOPER_PUBLIC_KEY&name=Arch&expiration=never&response_type=token&scope=read,write
# substituting TRELLO_DEVELOPER_PUBLIC_KEY for your actual key
#
# Get BOARD_ID (alphanumeric string, found in the board's URL):
@jameshibbard
jameshibbard / site.css
Created March 13, 2015 15:10
Basic styles for a Camel.js blog
body{background-color:#FFF;color:#303030;line-height:1.6;font-size:16pt;font-weight:300}
a{text-decoration:none;color:#0083ff}
time{color:#ababab}
.super{vertical-align:super;font-size:50%}
.content{text-align:left;max-width:775px;margin:0 auto 2em}
.content ul{padding-left:2.5em}
.content ol{padding-left:2.5em}
.container{margin-bottom:3em;margin-left:1em;margin-right:1em}
.content .header{text-align:center;border-bottom-style:solid;border-bottom-color:#e4e4e4;border-bottom-width:.3em}
.content .header .siteTitle{font-size:3.5em;font-weight:700;margin-top:-.25em}
@jameshibbard
jameshibbard / registrations_controller.rb
Created January 23, 2015 20:56
Overriding Devise's RegistrationsController allows us to add our own logic for handling updates
class RegistrationsController < Devise::RegistrationsController
def update
account_update_params = devise_parameter_sanitizer.sanitize(:account_update)
@user = User.find(current_user.id)
if needs_password?
successfully_updated = @user.update_with_password(account_update_params)
else
account_update_params.delete('password')
account_update_params.delete('password_confirmation')
@jameshibbard
jameshibbard / edit.html.erb
Created January 23, 2015 20:29
Adding nested attributes to Devise "Edit profile" view
<h2>Login Details</h2>
<%= form_for(resource, as: resource_name, url: registration_path(resource_name), html: { method: :put }) do |f| %>
<%= devise_error_messages! %>
<div class="field">
<%= f.label :email %><br />
<%= f.email_field :email, autofocus: true %>
</div>
@jameshibbard
jameshibbard / users_controller.rb
Last active August 29, 2015 14:13
Devise / cancancan tutorial: UsersController#update
def update
if user_params[:password].blank?
user_params.delete(:password)
user_params.delete(:password_confirmation)
end
successfully_updated = if needs_password?(@user, user_params)
@user.update(user_params)
else
@user.update_without_password(user_params)