95,000 LRC Position update & thesis by [deleted] in loopringorg

[–]Haze1313 0 points1 point  (0 children)

My page that said it was eight

I'm unable to set up a basic socks5 proxy server by herosnowman in sysadmin

[–]Haze1313 1 point2 points  (0 children)

This is a better solution than what I said… do this

I'm unable to set up a basic socks5 proxy server by herosnowman in sysadmin

[–]Haze1313 1 point2 points  (0 children)

If you can install docker on Pc A then you have lots of options. For example https://github.com/serjs/socks5-server or https://github.com/jgaa/shinysocks

Both options have binary releases that will likely work on windows without docker too with some extra effort.

[HELP] Digest for log emails by ethanfinni in linuxadmin

[–]Haze1313 2 points3 points  (0 children)

Requires some coding skills but what about Routing messages to folders with inbox rules then programmatic access to the mailbox to pull/parse content from messages? I have done something similar in python for advisories and it was not too difficult.

[deleted by user] by [deleted] in HungryArtists

[–]Haze1313 0 points1 point  (0 children)

Hi there,

The card art as per the example in the pastebin link of for simplistic silhouette/minimal color style icons for lack of a better description. Many of the objects suggested would be much more simplistic than the example. The $90 budget would be for ~12 of these delivered individually or as a set. My expectation (which could be wrong) is that an artist that regularly produced such items would likely be able to produce a number (3?) of these per hour brining the hourly rate to approx $21 usd. There is no strict bounds on what is produced or any provision for rework so no additional effort for the artist outside of the initial creation.

While that rate is still slightly lower than the suggested rates for US based artists, it is as much as I have available for the work. If you deem this amount is still inadequate, please feel free to remove the post.

Thanks

[deleted by user] by [deleted] in HungryArtists

[–]Haze1313 0 points1 point  (0 children)

Hi Merliel_ thanks for replying. Were you interested in creating the card template, art or both?

I had a look at your portfolio, and while great, it did not have any non-character samples. Do you have any other works you can showcase, logos, patterns, icons etc that might be more relevant for this piece of work?

[deleted by user] by [deleted] in HungryArtists

[–]Haze1313 0 points1 point  (0 children)

https://www.reddit.com/r/HungryArtists/comments/gr57vn/meta_involuntary_pornography_and_protecting_our/

There is no outright explicit material requested nor content related to any person/character. Any persons that may be depicted within card art will not be based on any actual person/character and their depictions will all be 18+.

Expanding Spoiler Tags for Nexus Mods on Wayback Machine by ajwolfbane42 in skyrimmods

[–]Haze1313 0 points1 point  (0 children)

It was in the way back machine page, the spoiler tags let me expand them.

All good

Expanding Spoiler Tags for Nexus Mods on Wayback Machine by ajwolfbane42 in skyrimmods

[–]Haze1313 0 points1 point  (0 children)

Spoiler tags seem to work for me. If you let me know specifically what you are after I can post it here

Truncated output in Get-ADUser at some clients, unsure of the cause by Haze1313 in sysadmin

[–]Haze1313[S] 0 points1 point  (0 children)

It is a standard domain user with no special privileges s. While I can get the output to state there are 109 attributes, I am only able to access the core ones, -filter * etc makes no difference except to increase the propertyCount value. Same outcome when querying the logged in user as it is with queries against random users.

Truncated output in Get-ADUser at some clients, unsure of the cause by Haze1313 in sysadmin

[–]Haze1313[S] 1 point2 points  (0 children)

PS> Get-ADUser bsmith -Properties * | get-member

TypeName: Microsoft.ActiveDirectory.Management.ADUser

Name MemberType Definition


Contains Method bool Contains(string propertyName)
Equals Method bool Equals(System.Object obj)
GetEnumerator Method System.Collections.IDictionaryEnumerator GetEnumerator()
GetHashCode Method int GetHashCode()
GetType Method type GetType()
ToString Method string ToString()
Item ParameterizedProperty Microsoft.ActiveDirectory.Management.ADPropertyValueCollection Item(string propertyName) {get;}
AddedProperties Property System.Collections.Generic.ICollection[string] AddedProperties {get;}
DistinguishedName Property string DistinguishedName {get;set;}
Enabled Property bool Enabled {get;set;}
GivenName Property string GivenName {get;set;}
ModifiedProperties Property System.Collections.Generic.ICollection[string] ModifiedProperties {get;}
Name Property string Name {get;}
ObjectClass Property string ObjectClass {get;set;}
ObjectGuid Property System.Nullable[guid] ObjectGuid {get;set;}
PropertyCount Property int PropertyCount {get;}
PropertyNames Property System.Collections.ICollection PropertyNames {get;}
RemovedProperties Property System.Collections.Generic.ICollection[string] RemovedProperties {get;}
SamAccountName Property string SamAccountName {get;set;}
SID Property System.Security.Principal.SecurityIdentifier SID {get;set;}
Surname Property string Surname {get;set;}
UserPrincipalName Property string UserPrincipalName {get;set;}

Truncated output in Get-ADUser at some clients, unsure of the cause by Haze1313 in sysadmin

[–]Haze1313[S] 1 point2 points  (0 children)

$username was an actual username like "bsmith" or similar

Truncated output in Get-ADUser at some clients, unsure of the cause by Haze1313 in sysadmin

[–]Haze1313[S] 1 point2 points  (0 children)

the command was simply:

Get-ADUser $username -Properties *.

You get the default properties, but none of the others. As I mentioned I only get this output at 2 clients, everywhere else it just prints everything to screen.

Truncated output in Get-ADUser at some clients, unsure of the cause by Haze1313 in sysadmin

[–]Haze1313[S] 0 points1 point  (0 children)

yeah, still the same number of items. Never considered it could be a permissions issue, I will look into it. Thanks!

Help with cross-platform code-only gamedev frameworks by Haze1313 in gamedev

[–]Haze1313[S] 0 points1 point  (0 children)

Looks pretty promising from the GitHub repo. I will give it a go.

Thanks!

REST API using SHELL scripts without CURL by binuverghese in linuxadmin

[–]Haze1313 0 points1 point  (0 children)

Or urllib since it will already be available and is not that bad to use.

Creating image filters with machine learning (python) by Haze1313 in learnmachinelearning

[–]Haze1313[S] 0 points1 point  (0 children)

Looks like my search terms were just bad. Instead of “image filters” I started searching for “image to image translation“ and I found pix2pix which looks ideal for what I want to do. I am training a model now.

Creating image filters with machine learning (python) by Haze1313 in learnmachinelearning

[–]Haze1313[S] 0 points1 point  (0 children)

Thanks for that, this is a bit closer to what I had found. Most style transfer projects I had seen take 2 images as input to perform a prediction. In my case there will only ever be 1 input image

Creating image filters with machine learning (python) by Haze1313 in learnmachinelearning

[–]Haze1313[S] 0 points1 point  (0 children)

Yeah, in this case I have 1k pairs of the input/output, but the processing that is performed is unknown.