Skip to content

Instantly share code, notes, and snippets.

@Salvodif
Salvodif / steam_19.06.log
Created June 19, 2024 13:51
Steam output 19 Jun
team.sh[5968]: Running Steam on endeavouros rolling 64-bit
steam.sh[5968]: STEAM_RUNTIME is enabled automatically
setup.sh[6041]: Steam runtime environment up-to-date!
steam.sh[5968]: Steam client's requirements are satisfied
[2024-06-19 15:47:46] Startup - updater built Jun 18 2024 22:39:03
[2024-06-19 15:47:46] Startup - Steam Client launched with: '/home/blackpraedicator/.local/share/Steam/ubuntu12_32/steam' '-srt-logger-opened'
06/19 15:47:46 minidumps folder is set to /tmp/dumps
06/19 15:47:46 Init: Installing breakpad exception handler for appid(steam)/version(1718751621)/tid(6092)
Looks like steam didn't shutdown cleanly, scheduling immediate update check
[2024-06-19 15:47:46] Loading cached metrics from disk (/home/blackpraedicator/.local/share/Steam/package/steam_client_metrics.bin)
@Salvodif
Salvodif / wemod.log
Created June 16, 2024 10:04
WeMod log
This file has been truncated, but you can view the full file.
WeModLog path was not given or invalid using path 'wemod.log'
If you don't want to generate a logfile use WEMOD_LOG='' or set the config to WeModLog=''
Adding script name to config
Adding script version to config
The script wemod-laucher is running on version 1.053
FreeSimpleGUI is missing
Dependencies missing
Trying to install Dependencies...
Externally managed environment detected.
Creating virtual environment...
chdir "/home/blackpraedicator/.local/share/Steam/steamapps/common/Bayonetta"
ERROR: ld.so: object '/home/blackpraedicator/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
ERROR: ld.so: object '/home/blackpraedicator/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
ERROR: ld.so: object '/home/blackpraedicator/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
ERROR: ld.so: object '/home/blackpraedicator/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
gamemodeauto:
ERROR: ld.so: object '/home/blackpraedicator/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
Adding process 12431 for gameID 460790
gamemodeauto
@Salvodif
Salvodif / README.txt
Last active August 29, 2015 14:03
Yammer API Example
To get the APP-ID-CODE you have to create a new Yammer APP likes you can see in this pic: https://onedrive.live.com/redir?resid=326B1FC9A1CE351F!15015&authkey=!AMmmiBkza5_idPM&v=3&ithint=photo%2c.png
Also is IMPORTANT allows javascript calls from the source origin.
To do this you have to specify the source origin on the app info: https://onedrive.live.com/redir?resid=326B1FC9A1CE351F!15016&authkey=!AJ62DteVIedu_q0&v=3&ithint=photo%2c.png
@Salvodif
Salvodif / gist:c2c70b4189499c1c3230
Last active August 29, 2015 14:03
Singleton with Deffered to use a cookie or get the info from an endpoint
ClientInfo = ( function ( ) {
// Instance stores a reference to the Singleton
var instance;
var obj = { };
function init ( currentUserRegion ) {
var publicMethods = {
getRegionalCurrency : function ( ) {
@Salvodif
Salvodif / Get raw data from file or sharepoint then create a new file on sp library
Last active August 29, 2015 14:02
Get raw data from file or sharepoint then create a new file on sp library
function succeeded ( filename ) {
var statusId = SP.UI.Status.addStatus ( filename, "The file has been copied.", true );
SP.UI.Status.setStatusPriColor ( statusId, 'green' );
setTimeout ( function ( ) { SP.UI.Status.removeStatus ( statusId ); }, 4000 );
}
function failed ( filename ) {
var statusId = SP.UI.Status.addStatus ( filename, "The file hasn't been copied.", true );
SP.UI.Status.setStatusPriColor ( statusId, 'red' );
setTimeout ( function ( ) { SP.UI.Status.removeStatus ( statusId ); }, 4000 );
@Salvodif
Salvodif / gist:a308a683f18155770483
Created June 11, 2014 15:42
How to get and save a file from a list to another list in another site by REST API
function getParam ( name ) {
if ( name = ( new RegExp ( '[?&]' + encodeURIComponent ( name ) + '=([^&]*)' ) ).exec ( location.search ) )
return decodeURIComponent ( name [ 1 ] );
return "";
}
function copySelectedProposal ( selectedProposal, dstParam, succeededCallback, failedCallback ) {
@Salvodif
Salvodif / underscore string sprintf example
Last active October 30, 2017 04:00
underscore string sprintf example
function copySelectedProposal ( selectedProposal, dstParam, succeededCallback, failedCallback ) {
if ( selectedProposal == null )
return;
var x = {
absUrl : _spPageContextInfo.siteAbsoluteUrl,
relUrl : _spPageContextInfo.webServerRelativeUrl,
dst : dstParam,
proposal : selectedProposal
@Salvodif
Salvodif / AzureAssetsConf
Last active August 29, 2015 14:01
Upload Assets to Azure's Blob Storage
<?xml version="1.0" encoding="utf-8" ?>
<AzureConf>
<Blob>
<CssContainer Name="styles">
<FileFormat Ext="css" ContentType="text/css" />
</CssContainer>
<JsContainer Name="scripts">
<FileFormat Ext="js" ContentType="application/javascript" />
</JsContainer>
<ImgContainer Name="images">
var value = filter.split ( ':' );
var messageHtml = value [ 1 ] + '<span style="float: right" id="close_button_span"></span>';
Clarks.CC.Status.DisplayNotifyMessage ( "Filtered by: ", messageHtml, Clarks.CC.Status.Priority.Information );
var close_button = document.createElement ( 'a' );
var linkText = document.createTextNode ( "clear" );
close_button.appendChild ( linkText );
close_button.name = 'status_close_button';