#custompips
Explore tagged Tumblr posts
Text
custom FNAF waterpipe bong / rig
ig shopcrescentmoodss
#bongs#smoke shop#water pipes#weed#cannabis#pipes#smoke weed#420#girly bong#girls with bongs#custompipe#customwaterpipes#water pipe bong,beaker bongs,recycler dab rig,14mm bowl,bong bowls#glass rigs#dab rig#custom dab rig#fnaf#five nights at freddy's#fnaf bong
59 notes
·
View notes
Text
New Bent Self 'Galactic Weed Bandits' design with gold foil on glow in the dark glass pipe. Buy at the Bent Store 👽 https://www.bentself.com/product-page/galactic-weed-bandits-glass-pipe-glow-in-dark
bentself #galacticweedbandits #custompipe #merch #independentartist
0 notes
Text
DIN 2391 ST52 Pipes Exporters
Carbon Steel DIN 2391 Tubes that's extremely qualitative and useful to our clients. These ST35 Bruit 2391 Carbon Steel Seamless Pipes also has a number of excellent parcels to furnish like having quality product, elevate reliable, elevate efficacious and much more. ST35 DIN 2391 Carbon Steel Seamless Tubes can be carried at call leading price. Carbon Steel Welded Pipes is powerfully erected by means of quality authenticated raw material and the cut- edge technology. ST 35 Steel Grade Seamless Pipe is are used in those performance where parameters parallel as precision in size and a small wall viscidity along with a particular face condition as well as specific mechanical parcels are claimed.
Important characteristic of the DIN 2391 ST35 specified pipe is that they have been manufactured using precise dimensions. We can deliver these ideal ST 35 steel Pipes in a cold wave finished condition. Further, the supply the Carbon Steel DIN 2448 ST 35 Hydraulic Pipe are in a polished, or Annealed & Pickled condition or Bright & Annealed condition, depending on the must-haves of our customers. These Carbon Steel DIN 2391 ST35 Round Pipe could be manufactured from either electric steel or from basal oxygen steel. Although the melting as well as casting processes conducted on the raw material used to make the Bluster 2391 ST 35 Seamless Pipe is entirely on the discretion of the manufacturers. The steel for Bluster 2391 ST35 is normally cast as killed steel.
All Chhajed products are manufactured under strict process control and monitored throughout the production process. They go through several checks to ensure that the product delivered is of finest quality!
Specification Schedule of DIN 2391 ST35 Pipes
MaterialE235 (St. 35) / E355 (St. 52)Outside diameterEN 10305-1 (DIN 2391)Standard SpecificationDIN 2391 EN10305GradeST35Codes and Standards
+C (BK) No heat treatment after cold drawing, cold forming very restricted.
+N (NBK) (annealed) Suitable for cold forming
DimensionsASME/ ANSI B36.10 / 19Standard Size1/2" NB to 36" NB (LSAW, SSAW, HSAW)Wall Thickness3-12mmPipe schedulesSCH 5, SCH10, SCH 40, SCH 80, SCH 80S, SCH 160, SCH XXS, SCH XSProducing techniquesSeamless / ERW / Welded / Fabricated / CDW / EFWAvailable ShapesRound, Half Round, Square, Rectangular or Custom shapeLength3 to Max18 Meters or customPipe EndBeveled End, Plain End, TreadedTest CertificateEN 10204 3.1 B
0 notes
Photo
Getting ready to try something new! I’m low key nervous lol. #420accessories #420moms #420artist #prettysmokers #prettypipes #herbgrinder #customgrinder #cutegrinder #customstashjar #custompipes #glasspipes #weedmoms #medicalmarijuana #smokingaccessories #icecream #decoden #pastelaesthetic #cuteweedthings #cuteweed #pinkpipe #girlypipes #pastelaesthetic #girlswhosmoke #latenight #crafting #weedcrafts #ouid #legalizeit #dankdecora #cute420merch #cute420 https://www.instagram.com/p/CSqHqNAtA4G/?utm_medium=tumblr
#420accessories#420moms#420artist#prettysmokers#prettypipes#herbgrinder#customgrinder#cutegrinder#customstashjar#custompipes#glasspipes#weedmoms#medicalmarijuana#smokingaccessories#icecream#decoden#pastelaesthetic#cuteweedthings#cuteweed#pinkpipe#girlypipes#girlswhosmoke#latenight#crafting#weedcrafts#ouid#legalizeit#dankdecora#cute420merch#cute420
6 notes
·
View notes
Photo
YESSSS Head to Stonerholic.com to check out our sweet new stock and custom options! #Bespoke #LeatherJackets, #HandPainted #gear, #CBD that works, #GiftSets, and #CustomPipes #Bubblers and #Bongs We have it all. Here It's Always Happy Hour! https://www.instagram.com/p/B3kv4CkBOGf/?igshid=12li7cieqpdv2
1 note
·
View note
Text
How to Create Custom Pipe in Angular 13 Application
Pipe tutorial for Angular 12; In this tutorial, we'll learn about Angular's default and custom pipes. Angular comes with a plethora of built-in Pipes that can help you solve a variety of programming issues while designing a single-page web application. We'll also learn how to build custom Angular Pipe from the ground up. Let's get started without further hesitation:
Angular 13 Pipe Example
- Working with Angular Pipes - Angular Built-in Pipes - Creating Custom Pipe in Angular
Getting Started
Pipes are incredibly important when it comes to managing data within interpolation " | ", and we'll talk about them in Angular. Pipes were once known as filters in Angular, but they are now known as Pipes. The letter | can be used to alter data. The syntax for the same can be found below. {{ i will become uppercase one day | uppercase }} Dates, arrays, texts, and integers are all acceptable inputs for pipes. | is used to separate inputs. Before being shown in the browser, the inputs will be transformed into the desired format. We'll take a look at a few pipe-related instances. We're attempting to show the given text in uppercase in the given example. You'll be able to do that with the use of pipes, as demonstrated below — The convertText variable is defined in the app.component.ts file - app.component.ts import { Component } from '@angular/core'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: }) export class AppComponent { convertText: string = "I Am Being Managed By Pipes"; } The following code section can be found in the app.component.html file. app.component.html {{convertText | lowercase}}
{{convertText | uppercase}}
Angular Built-in Pipes
Angular Pipes allow you to rapidly recreate data in your Angular app. Angular has a built-in Pipes API that allows you to quickly change your data. You may also use it to make custom Pipes in your app. Let's take a look at some of the most helpful Angular Pipes. Built-in Angular Pipes - Async Pipe - Currency Pipe - Date Pipe - Slice Pipe - Decimal Pipe - Json Pipe - Percent Pipe - LowerCase Pipe - UpperCase Pipe
How to Use Built-in Pipes in Angular 13
Let's see how we may make advantage of the built-in Angular pipes. 1. Async Pipe When obtaining data in the form of observables, the Async pipe is regarded the best technique. The async pipe automatically subscribes to an Observable/Promise and returns the values delivered. {{ users.name }} 2. Currency Pipe The angled currency pipe allows you to convert numbers between different currencies. import { Component } from '@angular/core'; @Component({ selector: 'app-root', template: ` Currency Pipe {{ itemPrice | currency:'USD':true }}
{{ itemPrice | currency:'EUR':true}}
{{ itemPrice | currency:'INR' }} ` }) export class AppComponent { itemPrice: number = 5.50; } 3. Date Pipe In Angular, the date pipe is used to format the Date. import { Component } from '@angular/core'; @Component({ selector: 'app-root', template: ` Date Pipe {{ currentDate | date:'fullDate' }}
{{ numDateFormat | date:'medium' }}
{{ getYear | date:'yy' }}
{{ getTime | date:'Hm' }} ` }) export class AppComponent { currentDate = Date.now(); numDateFormat = 1478496544151; getYear = 'Tue Dec 12 2018 11:20:18 GMT+0530'; getTime = 'Wed Jan 20 2019 12:20:18 GMT+0530'; } 4. Slice Pipe In Angular, the Slice pipe API creates a subset list or string. {{ users }} 5. Decimal Pipe In Angular, the Decimal pipe is used to format decimal numbers. CommonModule in Angular has issues with the Decimal Pipe API. import { Component } from '@angular/core'; @Component({ selector: 'app-root', template: ` Decimal Pipe {{myNum1 | number}}
{{myNum2 | number}} ` }) export class AppComponent { myNum1: number = 7.4364646; myNum2: number = 0.9; } 6. Json Pipe The JSON pipe API allows an Angular app to expose an object as a JSON string. Behind the scenes, it complements the JSON.stringify function. {{ objectName | json }} 7. Percent Pipe In Angular, the Percent pipe API converts an integer to its percentage value. import { Component } from '@angular/core'; @Component({ selector: 'app-root', template: ` LowerCase & UpperCase Pipe A: {{numA | percent}} B: {{numB | percent:'4.3-5'}} ` }) export class AppComponent { numA: number = 0.349; numB: number = 2.4595; } 8. LowerCase & UpperCase Pipe In an Angular app, lowercase or uppercase pipes help format text to lower or upper case. import { Component } from '@angular/core'; @Component({ selector: 'app-root', template: ` LowerCase & UpperCase Pipe {{convertText | lowercase}}
{{convertText | uppercase}} ` }) export class AppComponent { convertText: string = "I Am Being Managed By Pipes"; }
How to Create Custom Pipe in Angular 13
Let's look at how we can make a custom pipe now. Run the following command in Angular CLI to construct a custom pipe to count words: ng g pipe wordcount After running the command in Angular CLI, this is how it will look. ng g pipe wordcount # CREATE src/app/wordcount.pipe.spec.ts (199 bytes) # CREATE src/app/wordcount.pipe.ts (207 bytes) # UPDATE src/app/app.module.ts (433 bytes) This command will automatically generate the files wordcount.pipe.ts and wordcount.pipe.spec.ts, as well as update the app.module.ts file. app.module.ts import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { AppComponent } from './app.component'; // Custom Pipe imported here by Angular CLI import { WordcountPipe } from './wordcount.pipe'; @NgModule({ declarations: , imports: , providers: , bootstrap: }) export class AppModule { } Now, utilizing the PIPE API service, let's construct a logic for word counting in a string in Angular. Use the code below to open the wordcount.pipe.ts file. import { Pipe, PipeTransform } from '@angular/core'; @Pipe({ name: 'wordcount' }) export class WordcountPipe implements PipeTransform { transform(value: any, args?: any): any { return value.trim().split(/s+/).length; } } app.component.ts import { Component } from '@angular/core'; // Usage of wordcount pipe within interpolation @Component({ selector: 'app-root', template: ` Word Counter Pipe in action below
{{ customText | wordcount }}
` }) export class AppComponent { customText: string = "Java is to JavaScript what car is to Carpet."; } I hope you will like the content and it will help you to learn How to Create Custom Pipe in Angular 13 Application If you like this content, do share. Read the full article
0 notes
Photo
Legendary Saxon pipe sack #madeinusa Repost from @bruceleephotog Saturday Night lights #saturday #saturdaynight #pipe #art #pipeart #custompipes #handmadepipes #pipesmoking #pipe #cigars #cigaraficionado #cigar #cigaroftheday #stogie #stogies #pipetabacco #likegrandpa #fire #fireplace #movienight #leather #knife #antique #vintage #wood #swedburgpipeco #legendarysaxon www.LegendarySaxon.com
#stogie#art#pipesmoking#wood#pipeart#cigaraficionado#antique#handmadepipes#fire#vintage#stogies#legendarysaxon#likegrandpa#fireplace#madeinusa#swedburgpipeco#custompipes#leather#movienight#knife#cigar#saturdaynight#cigars#cigaroftheday#saturday#pipetabacco#pipe
5 notes
·
View notes
Photo
This was a piece made custom (by me!) for a friend! So unfortunately it’s nfs, but stay tuned to look at more stuff I gave people and the stuff I will have up in my shop! Also, if you don’t follow me,,, g o d o t h a t p l s. - #sculpture #sculpy #glassforsale #weedporn #tobacco #custompipe #stoner #stonergirl #art #artist #design #clay #claysculpture #fox #bud #foxpipe #artistsoninstagram #elpasoartist https://www.instagram.com/p/BsqG3dEjT9o/?utm_source=ig_tumblr_share&igshid=1dmvemf3l7kfs
#sculpture#sculpy#glassforsale#weedporn#tobacco#custompipe#stoner#stonergirl#art#artist#design#clay#claysculpture#fox#bud#foxpipe#artistsoninstagram#elpasoartist
0 notes
Text
Check out these PURRRDY pipes‼ #redbeardvaper #pipe #pipes #custompipe #custompipes #glasspipes #glasspipe #glasspipesofig #glasspipeart #weedpipes #weedpipe #weedpipesmokers #stonerpipe #glassart #custompipe #weed #weedfeed #weedhead #weednews #weednation #420newsletter #420fam #stonersofinstagram #stoners
0 notes
Text
Custom Freddy Krueger waterpipe bong! dm on IG for your own : Shopcrescentmoodss
#bongs#smoke shop#water pipes#weed#cannabis#pipes#smoke weed#420#girly bong#girls with bongs#halloween bongs#halloween pipe#halloween#freddy krueger#freddy krueger bong#custom waterpipes#custompipe#horrorbong#horror lover#horror art
5 notes
·
View notes
Text
times I went to Naragansett Brewery en #2023 , "1 March 11th" "2 March 11th" "3 March 26th" "4 March 26th" "5 March 26th" "6 March 27th" "7 March 27th" "8 April 28th" "9 April 28th" "10 May 11th" #artisans #customrigs #custombowls #custompipes #providence #providenceri #pvd #naragansettbrewery #naragansettbreweryindiapoint #indiapoint #indiapointpark #indiapointparkprovidence #events #venues #lightwork #neighbourhoodwatch #snooping #rhodie #rhodeisland #rhodies #artistsofinstagram #rhodeislandartist #eastcoast #america #americana #eastprovidence #westshore #2020s #dabpens #junkartist
#artisans#customrigs#custombowls#custompipes#providence#providenceri#pvd#naragansettbrewery#naragansettbreweryindiapoint#indiapoint#indiapointpark#indiapointparkprovidence#events#venues#lightwork#neighbourhoodwatch#snooping#rhodie#rhodeisland#rhodies#artistsofinstagram#rhodeislandartist#eastcoast#america#americana#eastprovidence#westshore#2020s#dabpens#junkartist
1 note
·
View note
Video
instagram
Work in progress... -Silver Pipe- If I haven’t said it before, I love making objects. I’m certain this pipe will be a joy to display or to use with your favorite poison. Entirely hand fabricated, all parts were forged on the anvil from a 950 silver ingot. No casting No electric tools. Please DM to reserve. #custompipe #silverpipe #420community #silversmithing #hashpipe #420 https://www.instagram.com/p/B-x0KzshdJz/?igshid=o8o652y5atgr
0 notes
Photo
two of the four aces of the deck. The aces are dedicated to major championships. The ace of spades is an illustration of the PGA championship trophy, and the ace of diamonds is the Ryder Cup trophy, which at the beginning of the century was not a competition between the USA and Europe, but only British players representing the old continent competed. #cardcollector #customcards #cardist #custompips #carddeck #playingcards#playingcardcollection #playingcardart #playingcard #playingcardcollector #playingcarddesign #playingcarddecks #golfgif #golfitemsforsale #cardporn #cardistrylife #customplayingcards #golflegend #golfart #bobbyjones #benhogan #samsnead #golfcollector #trophy #pgachampionship #kickstarterproject #kickstarterpromotion #kickstarterbacker #kickstarterplayingcards #kickstartercampaign https://www.instagram.com/p/CPYetERNvUO/?utm_medium=tumblr
#cardcollector#customcards#cardist#custompips#carddeck#playingcards#playingcardcollection#playingcardart#playingcard#playingcardcollector#playingcarddesign#playingcarddecks#golfgif#golfitemsforsale#cardporn#cardistrylife#customplayingcards#golflegend#golfart#bobbyjones#benhogan#samsnead#golfcollector#trophy#pgachampionship#kickstarterproject#kickstarterpromotion#kickstarterbacker#kickstarterplayingcards#kickstartercampaign
0 notes
Photo
Hey, @hannibalburess, look it's you! Drinkin' a 40 in a death basket. ~ Get your fully custom pipe at Stonerholic.com! #hannibalburress #ericandreshow #adultswim #morpehus #drinkinga40 #deathbasket #orpheus #imastonerholic #CustomPipes #customart @ericfuckingandre @eric.andre.clips https://www.instagram.com/p/B481rkdhVF9/?igshid=k6xic5af6q38
#hannibalburress#ericandreshow#adultswim#morpehus#drinkinga40#deathbasket#orpheus#imastonerholic#custompipes#customart
0 notes
Photo
A custom-ordered All fume-design Sherlock pipe that I made recently as part of a set. (More pics coming soon). I love the look of a clean, full colored fume piece in the sunlight! Features a plated disk mouthpiece and bucket, all-fume marbles, reversals and beetle-green dots. Not for sale- owned. #portfoliopic #fumedglass #allfume #glasssherlock #sherlock #glass_of_ig #custompipe #silverandgoldfume (at Eugene, Oregon)
0 notes
Photo
(via Custom Pipes)
0 notes