Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
The Do-It-Yourself (DIY) Factory of Modern Originals (FoMO) Presents
Yes, you can! Generate your own 32×32 pixel avatar images (off-blockchain) from text attributes (via built-in spritesheet); incl. 2x/4x/8x zoom for bigger sizes and more
Let's generate some super-rare never-before-seen nouns (pixel avatars).
Note: For best merging / composing (of the attributes) use the order 1) Body, 2) (Body) Accessory, 3) Head and 4) Glasses:
require 'nouns'
#####
# Noun No. 1
noun = Noun::Image.generate( 'Body Grayscale 1',
'Checker Bigwalk Rainbow',
'Head Beer',
'Glasses Square Fullblack' )
noun.save( "noun1.png")
noun.zoom(4).save( "noun1@4x.png" )
## let's add a background
noun = noun.background( '#638596' )
noun.save( "noun1b.png")
noun.zoom(4).save( "noun1b@4x.png" )
Voila!
In 4x:
###
# Noun No. 2
noun = Noun::Image.generate( 'Body Red',
'Txt LOL',
'Head Weed',
'Glasses Square Black RGB' )
noun.save( "noun2.png")
noun.zoom(4).save( "noun2@4x.png" )
###
# Noun No. 3
noun = Noun::Image.generate( 'Body Gold',
'Chain Logo',
'Head Ape',
'Glasses Square Teal' )
noun.save( "noun3.png")
noun.zoom(4).save( "noun3@4x.png" )
###
# Noun No. 4
noun = Noun::Image.generate( 'Body Green',
'Dollar Bling',
'Head Bear',
'Glasses Square Blue' )
noun.save( "noun4.png")
noun.zoom(4).save( "noun4@4x.png" )
###
# Noun No. 5
noun = Noun::Image.generate( 'Body Gradient Pride',
'Bling Love',
'Head Bubblegum',
'Glasses Square Yellow Saturated' )
noun.save( "noun5.png")
noun.zoom(4).save( "noun5@4x.png" )
Voila!
In 4x:
And so on.
Let's look-up some attributes:
body_gold = Noun::Sheet.find_by( name: 'Body Gold' )
txt_pi = Noun::Sheet.find_by( name: 'Txt Pi' )
head_weed = Noun::Sheet.find_by( name: 'Head Weed' )
glasses_square_black_rgb = Noun::Sheet.find_by( name: 'Glasses Square Black RGB' )
body_gold.save( "body_gold.png" )
txt_pi.save( "txt_pi.png" )
head_weed.save( "head_weed.png" )
glasses_square_black_rgb.save( "glasses_square_black_rgb.png" )
body_gold.zoom( 4 ).save( "body_gold@4x.png" )
txt_pi.zoom( 4 ).save( "txt_pi@4x.png" )
head_weed.zoom( 4 ).save( "head_weed@4x.png" )
glasses_square_black_rgb.zoom( 4 ).save( "glasses_square_black_rgb@4x.png" )
Voila!
In 4x:
And so on.
See the spritesheet.csv dataset for all attribute names (w/ categories).
(Source: nouns/spritesheet.png)
Post them on the D.I.Y. Punk (Pixel) Art reddit. Thanks.
FAQs
Unknown package
We found that nouns demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.