Document Clusters Visualization

"}, {"title": "bm25", "text": "= query.getDirectedResult(a, b); Optional directedBToA = query.getDirectedResult(b, a); S1ChordAngle undirectedAB = query.getDistance(a, b); assertTrue(directedAToB.isPresent()); assertTrue(directedBToA.isPresent()); assertFalse(undirectedAB.isInfinity()); assertDoubleEquals(directedAToB.get().distance().degrees(), expectedAToB.degrees()); assertEquals(directedAToB.get().targetPoint(), aPoints.get(0)); assertDoubleEquals(directedBToA.get().distance().degrees(), expectedBToA.degrees()); assertEquals(directedBToA.get().targetPoint(), bPoints.get(0)); assertExactly(undirectedAB.degrees(), expectedAB.degrees()); } /** Test involving partially overlapping polygons. */ public void testOverlappingPolygons() { // The first polygon is a triangle. Its first two vertices are inside the quadrangle b (defined // below), and the last vertex is outside of b. S2ShapeIndex a = new S2ShapeIndex(); a.add(S2TextFormat.makeLaxPolygonOrDie(\"1:1, 1:2, 3.5:1.5\")); // The other polygon is a quadrangle. S2ShapeIndex b = new S2ShapeIndex(); b.add(S2TextFormat.makeLaxPolygonOrDie(\"0:0, 0:3, 3:3, 3:0\")); // The first query does not include the interiors. S2HausdorffDistanceQuery query1 = S2HausdorffDistanceQuery.builder().setIncludeInteriors(false).build(); Optional aToB1 = query1.getDirectedResult(a, b); // The second query has includeInteriors set to true. S2HausdorffDistanceQuery query2 = S2HausdorffDistanceQuery.builder().setIncludeInteriors(true).build(); Optional aToB2 = query2.getDirectedResult(a, b); // Error tolerance to account for the difference between the northern edge of the quadrangle, // which is a geodesic line, and the parallel lat=3 connecting the vertices of that edge. final double kEpsilon = 3.0e-3; // The directed Hausdorff distance from the first query is achieved on the vertex of the // triangle that is inside the quadrangle, and is approximately 1 degree away from the nearest // edge of the quadrangle. S2Point expectedTargetPoint1 = S2LatLng.fromDegrees(1, 2).toPoint(); // The directed Hausdorff distance from the second query is achieved on the last vertex of the // triangle that is outside the quadrangle, and is about 0.5 degrees away from the nearest edge // of the quadrangle. S2Point expectedTargetPoint2 = S2LatLng.fromDegrees(3.5, 1.5).toPoint(); assertTrue(aToB1.isPresent()); assertDoubleNear(aToB1.get().distance().degrees(), 1, kEpsilon); assertEquals(expectedTargetPoint1, aToB1.get().targetPoint()); assertTrue(aToB2.isPresent()); assertDoubleNear(aToB2.get().distance().degrees(), 0.5, kEpsilon);"}, {"title": "bm25", "text": "title: Calculations page_title: Calculations | RadPivotGrid for ASP.NET AJAX Documentation description: Calculations slug: pivotgrid/totals/calculations tags: calculations published: True position: 2 --- # Calculations ## RadPivotGrid can apply different calculations on your data. Instead of presenting the whole Total number you can show other information - for example, what percentage of the GrandTotal is the value in particular cell. Total Calculations are applied through the **TotalFormat** property collection exposed on their **PivotGridAggregateField** class. **TotalFormat** features the following properties: * **TotalFunction** \u2013 what type of calculation should be applied to the aggregate values * **GroupName** \u2013 if any, which group the calculations should be performed against. For example, the DifferenceFrom operation will calculate the difference between the current aggregate value and the aggregate value for the specified group * **Axis** \u2013 which axis the calculations should be carried out against. For instance, the DifferenceFrom operation requires a group to be specified but this group can be present both on the Rows and Columns axis. * **Level** \u2013sets which field to apply the calculation on - for example if you have three RowGroupFields, the first one will have level 0, second one - level 1 and the third one - level 2. ## Calculations There are several predefined calculations that you can use. To explain each of them we will use the RadPivotGrid below and we will apply the calculations on it to show how they will modify the view of RadPivotGrid: ![pivotgrid-totals-calculations 1](images/pivotgrid-totals-calculations_1.png) * **DifferenceFrom** - instead of showing Totals in the cells you can show how items"}, {"title": "bm25", "text": "ml D5W (5% dextrose) and infused over 1\u20132 minutes, max 2g per dose, given for pulseless torsades de pointes (a type of ventricular tachycardia) Arrhythmias PALS providers should be able to identify and treat different types of abnormal pediatric heart rhythms including bradyarrhythmias, tachyarrhythmias, and cardiac arrest rhythms (discussed above). In defining heart rates that are too slow or too fast, it is important to understand the ranges of pediatric heart rates by age. Normal ranges of pediatric heart rates change with age, with heart rates being faster closer to birth and slower closer to adulthood. Bradyarrythmias Bradycardia is defined as a slow heart rate for a child's age. Bradycardia associated with signs of shock (altered mental status, hypotension, etc.) can be an early warning sign for cardiac arrest. Signs of bradycardia include fatigue, confusion, dizziness, and lightheadedness. Possible causes of bradycardia include hypoxia, hypothermia, and certain medications. Types of bradyarrhythmias sinus bradycardia: normal rhythm, slow rate atrioventricular block first degree: prolonged PR interval (> 0.20 seconds) second degree mobitz type I (wenckebach): progressive lengthening of PR interval then dropped beat (p wave with no QRS) mobitz type II: equal PR intervals with intermittent dropped beats (p wave with no QRS) third degree: complete dissociation between p wave and QRS complex, atria and ventricles are beating independent of one another Management Providers should follow the AHA's Pediatric Bradycardia With a Pulse Algorithm. As always, provides need to support airway, breathing, and circulation and begin CPR if needed. Bradyarrythmias with signs of shock can be treated with"}, {"title": "bm25", "text": "plane, in degrees clockwise from north. Dip direction is indicated by the \"right hand rule\". dip : array The dip of the plane, in degrees downward from horizontal. \"\"\" return geographic2pole(*xyz2stereonet(x, y, z)) def angular_distance(first, second, bidirectional=True): \"\"\" Calculate the angular distance between two linear features or elementwise angular distance between two sets of linear features. (Note: a linear feature in this context is a point on a stereonet represented by a single latitude and longitude.) Parameters ---------- first : (lon, lat) 2xN array-like or sequence of two numbers The longitudes and latitudes of the first measurements in radians. second : (lon, lat) 2xN array-like or sequence of two numbers The longitudes and latitudes of the second measurements in radians. bidirectional : boolean If True, only \"inner\" angles will be returned. In other words, all angles returned by this function will be in the range [0, pi/2] (0 to 90 in degrees). Otherwise, ``first`` and ``second`` will be treated as vectors going from the origin outwards instead of bidirectional infinite lines. Therefore, with ``bidirectional=False``, angles returned by this function will be in the range [0, pi] (zero to 180 degrees). Returns ------- dist : array The elementwise angular distance between each pair of measurements in (lon1, lat1) and (lon2, lat2). Examples -------- Calculate the angle between two lines specified as a plunge/bearing >>> angle = angular_distance(line(30, 270), line(40, 90)) >>> np.degrees(angle) array([ 70.]) Let's do the same, but change the \"bidirectional\" argument: >>> first, second = line(30, 270), line(40, 90) >>> angle = angular_distance(first, second, bidirectional=False)"}, {"title": "bm25", "text": "''' ## License The code here is Licensed under The MIT License (MIT) . Please review the LICENSE.md file or (here)[https://github.com/DexterInd/Raspbian_For_Robots/blob/master/LICENSE.md] for more information Copyright (C) 2016 Dexter Industries ''' from __future__ import print_function from __future__ import division from builtins import input # angle(channel, degrees) will set a servo position to roughly the degrees you specify. However # each servo is different, so if it's calibrated for one servo, it won't be the same for others. # # angle_microseconds(channel, us) will set servo's pulse width in microseconds. Setting this to 0 # will disable the servo (let it float). 1500 is about center, and the range will depend on the servo. # Typically about 750 to 2250 is safe. If you set it to a number outside of the servo range, the servo # will try to fight it's mechanical stops, leaing to hot or burned out servos and increased battery load. # If this is acting differently between different PivotPi boards, try adjusting the calibation frequency # when you initialize the controller (i.e. when you call \"pivotpi = PivotPi.servo(0x40, 60)\"). # # led(channel, percent) will set the LED brightness in percent (0-100). Using a floating point # percent value will increase the precision if necessary (e.g. 21.2 or 0.075). The PWM scale is 12-bit + 1 # so the 0-100 percent range is divided into 4096 values (about 0.025% per value). # Initialise the PivotPi servo controller with the right address (0x40 if both switches are low), and the frequency # that it's actually running"}, {"title": "bm25", "text": "transformer (TI) is provided with an auxiliary winding (W3) for biasing the pair of amplifiers (AMPA, AMPB). A DC bias voltage (VB) is supplied to a tap (XT) on the auxiliary winding (W3) whose ends are DC coupled to the input transistors (QA, QB) of the pair of amplifiers (AMPA, AMPB). Abstract: A high-power, high-fidelity tube amplifier which includes a plurality of output tubes connected in parallel with individual current sinks and a plurality of parasitic suppression components. Each current sink is electrically coupled to its corresponding output tube such that the output impedance of the current sink decreases as the grid current of the corresponding output tube increases. Abstract: A phase inverter includes first, second, third and fourth terminals, a first coupling circuit coupled between the first and second terminals, a second coupling circuit coupled between the second and third terminals, a third coupling circuit coupled between the third and fourth terminals, and a fourth coupling circuit coupled between the first and fourth terminals. The first to fourth terminals and the first to fourth coupling circuits are arranged into a ring. The first coupling circuit is of a type different from a type of the fourth coupling circuit. The second and third coupling circuits are identical in type. Two output signals having a phase difference of 180.degree. are drawn from the second and fourth terminal when an input terminal is applied to the first terminal, and an output signal is drawn from the first terminal when two input signals having a phase difference of 180.degree."}, {"title": "bm25", "text": "Since the first publication in 1916, there have been four additional revised editions of the Stanford\u2013Binet Intelligence Scales, the first of which was developed by Lewis Terman. Over twenty years later, Maud Merrill was accepted into Stanford's education program shortly before Terman became the head of the psychology department. She completed both her master's degree and Ph.D. under Terman and quickly became a colleague of his as they started the revisions of the second edition together. There were 3,200 examinees, aged one and a half to eighteen years, ranging in different geographic regions as well as socioeconomic levels in attempts to comprise a broader normative sample (Roid & Barram, 2004). This edition incorporated more objectified scoring methods, while placing less emphasis on recall memory and including a greater range of nonverbal abilities (Roid & Barram, 2004) compared to the 1916 edition. When Terman died in 1956, the revisions for the third edition were well underway, and Merrill was able to publish the final revision in 1960 (Roid & Barram, 2004). The use of deviation IQ made its first appearance in third edition, however the use of the mental age scale and ratio IQ were not eliminated. Terman and Merrill attempted to calculate IQs with a uniform standard deviation while still maintaining the use of the mental age scale by including a formula in the manual to convert the ratio IQs with means varying between age ranges and nonuniform standard deviations to IQs with a mean of 100 and a uniform standard deviation of 16. However, it"}, {"title": "bm25", "text": "a second azimuthal direction substantially different from the first azimuthal direction; and sequentially actuate the steering pads of a third one of the RSS modules to operatively urge the third one of the RSS modules in a third azimuthal direction substantially different from the second azimuthal direction. The second azimuthal direction may be substantially opposite the first azimuthal direction, and the third azimuthal direction may be substantially similar to the first azimuthal direction. The first and third azimuthal directions may each be angularly offset from the second azimuthal direction by an amount ranging between about 175 degrees and about 185 degrees. The method may further comprise operating the controller to control the valves of the RSS modules to, simultaneously: actuate the steering pads of the first one of the RSS modules to operatively centralize the first one of the RSS modules within the wellbore; actuate the steering pads of the second one of the RSS modules to operatively centralize the second one of the RSS modules within the wellbore; and sequentially actuate the steering pads of the third one of the RSS modules to operatively urge the third one of the RSS modules in an azimuthal direction away from a longitudinal axis of the first and second ones of the RSS modules. The method may further comprise, prior to conveying at least a portion of the apparatus within the wellbore, coupling the RSS modules in series between the drill string and the drill bit. The method may further comprise, prior to conveying at least a portion"}, {"title": "bm25", "text": "digital valve, and the third valve may be a third digital valve. The RSS may comprise a controller operable to control the first, second, and third valves. The controller may be operable to control the first, second, and third valves to, simultaneously: sequentially actuate the first steering members to operatively urge the first section in a first azimuthal direction; sequentially actuate the second steering members to operatively urge the second section in a second azimuthal direction substantially different from the first azimuthal direction; and sequentially actuate the third steering members to operatively urge the third section in a third azimuthal direction substantially different from the second azimuthal direction. The second azimuthal direction may be substantially opposite the first azimuthal direction, and the third azimuthal direction may be substantially similar to the first azimuthal direction. The first and third azimuthal directions may each be angularly offset from the second azimuthal direction by an amount ranging between about 175 degrees and about 185 degrees. The controller may be further operable to control the first, second, and third valves to, simultaneously: actuate the first steering members to operatively centralize the first section within the wellbore; actuate the second steering members to operatively centralize the second section within the wellbore; and sequentially actuate the third steering members to operatively urge the third section away from a longitudinal axis of the first and second sections. The RSS may comprise: a first flexible component flexibly coupling the first and second sections; and a second flexible component flexibly coupling the second and third"}, {"title": "bm25", "text": "degrees rotated about the z-axis from the neuroscience/NIFTI coordinate system. To transform between DICOM and NIFTI, you just have to negate the x- and y-coordinates. The DICOM attribute (0020,0037) \"Image Orientation (Patient)\" gives the orientation of the x- and y-axes of the image data in terms of 2 3-vectors. The first vector is a unit vector along the x-axis, and the second is along the y-axis. If the (0020,0037) attribute is extracted into the value (xa,xb,xc,ya,yb,yc), then the first two columns of the R matrix would be [ -xa -ya ] [ -xb -yb ] [ xc yc ] The negations are because DICOM's x- and y-axes are reversed relative to NIFTI's. The third column of the R matrix gives the direction of displacement (relative to the subject) along the slice-wise direction. This orientation is not encoded in the DICOM standard in a simple way; DICOM is mostly concerned with 2D images. The third column of R will be either the cross-product of the first 2 columns or its negative. It is possible to infer the sign of the 3rd column by examining the coordinates in DICOM attribute (0020,0032) \"Image Position (Patient)\" for successive slices. However, this method occasionally fails for reasons that I (RW Cox) do not understand. -----------------------------------------------------------------------------*/ /* [qs]form_code value: */ /* x,y,z coordinate system refers to: */ /*-----------------------*/ /*---------------------------------------*/ /*! \\defgroup NIFTI1_XFORM_CODES \\brief nifti1 xform codes to describe the \"standard\" coordinate system @{ */ /*! Arbitrary coordinates (Method 1). */ #define NIFTI_XFORM_UNKNOWN 0 /*! Scanner-based anatomical coordinates */ #define NIFTI_XFORM_SCANNER_ANAT 1 /*!"}, {"title": "bm25", "text": "the projected Super Djinn would have adopted the newer Turbomeca Palouste IV engine alongside other changes for greater power and endurance than the original production model. Rotorcraft using tip jets Cold tip jets The compressed air in cold tip jets generally exited at quite high temperatures due to compression-heating effects, but they are referred to as \"cold\" jets to differentiate them from jets that burn fuel to heat the air for greater thrust; similar to the difference between the \"cold\" and \"hot\" exhausts on the Harrier \"jump jet\", which uses \"cold\" air heated to several hundred degrees by compression inside the low-pressure compressor of the Pegasus engine.) Avimech Dragonfly DF-1 - American hydrogen peroxide powered helicopter Dornier Do 32 - German ultra-light tip-jet helicopter, first flown on 29 June 1962: 4 built. Dornier Do 132 - German tip-jet helicopter project, cancelled in 1969. Fiat 7002 - Italian tip-jet helicopter, first flew in 1961, only one built. Percival P.74 - used second compressors to blend turbine exhaust with more air for efflux at wingtips. Engines never produced sufficient power and so it never flew. Further progress with the design using more powerful engines was cancelled. Sud-Ouest Ariel - French tip-jet powered helicopter, first flown in 1947; three prototypes built. Sud-Ouest Djinn - French tip-jet powered helicopter, first flown in 1953; 178 built. VFW-Fokker H3 - German tip-jet compound helicopter; two built and flown. Hot tip jets Doblhoff WNF 342 - German WWII helicopter with tip-jet rotor propulsion. Fairey Ultra-light Helicopter - First flew in 1955. Four built"}, {"title": "bm25", "text": "? null : left.compareTo(right) >= 0); assertExecute(generateExpression(\"%s <= %s\", left, right), BOOLEAN, left == null || right == null ? null : left.compareTo(right) <= 0); assertExecute(generateExpression(\"%s || %s\", left, right), VARCHAR, left == null || right == null ? null : left + right); assertExecute(generateExpression(\"%s is distinct from %s\", left, right), BOOLEAN, !Objects.equals(left, right)); assertExecute(generateExpression(\"nullif(%s, %s)\", left, right), varcharType(left), nullIf(left, right)); } } Futures.allAsList(futures).get(); } private static VarcharType varcharType(String... values) { return varcharType(Arrays.asList(values)); } private static VarcharType varcharType(List values) { if (values.stream().anyMatch(Objects::isNull)) { return VARCHAR; } return createVarcharType(values.stream().mapToInt(String::length).max().getAsInt()); } private static Object nullIf(Object left, Object right) { if (left == null) { return null; } if (right == null) { return left; } if (left.equals(right)) { return null; } if ((left instanceof Double || right instanceof Double) && ((Number) left).doubleValue() == ((Number) right).doubleValue()) { return null; } return left; } @Test public void testTernaryOperatorsLongLong() throws Exception { for (Integer first : intLefts) { for (Integer second : intLefts) { for (Integer third : intRights) { assertExecute(generateExpression(\"%s between %s and %s\", first, second, third), BOOLEAN, first == null || second == null || third == null ? null : second <= first && first <= third); } } } Futures.allAsList(futures).get(); } @Test public void testTernaryOperatorsLongDouble() throws Exception { for (Integer first : intLefts) { for (Double second : doubleLefts) { for (Integer third : intRights) { assertExecute(generateExpression(\"%s between %s and %s\", first, second, third), BOOLEAN, first == null || second == null || third == null ? null : second <= first && first <= third); }"}, {"title": "bm25", "text": "The angulation of lower third molars is compared in two groups of radiographs of children aged 10.1--13.0 years, one group showing lower second deciduous molars present, the other showing mesial migration of lower first permanent molars and impaction of second premolars following early extraction of lower second deciduous molars. The lower third molar crypts are significantly less tilted in the group where deciduous molars had been removed, the difference between the means of the two groups being 12.5 degrees (p less than 0.001). The findings are discussed in relation to the hypothesis that early mesial migration improves the orientation of third molar crypts by enabling them to develop further forward. There is some evidence that the mean angle of tilt may be reduced by about 20 degrees when mesial migration occurs before third molar crypts begin to form."}, {"title": "bm25", "text": "Despondence () is one of the Major sins in Islam. Disappointment and its derivatives are repeated six times in the Quran. In some sources it is written that there is a difference between disappointment and despair () and that despondency is tougher than despair. Difference between disappointment and despair Disappointment literally means hopelessness of good. Some philologists have said that there is a difference between disappointment and despair and have written that despondency is tougher than despair. In a Hadith of Ali al-Ridha is came that the despair is the second major sin and the Disappointment is the third major sin and they are different. In the some sources in the difference between these two words are came despair is the internal feel in the person's heart. When this inner sense increases to a degree whereby its effect becomes manifest outwardly and seem obvious to the others, it is named Disappointment. Disappointment in Quran Disappointment and its derivatives came six times in Quran. For example, when the angels gave the good news to Abraham about birth of his child in his old age, asked him not despondent. In another verse, Allah says: \"O creatures of God, those of you who have acted against your own interests should not be disheartened of the mercy of God. Surely God forgives all sins. He is all-forgiving and all-merciful.\" Another verses about this word are the 36th verse of Ar-Rum, 49th of Fussilat, and 28th verse of Ash-Shura. References Islamic terminology Sin"}, {"title": "bm25", "text": "In linguistics, mutual intelligibility is a relationship between languages or dialects in which speakers of different but related varieties can readily understand each other without prior familiarity or special effort. It is used as an important criterion for distinguishing languages from dialects, although sociolinguistic factors are often also used. Intelligibility between languages can be asymmetric, with speakers of one understanding more of the other than speakers of the other understanding the first. When it is relatively symmetric, it is characterized as \"mutual\". It exists in differing degrees among many related or geographically proximate languages of the world, often in the context of a dialect continuum. Intelligibility Factors An individual's achievement of moderate proficiency or understanding in a language (called L2) other than their first language (L1) typically requires considerable time and effort through study and practical application if the two languages are not very closely related. Advanced speakers of a second language typically aim for intelligibility, especially in situations where they work in their second language and the necessity of being understood is high. However, many groups of languages are partly mutually intelligible, i.e. most speakers of one language find it relatively easy to achieve some degree of understanding in the related language(s). Often the two languages are genetically related, and they are likely to be similar to each other in grammar, vocabulary, pronunciation, or other features. Intelligibility among languages can vary between individuals or groups within a language population according to their knowledge of various registers and vocabulary in their own language, their exposure to"}, {"title": "bm25", "text": "flown. The insert motor was considered the fourth stage and was incorporated into the satellite payload in the same manner as the Martlet 4. One of the most notable differences between the Martlet 4 and the GLO-1B was the elimination of the Attitude Control Module between the second and third stages. A dedicated Attitude Control Module was eliminated by modifying the flight profile of the GLO-1B vehicle. The Martlet 4 vehicle used the Attitude Control Module to insure the pitch and yaw of the vehicle was within set parameters prior to the ignition of the second and third stages. With the GLO-1B this was simplified by modifying the mission sequence which made it necessary to provide attitude control for the third stage only. The first stage of the GLO-1B was unguided and, in the same manner as the Martlet 4, relied on both spin stabilization and the fixed geometry of the barrel to insure a predictable flight path prior to first stage ignition. The Martlet 4 flight profile specified a delay between the first stage burnout and second stage ignition during which the Attitude Control Module was activated to insure the vehicles orientation was correct prior to the second stage burn. The GLO-1B eliminated this delay and the need to re-orient the vehicle by igniting the second stage immediately after first stage burn out and separation, which allowed the second stage to share the first stage's orientation. A simplified attitude control system was incorporated into the satellite payload and was used to correct the vehicle's attitude"}, {"title": "bm25", "text": "& Andy, under the maenad's spell, recall nothing of the incident - Tara is the only non-supernatural present with any recollection of the events (she was hidden and thus did not fall under the maenad's spell). Bill and Eric burn the house, and Eric glamours Tara so that she will not be able to remember what happened at the sex party. See also Characters of The Southern Vampire Mysteries Characters of True Blood True Blood Television adaptation Living Dead in Dallas has been adapted by HBO into a television series called True Blood. Its storyline forms the basis of True Blood's second season. Its first episode aired on June 14, 2009. Although the main characters and story lines are the same, there are a number of differences between the book and the series: In the series, Jason joins the Fellowship of the Sun, forming a major story arc that is very different from his minor role in the novel. In the book, Jason stays in Bon Temps, dating a girl called Liz Barrett. Lafayette Reynolds is not killed, but rather Miss Jeanette (a character exclusive to the series) is found murdered. Instead, Eric takes Lafayette prisoner for dealing V and to question about Eddie's disappearance. Lafayette is held in the basement of Fangtasia. In the series, Eric's maker is Godric, to whom Eric maintains a deep bond of loyalty and devotion. Godric, while still like Godfrey (see above) a self-tortured renouncer who wishes to meet the sun, is not portrayed as an evil child killer but"}, {"title": "bm25", "text": "one of the span classes, of the form `mdc-layout-grid__cell--span-{columns}`, where `{columns}` is an integer between 1 and 12. If the chosen span size is larger than the available number of columns at the current screen size, the cell behaves as if its chosen span size were equal to the available number of columns at that screen size. That is, it takes up the entirety of its row, and no more than that. If the span classes are not set, `mdc-layout-grid__cell` will fallback to a default span size of 4 columns. You can make it a different number by changing the default value. However, this number needs to be provided at compile time by using sass variable `$mdc-layout-grid-default-column-span`. #### Column spans for specific screen sizes It's possible to tweak the behavior of cells further by defining different column spans for specific screen sizes. These override the default at that size. You can do that with the `mdc-layout-grid__cell--span-{columns}-{screen_size}` classes, where `{columns}` is an integer between 1 and 12 and `{screen_size}` is one of `desktop`, `tablet` or `phone`. ```html
``` In the example above, the first cell has a default span of 6, the second 4, and the third 2. However, at tablet sizes, the first cell becomes 8 columns wide instead, and the second 6 columns wide. At phone sizes, the third cell becomes 4 columns wide. ### Max width MDC layout grids take up the parent element space by"}, {"title": "bm25", "text": ".name(\"Compute scores\"); } /** * This is the first of three operations implementing a self-join to generate * the full neighbor pairing for each vertex. The number of neighbor pairs * is (n choose 2) which is quadratic in the vertex degree. *

* The third operation, {@link GenerateGroupPairs}, processes groups of size * {@link #groupSize} and emits {@code O(groupSize * deg(vertex))} pairs. *

* This input to the third operation is still quadratic in the vertex degree. * Two prior operations, {@link GenerateGroupSpans} and {@link GenerateGroups}, * each emit datasets linear in the vertex degree, with a forced rebalance * in between. {@link GenerateGroupSpans} first annotates each edge with the * number of groups and {@link GenerateGroups} emits each edge into each group. * * @param ID type */ @ForwardedFields(\"0->1; 1->2\") private static class GenerateGroupSpans implements GroupReduceFunction>, Tuple4> { private final int groupSize; private IntValue groupSpansValue = new IntValue(); private Tuple4 output = new Tuple4<>(groupSpansValue, null, null, new IntValue()); public GenerateGroupSpans(int groupSize) { this.groupSize = groupSize; } @Override public void reduce(Iterable>> values, Collector> out) throws Exception { int groupCount = 0; int groupSpans = 1; groupSpansValue.setValue(groupSpans); for (Edge> edge : values) { long degree = edge.f2.f1.getValue(); if (degree > Integer.MAX_VALUE) { throw new RuntimeException(\"Degree overflows IntValue\"); } // group span, u, v, d(v) output.f1 = edge.f0; output.f2 = edge.f1; output.f3.setValue((int)degree); out.collect(output); if (++groupCount == groupSize) { groupCount = 0; groupSpansValue.setValue(++groupSpans); } } } } /** *"}, {"title": "bm25", "text": "title: Side Effect --- > int a = 0; a = a++; So, what the value of **a** ? ### What's the Side Effect Accessing a volatile object, modifying an object, modifying a file, or calling a function that does any of thoseoperations are all side effects, which are changes in the state of the execution environment. \u2014\u2014\u2014\u2014 \u300aISO/IEC 9899:201x\u300b \u4e3b\u8981\u7684\u70b9\u5728\u4e8e\u90a3\u4e2a changes\u3002\u5047\u8bbe\u4f60\u6709\u4e00\u6761\u8868\u8fbe\u5f0f int num = 0; \uff0c\u90a3\u4e48\u58f0\u660e\u53d8\u91cf num \u5c31\u662f\u4e00\u4e2a side effect\uff0c\u7136\u540e\u5c06 num \u8d4b\u503c 0 \u4e5f\u662f\u4e00\u4e2a side effect\uff0c\u56e0\u4e3a\u8fd9\u4e9b\u90fd\u662f\u7a0b\u5e8f\u6267\u884c\u73af\u5883\u58f0\u660e\u7684\u53d8\u5316\uff08\u6ca1\u627e\u5230\u66f4\u597d\u7684\u8868\u8ff0\uff09\uff0c\u5728\u8fd9\u6761\u8bed\u53e5\u6267\u884c\u5b8c\u540e\uff0c\u6211\u4eec\u90fd\u77e5\u9053 num \u7684\u503c\u4e3a 0 \u4e86\u3002\u90a3\u4e48\u8fd9\u91cc\u8fd8\u6709\u53e6\u5916\u4e00\u4e2a\u6982\u5ff5\uff1a Sequence Point\u3002 ### What's the Sequence Point The following are the sequence points described in 5.1.2.3: * Between the evaluations of the function designator and actual arguments in a function call and the actual call. (6.5.2.2). * Between the evaluations of the first and second operands of the following operators: logical AND && (6.5.13); logical OR || (6.5.14); comma , (6.5.17). * Between the evaluations of the first operand of the conditional ? : operator and whichever of the second and third operands is evaluated (6.5.15). * The end of a full declarator: declarators (6.7.6); * Between the evaluation of a full expression and the next full expression to be evaluated. The following are full expressions: an initializer that is not part of a compound literal (7.7.9); the expression in an expression statement (6.8.3); the controlling expression of a selection statement (if or switch) (6.8.4); the controlling expression of a while or do statement (6.8.5); each of the (optional) expressions of a for statement (6.8.5.3); the (optional) expression in a return statement (6.8.6.4). * Immediately"}, {"title": "bm25", "text": "Maternal iodine deficiency can compromise the thyroid status of the mother, fetus and newborn child. Therefore, it is important to assess the iodine excretion level of groups of pregnant women. In this study we aimed to determine iodine intake in pregnancy using a recently reported automated kinetic method for urinary iodine determination. Urinary iodine measurements of 123 pregnant women (18 first, 28 second and 77 third trimester) were carried out using a new automated kinetic assay based on the Sandell-Kolthoff reaction at 37 degrees C and its kinetic measurement at 340 nm in a random-access automated analyzer after ammonium persulfate digestion at 95 degrees C in a water bath with +/-0.1 degree C precision. Statistical analyses were carried out using SPSS software. Whole group, first trimester, second trimester and third trimester urinary iodine concentrations (mean+/-SD) in pregnant women were 1.13+/-0.81, 1.08+/-0.71, 0.86+/-0.58 and 1.27+/-0.87 micromol/L, respectively. The urinary iodine concentration significantly increased with gestational age (p<0.05). We found that our study group was mildly iodine-deficient according to WHO criteria. Furthermore, the pregnant women were found to be mildly iodine-deficient in the first and third trimesters and moderately so in the second trimester. The only statistical difference was between second and third trimester values (p<0.05). Even though the increased iodine deficiency in the second trimester is not useful for early detection of iodine deficiency in pregnancy, the severity of this deficiency in the second trimester may lead to important effects on thyroid metabolism for both mother and fetus. Our study suggests that the iodine excretion of pregnant"}, {"title": "bm25", "text": "/** * Gets the shortest angle between `angle1` and `angle2`. * * Both angles must be in the range -180 to 180, which is the same clamped * range that `sprite.angle` uses, so you can pass in two sprite angles to * this method and get the shortest angle back between the two of them. * * The angle returned will be in the same range. If the returned angle is * greater than 0 then it's a counter-clockwise rotation, if < 0 then it's * a clockwise rotation. * * @function Phaser.Math.Angle.ShortestBetween * @since 3.0.0 * * @param {number} angle1 - The first angle in the range -180 to 180. * @param {number} angle2 - The second angle in the range -180 to 180. * * @return {number} The shortest angle, in degrees. If greater than zero it's a counter-clockwise rotation. */ var ShortestBetween = function (angle1, angle2) { var difference = angle2 - angle1; if (difference === 0) { return 0; } var times = Math.floor((difference - (-180)) / 360); return difference - (times * 360); }; module.exports = ShortestBetween;"}, {"title": "bm25", "text": "API solves X! Let's talk about the history of the problem, how the API solves it, and next steps for you to use this new API. I've seen (and given) so many programming talks that jump directly into the technical details \u2013 bypassing the context of _why_ what the audience is about to hear is important. There isn't just one way to structure a talk, but it's important that I structure it somehow. Jumping directly to details is a really easy way to lose my audience before I've even gotten to the third slide. I generally structure my talks in this format: - A story relevant to my message. - The agenda, usually three points. - Those three points. - Conclusion, which ties back to the story at the beginning. Sometimes I have only two points, and sometimes four (if one is small). The points are essentially the answer to \"what the audience needs to hear\" from the focus step. Even talks about programming need structure. ## Design So, design. This is the part that people usually skip directly to, but design is useless without a profile, focus, and structure. Actually, no \u2013 design can be _worse than useless_ without sufficient forethought. Designing slides first can actually _harm_ the ability to convey a message, by distracting the audience. Just like there's a difference between what I want to say and what the audience needs to hear, there is a difference between the slides I want to make and the slides that will actually help my talk."}, {"title": "bm25", "text": "Body weights of 396 first and 205 second lactation cows in the first, second, third, and fourth generations of the dairy cattle crossbreeding project at the Illinois Agricultural Experiment Station were studied. Body weights were taken regularly on each animal during the first 9 mo of each lactation with the first weight being taken 3 to 4 days after parturition and subsequent weights at intervals of 30 days thereafter. Among least-squares means there was a decrease in body weight during the first 1 or 2 mo of lactation and a steady increase thereafter in all breed groups for both first and second lactations. There were differences between cows as well as between months for all breed groups in each generation for both lactations. Sums of squares for months were partitioned into linear, quadratic, and cubic components. A third degree polynomial was fitted for each breed group within each generation and separately for each lactation showing the changes in body weights."}, {"title": "bm25", "text": "Q: Relationship between pressure and temperature https://youtu.be/JzuamK0AyC4 According to this clip\u2019s experiment, if the temperature of the third bottle increases, which raises the pressure, the water from the second bottle will then rise and could flow to the third bottle if the temperature is high enough. Can anyone explain to me why that is? A: Its more about creating vacuum than temperature difference. The same can be done using vacuum pipe. Let us number the bottles first in the order they are arranged from left to right as 1, 2 and 3. In the beginning , the pressure at both the ends of the tube connecting $1^{st}$ and $2^{nd}$ became equal and that's why the height of the liquid was stable. $P_{o} + (density \\; of \\; liquid)gh = P_{air}+ (density \\; of \\; liquid)gh$ In the clip it is shown that when the burning candle is kept inside the $3^{rd}$ bottle , the oxygen of the third bottle is being used up and after sometime in the third bottle there is no air or it is vaccum (although there may be some sort of nitrogen gas I think , correct me if I am wrong here). Now due to this vacuum or lesser air, the air from the $2^{nd}$ bottle goes to the third bottle and due to this, the amount of air in the second bottle is reduced. Now due to this reduction there is a reduction in the pressure acting on the fluid from the air i.e. $P_{air} $ in the above equation"}, {"title": "bm25", "text": "President following the creation of the EU was Jacques Delors, who briefly continued his previous EEC tenure before handing over to Jacques Santer in 1994. The first pillar was the only one established according to then-innovative principles of supranationalism. The pillar structure of the EU allowed the areas of European co-operation to be increased without leaders handing a large amount of power to supranational institutions. The pillar system segregated the EU. What were formerly the competencies of the EEC fell within the European Communities pillar. Justice and Home Affairs was introduced as a new pillar while European Political Cooperation became the second pillar (the Common Foreign and Security Policy). The Communities institutions became the institutions of the EU but the roles of the institutions between the pillars are different. The commission, Parliament and Court of Justice are largely cut out of activities in the second and third pillars, with the Council dominating proceedings. This is reflected in the names of the institutions, the council is formally the \"Council of the European Union\" while the commission is formally the \"Commission of the European Communities\". This allowed the new areas to be based on intergovernmentalism (unanimous agreement between governments) rather than majority voting and independent institutions according to supranational democracy. However, after the Treaty of Maastricht, Parliament gained a much bigger role. Maastricht brought in the codecision procedure, which gave it equal legislative power with the Council on Community matters. Hence, with the greater powers of the supranational institutions and the operation of Qualified Majority Voting in the"}, {"title": "bm25", "text": "showBoolDiff :: Bool -> Text -> Text showBoolDiff True what = mconcat [\"column is \", what, \" in database, even though it shouldn't be\"] showBoolDiff False what = mconcat [\"column is not \", what, \" in database, even though it should be\"] -- | Get a description of the table by the given name currently in the database. describeTable :: MonadSelda m => TableName -> m TableInfo describeTable tbl = withBackend (liftIO . flip getTableInfo tbl) -- | Check the given table for consistency with the current database, returning -- a description of all inconsistencies found. -- The table schema itself is not validated beforehand. diffTable :: MonadSelda m => Table a -> m TableDiff diffTable tbl = do dbInfos <- describeTable (tableName tbl) return $ diffColumns (tableInfo tbl) dbInfos -- | Compute the difference between the two given tables. -- The first table is considered to be the schema, and the second the database. diffTables :: Table a -> Table b -> TableDiff diffTables schema db = diffColumns (tableInfo schema) (tableInfo db) -- | Compute the difference between the columns of two tables. -- The first table is considered to be the schema, and the second the database. diffColumns :: TableInfo -> TableInfo -> TableDiff diffColumns inschema indb = case ( zipWith diffColumn infos dbInfos , map colName infos \\\\ map colName dbInfos , map colName dbInfos \\\\ map colName infos , tableUniqueGroups inschema \\\\ tableUniqueGroups indb , tableUniqueGroups indb \\\\ tableUniqueGroups inschema , tablePrimaryKey inschema \\\\ tablePrimaryKey indb , tablePrimaryKey indb \\\\ tablePrimaryKey inschema)"}, {"title": "bm25", "text": "The Third Division Football Tournament for the 2007 season in the Maldives started on November 12, 2011. Maabaidhoo Sports Club went on to win the tournament without losing a single game. Stadiums The Football Association of Maldives decides to play the matches of this year's tournament in two different stadiums; FAM No: 1 Turf ground and Henveiru Stadium. Tournament format The 26 teams are divided into 6 groups in the first round. The team which tops the each group will be qualified to the second round. The 6 teams qualified to the second round again will be divided into 2 groups of 3 teams in each group. The winner of each group will play in the final of the tournament. Final External links Match day news (Dhivehi) at Haveeru Online Club Campo to second round (Dhivehi) at Haveeru Online Maabaidhoo top the group by beating Muiveyo (Dhivehi) at Haveeru Online Eydhafushi knocked out by Maabaidhoo in the first round (Dhivehi) at Haveeru Online Thimarafushi the first team to advance to second round (Dhivehi) at Haveeru Online Kimbidhoo to second round (Dhivehi) at Haveeru Online 8 Degree to second round (Dhivehi) at Haveeru Online KudaHenveiru chances narrowed to advance to second round (Dhivehi) at Haveeru Online Male' FC & Gaamagu wins last match (Dhivehi) at Haveeru Online References Maldivian Third Division Football Tournament seasons 3"}, {"title": "bm25", "text": "word can consist of only a single vowel. An example is the verb stem /i-/, which means 'say.' Some of the longest roots are five or six syllables, like /mamantakarman/, which means 'land crab.' Yimas has predictable rules with regard to syllabification. In the middle of a word, if a consonant is between two vowels, the syllable boundary precedes the consonant: (V.CV). If two consonants are between two vowels, the syllable boundary falls between the consonants: (VC1.C2V). However, if C1 is a stop and C2 is /r/, the syllable boundary precedes C1: (V.C1C2V). Whenever three consonants are between two vowels, the syllable boundary comes after the first consonant: (VC1.C2C3V). Stress In Yimas, the primary accent lies in general on the first syllable of a word. In words with more than three syllables, the third syllable carries secondary stress. Below are some examples (where \u00b4 represents primary stress, and ` represents secondary stress): If the first syllable contains an epenthetic vowel but the second does not, then the second syllable is stressed. When the first as well as the second syllable contain epenthetic vowels, then the stress lies on the first syllable. Below are more examples, including words with stress on epenthetic vowels: The genitive suffix -na, which is used on personal pronouns, takes primary stress: ama-na-kn 'mine'. Stress is never the distinguishing factor between two words; i.e., two words cannot differ in meaning if they only differ in which syllable carries stress (as opposed to English, which distinguishes between the noun 'd\u00e9sert' and the verb 'des\u00e9rt')."}, {"title": "bm25", "text": "along with AV disassociation. What is the diagnosis? What is the diagnosis of the fatal rhythm in this ECG with erratic waves of variable morphology? Which of the following is false regarding this ECG? What is the most common cause of the ECG in this picture that has a delayed AV node conduction? In this ECG we note a prolonged PR interval prior to the block and that there is a P wave without a QRS complex. What is the diagnosis? What is the arrow pointing to in this ECG? What type of AV block is seen in this ECG? What's the different between Mobitz type I second degree AV block and Mobitz type II? What kind of AV block is seen in this ECG? What is the ECG criteria seen in a third degree AV block? What is the most common cause of a first degree AV block and a Mobitz type I second degree AV block? What is the most common cause of a third degree AV block and a Mobitz type II second degree AV block? What kind of AV block is pictured in this ECG? Is this a right or a left bundle branch block? No P waves (no fibrillation/ flutter waves), normal QRS appearance seen in the ECG is consistent with which arrhythmia? Which electrolyte abnormality could be the casue of this abnormal ECG? Which AV block is associated with this ECG where there are more conducted P waves than non conducted P waves? Which arrhythmias are associatedw ith hypokalemia? What"}, {"title": "bm25", "text": "to compensate for this difference due to the delayed burn in the first LOI maneuver; the additional required delta-V for the second LOI was 34 m/s when the delayed burn interval increased to 10 min. Based on this analysis, the tolerance in the delayed burn interval can be investigated for the KPLO program, and a contingency plan can be prepared for a potential delayed burn for the first LOI maneuver. ## ACKNOWLEDGMENTS This work is supported by the Korea Aerospace Research Institute (KARI) under a contract with the Ministry of Science and ICT (MSIT) through the \u201cDevelopment of Pathfinder Lunar Orbiter and Key Technologies for the Second Stage Lunar Exploration\u201d project (No. SR17026). ## Figure Geometry of the nominal and delayed LOI maneuver burns. Captured lunar orbit after LOI maneuvers (green line: first captured lunar orbit, white line: second captured lunar orbit, purple line: third captured lunar orbit). Timing of the two numerical simulation cases compared to the nominal case. Captured lunar orbit with a delayed LOI burn (green line: nominal first captured lunar orbit, white line: premature first captured lunar orbit, yellow line: delayed first captured lunar orbit). Difference in the semimajor axis between the desired and delayed lunar orbits. Difference in the eccentricity between the desired and delayed lunar orbits. Difference in the inclination between the desired and delayed lunar orbits. Difference in the RAAN between the desired and delayed lunar orbits. Difference in the AOP between the desired and delayed lunar orbits. Difference in the orbit period between the desired and delayed lunar"}, {"title": "bm25", "text": "of second and third year courses from the bachelor's degree) in order for the student to attain the requirements equivalent to a student who studied towards an undergraduate degree. Singapore The graduate diploma is an academic or vocational qualification; as an academic qualification it is often taken after a bachelor's degree although sometimes only a foundation degree is required. It is usually awarded by a university or a graduate school and usually takes two terms of study to complete. It is also possible for academic graduate diploma holders to progress to a master's degree on an accelerated pathway compared to first embarking on a 3- or 4-year degree program. To ensure that the graduate diploma qualification is recognised, the awarding body must be registered with the Singapore Ministry of Education, like SUSS, NUS, JCU, SIPMM, etc. The graduate diploma is generally a professional conversion qualification to reskill a graduate with new specialised skills, for instance the GDipPsy - Graduate Diploma in Psychology is aimed at offering specialised skills in psychology. See also postgraduate diploma. The graduate diploma is offered at different levels by different institutions. The National University of Singapore requires study at master's level, but the graduate diplomas at the Singapore University of Social Sciences are UK (i.e. bachelor's-level) graduate diplomas awarded by the University of London and similarly the Ngee Ann - Adelaide Education Centre offers Australian graduate diplomas (i.e. Australian honours degree level) awarded by the University of Adelaide. The Graduate Diploma of Singapore Raffles Music College is a post-foundation degree qualification rather"}, {"title": "bm25", "text": "@param Normal1 Second normalized vector. * @param ParallelCosineThreshold Normals are parallel if absolute value of dot product (cosine of angle between them) is greater than or equal to this. For example: cos(1.0 degrees). * @return true if vectors are nearly parallel, false otherwise. */ static bool Parallel(const FVector& Normal1, const FVector& Normal2, float ParallelCosineThreshold = THRESH_NORMALS_ARE_PARALLEL); /** * See if two normal vectors are coincident (nearly parallel and point in the same direction). * * @param Normal1 First normalized vector. * @param Normal2 Second normalized vector. * @param ParallelCosineThreshold Normals are coincident if dot product (cosine of angle between them) is greater than or equal to this. For example: cos(1.0 degrees). * @return true if vectors are coincident (nearly parallel and point in the same direction), false otherwise. */ static bool Coincident(const FVector& Normal1, const FVector& Normal2, float ParallelCosineThreshold = THRESH_NORMALS_ARE_PARALLEL); /** * See if two normal vectors are nearly orthogonal (perpendicular), meaning the angle between them is close to 90 degrees. * * @param Normal1 First normalized vector. * @param Normal2 Second normalized vector. * @param OrthogonalCosineThreshold Normals are orthogonal if absolute value of dot product (cosine of angle between them) is less than or equal to this. For example: cos(89.0 degrees). * @return true if vectors are orthogonal (perpendicular), false otherwise. */ static bool Orthogonal(const FVector& Normal1, const FVector& Normal2, float OrthogonalCosineThreshold = THRESH_NORMALS_ARE_ORTHOGONAL); /** * See if two planes are coplanar. They are coplanar if the normals are nearly parallel and the planes include the same set of points. * * @param Base1"}, {"title": "bm25", "text": "occasional drops sets. This has been my most effective and efficient means to achieve gains and build mass. When it comes to sets, I typically perform 2 working sets and an additional 1 to 2 warm-up sets. If I have truly gone to failure during the first and second sets, the third set is usually much weaker and tends to have an unintended impact of reducing my motivation. So that third set usually doesn't happen for me! Remember, the key here is to get stronger over 8 to 10 reps, not to have the endurance to run high repetitions for 3, 4, or even 5 sets! If you can max out on a rep range of 8 to 10 reps for more than 5 sets, you are not reaching failure in those first few sets and/or you could be resting for too long between sets. Increase your weight, lower your rep count, and watch the clock. Try to rest somewhere between 45 seconds and 1 minute and 15 seconds between sets, no longer. Feeling \"the burn\" in your muscles over the duration of a long set will not necessarily cause efficient muscle growth. Attempting to max-out every rep within a set or lifting insanely heavy weights to the point your whole body is shaking and the capillaries in your eyes begin to burst will not help much either. What WILL help: understanding that muscle growth is stimulated from resistance exercises and a combination of mechanical tension and fatigue induced metabolic stress and to some degree, muscle"}, {"title": "bm25", "text": "Q: What are the differences between burning a DVD when offered either MP4 480p and DVD ISO? I'm using an iMac and once I've completed the burn onto a DVD, I would like to make it as easy as possible for people to view the DVD with most computers. I am given a choice of downloading my images and music with either MP4 480p and DVD ISO. What are the differences?Also, is there a difference in quality between the two? A: You want DVD ISO. A \"proper\" DVD uses MPEG2 - so MP4 will not be playable on \"DVD only\" players, where a DVD ISO will. I don't believe you can make a call as to which will provide better performance. MP4 will typically make much smaller files (or better quality video) for the same file size, although 480p is not a very big standard. That said, if you don't have that much content you can proabably get similar quality images out of each format, ie if you have way less then 1 disks worth of information at ISO DVD quality and you increase the bit rate (if its an option), you can land up with just as high a quality output - the only disadvantage will be working with larger files and thus longer disk burn times. I'm only about 90% sure, but there probably won't be any difference in audio quality - although to some degree it depends on how the audio is encoded. I Believe both MP4 and DVD can use AAC audio,"}, {"title": "bm25", "text": "first outside perimeter 170 and the second outside perimeter 188 are the same as the disk 60 illustrated in FIGS. 4-7. The third hollow projection 230 interlocks with the cavity 226 of an adjacent disk in only one orientation. For example, the third hollow projection 230 is oriented with its apexes 222 offset from the apexes 184 of the first segment 168 and the apexes 198 of the second segment 186 by, for example, approximately thirty degrees. When the third hollow projection 230 of the disk 160 interlocks with a cavity 226 of an adjacent disk 160, the adjacent disk 160 is offset by the same degree of offset between the apexes 222 of the third hollow projection 230 and the apexes 184 of the first segment 168. Thus, the offset of the apexes 222 of the third hollow projection 230 compared to the apexes 184 of the first segment 168 determines the degree of offset between the apexes 184 of adjacent disks. When the apexes 222 of the third hollow projection 230 are rotated by thirty degrees as compared to the apexes 184 of the first segment 168, the disk 160 will interlock or nest with an adjacent disk 160 such that the apexes 184 of adjacent disks are offset by thirty degrees. Other embodiments can have different offsets, for example, approximately forty-five degrees. The disk 160 is used in a roller assembly configuration where adjacent disks are offset from each other, for example as described in FIGS. 8-12 and roller assembly 38. With reference"}], "hoverinfo": "text"}, {"x": [0.010879111476242542, -0.14906008541584015, -0.13286910951137543, -0.12870760262012482, -0.11893602460622787, -0.15446722507476807, -0.15756037831306458, -0.13475193083286285, -0.12767232954502106, -0.12767232954502106, -0.14693811535835266, -0.10041327029466629, -0.12983286380767822, -0.12221267819404602, -0.13097824156284332, -0.15562668442726135, -0.13837885856628418, -0.11290407180786133, -0.12940235435962677, -0.13778555393218994, -0.07432270050048828, -0.12442808598279953, -0.14095351099967957, -0.13173018395900726, -0.081231027841568, -0.0878291204571724, -0.04985980689525604, -0.1626283824443817, -0.11373978108167648, -0.0912604108452797, -0.12058054655790329, -0.13788525760173798, -0.10795718431472778, -0.10795718431472778, -0.11501480638980865, -0.08430926501750946, -0.11008297652006149, -0.11543500423431396, -0.09376104921102524, -0.15418127179145813, -0.1272410899400711, -0.09919045865535736, -0.05263315513730049, -0.08465472608804703, -0.10586488991975784, -0.13937470316886902, -0.054392315447330475, -0.06641176342964172, -0.07794176042079926, -0.08084660023450851, -0.09740554541349411, -0.07506798952817917, -0.11997545510530472, -0.13315622508525848, -0.10105030238628387, -0.03315000981092453, -0.12142666429281235, -0.09576732665300369, -0.0754612386226654, -0.14906008541584015, -0.13286849856376648, -0.13751226663589478, -0.15446722507476807, -0.15756037831306458, -0.10479548573493958, -0.15562668442726135, -0.1626283824443817, -0.13867700099945068, -0.13173018395900726, -0.14665335416793823, -0.1049828752875328, -0.0968925952911377, -0.10795718431472778, -0.1076381504535675, -0.07337314635515213, -0.08755911886692047, -0.11373978108167648, -0.08014003932476044, -0.10881996899843216, -0.05381185561418533, -0.08389230817556381, -0.13937470316886902, -0.11785072088241577, -0.11815769970417023, -0.04296714812517166, -0.05092694237828255, -0.12464623153209686, -0.06413180381059647, -0.04016900062561035, -0.08351758867502213, -0.08596059679985046, -0.11997545510530472, -0.12058054655790329, -0.07022657245397568, -0.07042405009269714, -0.1540672332048416, -0.04016900062561035, -0.12376090884208679, -0.10041327029466629, -0.11008297652006149, -0.13751226663589478, -0.005714971572160721, -0.14866189658641815, -0.012403045780956745, -0.14906008541584015, -0.05381185561418533, -0.056711580604314804, 0.007190491538494825, -0.09402546286582947], "y": [0.0431172251701355, 0.027314353734254837, 0.02703494392335415, -0.005277138669043779, 0.014589323662221432, 0.0031014573760330677, 0.008130519650876522, 0.002206467092037201, 0.002005248097702861, 0.002005248097702861, -0.004206970799714327, 0.009670866653323174, 0.005601522512733936, 0.04360207915306091, 0.0005966814351268113, -0.00173456990160048, -0.006196815520524979, 0.0010054524755105376, -0.03247040882706642, 0.005297801923006773, 0.00016236756346188486, 0.002570084063336253, -0.013597730547189713, 0.006051608826965094, -0.012510438449680805, -0.022608453407883644, 0.020309142768383026, -0.0008046836010180414, -0.005694779567420483, -0.047013722360134125, 0.012308482080698013, 0.0034420567099004984, -0.00727886613458395, -0.00727886613458395, 0.002612929092720151, -0.008668150752782822, 3.0855691875331104e-05, -0.014005721546709538, -0.0038750695530325174, -0.007265281863510609, -0.01526959240436554, -0.011077499948441982, -0.007105194963514805, -0.018130220472812653, -0.027665751054883003, -0.017391515895724297, 0.00289839506149292, 0.013476492837071419, 0.007674467749893665, -0.01748092845082283, 0.000427190272603184, -0.028842158615589142, -0.0018771610921248794, -0.006732047535479069, -0.02115461975336075, 0.022239213809370995, 0.0025952858850359917, -0.0025445385836064816, -0.0170641727745533, 0.027314357459545135, 0.027034372091293335, 0.014816056936979294, 0.0031014573760330677, 0.008130519650876522, -0.008105089887976646, -0.00173456990160048, -0.0008046836010180414, 0.014851601794362068, 0.006051608826965094, 0.011468213051557541, -0.011465296149253845, -0.031409554183483124, -0.00727886613458395, -0.012993103824555874, -0.02188139408826828, 0.0001469152484787628, -0.005694779567420483, -0.038554027676582336, -0.0024667331017553806, 0.011835386976599693, -0.012396246194839478, -0.017391515895724297, 0.00011874554911628366, 0.004365507047623396, -0.007667080499231815, 0.02329610474407673, -0.012500408105552197, -0.018916189670562744, 0.006523528601974249, -0.037685826420784, -0.016201363876461983, -0.0018771610921248794, 0.012308482080698013, -0.017988042905926704, -0.0030181503389030695, 0.018932918086647987, 0.006523528601974249, 0.01265881396830082, 0.009670866653323174, 3.0855691875331104e-05, 0.014816056936979294, -0.0029459837824106216, 0.003928810823708773, 0.0364396832883358, 0.027314357459545135, 0.011835386976599693, 0.01364817749708891, 0.026425892487168312, -0.03063354827463627], "mode": "markers", "name": "Cluster 4", "marker": {"size": 8, "color": "rgb(128,177,211)"}, "text": ["Document 6", "Document 7", "Document 8", "Document 9", "Document 33", "Document 36", "Document 41", "Document 47", "Document 56", "Document 57", "Document 59", "Document 61", "Document 62", "Document 63", "Document 75", "Document 81", "Document 95", "Document 98", "Document 110", "Document 111", "Document 116", "Document 122", "Document 128", "Document 134", "Document 135", "Document 141", "Document 150", "Document 155", "Document 165", "Document 174", "Document 178", "Document 181", "Document 191", "Document 192", "Document 194", "Document 206", "Document 212", "Document 226", "Document 233", "Document 240", "Document 241", "Document 242", "Document 246", "Document 289", "Document 297", "Document 308", "Document 309", "Document 336", "Document 353", "Document 357", "Document 358", "Document 378", "Document 394", "Document 401", "Document 432", "Document 436", "Document 443", "Document 450", "Document 476", "Document 503", "Document 509", "Document 523", "Document 525", "Document 545", "Document 573", "Document 589", "Document 608", "Document 616", "Document 620", "Document 637", "Document 655", "Document 658", "Document 659", "Document 690", "Document 691", "Document 696", "Document 702", "Document 706", "Document 717", "Document 760", "Document 767", "Document 802", "Document 832", "Document 838", "Document 844", "Document 846", "Document 865", "Document 871", "Document 876", "Document 891", "Document 894", "Document 903", "Document 990", "Document 996", "Document 1070", "Document 1097", "Document 1132", "Document 1138", "Document 1185", "Document 1188", "Document 1247", "Document 1264", "Document 1296", "Document 1325", "Document 1331", "Document 1342", "Document 1343", "Document 1409", "Document 1485"], "customdata": [{"title": "rpj-common-crawl-2020-05", "text": "not a burn. A first degree burn is considered a burn. It seems like he is saying something like the word slavery carries connotations that do not apply to having to eat and the other examples. And yes, if you were in a conversation with someone with third degree burns and you had first degree and you kept making them equivalent, rough day for both us, each burned, you would be trivializing their experience. But if you just got a little color, iow nothing a doctor would call even a first degree burn, it would be even more ridiculous. We use words to deliniate things. It's floppy, and often we can't come up with neat categories and even the burn scales have some grey areas. But if I run at you on the street pointing finger going bang bang and run past you, I didn't try to kill you, even if it was a bit scary. Or is your argument that there are ONLY differences in degree and never in kind and it would be irrational to ever say something was not in a category. Like if you went under a bright incandescent bulb you were burned, because perhaps one cell had its temperature raised to some extent? by Serendipper \u00bb Sat Sep 15, 2018 9:22 pm Karpel Tunnel wrote: Getting a little color in your cheeks is not a burn. A first degree burn is considered a burn. It seems like he is saying something like the word slavery carries connotations that do not apply"}, {"title": "rpj-common-crawl-2022-05", "text": "and so on. First-degree burns are minor, and 5th\u00b0 burns are often catastrophic. These degrees include: First-degree \u2013 A minor first-degree burn injury only affects the skin\u2019s outer layer, like a mild sunburn, blister, or other heat exposure. Typically, victims with first-degree burns rarely have long-term damage to the affected area. Second-degree \u2013 A moderate second-degree burn injury typically damages the skin's dermis (underlying) layers, appearing swollen, red, wet, or shiny. At this stage, the burn will likely blister and hurt when touched. Superficial second-degree burns typically damage the dermis layer and do not cause scarring. Deep partial-thickness second-degree burns are more severe, causing permanent skin color changes Third-degree \u2013 This full-thickness burn injury usually destroys the skin\u2019s two upper layers, causing the skin to appear yellow, white, brown, or black. Usually, third-degree burns have only minimal pain because the nerve endings have been damaged. Fourth-degree \u2013 Burn specialists identify fourth-degree burns as the most severe life-threatening burn, destroying every skin layer, and killing tissue, tendons, muscles, and bone. Fifth-degree \u2013 Typically, a fifth-degree burn injury surpasses fourth-degree burns when the ligaments and muscle layers have burned away, leaving charred bone, destroying skin and muscle, and loss of function. Every burn degree can worsen over time as the injury spreads. The injury can also cause significant complications, where joint and bone problems arise, or infection begins to develop. According to the World Health Organization (WHO), specific society segments are more at risk of suffering a burn injury than others. Contributing factors to a burn could include:"}, {"title": "rpj-c4", "text": "the seriousness of the burn on the skin; in other words, the severity of the damage, which the burn has one the skin. We have the First-Degree burn as the most minor, and the last one, the third-degree being the most severe. \u2022 First-Degree burn: a skin, which is nonblistered and red as well. \u2022 Second-Degree: you tend to experience the presence of blisters and a few thickening of the skin. \u2022 Third-Degree burn: a thickness, which is widespread; and this thickness has an appearance that\u2019s leathery and white. And to add to this, there exists fourth-degree burn, this type of burn has the whole symptoms of A third-degree burn, which means that it acts like the third-degree burn. But, the difference is, fourth-degree burn goes deep \u2014 beyond the skin \u2014 into bones as well as tendons. Burns consists of several causes, let\u2019s take a look at them. Know this, the cause of a burn doesn\u2019t determine the type of burn; what determines it is, how long that liquid or fire remains in contact with the skin. Looking at scalding, this very one can lead to the cause of the whole three degrees; want to know what it depends on? well, it depends on the level of hotness of the liquid and also, how long it touches the skin. If you encounter electrical or chemical burns, it\u2019s advisable that you, without hesitation, visit your doctor \u2014 because these burns have the ability to affect inside your body, even if the damage on the skin is"}, {"title": "rpj-common-crawl-2019-30", "text": "Burns & Weight Loss What Is the Difference Between a 2nd & 3rd Degree Burn? How Long Does It Take to Heal a Second Degree Burn? How to Treat Friction Burn How to Treat Cigarette Burns How to Treat an Oven Burn Why High Levels of Potassium in Burn Patients? By Helen Messina Burns require specific emergency care and continuous treatment. Preference is given to fluid hydration, swelling and its complications, establishing and maintaining an airway, nutritional supplements, a catheter for monitoring urine output, X-rays and possible skin grafts. Burns damage the skin, which protects the body from fluid loss and infection, and can result in renal failure, life-threatening infections, shock and death. Fluid loss alters the balance of potassium, sodium, chloride, calcium and water, requiring constant replacement and monitoring. Types of Burns Burns result from exposure to heat from fire or liquids, electricity, chemicals and radiation. Categories of burns are first-degree, second-degree and third-degree. First-degree burns damage the epidermis or outer layer of tissue and result in redness and pain. Second-degree burns damage epidermal and dermal tissue, the second layer of skin, and result in redness, pain and blisters. Third-degree burns damage skin down to the nerves, muscles, tendons and possibly bones, leaving a charred appearance with no pain as a result of nerve damage. With minor burns, treatment can occur at home, in the doctor's office and the emergency room based on the size of the burned areas of the body affected. The care for second-degree and third-degree burns requires emergency room care and"}, {"title": "rpj-common-crawl-2023-06", "text": "al. (2017). Predicting and managing sepsis in burn patients: Current perspectives. Management of burns. (2007). https://www.who.int/surgery/publications/Burns_management.pdf Moore, R. A., et al. (2020). Rule of nines. Nielson, C. B., et al. (2017). Burns: Pathophysiology of systemic complications and current management. Pencle, F. J., et al. (2020). First degree burn. Santi, G. D., et al. (2019). The use of Epiprotect, an advanced wound dressing, to heal paediatric patients with burns: A pilot study. https://www.researchgate.net/profile/Giancarlo_Delli_Santi2/publication/333101773_The_use_of_EpiprotectR_an_advanced_wound_dressing_to_heal_paediatric_patients_with_burns_A_pilot_study/links/5ce6ddf2a6fdccc9ddca5819/The-use-of-EpiprotectR-an-advanced-wound-dressing-to-heal-paediatric-patients-with-burns-A-pilot-study.pdf Schaefer, T. J., et al. (2020). Burn resuscitation and management. Tetanus. (2019). https://www.cdc.gov/tetanus/index.html Third-degree burns. (n.d.). https://www.chop.edu/conditions-diseases/third-degree-burns Understanding a burn injury. (2018). https://msktc.org/burn/factsheets/Understanding_Burn_Injury Warby, R., et al. (2020). Burn classification. Atherosclerotic cardiac disease (ASCVD): Are people receiving appropriate treatment? What to know about burns Burns are categorized into different types, depending on severity. These include first, second, and third-degree burns. Learn about identification and\u2026 What is a first degree burn? A first degree burn is one that only affects the top layer of the skin. First degree burns have various causes, including sunburn and contact with a\u2026 What to do for boiling water burns Medically reviewed by Owen Kramer, MD Boiling water burns, or scalds, can be mild to severe. In this article, learn how to identify the severity and perform first aid for the burn. We also\u2026 Second-degree burn: Everything you need to know Medically reviewed by Elaine K. Luo, M.D. A second-degree burn is more severe than a first-degree burn. It affects the epidermis and dermis, or the outer and second layers of skin. In this\u2026 What to know about chemical burns"}, {"title": "rpj-c4", "text": "Furthermore, burn injuries often have complications including infection, organ malfunction, electrolyte imbalance, and respiratory issues. First-Degree Burns: These are superficial burns that damage only the first layer of skin. First-degree burns are mild, resulting in redness and pain, and can be treated with over-the-counter pain medication and skin care products, such as aloe vera cream. Second-Degree Burns: This type of burn damages the first two layers of skin. These burns can be superficial or deep, depending on the severity of the burn. Second-degree burns result in pain, redness, swelling, and blistering, and can be treated with antibiotic creams prescribed by a doctor. Third-Degree Burns: These burns affect all the layers of skin and the tissue under it. These burns are severe and require medical treatment. White, blackened, or charred skin may result from these burns. Third-degree burns are treated with skin grafting or synthetic skin. Intravenous fluids and antibiotics might also be necessary. Fourth-Degree Burns: The most severe variety, fourth-degree burns penetrate the bone, muscles, and ligaments. This type of burn requires medical treatment similar to that of third-degree burns. Two types of burns are common in the workplace: heat burns and chemical burns. Heat burns occur when the skin comes in contact with a surface or a substance of high temperature. Heat burns can be caused by flames, hot surfaces, hot liquids, or steam. Faulty wiring, improper gas connections, combustibles that are not stored correctly, and sparks from machinery all present burn risks. Workers in laboratory, manufacturing, and medical fields are especially prone to chemical"}, {"title": "rpj-c4", "text": "surface. Though they are the most minor type of burn, these injuries can still be painful. However, they rarely result in complications that require serious medical attention and only require basic first aid. Signs of a first-degree burn include swelling and red coloration. Second-degree burns extend past the first layer of skin. These burns commonly cause blistering. This is the body\u2019s attempt to heal the injury and protect the lower layers of skins. Care for these burns does not always require professional medical care. However, if the burn is large enough, a trip to the hospital may be necessary. Third-degree burns are severe medical emergencies and require intensive treatment to heal. Third-degree burns cause damage to every layer of the skin and damage nerve ending and tissues underneath the skin. This serious injury makes the skin stiff and hard with dark or white coloration. Fourth-degree burns are similar to third-degree burns, but they represent an even more dangerous level of injury. With this type of burn, the damage may extend past the skin and into the muscles and bone. This burn may cause so much damage that healing is not a possibility. Fourth-degree burns often require amputation. Even if a victim fully recovers, the damaged skin usually does not heal back to its original appearance. Burn scars are notorious for causing physical and emotional trauma. Physically, burn scars can produce tighter skin and limit physical movement. Emotionally, some burn victims suffer a heartbreaking amount of shame due to the embarrassment of regarding visible scars. In severe"}, {"title": "rpj-c4", "text": "is burned, there is an massive shift of fluids within the body. For cases where the burn area is greater than 20% of the body, fluid resuscitation is a necessity and should be done through IVs during the first 24 hours. Patients need to receive large volumes of liquid because so much body fluid is being sucked into the burn wounds. There are many variables to burns. They range from superficial to life-threatening. They can damage epidermis, dermis, blood vessels, tendons, muscles, and bones with varying degrees of pain depending on amount of nerve damage. First Degree Burns \u2013 These burns are superficial, like a mild sunburn, affecting the outer layer of skin. The epidermis gets red, may be painful for a few days, the skin may even peel. There is no blistering. Second Degree Burns \u2013 These burns go down through most, if not all, of the layers of the epidermis. It will potentially reach the topmost layer of dermis. Fluid will accumulate between the epidermis and the dermis, forming blisters. These burns can be nasty, with an increased potential for infection. Third Degree Burns \u2013 These burns go so deep that they destroy all of the tissue through the dermis, reaching into the fatty tissue layer. In some cases, tendons, muscles, and ligaments are compromised. (When the burn reaches muscle and bone, some people refer to it as a 4th degree burn.) When burns look white, they are a deep 3rd degree burn and need medical attention. All 3rd degree burns require medical attention."}, {"title": "rpj-common-crawl-2023-06", "text": "burns, these are the most common type. This burn damages the outermost layer of skin and typically heals on its own within 1 week. A common example is sunburn. Second degree burn: Also known as partial-thickness burns, this type damages the top two layers of skin. Second degree burns may require a graft and typically leave scars. Third degree burn: These burns completely damage the skin, including hair follicles and sweat glands. They may also damage the underlying tissue and always require a skin graft. Fourth degree burn: This type of burn extends into fat. Fifth degree burn: This burn type extends into muscle. Sixth degree burn: This type of burn extends to the bone. Third degree burns will typically result from contact or exposure to the following: flash from an explosive blast chemicals such as acids scalding liquids contact with an extremely hot object for an extended period Any severe burn will typically be apparent and will require treatment at the hospital. Common symptoms of full-thickness burns may lead to: skin discoloration, which can include the skin becoming: skin appearing a lack of pain due to damage to nerve endings Severe burns can also result in potentially fatal complications. For example, the body may go into shock. Normally, the body produces an inflammatory response to protect itself from injury, infection, or other threats. However, in some cases, such as with severe burns, the body may overreact, and the inflammatory response may cause more harm. Shock typically causes damage because the extreme inflammatory response results in"}, {"title": "rpj-common-crawl-2023-06", "text": "burns, these are the most common type. This burn damages the outermost layer of skin and typically heals on its own within 1 week. A common example is sunburn. Second degree burn: Also known as partial-thickness burns, this type damages the top two layers of skin. Second degree burns may require a graft and typically leave scars. Third degree burn: These burns completely damage the skin, including hair follicles and sweat glands. They may also damage the underlying tissue and always require a skin graft. Fourth degree burn: This type of burn extends into fat. Fifth degree burn: This burn type extends into muscle. Sixth degree burn: This type of burn extends to the bone. Third degree burns will typically result from contact or exposure to the following: flash from an explosive blast chemicals such as acids scalding liquids contact with an extremely hot object for an extended period Any severe burn will typically be apparent and will require treatment at the hospital. Common symptoms of full-thickness burns may lead to: skin discoloration, which can include the skin becoming: skin appearing a lack of pain due to damage to nerve endings Severe burns can also result in potentially fatal complications. For example, the body may go into shock. Normally, the body produces an inflammatory response to protect itself from injury, infection, or other threats. However, in some cases, such as with severe burns, the body may overreact, and the inflammatory response may cause more harm. Shock typically causes damage because the extreme inflammatory response results in"}, {"title": "rpj-c4", "text": "The skin is the human body\u2019s largest organ. Burn injuries involve different kinds of damage to skin and possibly other parts of a person\u2019s body, depending on the severity. Thermal Burns \u2014 These burns involve contact with hot objects, fire, hot liquid, or steam. Chemical Burns \u2014 Also referred to as alkali burns, these occur as a result of contact with acidic substances. Electrical Burns \u2014 Contact with an electrical current causes these types of burns. Radiation Burns \u2014 These burns are caused by exposure to ultraviolet light, ionizing radiation, or thermal radiation. Friction Burns \u2014 These types of burns involve skin rubbing against a rough surface. First-Degree Burns \u2014 Superficial burn involving only the epidermis (outer layer of the skin). The most common example of a first-degree burn is sunburn. Most first-degree burn injuries usually heal in a few days. Second-Degree Burns \u2014 A second-degree burn involves damage to the epidermis as well as the dermis, the layer beneath the epidermis. Blistering could result and some second-degree burns can involve skin grafts, a procedure where skin is transplanted from another area of the body. Third-Degree Burns \u2014 A full thickness burn in which both layers of skin are damaged or destroyed with damage extending into sweat glands and underlying tissue. Third-degree burns always require skin grafting, but additional surgery could also be required. Additional classifications are used for other burn injuries that are often far more catastrophic. Fourth-degree burns extend into the fat, fifth-degree burns extend into the muscle, and sixth-degree burns extend into the"}, {"title": "rpj-common-crawl-2021-04", "text": "muscles, and nerves. Generally, burn injuries are classified based on severity. The four main types of burn injuries are: First-degree burns. These types of burns damage only the outer layer of skin. First-degree burns are mild and may heal quickly without any secondary complications. Second-degree burns. Second-degree burns damage both the outer and middle layers of skin, often causing blistering and infection. These types of burns are often treated in the emergency room, but, in some cases, they may require inpatient hospitalization. Third\u2013degree burns. Third-degree burns involve damage to the outer and inner layers of skin. These burns often cause serious secondary health complications for survivors and may necessitate amputation of severely burned finger, toes, or limbs. Treatment may involve skin grafts and prolonged hospitalization. In many cases, permanent disfigurement results. Fourth-degree burns. This is the most serious type of burn and involves damage to the muscle, tendons, and bones. Depending on the circumstances, fourth-degree burns can result in loss of limb, extensive disfigurement, disability, and/or wrongful death. The severity of a burn injury has a direct impact on the financial and psychological costs to victims and their families. Second, third, and fourth-degree burns are more likely to cause disfigurement, amputations and other complications. These may severely reduce the quality of life and require extensive medical care. What are the Possible Consequences of Burn Injuries? Burn injuries are financially and emotionally costly because they can lead to multiple secondary complications. Many individuals with severe burns will require skin grafts, psychological therapy, and rehabilitation. Common secondary complications"}, {"title": "rpj-common-crawl-2021-04", "text": "called \u201cpartial thickness\u201d burns, they are often separated into two categories of superficial or deep, although both types generally heal on their own. Second-degree deep burns are generally white and dry and can cause scarring. Third Degree Burn Third-degree burns are the most serious and can cause death or permanent scarring, disfigurements, and disabilities. These burns are deep enough to damage muscles and other soft tissues under the dermis layer of the skin. They may appear charred or leather-like, and may be black, brown, red, or yellow. Due to the number of nerve endings that are damaged, the third-degree burns are sometimes not as painful immediately as more superficial burns. Fourth Degree Burn Fourth-degree burns are the most life-threatening and generally go deep enough to damage the bone. In these cases, the skin cannot be recovered, and the burned arms or legs are amputated. Obviously, the highest results are for damage incurred by third and fourth-degree burns. In addition to fires, burns can occur as a result of hot liquids or scalds. There was a famous case of personal injury of a woman who was burned for coffee at a McDonald\u2019s restaurant. For this reason, from a legal rather than a medical point of view, burns are also classified by their origin: Minor burns are the result of some kind of light, such as sunlight, tanning bed, etc. Chemical burns come from exposition of dangerous substances. Radiation burns come from exposition of some type of radiation, such as nuclear. Thermal burns are the most common, as"}, {"title": "rpj-c4", "text": "First degree burns are considered superficial burns. First degree burns affect the top layer of skin and typically do not require extensive medical treatment to heal. Although first degree burns are not life-threatening they may result in scars, chronic pain, and emotional trauma. First degree burns may be caused by chemical exposure, fire, electrical exposure, or a number of other causes. Victims suffering from a first-degree burn may suffer additional complications such as infection or fever. These conditions can cause the need for additional medical treatment and recuperation time."}, {"title": "rpj-c4", "text": "these are the result of a person coming in contact with either a direct current or an alternating current. Electrical burns occur when a person touches an electrical wire or socket, falls into electrified water, or is struck by lightening. Thermal Burns \u2013 these types of burns are the result of a person making contact with a flame, boiling water, steam or other boiling liquid. They can occur due to touching hot objects, such as tools, engines, pipes, or motors. Sunburn, or extended exposure to the sun, is another type of thermal burn. Depending on the type of burn a worker experiences, the burn can result in skin damage and internal injuries. Other complications from burns can occur. If a person suffers an electrical burn complications can be shock or cardiac arrest. Many people that suffer burns in the workplace end up needing extensive medical treatment. They may need rehabilitation and mental and emotional counseling. Burn injuries may mean that a worker misses a substantial amount of work, or they may need partial or total disability. First Degree \u2013 this is considered the least serious as this affects only the outer layer of skin. They result in redness, pain and discomfort. The treatment for first degree burns are minor. Second Degree \u2013 these are similar to first degree burns but they affect both the first and second layers of skin. There is also redness, pain and discomfort but will often result in blisters and maybe some scarring. Third Degree \u2013 these types of burns go past"}, {"title": "rpj-common-crawl-2021-04", "text": "result in redness of the skin and some immediate pain that lessens with time. Second-degree burns are more serious and extend into the outer epidermis layer and the lower layer of skin (the dermis). You might receive a second-degree burn from accidentally pouring boiling water onto your body or touching a hot clothes iron. In addition to pain and redness, most second-degree burns cause blistering and swelling. Third-degree burns are among the most severe burns. They burn all the way through the epidermis and dermis skin layers and damage the tissue underneath. Skin may turn white or blackened and charred and it may go numb if nerves were damaged. Most severe burn injuries that result in lawsuits, such as those from fires or electrical shocks, are third-degree burns. Some medical professionals also use additional categories \u2013 up to the sixth degree \u2013 to indicate injuries that burn down into ligaments, tendons, muscles, bones, or internal organs. Third-degree burns and worse, especially if they cover a significant percentage of the body, can lead to a range of complications and may require extended hospitalization and skin-graft surgeries. If the burn damages muscle and other interior tissue, patients may require physical therapy to regain range of motion. Because of extensive nerve damage, burns at these levels can cause chronic pain. Ongoing Complications from Burn Injuries Burns don\u2019t always heal quickly or uniformly. While each patient may experience a different outcome, some common complications result from many burn injury cases. These complications can include: Infection. This includes skin infections from"}, {"title": "rpj-common-crawl-2020-05", "text": "that each year, approximately 500,000 burn injuries occur. Other statistics reveal that approximately 300 children die each year due to fires that occur in residential homes. Not all burns, however, are exactly the same. Instead, there are several types of ways in which a person can be burned, including: Chemical burns: Burns of this nature are caused by acid or chemical explosions. Light burns: A person can experience these types of burns by coming into contact with either sunlight or ultraviolet light. Radiation burns: Exposure to nuclear radiation can cause burns of this nature. Thermal burns: These burns are caused by contact with extreme heat including fire, hot liquids, and steam. No matter the cause type of burn, medical professionals further divide these injuries by severity based on a three-class system. Ranging from least to most serious, the three categories of burns include the following: First-degree burns: In these injuries, only the top layer of a person\u2019s skin is damaged. Burns of this nature frequently result in inflammation and redness. Fortunately, first degree burns often heal within the course of a week. Second-degree burns: Burns of this nature extend past a person\u2019s top layer of skin and are frequently characterized by red and blistered skin. Many times, second-degree burns take several weeks to heal. Third-degree burns: These burns are the most serious and extend through every layer of skin and can damage internal organs as well as bones. In many cases, third-degree burns result in substantial nerve damage and in some cases can even result in"}, {"title": "rpj-common-crawl-2021-04", "text": "transfers these resources to the injured areas. If the burn does not heal quickly, the inflammatory response may consume the body's resources, exhaust the patient, cause organ failure and, ultimately, death. Once healed, however, there may be lasting functional and aesthetic consequences due to scarring or retraction. This is the case with hypertrophic and keloid scars; thickened areas of scar tissue that limit the mobility of joints, retraction of the eyelids, microstomia, and others. Burns are graded depending on their severity and they also look different: First-degree burns: painful and with reddening of the skin (erythema), but the skin is not broken. Superficial second-degree burns: very painful due to blisters with red and watery skin underneath. Deep second-degree burns: may or may not include blistering, and appear dry and whitish. May also be less painful. Third-degree burns: look like scar tissue, leathery appearance, dry, sunken and dark in colour. In this case, there is no sensitivity to pain. Who do burns affect? Burns are a common, serious and debilitating traumatic injury that mainly results from accidents in the workplace, the home or traffic accidents. The Spanish Society of Family and Community Medicine estimates that three out of every thousand people a year suffer burns requiring medical attention. Primary care centres (CAPs) deal with most cases, but 15-20% will require admission to hospital. Diagnosis is clinical and treatment must be carried out by highly specialised professionals as this is not a common pathology. Typical treatment Depending on the degree of the burn, treatment may be: First-degree: hydrating"}, {"title": "rpj-c4", "text": "Burns are a type of injury to the skin or flesh that occurs when skin is exposed to excessive levels of heat, electricity, radiation, friction, ultraviolet light, or chemicals. Minor burns can often be treated quite easily, but severe burns may necessitate specialized treatment available at burn centres and involve serious medical procedures such as skin grafts. Burns are categorized into three degrees depending on severity. First degree burns are the least serious type of burns that occur when a burn is limited to only the epidermis, the outer layer of the skin. Second degrees occur when the epidermis has been completely burned through and the dermis, the second layer of skin, has also been burned. Third degree burns are the most serious types of burns and describe a situation where a burn has penetrated all layers of the skin, and may even have reached the muscle, fat, or bone. Formedica Self-Adhesive Dressing Flexible and Comfortably Secure, 2\" x 3'3\""}, {"title": "rpj-c4", "text": "immediately blanch (turn whitish in color when you touch it), emergency medical treatment is recommended. Skin grafts may be required to protect areas where the damage is deep or covers large portions of the body. Third degree burns destroy every layer of the skin. The damage extends into the subcutaneous (below the skin) levels and exposes fat, or adipose, tissue. The pain may be mild to nonexistent due to severe nerve damage. Like the most severe second-degree burns, third-degree burns are referred to as full thickness burns. Unlike a first or second degree burns, third degree burns cannot be healed by running water. Do not try to self treat a third degree burn! Immediate medical treatment is required. Medical professionals recommend keeping the injured area raised above your heart while you wait for treatment and preventing clothing or anything else from sticking to the burned area. Third degree burns can cause the skin to turn yellow to white in color and look like hardened wax or dark brown to black in color and appear charred depending on the cause of the burn. The skin will not blanch and may feel like leather when touched. Fourth degree burns involve destruction of every layer of the skin and the underlying muscle, fat tissue, tendons and bone. From the outside, fourth degree burns look the same as third-degree burns, except bones, ligaments and other internal systems will likely be visible. They are generally treated the same as third degree burns and require emergency treatment such as debridement (cleaning of"}, {"title": "rpj-common-crawl-2019-30", "text": "Free Books / Reference / The Encyclopaedia Britannica / This section is from \"The Encyclopaedia Britannica\". Also available from Amazon: Great Books of the Western World (60 Volumes). Burns And Scalds. A burn is the effect of dry heat applied to some part of the human body, a scald being the result of moist heat. Clinically there is no distinction between the two, and their classification and treatment are identical. In Dupuytren's classification, now most generally accepted, burns are divided into six classes according to the severest part of the lesion. Burns of the first degree are characterized by severe pain, redness of the skin, a certain amount of swelling that soon passes, and later exfoliation of the skin. Burns of the second degree show vesicles (small blisters) scattered over the inflamed area, and containing a clear, yellowish fluid. Beneath the vesicle the highly sensitive papillae of the skin are exposed. Burns of this degree leave no scar, but often produce a permanent discoloration. In burns of the third degree, there is a partial destruction of the true skin, leaving sloughs of a yellowish or black colour. The pain is at first intense, but passes off on about the second day to return again at the end of a week, when the sloughs separate, exposing the sensitive nerve filaments of the underlying skin. This results in a slightly depressed cicatrix, which happily, however, shows but slight tendency to contraction. Burns of the fourth degree, which follow the prolonged application of any form of intense heat, involve"}, {"title": "rpj-c4", "text": "Burns occur when skin is exposed to heat, sun, radiation, chemical, or due to coming in contact with a live circuit. The degree of burn, the after-effects and the remedies vary depending on the source of burn. The degree of burn and the location decides the kind of burn treatment and first-aid it may need. While some kinds of burns may need minor medical intervention, palliative care, emergency surgery or a combination of all; deep seated burns can result in life-threatening complications. Such burns affecting a major part of the body may need immediate medical intervention. People may also require medical care at specialized burn centers and prolonged medical treatments of various kinds. These include not only healing the burnt body parts but also, at times, reconstruction of minor organs or even plastic surgery. Burns are classified in three degrees. A first-degree burn is usually a minor burn affecting only the outer layer of skin and normally causes redness and pain. The second-degree burn affects epidermis and dermis, the first two layers of skin and may develop in swelling, blisters and at times scarring. A third-degree burn reaches the fat beneath the skin and may look brown, black or white. It is likely to destroy nerves and cause numbing. So what causes burns and how can we prevent them? Exposure to sunlight is the most primary source of burn, commonly referred to as sunburns. Prolonged exposure to the sun without sunscreen can at times result in severe burns, especially on the exposed areas of the body"}, {"title": "rpj-common-crawl-2023-06", "text": "SHEET: First aid in and around the Home\u2019, retrieved 6 September 2011, . Burns are injuries to the skin caused by heat from flames, liquids, radiation, chemicals or electrical devices. The severity of a burn is determined by its depth, the age of the patient, the particular sites on the body burnt (hands, feet, face, genitals and joints are the most complicated) and the total surface area of the burns. While minor burns usually cause nothing more than temporary shock and mild discomfort, severe or widespread burns can be physically destructive, permanently debilitating and even fatal. Types of burns Burns can be classified by the depth of tissue they injure. The names for various types of burns have changed over the years.Superficial burn \u2013 previously known as first-degree burns, these are minor burns which affect only the outer layer of skin, the epidermis. They may become red, inflamed and painful, but generally heal within 10 days with no scarring. Partial thickness \u2013 these burns (formerly second-degree) damage the middle layer of skin called the dermis. The dermis is much thicker than the epidermis so the severity of these burns can vary depending on their depth. Often red and/or white in colour with blisters, partial thickness burns can take several weeks to heal and often leave scarring. Deep full thickness \u2013 burns which penetrate the entire width of the skin, down through the epidermis, dermis and hypodermis, are classified as full thickness, or third-degree. When the hypodermis is injured, other elements contained within this layer, such as"}, {"title": "rpj-c4", "text": "Burns can be about the most painful injuries a person can have, I know because I\u2019ve been there. No words are adequate to describe that kind of pain. On that pain scale of one to ten, burn injuries can reach hit about 10,000. It\u2019s simply surreal. No amount of morphine or Demerol is adequate to overcome it. We see burn injuries most often in natural gas or gasoline explosions, but there are many ways burn injuries can occur even chemical burns. Fortunately here in Atlanta we have a superb Grady Hospital Burn Unit. If a loved one has a serious burn injury anywhere within a 100-150 mile radius of Atlanta, your first response should be take them to Grady. If you were in scouts as a kid you probably learned about first, second, and third degree burns. First degree burns make the skin red, involve swelling and are painful for a short time. Usually they are pretty minor unless they cover a huge area of the body. Second degree burns go through the second layer of skin. If they\u2019re less than about three inches in diameter and not involved in hands, face, groin, or buttocks, that can be minor. But, if a second degree burn covers a large portion of the body or those areas I just mentioned it can be major and even life threatening if it involves the throat or lungs. A full thickness second degree burn may require extensive skin graphs and scarring. Third degree burns involve all the layers of the skin"}, {"title": "rpj-common-crawl-2021-04", "text": "from significant improvements in prostheses and the ability of the amputee to operate these devices. Catastrophic Injury Type - Severe Burns Catastrophic or severe burns can occur as a result of industrial or workplace accidents and road accidents where spilt fuel, oil or other flammable material is ignited as a result of the vehicle collision. Burns are commonly defined as being tissue damage that is caused by heat, exposure to radiation, chemicals or electrical currents. The severity of a burn injury can vary significantly and can depend on how deep the tissue damage is, how extensive the area of the burns are and what parts of the body are burnt. Second degree burns are burns that affect both the epidermis and the dermis or second layer of skin. These burns can cause swelling and skin discoloration. Second degree burns can cause extreme pain which is often intensified by significant blistering of the skin. Second degree burns often cause scarring. Third degree burns penetrate through to the fat layer beneath the skin and can leave affected areas looking black, brown or white in appearance. The affected area may also look leathery. Third degree burns often destroy nerves and can cause numbness. Catastrophic burns can sometimes cause a range of complications including bacterial infection, respiratory problems and bone and joint problems where scar tissue causes shortening, tightening or contraction of the skin, muscles or tendons."}, {"title": "rpj-common-crawl-2023-06", "text": "skin. Burns due to X-ray and radium vary from redness of the skin to dermatitis, with shedding of hair and epidermis and pigmentation of the surrounding skin. Severe exposure may produce burns with erythema, blistering or dermatitis, or ulceration with delayed healing and ill-formed scars. Fingernails may show degenerative changes and wart-like growths. Infra-red rays may cause necrosis of the skin. Burns caused by ultraviolet rays (the sun or mercury vapour lamp) produce erythema or acute eczematous dermatitis. Burns from corrosive substances show ulcerated patches and are usually free from blisters\u2019 hair is not singed and red line of demarcation is absent. They show distinct coloration and are usually uniform in character. Strong acids produce dark leathery burns upon the skin. Strong alkalis cause the skin to slough and leave moist, slimy, grayish areas. Hydrofluoric acid and bromine cause necrosis of the skin and tissues. Electrical burns. Degree of Burns: Dupuytren divided burns into six degrees, but they were merged into three degrees by Wilson . The precise depth of a burn can be measured by a high frequency ultrasound device. Epidermal: (first and second degree Dupuytren). Dermo-epidermal: (third and fourth degrees Dupuytren). Deep: (fifth and sixth degrees, Dupuytren): In this, there is a gross destruction not only of the skin and subcutaneous tissue, but also muscles and bones are destroyed, and as such the burns are relatively painless. The appearances are similar to those of the second degree, but in a more severe form. The burnt part is completely charred. Effects: The effects depend on:"}, {"title": "rpj-common-crawl-2019-30", "text": "caused by an explosion. Military bomb tests have documented temperatures of up to 2,480 \u00b0C (4,500 \u00b0F). While capable of inflicting severe to catastrophic burns and causing secondary fires, thermal wave effects are considered very limited in range compared to shock and fragmentation. This rule has been challenged, however, by military development of thermobaric weapons, which employ a combination of negative shock wave effects and extreme temperature to incinerate objects within the blast radius. This would be fatal to humans, as bomb tests have proven. 1st degree (superficial) burns. First-degree burns affect only the epidermis, or outer layer of skin. 2nd degree (partial thickness) burns. Second-degree burns involve the epidermis and part of the dermis layer of skin. 3rd degree (full thickness) burns. The injury extends to all layers of the skin. 4th Degree: Damage the underlying bones, muscles, and tendons. 5th Degree: Organs are burnt. A victim\u2019s chance of survival close to zero and life afterwards is worthless. 6th Degree: A 6th degree burns leave a charred skeleton. 7th Degree: Cremation ashes. Fragmentation and thrown debris Edit The result of a 2003 car bombing in Iraq. Suicide bombings in Iraq since 2003 have killed thousands of people, mostly Iraqi civilians, and arguably constitute a new phenomenon in the history of warfare. Suicide bombings have been used as a tactic in other armed struggles, but their frequency and lethality in Iraq is unprecedented. Even a relatively small blast can cause a over-pressure shock wave, burns and shrapnel. A US Marine places a M18 Claymore mine. Secondary"}, {"title": "rpj-c4", "text": "burn affects the first and second layer of skin (the dermis), and can cause pain, red and white splotchy skin, and swelling around the injury. A second-degree burn may also appear moist or wet and can blister, which may result in scarring. Third-Degree Burn: A severe classification of a burn injury. This type of burn affects both layers of skin, the layer of fat underneath, and the nerves around the injured area, and can cause severe pain, and leathery, waxy, wet, or black skin around the injury. Many third-degree burns are caused by large fires, so injured victims may also be suffering from smoke inhalation. Fourth-Degree Burn: The most severe classification of a burn injury. This type of burn affects both layers of skin, the layer of fat underneath, muscles, tendons, and bone. The injured area frequently appears charred or black, and often needs to be amputated in order to prevent the spread of infection. How Else Can A Serious Burn Affect Me? Hypothermia: Burns that damage a significant percentage of your skin severely limits your body\u2019s ability to properly regulate your internal temperature. Scarring: Scar tissue may form as your burn injury heals, and that new tissue can result in the permanent destruction of sweat glands, inhibit your ability to move the affected area, and potentially pull your joints out of their intended position. Infection: Infection poses a risk to burn injury victims, no matter the severity of the burn. Without proper care and treatment, it could easily lead to sepsis and put you at"}, {"title": "rpj-c4", "text": "While the NFPA has fire prevention tips and strategies it is a sad reality that people are often injured or die when they are involved in a fire. When you ask about fire injuries many people automatically and exclusively turn to burns. While burns are a very common injury, there are other injuries that can be just as severe and have an equally detrimental impact on a persons\u2019 life. There are two types of burns from fires: flash burns and burns from flames. Flash burns result from a sudden intense heat, which usually result from some form of explosion. Generally, people who have sustained flash burns can be treated as an outpatient and do not require extensive medical care. On the other hand, those who suffer burns from flames may incur extensive damage depending on the severity of the burn. There are four widely accepted burn types, which are separated by degrees. First-degree burns affect only the top layer of skin, which is known as the epidermis. In these burn types the skin is usually red and painful, however, this burn is usually equivalent to a sunburn and the healing process normally does not take longer than 3-5 days. Second-degree burns can be classified as either partial or full thickness burns and are more severe than first degree burns. In a partial thickness burn, there can be a blister that involved the entire skin and upper layers of the skin known as the dermis. The healing process for these burns can take anywhere from 10-21 days"}, {"title": "rpj-c4", "text": "tissue, which includes fat) is called a full thickness injury (formerly called a third degree burn). Burns that damage muscles underneath the subcutaneous skin layer are described as full thickness burns with injury to the underlying muscle (sometimes formerly called fourth degree burns). Superficial burns normally heal within 5 to 7 days. A common type of superficial burn is a sunburn. Because the top layer of skin (the epidermis) is thin (about the thickness of a piece of paper), it is easily replaced. Even when skin is not injured, the skin completely replaces the epidermis every 45 to 75 days. Healing from a superficial burn usually occurs without scarring, although there may be some permanent discoloration. The dermis is 15 to 40 times thicker than the epidermis. As a result, the seriousness of a partial thickness (or dermal) burn depends on how much of the dermis has been injured. A deep and large partial thickness burn will usually be treated with skin grafting. Partial thickness burns usually leave scars. A full thickness burn destroys tissue in all three layers of skin, resulting in the loss of not only the skin but also the hair follicles, sweat glands, and the region where new skin cells are formed. For these reasons, full thickness burns require skin grafts. Fourth degree burns extend through the skin into underlying tissues - ligaments and muscle. These are often life-threatening. Although the treating physician usually makes a quick assessment of the burn degree on initial inspection, further analysis can cause a reassessment. Different"}, {"title": "rpj-common-crawl-2021-04", "text": "dangerous, even for those who work around them. Others who are unfamiliar with the dangers face a higher risk of electrocution. A variety of scenarios can lead to electrical burns such as defective electronic devices like hairdryers, curling irons, and cell phones. Poor or old electrical wiring can also cause fires and pose a risk for anyone nearby who comes in contact. Traffic Accidents Another common source of burns is motor vehicle accidents. Car accidents, truck accidents, and motorcycle accidents can all lead to fires, and sometimes dangerous explosions depending on the force of impact. Radiation burns are far less frequent than other types of burns, but they do happen. Aside from a catastrophe at a nuclear power plant, the average person is typically only exposed to radiation as part of medical treatment. Radiation is used for x-rays and other diagnostic imaging and cancer patients also receive radiation treatment to shrink tumors. When medical providers improperly administer treatment, severe internal burn injuries can occur. Types of Burn Injuries Medical professionals who help burn victims need language to evaluate burns, so they can provide the proper diagnosis and treatment. Types of burns are categorized by degree. Here is a broad overview of each type of burn: First-degree burns are minor burns that cause damage to the top layer of skin, called the epidermis. Unless a first-degree burn covers a large portion of the body, first aid treatment is typically enough to treat the burn so it heals completely. Second-degree burns refer to burns that go through the"}, {"title": "rpj-c4", "text": "redness and scarring as it heals. If you think you have received a burn that is more severe than a first-degree burn, you should go immediately to an accident and emergency room. Second-degree burns involve damage to the epidermis and the tissues below. Third-degree burns are known as full thickness burns. These are burns that have damaged all of the layers of the skin down to the dermis beneath. The treatment of these burns should be carried out by and in consultation with a trained professional. How a burn is treated depends very much on where it is and the extent of the burn. For severe facial burns, the first step is usually cleaning and debriding the wound. This involves removing the dead tissue that could become infected and ensuring that no dirt or other matter is left inside. If infections look like they are forming, the patient will be given antibiotics, either as topical ointments/creams or an intravenous solution. In many cases, patients will be given a tetanus shot. Pain relief and intravenous fluids are usually applied to promote healing, reduce harmful inflammation, and control pain. For severe burns, there is often very little that can be done to save the tissue that has been damaged. In order to prevent infection, the dead tissue is removed. While skin does have remarkable abilities to heal itself, it cannot replace itself very well. Severe facial burns will form thick scars. For patients in this situation, usually the only available option is skin grafting. Skin grafting is the"}, {"title": "rpj-common-crawl-2023-06", "text": "tissues and organs not receiving enough oxygen. Several organs, such as the lungs, heart, and brain, are particularly susceptible to damage by \u201cburn shock.\u201d Infection is another major concern with third degree burns. The severe damage to the skin makes the body more susceptible to pathogens. Burns can also weaken the immune system, meaning the body is less capable of fighting off infection. In particular, acquiring pneumonia and sepsis infections are common and potentially fatal complications. A doctor can usually diagnose the severity of a burn by examining the affected area. They may also ask questions about the cause of the burn, any other injuries, and whether the person has any other medical conditions. The doctor may determine the severity of the burn by accounting for: the patient\u2019s age the percentage of total body surface area burned (TBSA) using the rule of nines the type of burn which body parts are involved A doctor may classify a severe burn under the following criteria: more than 10% TBSA in children or older adults more than 20% TBSA in adults more than 5% third degree significant burns to the: According to the World Health Organization (WHO), any third degree burn requires immediate hospitalization and treatment. Individuals with this type of burn usually receive treatment at a special burn unit. Following a third degree burn, people should immediately try to arrange medical assistance. While waiting for emergency care, a person can ensure an individual with a third degree burn: is out of harm\u2019s way is breathing has restrictive items"}, {"title": "rpj-common-crawl-2023-06", "text": "tissues and organs not receiving enough oxygen. Several organs, such as the lungs, heart, and brain, are particularly susceptible to damage by \u201cburn shock.\u201d Infection is another major concern with third degree burns. The severe damage to the skin makes the body more susceptible to pathogens. Burns can also weaken the immune system, meaning the body is less capable of fighting off infection. In particular, acquiring pneumonia and sepsis infections are common and potentially fatal complications. A doctor can usually diagnose the severity of a burn by examining the affected area. They may also ask questions about the cause of the burn, any other injuries, and whether the person has any other medical conditions. The doctor may determine the severity of the burn by accounting for: the patient\u2019s age the percentage of total body surface area burned (TBSA) using the rule of nines the type of burn which body parts are involved A doctor may classify a severe burn under the following criteria: more than 10% TBSA in children or older adults more than 20% TBSA in adults more than 5% third degree significant burns to the: According to the World Health Organization (WHO), any third degree burn requires immediate hospitalization and treatment. Individuals with this type of burn usually receive treatment at a special burn unit. Following a third degree burn, people should immediately try to arrange medical assistance. While waiting for emergency care, a person can ensure an individual with a third degree burn: is out of harm\u2019s way is breathing has restrictive items"}, {"title": "rpj-common-crawl-2019-30", "text": "degree involve the destruction of nerves, causing a loss of feeling and no pain. Third degree burns have a leathery, charred or white appearance. While burns can exceed these levels into the fourth degree, most of the public and medical community does not typically use this term. Fourth degree burns extend beyond the skin and cause damage to the underlying tendons and bones. Fifth and sixth burn degrees also exist but they are not considered survivable. Permanent Scarring Due to a Burn Injury If a burn injury victim is fortunate, the physical harm caused will not permanently damage their muscles, nerves, and other deep tissues. Irreversible scarring is likely to still occur, however, in any sort of accident that causes a burn injury. Given enough time, the scar tissue will no longer be sensitive to heat and touch but the victim is not fully recovered. They may experience a lowered self-esteem or diminished value of their own looks and identity. The result is physical scarring that leads to mental scarring as well. Any compensation earned through a lawsuit must keep these damages in mind, which are sometimes called nominal damages. Treatments for Burn Injury Victims When a burn injury can be improved through medical treatments and medicine, it is often a costly process that may take months to finalize. An effective yet expensive option for people who have suffered third or fourth degree burns is skin grafting, which will use their own skin from unaffected body parts and apply it to the burn for gradual healing"}, {"title": "rpj-common-crawl-2021-04", "text": "Burn (Sister Machine Gun album) Burn (Havok album) Kerosene (disambiguation) III (Crystal Castles album) A burn is a type of injury to skin , or other tissues, caused by heat, electricity, chemicals, friction, or radiation. Burns that affect only the superficial skin layers are known as superficial or first-degree burns. When the injury extends into some of the underlying layers, it is described as a partial-thickness or second-degree burn. In a full-thickness or third-degree burn, the injury extends to all layers of the skin. A fourth-degree burn additionally involves injury to deeper tissues, such as muscle, tendons, or bone. The treatment required depends on the severity of the burn. Superficial burns may be managed with little more than simple pain medication, while major burns may require prolonged treatment in specialized burn centers. Cooling with tap water may help relieve pain and decrease damage; however, prolonged exposure may result in low body temperature. Partial-thickness burns may require cleaning with soap and water, followed by dressings. It is not clear how to manage blisters, but it is probably reasonable to leave them intact. Full-thickness burns usually require surgical treatments, such as skin grafting. Extensive burns often require large amounts of intravenous fluid, because the subsequent inflammatory response causes significant capillary fluid leakage and edema. The most common complications of burns involve infection. This page contains text from Wikipedia, the Free Encyclopedia - https://wn.com/Burn Burn is the third studio album by industrial rock band Sister Machine Gun. Burn has two hidden tracks on the CD release. The first is"}, {"title": "rpj-c4", "text": "Burn injuries are considered a problem in health care. Burn injuries are in the top five as the leading cause of accidental death in the United States. There are over 200 special burn care units in the United States. Statistics on burn injuries confirm that at least 50% of all burn accidents could have been avoided. There is one out of every 13 fire deaths in the United States that was caused by a child setting a fire. One-third of children preschool age has died by playing with fire. There are 2.4 million burn injuries that are reported per year in the United States. There are around 10,000 pediatric burn injuries yearly in the United States. Around 650,000 of the injuries are treated by medical professionals and about 75,000 are hospitalized. Out of the people that are hospitalized, there are 20,000 who have major burns. There are 8,000 to 12,000 who die from these burns. Burns are categorized into first, second, and third degrees. The first degree burns which are superficial burns are caused on the top layer of skin. Symptoms of the first degree burn are redness in the skin. The burn can be painful and dry. It takes about around a week for the first degree burn to heal on its own. The next burn is the second degree burns which are partial-thickness burns. This type of burn goes under a few layers of skin. The symptoms of this burn are redness, and blisters that appear. It usually takes three to four weeks for"}, {"title": "rpj-c4", "text": "or destroy the nerves in the affected area and create a charred or blackened appearance. Third-degree burns need emergency care and may require surgeries to clean the wound and graft new skin. Some scales also include fourth-degree burns, which affects the muscles, tendons, and bones beneath the skin. The most serious burns can lead to amputations of the dead limbs. Burns can have serious complications. The most common is infection, or sepsis. Even with prolonged hospital stays and medical supervision, burn injuries can become infected and require additional surgeries or even amputation. Other life-threatening complications can include respiratory problems from smoke inhalation or burned airways, hypothermia from losing protective layers of skin, or major scar tissue development that can impair movement and even pull joints out of their sockets. Some victims do not survive their burn injuries or subsequent complications. Aside from having three (or four) degrees, burn injuries also come in different types. The most common type is a thermal burn. Thermal burns stem from contact with hot or scalding objects, such as fire, steam, or heated metal. Other kinds of burns include chemical, electrical, and radiation burns. Chemical burns come from contact with harsh acid or base chemicals, such as sulfuric acid, sodium hydroxide, or lime. Chemical burns can dissolve the skin tissues, bleach or darken the skin, cause burning sensations, affecting breathing, and cause tissue necrosis (death). Electrical burns can occur due to live electrical wires, electric components, or bolts of lightning. Electrical burns may not show any outward signs, yet cause significant"}, {"title": "rpj-common-crawl-2023-06", "text": "to search for their nearest burn center in the United States. Treatment for third degree burns continues after a person leaves the hospital. While the recovery period differs for everyone, people commonly report feeling pain, fatigue, and itching. People will still require wound care, which involves cleansing and dressing the wounds. This may require a nurse or doctor, or for the person with burns to learn how to clean and dress wounds. A friend or family member could also assist. Individuals may require rehabilitation and counseling to help with their ability to perform daily tasks, with any potential issues communicating, and improve their mental health. The healing time of a burn injury depends on the: burn extent burn depth location of the burn person\u2019s age presence of other injuries or conditions Due to medical advances, people are now capable of recovering from burn injuries that were previously fatal. However, individuals will often have permanent impairments and scarring. Third degree burns are deep, severe burns that completely damage the skin. Causes can include exposure to flames, explosions, or strong chemicals. People with third degree burns need immediate medical attention from a special burn unit. This can help prevent serious complications such as infection or shock. Last medically reviewed on February 15, 2021 Burns. (2018). https://www.who.int/news-room/fact-sheets/detail/burns https://www.nigms.nih.gov/education/pages/Factsheet_Burns.aspx Burns and scalds. (2020). https://cks.nice.org.uk/topics/burns-scalds/ Find a burn center. (n.d.). https://ameriburn.site-ym.com/search/custom.asp?id=925 Liodaki, E., et al. (2015). Epidemiology of pneumonia in a burn care unit: The influence of inhalation trauma on pneumonia and of pneumonia on burn mortality. Lopez, O. N., et"}, {"title": "rpj-common-crawl-2023-06", "text": "the skin\u2019s outer layer. Second-degree burns reach the dermis, or lower skin layer, and can cause damage to nerves, hair follicles, blood vessels, connective tissues, and sweat glands. Third-degree burns are the most dangerous, as they can penetrate skin, fat, muscles, bones, and tendons. They often result in open wounds that can easily become infected. Burns affecting less than ten percent of the total body surface area of adults or less than five percent for children and seniors are considered minor burns. Burns impacting between ten and 20 percent for adults and between five and ten percent for children and seniors are deemed moderate. Major burns are those covering more than 20 percent of adults and more than ten percent of children and seniors. Thermal Burns Thermal burns occur when an external source of heat, such as a flame, hot surface, or steam, comes into contact with the body. Thermal burns often cause blisters and may leave the skin looking either white or charred. They also can destroy skin, nerve endings, tissue, muscles, bones, and tendons. Chemical Burns Chemical, or caustic, burns can happen when acids, bases, or other irritants make contact with someone\u2019s skin, eyes, or lungs. Chemical burns may lead to vision loss, charred skin, numbness and pain, headaches, seizures, and cardiac arrest. Electrical Burns Electrical burns can be deceiving \u2013 they may not look severe on the outside, but they can cause serious internal damage. Contact with live wires can leave a mark on the skin, and the currents running through the body"}, {"title": "rpj-c4", "text": "outermost part of the dermis, which causes pain, is hypersensitive to touch, and usually causes blisters and redness. Deep burns cause damage to the deepest layers of the dermis. They appear like the superficial burns but usually are dry and white. These burns are usually painful, may take three to four weeks to heal, and may result in thick scarring. These burns are usually caused by contact with hot liquid and flames. The burned area looks like blisters and the skin is often cherry red or pink. Second-degree burns are usually treated without surgery but sometimes need skin grafting. The most serious of all burns are third-degree burns, in which all the layers of skin are destroyed. Sometimes third-degree burns also affect underlying tissue. They extend deeper into the skin and destroy all of the epidermis and dermal layers, extending to the subcutaneous layers. This turns the skin brown or black, gives it a leathery appearance, and often causes the skin to separate from the surrounding tissue. The nerve endings are destroyed from the burn and therefore these burns usually are not painful. Third-degree burns are typically caused by contact with hot liquid, flame or electricity. After being burned, the skin appears white, pearly or leathery. The skin must be replaced either through transplantation or grafting. Treating third-degree burns usually involves debridement, which is the removal of dead skin, and surgical skin grafting. Chemical burns are tissue damage caused by exposure to a strong acid or alkali such as phenol, creosol, mustard gas or phosphorus. Chemical"}, {"title": "rpj-c4", "text": "the tendons to slide back and forth in an effort for the toes to move. A burn to the top of the foot therefore could cause adhesions which may end up restricting motion of the tendons and limit the ability to ambulate. This is also apparent in the ankle joint where once again the skin is very thin and a burn injury could impair the movement of the tendons around the ankle. The bottom of the foot is somewhat different in that the skin particularly around the heels is thick and there is much more fat on the bottom of the foot to aid in shock absorption when ambulating. This \"extra\" fat is tightly attached to the skin on the bottom of the foot. This set up allows the bottom of the foot to better absorb the shearing forces which occur when walking. Thus, destruction of the skin and closely attached fat on the bottom of the foot would make the ability to walk very difficult if this structure was destroyed. Burns may be classified based on the degree of severity. First Degree-superficial, painful burn that often appears as erythematous (redness) but without blisters. Generally will heal without scarring or discoloration. Second Degree-partial thickness (partial skin layer destruction), painful burn associated with blisters and erythema. Third Degree-full thickness (full skin layer destruction), painless burn which may have a waxy, white or necrotic (death of tissue) appearance. Will often heal with a scar or require skin grafting. Fourth Degree-full thickness, painless burn involving muscle and possibly bone."}, {"title": "rpj-common-crawl-2021-04", "text": "Of How (4:26) All Have Some (4:41) Fox Tail (4:05) RISE (5:33) Hartland Quay (4:27) Do You Think You're Right (4:47) Ona (3:10) Some Kinda Love (4:18) Equal Rights (6:48) \u2191 Roots & Traditional Album of the Year - Solo category at the Juno Awards This page contains text from Wikipedia, the Free Encyclopedia - https://wn.com/Rise_(Annabelle_Chvostek_album) A burn is a type of injury to skin , or other tissues, caused by heat, electricity, chemicals, friction, or radiation. Burns that affect only the superficial skin layers are known as superficial or first-degree burns. When the injury extends into some of the underlying layers, it is described as a partial-thickness or second-degree burn. In a full-thickness or third-degree burn, the injury extends to all layers of the skin. A fourth-degree burn additionally involves injury to deeper tissues, such as muscle, tendons, or bone. The treatment required depends on the severity of the burn. Superficial burns may be managed with little more than simple pain medication, while major burns may require prolonged treatment in specialized burn centers. Cooling with tap water may help relieve pain and decrease damage; however, prolonged exposure may result in low body temperature. Partial-thickness burns may require cleaning with soap and water, followed by dressings. It is not clear how to manage blisters, but it is probably reasonable to leave them intact. Full-thickness burns usually require surgical treatments, such as skin grafting. Extensive burns often require large amounts of intravenous fluid, because the subsequent inflammatory response causes significant capillary fluid leakage and edema. The most"}, {"title": "rpj-c4", "text": "The seriousness of a burn injury depends on how deep the injury is and how much of the body has been burned. It is common for a person with a large burn injury to have burns of different depths. The deepest injury is usually at the center of a burned area. Medical technology now has tests to determine the depth of a burn injury, but an experienced burn specialist\u2019s examination continues to be the most reliable way of evaluating the depth of burns. Damage to the pulmonary system is a common and potentially dangerous condition that afflicts some burn victims. Inhalation injury is the most common cause of death in burn victims. Flash burns often harm the face but rarely involve the airway. The skin has several layers (see diagram). The deeper the burn injury is, the greater the number of layers that are damaged. Sweat glands and the roots of hair follicles are in the deeper layers and will be destroyed with a deep burn. Deep injuries heal more slowly, are more difficult to treat, and are more likely to have complications than superficial injuries. The names given to burn injuries of various depths have changed in recent decades. Injury to the top layer of skin (the epidermis) is now called a superficial burn (formerly called a first degree burn). Injury to the second layer of skin (the dermis) is now called a partial thickness or dermal injury (formerly called a second degree burn). An injury that extends down to the third layer (the subcutaneous"}, {"title": "rpj-common-crawl-2021-04", "text": "et al., 1997).[10] According to Temu-Justin et al. (2008),[1] in the second-degree burns the skin is light, red and blistery, swollen to some extent with moistly discharge and severe pain. For a deep partial thickness burns, tissue damage encompasses the epidermis, papillary dermis, and reticular dermis. The portion of dermis might still be undamaged, which may provide some amount of protection through the healing process. The color of the skin is red to pale pink (Bessy, 2007).[11] According to Huckfeldt (2013),[12] if the majority of the dermis is injured, this damage could lead to scarring which might lead to functional and motor problems, particularly if the damage involves a joint area. Sterling, Heimbach and Gibran (2010)[13] explained full-thickness or a third-degree burn to include the epidermis, the two layers of dermis across the basement membrane into subcutaneous tissue. Here, the immediate region of damage differs in deepness, causing changes in skin color which could range from a dark waxy red to waxy white or black (Mertens et al., 1997).[10] According to Temu-Justin et al. (2008),[1] this kind of injury causes nerves and blood vessels damages. The initial pain may be little or there may have no sensation, dependent on which nerve tissue is damaged. The burn area is yellow, cherry red and becomes dry and leathery (Mazzeo et al., 2014).[14] Even after appropriate treatment and care, scarring is very common (Huckfeldt, 2013).[12] In fourth degree or deep full-thickness burns, there is a lot of tissue damage. The damages outspread the covers of the skin and the"}, {"title": "rpj-c4", "text": "A burn is damage to your body\u2019s tissues caused by heat, chemicals, electricity, sunlight, or radiation. Scalds from hot liquids and steam, building fires and flammable liquids and gases are the most common causes of burns. Another kind is an inhalation injury, caused by breathing smoke. Each year in the United States, about a half-million people seek medical attention for burns and 40,000 are hospitalized 3) and approximately 4,000 people die each year from fire and burn injuries 4). Burns can be caused by scalding from hot liquids or cooking oils, contact with flames, or from overexposure to the sun. Burn also can be electrical (e.g., when a child bites an electrical cord) or chemical (e.g., resulting from swallowing or spilling bleach on your skin). Household burns lead to nearly 7 of 10 admissions to burn centers. The good news is that the number of deaths from severe burns has dropped by more than half over the past 4 decades, in large part because of treatments developed through research. First-degree burns damage only the outer layer of skin (the epidermis). It may cause redness, swelling and pain. It usually heals with first-aid measures within several days to a week. Sunburn is a classic example. Second-degree burns: This type of burn affects both the epidermis and the second layer of skin (dermis). It may cause red, white or splotchy skin, pain, and swelling. And the wound often looks wet or moist. Blisters may develop, and pain can be severe. Deep second-degree burns can cause scarring (see Figure"}, {"title": "rpj-common-crawl-2022-05", "text": "{07116} carbon monoxide after-effects on globus pallidus In CHRONIC TOXICITY (i.e., that home heater is defective), the family complains of headache and malaise. Since carbon monoxide accumulates over time, symptoms do not vanish simply from leaving the house. It takes a clever physician to make the diagnosis, and ultimately save the family from brain damage / death. * Future pathologists only: Brown (chocolate) blood / brown livor mortis is seen in methemoglobinemia, usually due to poisoning (notably nitrates -- the \"Eleven Blue Men\" case is famous), less often drug allergies or hereditary deficiency of the enzyme that keeps hemoglobin reduced. Methemoglobin will not give up its oxygen to the tisues. INJURY DUE TO FIRE {24922} burn Deep Burn, Histopathology Text and photomicrographs. Nice. Human Pathology Digital Image Gallery Nanking, 1937 SURFACE BURNS FIRST DEGREE: The outer epidermis is damaged. The dermal vessels probably dilate, but there are no blisters. SECOND DEGREE: Living cells are killed in the epidermis. There will be a blister. THIRD DEGREE: No more epidermis. FOURTH DEGREE: Charred through. Today, it's more meaningful to talk about PARTIAL THICKNESS and FULL THICKNESS burns. In the latter, all the skin adnexal structures (hair follicles, sweat glands) are gone from the region of the burn, meaning you will need a skin graft to re-epithelialize it. Fatal burns, \"necklacing\" African political punishment Burning tire is placed around neck You'll learn the \"rule of 9's\" for estimating surface area burned. Complications of burns include: hyperkalemia, from disruption of red cells and other cells by the heat; shock and"}, {"title": "rpj-common-crawl-2020-05", "text": "emotionally and physically. Treatment provided in this stage begins before discharge by explaining and preparing the patient and family for the difficulties anticipated after discharge. Outpatient counseling, social skill training and support groups play a role in recovery. Family and friends\u2019 support and the patient\u2019s willingness to engage himself/ herself in society play an important role in recovery. Posted in: Medical and Psychological Consequences of Burns: Long Term Rehabilitation CONTACT US OR SHARE YOUR STORY OF SURVIVAL SEARCH BURN INJURY RESOURCE CENTER Search on Burn Injury Resource Center Third Degree Burns (124) Smoke Inhalation Injury (70) Having a Burn Injury Lawyer (59) Fire Prevention and Safety (55) Survivors Stories (28) I Suffered A Burn Injury, Do I Have A Case? (26) Burn Camps (25) Second Degree Burns (23) Carbon Monoxide (CO) Poisoning (20) Skin Graft (16) Severe Burns and Skin Flaps and Grafts Burns Affecting Pregnant Women (Part II) Burns Affecting Pregnant Women (Part I) Carbon Monoxide Survivor 15 Maiden Ln #1400 (212) ANSWERS info@212answers.com 25 Roslyn Rd 2nd Floor (516) PIATTYS Copyright \u00a9 2015 \u2013 2020, Kramer & Pollack"}, {"title": "rpj-c4", "text": "Burns is a topic covered in the 5-Minute Clinical Consult. Extent of injury (depth of burn) is a result of intensity and duration of exposure. 1st degree involves superficial layers of epidermis. 2nd degree involves varying amounts of epidermis (with blister formation) and part of the dermis. 3rd degree involves destruction of all skin elements (full thickness) with coagulation of subdermal plexus. Prognosis is worse for severe burns. Consider child abuse or neglect when dealing with hot water burns in children; abuse accounts for 15% of pediatric burns. Special concerns are sharply demarcated wounds, immersion injuries, and suspect stories. Involve child welfare services early. Predominant gender: males account for 70%. House fires cause 75% of deaths. Increase in burns from the illegal production of methamphetamines. Patients can present with a combination of chemical burn, thermal burn, and explosion injury. Open flame and hot liquid are the most common causes of burns (heat usually \u226545\u00b0C): flame burns more common in adults; scald burns are more common in children. Young children and older adults with thin skin are more susceptible to injury. Lack of smoke detectors: Lacking or nonfunctioning smoke alarms are implicated in 63% of residential fires. Home safety education should be a key mechanism for injury prevention. Families educated on home safety were more likely to have safe hot water temperatures. Safety education results in more families having functioning smoke alarms and increased use of fireguards. Stephens, Mark B., et al., editors. \"Burns.\" 5-Minute Clinical Consult, 27th ed., Wolters Kluwer, 2019. Medicine Central, im.unboundmedicine.com/medicine/view/5-Minute-Clinical-Consult/116098/all/Burns. Burns. In:"}, {"title": "rpj-common-crawl-2021-04", "text": "signs of neglect or abuse.[40] Bride burning, a form of domestic violence, occurs in some cultures, such as India where women have been burned in revenge for what the husband or his family consider an inadequate dowry.[41][42] In Pakistan, acid burns represent 13% of intentional burns, and are frequently related to domestic violence.[40] Self-immolation (setting oneself on fire) is also used as a form of protest in various parts of the world.[18] Pathophysiology[edit] Three degrees of burns At temperatures greater than 44 \u00b0C (111 \u00b0F), proteins begin losing their three-dimensional shape and start breaking down.[43] This results in cell and tissue damage.[2] Many of the direct health effects of a burn are secondary to disruption in the normal functioning of the skin.[2] They include disruption of the skin's sensation, ability to prevent water loss through evaporation, and ability to control body temperature.[2] Disruption of cell membranes causes cells to lose potassium to the spaces outside the cell and to take up water and sodium.[2] In large burns (over 30% of the total body surface area), there is a significant inflammatory response.[44] This results in increased leakage of fluid from the capillaries,[15] and subsequent tissue edema.[2] This causes overall blood volume loss, with the remaining blood suffering significant plasma loss, making the blood more concentrated.[2] Poor blood flow to organs such as the kidneys and gastrointestinal tract may result in kidney failure and stomach ulcers.[45] Increased levels of catecholamines and cortisol can cause a hypermetabolic state that can last for years.[44] This is associated with increased cardiac"}, {"title": "rpj-book", "text": "of your eye. But in spite of your diligence, his curiosity and lightning-quick moves manage to pull a saucepan of hot soup off the stove and onto his lower face and chest. The area is bright red immediately, and you soon see several blisters on his neck. You also notice that his lips are rapidly swelling since some of the soup caught him there. You realize that he has a significant burn, one that needs medical attention. How should you handle this scary situation? This scenario is our opportunity to talk about burns. These injuries are common in children, particularly scalds from hot liquids. Many parents remember from first-aid classes that we commonly classify burns in increasing order of severity as first-, second-, or third-degree burns. Physicians now generally speak of _superficial_ , _partial_ _thickness_ , and _full_ _thickness_ burns, although you will still hear the earlier terms frequently. The newer classification makes sense because it describes the skin injury: just the top (superficial), into the dermal layer (partial thickness), or entirely through the skin (full thickness). How we manage burns depends on the severity of the burn and its location. Burns such as the one in this scenario are typically of mixed type. For example, they may be superficial in some places and partial thickness in others. This child already shows evidence of that, with some areas being only red (superficial) but others having blisters (partial thickness). Another important point is that, particularly for more severe burns, it may be difficult to classify the burn"}, {"title": "rpj-c4", "text": "extends down to the third layer (subcutaneous). Skin with a third-degree burn may appear white or black and leathery on the surface. Oddly, deep third degree burns sometimes do not cause any pain. This happens when the damage is so extensive that the nerves have been completely destroyed. However, the area around the burn may be extremely painful. A third degree burn is the most severe type of burn and the pain may cause breathing problems and increased pulse rate and leave terrible scarring. Proper care of burns is vital, because burns can be quite painful and leave disfiguring and disabling scarring. Burns can be complicated by shock, infection, multiple organ dysfunction syndrome, electrolyte imbalance and respiratory distress. Large burns can be fatal, but modern treatments, improved the treatment of such burns, especially in children and young adults. Burn injury victims may be prescribed pressure garments to wear. Pressure garments are used to minimize scar formation. Compression garments are fitted to the special needs of each burn victim, and customarily worn at least 23 hours a day, but removing for washing or bathing. However the duration of pressure garment therapy may vary, and last one year or more. Exercise is important to keep muscles and joints moving freely and comfortably, with full ranges of motion. Often, patients are encouraged to begin moving their limbs as soon as the surgical procedures have been completed and skin grafts have taken. While exercise at this stage might be painful, it is vital in preserving normal range of motion. The"}, {"title": "rpj-common-crawl-2021-04", "text": "underneath Third-degree burns damage or destroy the deepest layer of skin and tissues underneath Burns can cause swelling, blistering, scarring and, in serious cases, shock, and even death. They also can lead to infections because they damage your skin's protective barrier. Treatment for burns depends on the cause of the burn, how deep it is, and how much of the body it covers. Antibiotic creams can prevent or treat infections. For more serious burns, treatment may be needed to clean the wound, replace the skin, and make sure the patient has enough fluids and nutrition. NIH: National Institute of General Medical Sciences Burns (Medical Encyclopedia) Chemical burn or reaction (Medical Encyclopedia) Minor burns - aftercare (Medical Encyclopedia) Skin graft (Medical Encyclopedia) Previous Code: T22.449D Next Code: T22.45"}, {"title": "rpj-c4", "text": "How Bad Is My Burn? Some burns are minor injuries you can treat at home. Others cause lasting damage to your skin, muscles, and bones and require long-term medical care. The type of burn you have depends on what caused it, as well as how severely your skin has been hurt. Friction burns. When a hard object rubs off some of your skin, you have what\u2019s called a friction burn. It\u2019s both an abrasion (scrape) and a heat burn. These are common in motorcycle and bike accidents. Carpet burn is another type of friction burn. Cold burns. Also called \u201cfrostbite,\u201d cold burns cause damage to your skin by freezing it. You can get frostbite by being outside in freezing temperatures. It can also happen when your skin comes into direct contact with something very cold for a prolonged period of time. Thermal burns. Touching a very hot object raises the temperature of your skin to the point that your skin cells start dying. Very hot metals, scalding liquids, and flames all cause thermal burns. Steam can, too. Radiation burns. Sunburn is a type of radiation burn. Other sources of radiation, like X-rays or radiation therapy to treat cancer, can also cause these. Chemical burns. Strong acids, solvents or detergents that touch your skin can cause it to burn. Electrical burns. If you come into contact with an electrical current, you can get this type of burn. Doctors group burns into different categories based on how deeply your skin has been harmed. These are called \u201cdegrees.\u201d You"}, {"title": "rpj-common-crawl-2019-30", "text": "doubt, call 'em out. How Bad Is That Burn? Whether it's from a barbecue, an oven, the sun or a curling iron like this, everybody gets burned at some point. By far, most burns don't need to be treated at a burn center or get skin grafts, but they can certainly get that bad. Burn severity is based on how much skin is damaged. The measurement is done by the depth of the burn combined with the surface area affected. It's a complicated assessment process to determine whether burns are critical or not. It can be simpler to decide whether a burn needs to be seen by a professional at all. Most small first-degree burns, and sometimes even second-degree burns, don't need a healthcare provider. On the other hand, any burn that appears very deep should be professionally evaluated. Some burns require immediate attention and you should call 911 immediately: Burns to the face Burns that circle all the way around the hands or feet Burns to the genitals Second-degree burns covering an area larger than one whole arm or about the size of the back Bruised More Than Your Ego? Bruises range from minor inconveniences to severely incapacitating. Discoloration is the most noticeable aspect, but that's only part of a bruise. They also cause swelling and might lead to a loss of function in severe enough cases. The trick to avoiding bruises (besides avoiding injury in the first place) is to treat any injury with RICE as soon as you get hurt. Most bruises can"}, {"title": "rpj-c4", "text": "Select from on-line school degrees in a few of at present\u2019s most in-demand fields including health care, data administration, enterprise administration, and environmental studies. Even higher, many applications will let you specialize, honing in on matters that notably inspire you. You may additionally obtain school credit for work expertise, letting you bounce-start your degree and bypass learning materials you already know. An infection is the main cause of death to burn patients. Prior to now folks burned as badly as Scott at all times died. This was as a result of burn surgeons might only take away as much damaged skin as they\u2019d new-growth pores and skin to use to graft the world that was eliminated. Somebody burned over eighty five% of their physique would take months to cowl with new skin, by then the infections caused by the useless burned skin killed them. The much less severe first-degree burn happens when the outer layer of skin is burned however not right through. First and second degree burns could be handled as minor burns, so long as they\u2019re smaller than three inches in diameter and don\u2019t occur on the face, palms, toes, groin or buttocks or on a major joint. Burns that meet these standards should be treated as major and want medical attention. Going to School is Your Finest Unemployment Insurance coverage: Most of us know that after 2008 there have been many individuals out of labor. Unemployment charges in most areas of the nation have been very excessive and most of us have known"}, {"title": "rpj-common-crawl-2022-05", "text": "heat, chemicals, radiation or electricity. Thermal burns are caused by a myriad of heat sources. It could be flash heat, such as an explosion of natural gas, gasoline, propane or other flammable liquids. It could also result from flames in house fires, auto accidents and ignition from improper use of flammable liquids. Scalds, too, would be in this category and are caused by contact with hot liquids, such as water, oil, grease or tar. Consider that most coffee when first brewed reaches 180 degrees Fahrenheit. Contact with water at 140 degrees Fahrenheit for three seconds will create a deep burn. Chemical burns, meanwhile, are typically caused by acids or alkali substances, often in industrial accidents. One may also suffer chemical burns through inhalation of toxic fumes, steam or smoke. Electrical burns also often result from industrial accidents, resulting from contact with damaged electrical cords, electrical outlets or high-voltage wires. In addition to causing thermal injury to the skin, electrical burns may also result in severe internal injuries. Radiological burns are those caused by X-rays or in radiation therapy often used in cancer treatments. Sunburns and tanning bed burns also fall into this category. Specifically, radiation burns are caused by gamma, beta or alpha radiation. In some cases, decontamination may be necessary to halt injury. Burns are generally classified by severity. Those categories are: First-degree burns. These are superficial wounds resulting in damage to the first layer of skin and resulting in redness, swelling and minor pain. These generally heal on their own and don\u2019t cause permanent"}, {"title": "rpj-c4", "text": "Burn injuries are definitely one of the most agonizing. Burn injury survivors typically endure some of the most disastrous and deforming injuries imaginable. In addition to the physical pain and suffering, those injured in a burn accident many times also suffer intense psychological and emotional scars in the aftermath of disability and disfigurement. These types of injuries often require a very long recovery period due to melted skin, damaged tissue and severe nerve damage. Catastrophic burn injury survivors will incur mounting medical expenses that often persist for many years and may not be covered fully by insurance. In partial thickness burns, blisters will likely be present and involve the entire epidermis (outer layer of the skin) and dermis (the thick under layer of the skin containing the nerve endings and hair follicles). These burns are red and wet in appearance and will be very painful. These heal without skin grafting but some minimal scarring can result. In full thickness burns, the epidermis is ravaged and most of the dermis is affected. These burns require surgical removal of burned tissue and skin grafting is performed to begin the healing process. By far the most serious of these injuries, third degree burns always require immediate medical attention. All layers of the skin are destroyed and fat, muscle and even bone may be affected in such burns. Burned areas can be either black or white in appearance and may look dry and leathery in texture. Because of the extensive damage to subcutaneous tissue, pain may not be felt in"}, {"title": "rpj-common-crawl-2022-05", "text": "burns (Bull & Jackson, 1952). The greatest fluid shift occurs within the first 8 to 12 hours after the burn. If the prehospital assessment reveals the presence of hypovolemia, evaluate the patient for other injuries that may be contributing to the fluid loss. EMS personnel can categorize burns by the depth of damage created. First-degree burns damage only the outer epidermal layer of skin. Second-degree burns extend through the epidermal layer and into the dermis. Third-degree burns extend through the epidermal and dermal layers. Another classification system uses the terms partial or full thickness. Partial thickness would include the first- and second-degree burns, while a full thickness injury refers to a third degree burn. After ensuring that the offending liquid is no longer continuing the burning process, you should quickly evaluate the patient\u2019s airway, breathing, circulatory and neurological status. Pay special attention to any respiratory noise such as stridor, which indicates a narrowing of the patient\u2019s upper airway. A very rare complication of scalding in the pediatric group is the development of respiratory failure requiring endotracheal intubation despite the absence of inhalation injury or other injury directly to lung tissue (Bj\u00f6rk & Svensson, 1993; Desai, Nichols, & Herndon, 1987; Guzel, Aksu, Aylan\u00e7, Duran, & Karasalihoglu, 2009; Hudson, Jones, & Rode, 1994; Rocourt et al, 2011; Zak et al., 1999). Although the exact mechanism that produces this failure is still undefined, some researchers suggest fluid over administration (Zak et al., 1999) or activation of a systemic inflammatory response (Rocourt et al., 2011). This complication appears more likely"}, {"title": "rpj-common-crawl-2022-05", "text": "and so on. First-degree burns are minor, and 5th\u00b0 burns are often catastrophic. These degrees include: First-degree \u2013 A minor first-degree burn injury only affects the skin\u2019s outer layer, like a mild sunburn, blister, or other heat exposure. Typically, victims with first-degree burns rarely have long-term damage to the affected area. Second-degree \u2013 A moderate second-degree burn injury typically damages the skin's dermis (underlying) layers, appearing swollen, red, wet, or shiny. At this stage, the burn will likely blister and hurt when touched. Superficial second-degree burns typically damage the dermis layer and do not cause scarring. Deep partial-thickness second-degree burns are more severe, causing permanent skin color changes Third-degree \u2013 This full-thickness burn injury usually destroys the skin\u2019s two upper layers, causing the skin to appear yellow, white, brown, or black. Usually, third-degree burns have only minimal pain because the nerve endings have been damaged. Fourth-degree \u2013 Burn specialists identify fourth-degree burns as the most severe life-threatening burn, destroying every skin layer, and killing tissue, tendons, muscles, and bone. Fifth-degree \u2013 Typically, a fifth-degree burn injury surpasses fourth-degree burns when the ligaments and muscle layers have burned away, leaving charred bone, destroying skin and muscle, and loss of function. Every burn degree can worsen over time as the injury spreads. The injury can also cause significant complications, where joint and bone problems arise, or infection begins to develop. According to the World Health Organization (WHO), specific society segments are more at risk of suffering a burn injury than others. Contributing factors to a burn could include:"}, {"title": "rpj-c4", "text": "the seriousness of the burn on the skin; in other words, the severity of the damage, which the burn has one the skin. We have the First-Degree burn as the most minor, and the last one, the third-degree being the most severe. \u2022 First-Degree burn: a skin, which is nonblistered and red as well. \u2022 Second-Degree: you tend to experience the presence of blisters and a few thickening of the skin. \u2022 Third-Degree burn: a thickness, which is widespread; and this thickness has an appearance that\u2019s leathery and white. And to add to this, there exists fourth-degree burn, this type of burn has the whole symptoms of A third-degree burn, which means that it acts like the third-degree burn. But, the difference is, fourth-degree burn goes deep \u2014 beyond the skin \u2014 into bones as well as tendons. Burns consists of several causes, let\u2019s take a look at them. Know this, the cause of a burn doesn\u2019t determine the type of burn; what determines it is, how long that liquid or fire remains in contact with the skin. Looking at scalding, this very one can lead to the cause of the whole three degrees; want to know what it depends on? well, it depends on the level of hotness of the liquid and also, how long it touches the skin. If you encounter electrical or chemical burns, it\u2019s advisable that you, without hesitation, visit your doctor \u2014 because these burns have the ability to affect inside your body, even if the damage on the skin is"}, {"title": "rpj-common-crawl-2023-06", "text": "What to know about third degree burns Medically reviewed by Alana Biggers, M.D., MPH \u2014 By Louise Morales-Brown on February 15, 2021 Third degree burns, or full-thickness burns, are a type of burn that destroys the skin and may damage the underlying tissue. They are more severe than first or second degree burns and always require skin grafts. Third degree burns are a serious injury requiring immediate medical help. Unlike less severe burns, which can be very painful, full-thickness burns may not hurt. This is because the burn may damage nerve endings in the skin responsible for sensing pain. In addition, the burn site may appear waxy or leathery A person with a third degree burn will require hospitalization. Treatment will vary depending on the extent, severity, and location of the burn. If an individual suspects they have a third degree burn, they should seek immediate medical attention. Without treatment, these burns and resulting complications can be fatal. In this article, learn more about third degree burns, including the symptoms, treatment, and when to speak with a doctor. Third degree burns are a severe type of burn that extends through every layer of skin. This type of burn can destroy: the epidermis, the outer layer of skin the dermis, the layer beneath the epidermis the hypodermis in some cases, which is the subcutaneous tissue and the innermost layer of skin Doctors categorize burns according to the damage they cause to the skin and surrounding tissue. Types of burns include: First degree burn: Also known as superficial"}, {"title": "rpj-c4", "text": "Furthermore, burn injuries often have complications including infection, organ malfunction, electrolyte imbalance, and respiratory issues. First-Degree Burns: These are superficial burns that damage only the first layer of skin. First-degree burns are mild, resulting in redness and pain, and can be treated with over-the-counter pain medication and skin care products, such as aloe vera cream. Second-Degree Burns: This type of burn damages the first two layers of skin. These burns can be superficial or deep, depending on the severity of the burn. Second-degree burns result in pain, redness, swelling, and blistering, and can be treated with antibiotic creams prescribed by a doctor. Third-Degree Burns: These burns affect all the layers of skin and the tissue under it. These burns are severe and require medical treatment. White, blackened, or charred skin may result from these burns. Third-degree burns are treated with skin grafting or synthetic skin. Intravenous fluids and antibiotics might also be necessary. Fourth-Degree Burns: The most severe variety, fourth-degree burns penetrate the bone, muscles, and ligaments. This type of burn requires medical treatment similar to that of third-degree burns. Two types of burns are common in the workplace: heat burns and chemical burns. Heat burns occur when the skin comes in contact with a surface or a substance of high temperature. Heat burns can be caused by flames, hot surfaces, hot liquids, or steam. Faulty wiring, improper gas connections, combustibles that are not stored correctly, and sparks from machinery all present burn risks. Workers in laboratory, manufacturing, and medical fields are especially prone to chemical"}, {"title": "rpj-c4", "text": "surface. Though they are the most minor type of burn, these injuries can still be painful. However, they rarely result in complications that require serious medical attention and only require basic first aid. Signs of a first-degree burn include swelling and red coloration. Second-degree burns extend past the first layer of skin. These burns commonly cause blistering. This is the body\u2019s attempt to heal the injury and protect the lower layers of skins. Care for these burns does not always require professional medical care. However, if the burn is large enough, a trip to the hospital may be necessary. Third-degree burns are severe medical emergencies and require intensive treatment to heal. Third-degree burns cause damage to every layer of the skin and damage nerve ending and tissues underneath the skin. This serious injury makes the skin stiff and hard with dark or white coloration. Fourth-degree burns are similar to third-degree burns, but they represent an even more dangerous level of injury. With this type of burn, the damage may extend past the skin and into the muscles and bone. This burn may cause so much damage that healing is not a possibility. Fourth-degree burns often require amputation. Even if a victim fully recovers, the damaged skin usually does not heal back to its original appearance. Burn scars are notorious for causing physical and emotional trauma. Physically, burn scars can produce tighter skin and limit physical movement. Emotionally, some burn victims suffer a heartbreaking amount of shame due to the embarrassment of regarding visible scars. In severe"}, {"title": "rpj-book", "text": "burn the skin for some time and can be absorbed into the body to damage internal organs, depending on the type of chemical. Other patient injuries: For the patient who has suffered from an explosion, the possibility of internal bleeding must not be overlooked while treating the burn. Underlying injures must always be sought out. Once the determining factors have been evaluated, the burn can be categorized as follows, using American Burn Association parameters. It should be remembered that it may take a little time for the full extent of the burn injury to manifest itself.What is taken for second-degree burn at the scene may develop into a third-degree burn at a later date. Major Burns: 1. Second-degree burns involving > 25 percent of total body surface 2. Third-degree burns involving > 10 percent of total body surface 3. Burns complicated by respiratory tract injury, fractures, or those involving critical areas such as face, hands, feet, and perineum 4. 4. High-voltage electrical burns 5. Lesser burns in patients with significant preexisting disease Moderate Burns: 1. Second-degree burns involving 15 to 25 percent of total body surface 2. Third-degree burns involving 2 to 10 percent of total body surface 3. Areas above not involving face, hands, feet, perineum Minor Burns: 1. Second-degree burns < 15 percent of total body surface 2. Third-degree burns < 2 percent of total body surface EMERGENCY CARE FOR THE BURNED PATIENT The PHCP's initial three goals in rendering care to the burned patient are to remove the victim from the source of"}, {"title": "rpj-common-crawl-2021-04", "text": "result in redness of the skin and some immediate pain that lessens with time. Second-degree burns are more serious and extend into the outer epidermis layer and the lower layer of skin (the dermis). You might receive a second-degree burn from accidentally pouring boiling water onto your body or touching a hot clothes iron. In addition to pain and redness, most second-degree burns cause blistering and swelling. Third-degree burns are among the most severe burns. They burn all the way through the epidermis and dermis skin layers and damage the tissue underneath. Skin may turn white or blackened and charred and it may go numb if nerves were damaged. Most severe burn injuries that result in lawsuits, such as those from fires or electrical shocks, are third-degree burns. Some medical professionals also use additional categories \u2013 up to the sixth degree \u2013 to indicate injuries that burn down into ligaments, tendons, muscles, bones, or internal organs. Third-degree burns and worse, especially if they cover a significant percentage of the body, can lead to a range of complications and may require extended hospitalization and skin-graft surgeries. If the burn damages muscle and other interior tissue, patients may require physical therapy to regain range of motion. Because of extensive nerve damage, burns at these levels can cause chronic pain. Ongoing Complications from Burn Injuries Burns don\u2019t always heal quickly or uniformly. While each patient may experience a different outcome, some common complications result from many burn injury cases. These complications can include: Infection. This includes skin infections from"}, {"title": "rpj-c4", "text": "burn affects the first and second layer of skin (the dermis), and can cause pain, red and white splotchy skin, and swelling around the injury. A second-degree burn may also appear moist or wet and can blister, which may result in scarring. Third-Degree Burn: A severe classification of a burn injury. This type of burn affects both layers of skin, the layer of fat underneath, and the nerves around the injured area, and can cause severe pain, and leathery, waxy, wet, or black skin around the injury. Many third-degree burns are caused by large fires, so injured victims may also be suffering from smoke inhalation. Fourth-Degree Burn: The most severe classification of a burn injury. This type of burn affects both layers of skin, the layer of fat underneath, muscles, tendons, and bone. The injured area frequently appears charred or black, and often needs to be amputated in order to prevent the spread of infection. How Else Can A Serious Burn Affect Me? Hypothermia: Burns that damage a significant percentage of your skin severely limits your body\u2019s ability to properly regulate your internal temperature. Scarring: Scar tissue may form as your burn injury heals, and that new tissue can result in the permanent destruction of sweat glands, inhibit your ability to move the affected area, and potentially pull your joints out of their intended position. Infection: Infection poses a risk to burn injury victims, no matter the severity of the burn. Without proper care and treatment, it could easily lead to sepsis and put you at"}, {"title": "rpj-c4", "text": "and potentially longer. In a full thickness second-degree burn, the skin can appear to be red or white but will usually appear to be dry. This is because a full thickness second-degree burn involves the destruction of the entire outer layer of skin and most of the top layers underlying the epidermis. These burns often require extensive medical treatment and skin grafting to heal. Third-degree burns are a very serious injury and should be treated by a medical professional. Third-degree burn entails the complete destruction of all the layers of the skin and extends deep into the tissue below the skin. In these burns, the skin can appear black or white but will be very dry. However, there is often very little pain in these types of injuries due to the extensive damage to the nerves. These injuries normally require skin grafting and will often result in severe scarring. Fourth-degree burns are types of burns that are by far the most serious and will often result in severe impairment and disability. Fourth-degree burns involve burns to the deeper tissues such as the muscle, tendons, and bones. In these cases, you should seek prompt medical treatment. Surprisingly, one of the most common lifelong results of burn injuries sustained in a fire is brain injury. Cerebral hypoxia is a condition in which oxygen is cut off from the brain, causing brain cells to die. In these cases, a person can die or suffer severe life-long impairments. Who is Liable for Burns? If you have been in an accident"}, {"title": "rpj-c4", "text": "Burns can be about the most painful injuries a person can have, I know because I\u2019ve been there. No words are adequate to describe that kind of pain. On that pain scale of one to ten, burn injuries can reach hit about 10,000. It\u2019s simply surreal. No amount of morphine or Demerol is adequate to overcome it. We see burn injuries most often in natural gas or gasoline explosions, but there are many ways burn injuries can occur even chemical burns. Fortunately here in Atlanta we have a superb Grady Hospital Burn Unit. If a loved one has a serious burn injury anywhere within a 100-150 mile radius of Atlanta, your first response should be take them to Grady. If you were in scouts as a kid you probably learned about first, second, and third degree burns. First degree burns make the skin red, involve swelling and are painful for a short time. Usually they are pretty minor unless they cover a huge area of the body. Second degree burns go through the second layer of skin. If they\u2019re less than about three inches in diameter and not involved in hands, face, groin, or buttocks, that can be minor. But, if a second degree burn covers a large portion of the body or those areas I just mentioned it can be major and even life threatening if it involves the throat or lungs. A full thickness second degree burn may require extensive skin graphs and scarring. Third degree burns involve all the layers of the skin"}, {"title": "rpj-c4", "text": "If your burn injury requires additional assessment by a burn specialist, a consultation will be made to the Burn and Frostbite Center at the Anschutz Medical Campus in Aurora, Colorado. The Burn and Frostbite Center has been the Rocky Mountain region\u2019s premier burn care destination since 1976, and verified by the American Burn Association as a center of excellence since 1998. For physicians: to refer a patient to us, please call our DocLine at 1-844-285-4555 at any time. Electricity, chemicals, steam, very hot water, and fire can all cause serious burns. The care you receive for burns will depend on the type and severity of your injury. Many burns can be treated in an outpatient setting. If a burn needs inpatient treatment, it should be done in a burn center. Very severe burns need treatment in a burn center. You may be most familiar with the traditional burn classification of first, second, and third-degree burns. First-degree burns are usually mild. They affect only the outer layer of skin (epidermis). The skin is likely to be red, and there may be some pain and swelling. Most sunburns are first-degree burns. Second-degree burns injure the second layer (dermis) of skin. The skin will be intensely red and may develop blisters. These burns are often very painful. Third-degree burns involve all the layers of skin. Fat, nerves, muscles, and even bone may be burned. The skin may be charred black or appear very white. Pain is likely to be severe. If nerves are damaged, no pain may be felt"}, {"title": "rpj-c4", "text": "Third-degree burns usually require hospitalization, the duration of which will vary according to the seriousness of the injury. Intravenous fluids are often provided to the patient to help replace the significant amount of fluid lost through the burned area and antibiotics are usually administered to fend off infection. Injuries are also typically cleaned and then wrapped in sterile bandages, which are changed periodically. In some cases, burn victims may be placed in an oxygen-rich, high-pressure room known as a hyperbaric chamber. Despite the best possible treatment, however, the damage to the skin is so extensive from a third-degree burn that the affected areas will never return to their normal state. Instead, scar tissue will eventually begin to form and cover the burned area unless a skin graft is performed. Skin grafts in which tissue from other parts of the patient\u2019s body are transplanted to the injury are typically permanent, but those in which the skin comes from another person or a donor animal are usually a temporary means of protecting the damaged area during the long, slow healing process."}, {"title": "rpj-common-crawl-2023-06", "text": "destroyed. A superficial second-degree burn involves heat injury to the upper third of the dermis. The microvessels perfusing this area are injured, and permeability is increased, resulting in the leakage of large amounts of plasma into the interstitium. This fluid lifts off the thin, heat-destroyed epidermis, causing blister formation. Despite loss of the entire basal layer of the epidermis, a burn of this depth will heal in 7 to 14 days. A deep dermal(or deep second-degree) burn extends well into the dermal layer, and fewer viable epidermal cells remain. Therefore, reepithelialization is extremely slow, sometimes requiring months. The wound surface usually is red, with white areas in deeper parts. Because the remaining blood supply is marginal, there is a high probability that the tissue damage will deepen with time. A full-thickness (or third-degree) burn occurs with destruction of the entire epidermis and dermis, leaving no residual epidermal cells to repopulate the burned area. The portion of the wound not closed by wound contraction will require skin grafting. The exact depth of many deep burns cannot be defined on first appearance. A zone of ischemia is present between the dead superficial tissue and the deeper living tissue. This marginally viable tissue can be readily converted to nonviable tissue by infection or a further decrease in blood flow. Severity of Injury The size of the burn is defined as a percentage of the TBS. A useful initial guide is the rule of nines, which divides the body into areas that each represent 9% of the TBS. The head"}, {"title": "rpj-common-crawl-2023-06", "text": "tissues and organs not receiving enough oxygen. Several organs, such as the lungs, heart, and brain, are particularly susceptible to damage by \u201cburn shock.\u201d Infection is another major concern with third degree burns. The severe damage to the skin makes the body more susceptible to pathogens. Burns can also weaken the immune system, meaning the body is less capable of fighting off infection. In particular, acquiring pneumonia and sepsis infections are common and potentially fatal complications. A doctor can usually diagnose the severity of a burn by examining the affected area. They may also ask questions about the cause of the burn, any other injuries, and whether the person has any other medical conditions. The doctor may determine the severity of the burn by accounting for: the patient\u2019s age the percentage of total body surface area burned (TBSA) using the rule of nines the type of burn which body parts are involved A doctor may classify a severe burn under the following criteria: more than 10% TBSA in children or older adults more than 20% TBSA in adults more than 5% third degree significant burns to the: According to the World Health Organization (WHO), any third degree burn requires immediate hospitalization and treatment. Individuals with this type of burn usually receive treatment at a special burn unit. Following a third degree burn, people should immediately try to arrange medical assistance. While waiting for emergency care, a person can ensure an individual with a third degree burn: is out of harm\u2019s way is breathing has restrictive items"}, {"title": "rpj-c4", "text": "A burn is an injury to the tissue of the body, typically the skin. Burns can vary in severity from mild to life-threatening. Most burns only affect the uppermost layers of skin, but depending on the depth of the burn, underlying tissues can also be affected. Traditionally, burns are characterized by degree, with first degree being least severe and third degree being most. However, a more precise classification system referring to the thickness or depth of the wound is now more commonly used. For the sake of this article, burns will be described by thickness. For a comparison of the two classification systems, see the table below. When the epidermis and dermis are both destroyed and the burn extends down into the subcutaneous tissue, including fat, muscles and even bones, this is referred to as a full-thickness burn (third- and fourth degree burn). For full-thickness burns, generally the skin will either be white, black, brown, charred, or leathery in appearance. Often eschar (dry, black necrotic tissue) will form around the wound. Since nerve endings are destroyed along with the dermis, these wounds are typically painless. However, most full-thickness wounds are surrounded by wounds of various thicknesses, so these areas may still be painful. Infection: One of the main functions of the skin is to act as a barrier against outside infection. However, this physical barrier is broken with partial or full thickness wounds. With severe burns, hard, avascular eschar forms, providing an environment prone to microbial growth. In addition, eschar makes it more difficult for antibodies"}, {"title": "rpj-c4", "text": "and the texture of the skin may also be leathery or waxy. Fourth-Degree Burns: Fourth-degree burns destroy all skin layers and extend into muscle, tendon, or bone 7). Burn depth and size are important factors in determining whether a burn can be classified as minor, and are crucial in dictating the initial steps of burn assessment and management 8). Superficial burns can often be managed on an outpatient basis, whereas full-thickness burns must be evaluated by a specialist for possible excision and grafting. Determination of burn depth can be complicated by the conversion of burns to a higher burn category within the first several days. Conversion occurs when the damaged skin continues to spread and burn depth increases because of thermal injury that did not fully present on initial assessment; therefore, frequent evaluation and reassessment are necessary for all categories of burns 9). Burn size is determined by estimating the percentage of the patient\u2019s body surface area that is covered by partial-thickness and full-thickness burns (Figure 9) 11). First-degree burns are not incorporated into formal estimations of burn size. The Lund-Browder classification can be used for initial assessment of burn size in adults or children. The \u201crule of nines\u201d diagram is helpful for rapid assessment of burn size, but this method is less accurate than the Lund-Browder classification, especially in children. The hand is often used to measure small burn areas; it correlates to 1 percent of total body surface area. Studies have shown that the adult hand is closer to 0.8 percent of total body"}, {"title": "rpj-common-crawl-2019-30", "text": "and ulcer formation. The practice of classifying burns in \u2018degrees\u2019 was introduced in the 18th century. Two German surgeons, Heister (1724) and Richter (1788) classified burns into four degrees: First degree: Heat, pain and small blisters. Second degree: Severe pain and large blisters. Third degree: Damage to the skin and underlying flesh, with crust formation. Fourth degree: Damage to all soft tissues down to the bone. In 19th century, Guillaume Dupuytren developed a classification of burn depth after a review of the care of 50 patients. This classification divided burns into the following six degrees: First degree: Erythema. Second degree: Skin inflammation with epidermal detachment. Third degree: Partial destruction of the papillary layer and subpapillary network of the corium. Fourth degree: Destruction of the skin down to the subcuticular layer. Fifth degree: Crust formation over skin and muscle. Dupuytren\u2019s classification is still in use by some today.[39] However many modern writings tend to use a simpler three degree classification system and this may be attributed to a French surgeon, Boyer, and was introduced in the beginning of the 18th century (1814).[40] This classification divided burns into the following three degrees: Second degree: Blistering of the skin leading to superficial ulceration. Third degree: Tissue disorganization leading to a dry yellow crust. The current convention for describing burns is using depth rather than degrees; that is superficial, mixed depth and full thickness and new techniques are now in development to help physicians determine the depth of burns more accurately and objectively. These include thermal imaging[41], the use of"}, {"title": "rpj-c4", "text": "While the NFPA has fire prevention tips and strategies it is a sad reality that people are often injured or die when they are involved in a fire. When you ask about fire injuries many people automatically and exclusively turn to burns. While burns are a very common injury, there are other injuries that can be just as severe and have an equally detrimental impact on a persons\u2019 life. There are two types of burns from fires: flash burns and burns from flames. Flash burns result from a sudden intense heat, which usually result from some form of explosion. Generally, people who have sustained flash burns can be treated as an outpatient and do not require extensive medical care. On the other hand, those who suffer burns from flames may incur extensive damage depending on the severity of the burn. There are four widely accepted burn types, which are separated by degrees. First-degree burns affect only the top layer of skin, which is known as the epidermis. In these burn types the skin is usually red and painful, however, this burn is usually equivalent to a sunburn and the healing process normally does not take longer than 3-5 days. Second-degree burns can be classified as either partial or full thickness burns and are more severe than first degree burns. In a partial thickness burn, there can be a blister that involved the entire skin and upper layers of the skin known as the dermis. The healing process for these burns can take anywhere from 10-21 days"}, {"title": "rpj-common-crawl-2020-05", "text": "is very small. For deep partial-thickness burns, tissue may undergo spontaneous epithelialization from the few viable epithelial appendages at this deepest layer of dermis and heal within 3-6 weeks (if no infection arises). Because these burns have less capacity for re-epithelializing, a greater potential for hypertrophic scar formation exists. In deep partial-thickness burns, treatment with topical antimicrobial dressings is necessary to prevent infection as the burn wound heals. Contraction across joints, with resulting limitation in range of motion, is a common sequela. Splash scalds often cause second-degree burns. Third-degree burns Third-degree burns are full-thickness burns that destroy both epidermis and dermis. The capillary network of the dermis is completely destroyed. Burned skin has a white or leathery appearance with underlying clotted vessels and is anesthetic. Unless a third-degree burn is small enough to heal by contraction (< 1 cm), skin grafting always is necessary to resurface the injured area. Immersion scalds, flame burns, and chemical and high-voltage electrical injuries cause third-degree burns. Fourth-degree burns Fourth-degree burns cause full-thickness destruction of the skin and subcutaneous tissue, with involvement of the underlying fascia, muscle, bone, or other structures. These injuries require extensive d\u00e9bridement and complex reconstruction of specialized tissues and invariably result in prolonged disability. Fourth-degree burns result from prolonged exposure to the usual causes of third-degree burns. Burn size Accurate assessment of initial burn injuries is important to guide subsequent burn wound treatment. If it is anticipated that a burn wound will take longer than 21 days to heal spontaneously, surgical d\u00e9bridement and grafting are required to"}, {"title": "rpj-c4", "text": "How do you classify burn injuries? At one time, this was a fairly simple question to answer, but the classification of burns is changing and a new system is gradually being adopted. This has made conversations about burns more complicated since you need to be sure that everyone concerned is using the same system and terms. This article will cover the basics and discuss terminology that you might face when handling your next burn injury case. skin. The burn site is red, painful, dry, and with no blisters. Mild sunburn is an example. \u2022 Second-degree burns involve the epidermis and part of the dermis layer of skin. The burn site appears red, blistered, and may be swollen and painful. \u2022 Third-degree burns may also damage the underlying bones, muscles, and tendons. The burn site appears white or charred. There is no sensation in the area since the nerve endings are destroyed. For many years, healthcare providers have also added a fourth-degree category. Using this system, third-degree burns are limited to those that extend down through the epidermis and dermis into the subcutaneous tissue, and fourth-degree describes the burns that extend down into the underlying muscles, tendons and ligaments. Recently, a new system has come into use. This new system completely abandons the old use of degrees and describes the injuries based specifically by the depth of the burn. The traditional classification of burns is being replaced by the designations of superficial, superficial partial thickness, deep partial thickness and full thickness. Of course, these designations refer to"}, {"title": "rpj-common-crawl-2020-05", "text": "back down the leg via a motor nerve (4). This causes the muscles in the leg to contract and pull the toe away from the source of injury (6). At the same time, the dorsal horn sends another impulse up the spinal cord to the brain. During this trip, the impulse travels between nerve cells. When the impulse reaches a nerve ending (7), the nerve releases chemical messengers, called neurotransmitters, which carry the message to the adjacent nerve. When the impulse reaches the brain (8), it is analyzed and processed as an unpleasant physical and emotional sensation. Types of burns The Ayat under discussion mentions the burning of the skin. The severity of a burn depends on its depth, its extent, and the age of the victim. Burns are classified by depth as first, second, and third degree. First-degree burns cause redness and pain (e.g., sunburn). Second-degree burns are marked by blisters (e.g., scald by hot liquid). In third-degree burns, both the epidermis and dermis (external and internal parts of the skin) are destroyed, and underlying tissue may also be damaged. Further burn in the skin would damage the pain receptors and hence the person would not feel pain. Word Analysis: Quran rightly mentions this \u2018extreme\u2019 stage for the change of skin. The Arabic word used is \u0646\u0636\u062c\u062a which indicates the burning to the extreme stage. Ibn e Faris says that its basic meaning includes burning something to the last stage. Hence, not only the Quran told humans that sensation is due to the pain receptors"}, {"title": "rpj-book", "text": "the area of burn expressed as a percent of total body surface. The body is divided into anatomical parts and assigned certain percentages (Ill. 108). Once the burned areas' corresponding percentages have been added, the PHCP will have an estimate of the extent of body surface involved in the burn. Illustration 106: Pathology of the burn. Illustration 107: Pathology of the burn. Illustration 108: Percentages are assigned to anatomical parts, giving an estimate of the extent of body surface involved in the burn. Determining the Depth of the Burn Burns have long been characterized as first, second, or third degree, based on the depth of tissue damage and tissue response to the burn (Ill.109).First-degree burns are considered a superficial injury because only the epidermis is affected. Burns of this degree will cause reddening of the skin, and in the worst cases, some swelling may develop. The burn will be painful, but with minor care it will heal on its own without scarring. Since the epidermis is the only layer of skin involved in a first-degree burn, this type of burn is also known as a superficial partial-thickness burn or partial-thickness burn. Illustration 109: Depth of the burn injury as characterized by degree. In a second-degree burn, the epidermis has been burned through and the dermal layer has suffered injury.The burn does not pass through the dermal or second layer of skin. The patient will exhibit severe pain, and the skin will be blistered, reddened, and mottled in appearance. A large amount of swelling is to be"}, {"title": "rpj-c4", "text": "A burn is damage to your body\u2019s tissues caused by heat, chemicals, electricity, sunlight, or radiation. Scalds from hot liquids and steam, building fires and flammable liquids and gases are the most common causes of burns. Another kind is an inhalation injury, caused by breathing smoke. Each year in the United States, about a half-million people seek medical attention for burns and 40,000 are hospitalized 3) and approximately 4,000 people die each year from fire and burn injuries 4). Burns can be caused by scalding from hot liquids or cooking oils, contact with flames, or from overexposure to the sun. Burn also can be electrical (e.g., when a child bites an electrical cord) or chemical (e.g., resulting from swallowing or spilling bleach on your skin). Household burns lead to nearly 7 of 10 admissions to burn centers. The good news is that the number of deaths from severe burns has dropped by more than half over the past 4 decades, in large part because of treatments developed through research. First-degree burns damage only the outer layer of skin (the epidermis). It may cause redness, swelling and pain. It usually heals with first-aid measures within several days to a week. Sunburn is a classic example. Second-degree burns: This type of burn affects both the epidermis and the second layer of skin (dermis). It may cause red, white or splotchy skin, pain, and swelling. And the wound often looks wet or moist. Blisters may develop, and pain can be severe. Deep second-degree burns can cause scarring (see Figure"}, {"title": "rpj-c4", "text": "allowed to walk. They should still seek emergency help, but should be transported without walking if at all possible. Burns are injuries caused by extreme temperatures. Minor burns can be caused by the sun, a campfire, hot steam, or any object that is heated to a high temperature. First degree burns are the least serious, generally exhibiting tenderness, pain, and redness. Second degree burns are more serious and usually look slightly bumped out, almost like a bruise. They are also red and hurt when touched. Third degree burns are very serious and range from red to black, depending on severity. These burns usually bubble up, filling with fluid or remove the skin entirely. These burns hurt immensely and may require surgery to replace the skin lost. Large burns can also expose the body to outside temperatures, causing hypo- or hyperthermia. Minor burns will go away with time, but to decrease discomfort, they can be left alone, wrapped in gauze, cooled, moisturized (usually with aloe vera), and kept away from extreme temperatures. In the case of sun burns, it may be advisable to avoid the sun while healing. Serious burns are much harder to treat and will usually require emergency services. If a burn is large enough to potentially cause hypo- or hyperthermia, then it should be kept dry and covered at room temperature. Smaller burns may be wrapped in gauze soaked in saline to help cool and alleviate pain. Deformity is the fancy word in medicine that refers to an unnatural bend, cavity, or location of"}, {"title": "rpj-common-crawl-2022-05", "text": "liquids, and starting a fire could lead to a scalding injury, burn, or inhalation injuries when inhaling smoke. Medical science generally identifies burns in three categories including: First-degree burn injury where only the outer layer of skin\u2019s damage, like radiation burns, steam burns, and sunburns, and minimal pain levels Second-degree burn injury that damages the skin\u2019s surface and under layers Third-degree burn injury damaging or destroying the skin\u2019s deepest layers and underlying tissue Nearly immediately, a burn can begin to blister, swell, and scar that damaged tissue. If the burn is extensive, the victim may experience shock or death. In time, burn injuries may cause skin tightness Burn victims are highly susceptible to infection due to the damage to the skin\u2019s protective barriers. Treatment is often extensive. Skin injury burn damages require antibiotic medications and intravenous-administered nutrition and fluids. According to the National Institutes of Health (NIH), a burned area covering more than 25% of the victim\u2019s body surface area requires immediate IV (intravenous) fluids to ensure they maintain the total body water required for survival. Burn specialists know that an injured patient with burns exceeding 30% of their body could be fatal. However, recent medical technology advancements have lowered the death rate in patients suffering burns over half of their bodies. Even people with burns over 90% of their body surface can often survive with permanent scars and impairments. In the moments following a burn patient entering an emergency room, the nurse would begin the resuscitative medical team\u2019s burn management. The nursing team must focus"}, {"title": "rpj-c4", "text": "the depth of the skin affected by the burn. For now, the change in systems is still in progress, so during the transition you will notice a blend of terminology. Some experts may refer to first-degree, second-degree, third-degree and full thickness burns. Some may use a combination of terms such as first-degree/superficial, second-degree/partial thickness, third-degree/deep partial thickness and fourth-degree/full thickness. The variations can become confusing, so it is good to be versed in all the terms and systems discussed above. One of the most common nursing negligence issues we are called upon to illustrate is the development or progression of pressure sores (sometimes know as bed sores or decubitus ulcers). Pressure sores are areas of injured skin and tissue usually caused by sitting or lying in one position for too long. This often happens if you use a wheelchair or you are bedridden, even for a short period of time (for example, after surgery or an injury). When a change in position doesn't occur often enough and the blood supply gets too low, a sore may form. The constant pressure against the skin reduces the blood supply to that area, and the affected tissue dies. \u2022 Stage I: A reddened area on the skin that, when pressed, is \"non-blanchable\" (does not turn white). This indicates that a pressure ulcer is starting to develop. \u2022 Stage II: The skin blisters or forms an open sore. The area around the sore may be red and irritated. \u2022 Stage III: The skin breakdown now looks like a crater where"}, {"title": "rpj-common-crawl-2021-04", "text": "body's largest organ. It serves as a protective shield against heat, light, injury, and infection....more Classification and Treatment of Burns in Types of Burns Burns are classified as first-, second-, or third-degree, depending on how deep and severe they penetrate the skin's surface....more First-Degree Burn in Children in Types of Burns A burn is damage to tissues of the body caused by contact with things such as heat, radiation, or chemicals. A first-degree burn affects only the outer layer of skin (epidermis)....more Nutrition and Burns in Care of Burns A child who has been burned needs additional calories and protein to help him or her heal and grow....more Burns: Symptom Management in Care of Burns Most children with burns have pain, which can be controlled with medicine. They also usually experience itching at some point during the healing process. ...more Teaching Kids to Wash Their Hands in Disease Prevention How can you get your kids into the handwashing habit? We've got a few tips for you below....more A Simple Way to Keep the Flu Away in Disease Prevention You can avoid the flu this season by taking one simple step: Get a flu shot....more Diphtheria, Tetanus, and Pertussis (DTaP) in Immunizations Diphtheria, pertussis, and tetanus are serious illnesses. A combination vaccine is given to babies and children to provide protection against all 3 diseases. ...more Measles, Mumps, and Rubella (MMR) in Immunizations The MMR vaccine is given in two doses - at 12 to 15 months and at 4 to 6 years, or at least one"}, {"title": "rpj-common-crawl-2021-04", "text": "extrem NEC (Approximate Flag) A burn is damage to your body's tissues caused by heat, chemicals, electricity, sunlight, or radiation. Scalds from hot liquids and steam, building fires and flammable liquids and gases are the most common causes of burns. Another kind is an inhalation injury, caused by breathing smoke. There are three types of burns: First-degree burns damage only the outer layer of skin Second-degree burns damage the outer layer and the layer underneath Third-degree burns damage or destroy the deepest layer of skin and tissues underneath Burns can cause swelling, blistering, scarring and, in serious cases, shock, and even death. They also can lead to infections because they damage your skin's protective barrier. Treatment for burns depends on the cause of the burn, how deep it is, and how much of the body it covers. Antibiotic creams can prevent or treat infections. For more serious burns, treatment may be needed to clean the wound, replace the skin, and make sure the patient has enough fluids and nutrition. NIH: National Institute of General Medical Sciences Burns (Medical Encyclopedia) Chemical burn or reaction (Medical Encyclopedia) Minor burns - aftercare (Medical Encyclopedia) Skin graft (Medical Encyclopedia) Previous Code: T22.799D Next Code: T23"}, {"title": "rpj-book", "text": "by reddened skin and blistered/swollen in the center. In the most serious cases of a deep burn, the affected skin will be charred and/or pearly white (Chart 3 ). Chart 3: Characteristics of burn wounds. Determining Burn Severity Burn severity is categorized as major, moderate, or minor. Classification of burn severity serves to establish the order of care, type of care, and how and when to transport the patient. In cases of quick transport, it gives receiving emergency department personnel information upon which to base a response. Assigning a burn patient to one of the severity categories is dependent upon evaluation of the following determining factors: 1. Degree and extent of the burn 2. Body regions burned 3. Source of the burn 4. Other injuries the patient has suffered Degree and extent: Using the criteria of first-, second-, and third-degree burns along with the Rule of Nines, a vital measurement of injury sever ity is determined. Body regions burned: Burns to the face can result in the loss of the airway and damage to the eyes. Burns to the hands, feet, and joints are of concern due to scarring, loss of movement, and, most critically, the infliction of circumferential burns with a developing constricting eschar. Burns to the buttocks, groin, and medial thigh are more susceptible to infection (Ill.110) Illustration 110: Shaded areas represent body regions that, once burned, can easily lead to complications. Source of the burn: A \"minor\" chemical burn may be potentially more life-endanger ing than a comparable thermal burn. Chemical residue may"}, {"title": "rpj-common-crawl-2021-04", "text": "different chambers of the human heart. The role of the right ventricle is to assist in pumping oxygen-depleted blood into the lungs of the body. ollo / E+ / Getty Images A patient comes in with a \"full-thickness\" burn. Which degree of burn is it? Zero-degree burn First-degree burn Second-degree burn Third-degree burn While all burns can potentially be serious, a third-degree burn can be horrible. Characteristics of a third-degree burn include black, brown or yellow skin, destroyed nerve endings and multiple layers of skin will be destroyed. According to the Bureau of Labor Statistics, approximately how many nurses are working in the USA? Around 1.5 million Just shy of 3 million About 200,000 Over 10 million Nursing is a very common job and, according to the Bureau of Labor Statistics, there are around 2.95 million registered nurses working in the USA. Most work in the states of California, Texas, New York and Florida. David Sacks / The Image Bank / Getty Images If a patient asks a nurse a question that they don't know the answer to, what should they do? Say they will find out and report back Just ignore it Tell them to look it up If a nurse is asked a question that they don't know the answer to, it is a good idea for them to say they don't know, but will find out. Asking around the unit can often get them the answer they need to report back to the patient. Moyo Studio / E+ / Getty Images What is"}, {"title": "rpj-c4", "text": "surface area, and that a child\u2019s hand is about 1 percent 12). Note: Diagrams to assess the extent of burns. (A) The \u201crule of nines\u201d divides the body into areas of 9 or 18 percent of total body area. (B) The Lund-Browder classification is more accurate in estimating burn size, especially in children. First-degree burns involve only the epidermis; like a sunburn, they are erythematous, painful, and dry (Figure 3). They are most often the result of severe ultraviolet exposure or minor thermal injury. First-degree burns usually heal in five to 10 days 14). Deep second-degree burns involve the deeper layers of the dermis (i.e., reticular dermis). They appear white and do not blanch (Figures 6 and 7). These burns do not heal in less than three weeks and often result in scarring and contractures 15). Third-degree burns destroy all skin layers, including underlying subcutaneous fat. Heal by contraction from wound edges and scar deposition (no epithelium left in middle of wound) over a protracted time course and subject to the following clinical sequelae if not grafted: severe scarring, wound infection and fragile repair prone to recurrent episodes of breakdown. Need specialized care to attain definitive wound closure via autologous skin grafting. When surface area of full thickness injury is extensive, special techniques are employed to expand skin grafts in order to achieve maximum wound coverage 16). Fourth-degree burns destroy all skin layers and extend into muscle, tendon, or bone 17). Need specialized care (skin grafting alone is generally not sufficient). Stop the burning process as"}, {"title": "rpj-common-crawl-2021-04", "text": "destroy nerves, which leaves the victim feeling numbness instead of pain. Skin may look stiff, waxy, white, leathery or tan after a third-degree burn. Fourth-degree burn. When trauma from a burn extends to muscles, tendons and bones it is considered a fourth-degree burn. Skin may be charred or blackened and, because nerve damage is extensive, a victim who survives may feel no pain. Third- and fourth-degree burns or less-severe burns that cover the hands, feet, face, groin, buttocks or a major joint are medical emergencies, the Mayo Clinic says. Less-severe burns require medical treatment if they have not healed after several weeks, or if the victim experiences an increase in pain, swelling or redness, or a discharge in the burned area. A severe burn injury causes disfigurement and requires a lengthy recovery, which may include multiple, painful skin graft surgeries. A severely burned crash victim may die from infection or other complications even with the best hospital treatment. Inhaling hot air or smoke in the aftermath of a car crash can burn airways and cause breathing problems. Damage to the lungs from smoke inhalation can cause respiratory failure. Vehicle Standards Should Curb Car Fire Injuries Since the 1970s, standards for the design and manufacture of automobile fuel systems have required gas tanks to withstand the impact of most collisions and not lose integrity or spill enough fuel to contribute to a fire. Similar standards regulate the design and construction of radiators and their ability to contain hot water in a crash, as well as the design"}, {"title": "rpj-common-crawl-2021-04", "text": "underneath Third-degree burns damage or destroy the deepest layer of skin and tissues underneath Burns can cause swelling, blistering, scarring and, in serious cases, shock, and even death. They also can lead to infections because they damage your skin's protective barrier. Treatment for burns depends on the cause of the burn, how deep it is, and how much of the body it covers. Antibiotic creams can prevent or treat infections. For more serious burns, treatment may be needed to clean the wound, replace the skin, and make sure the patient has enough fluids and nutrition. NIH: National Institute of General Medical Sciences Burns (Medical Encyclopedia) Chemical burn or reaction (Medical Encyclopedia) Minor burns - aftercare (Medical Encyclopedia) Skin graft (Medical Encyclopedia) Previous Code: T22.449D Next Code: T22.45"}, {"title": "rpj-common-crawl-2021-04", "text": "dangerous, even for those who work around them. Others who are unfamiliar with the dangers face a higher risk of electrocution. A variety of scenarios can lead to electrical burns such as defective electronic devices like hairdryers, curling irons, and cell phones. Poor or old electrical wiring can also cause fires and pose a risk for anyone nearby who comes in contact. Traffic Accidents Another common source of burns is motor vehicle accidents. Car accidents, truck accidents, and motorcycle accidents can all lead to fires, and sometimes dangerous explosions depending on the force of impact. Radiation burns are far less frequent than other types of burns, but they do happen. Aside from a catastrophe at a nuclear power plant, the average person is typically only exposed to radiation as part of medical treatment. Radiation is used for x-rays and other diagnostic imaging and cancer patients also receive radiation treatment to shrink tumors. When medical providers improperly administer treatment, severe internal burn injuries can occur. Types of Burn Injuries Medical professionals who help burn victims need language to evaluate burns, so they can provide the proper diagnosis and treatment. Types of burns are categorized by degree. Here is a broad overview of each type of burn: First-degree burns are minor burns that cause damage to the top layer of skin, called the epidermis. Unless a first-degree burn covers a large portion of the body, first aid treatment is typically enough to treat the burn so it heals completely. Second-degree burns refer to burns that go through the"}, {"title": "rpj-common-crawl-2023-06", "text": "carpal tunnel surgery, Mahoney had a nerve block in his arm that numbed him from his left shoulder down to the fingertips of his left hand. During the ring removal, he couldn\u2019t feel how hot the water was that dripped on his hand, so it wasn\u2019t until he got home later that day that he noticed the burns covering his hand. \u201cI had blisters about an inch high on my whole hand,\u201d Mahoney said. \u201cThat\u2019s how I ended up at the burn center.\u201d He was referred to Burn and Reconstructive Centers of America (BRCA) after it was established the severity of his burns required treatment at a specialized burn center. \u201cHe had full-thickness or third-degree burns primarily to the palmar aspect of his hand,\u201d Burn Medical Director of BRCA Virginia Dr. Samuel Jones said. \u201cWe told him we would have to take him to surgery, and it would be a series of operations.\u201d While third-degree burns usually present as dry and tight skin that is brown, waxy or pearly white, the burn can first appear as second-degree with blistering and evolve into third-degree over time. Third-degree burns are medical emergencies and require debridement surgery and skin graft placements to help heal and protect the wound bed. Along with that, burn patients are at a higher risk for infection, loss of function, scarring and amputation. Though Mahoney didn\u2019t experience many of these complications, he did have one pre-existing condition that made the recovery process a little more complicated. \u201cAt the time of presentation, it was going to"}, {"title": "bm25", "text": "Florida is a wonderful place to ride a motorcycle. The beaches, palm trees and warm weather make this a great state to hit the open road. However, actually physically hitting the road because a negligent driver caused an accident is another story. Scraping against the pavement during an accident can result in severe abrasions commonly known as road rash. Road rash is a term that refers to the skin abrasions that occur when someone hits pavement or other surfaces, and skin scrapes across it. It is common in motorcycle accidents, especially if the rider wasn\u2019t wearing protective clothing or if the accident was particularly severe. Some people think of road rash as a minor abrasion injury, and it can be. But in other cases, it causes devastating trauma. Road rash can cause injuries similar to burns. Its severity is even classified in much the same way as burns. What are the different severities of road rash? Road rash is classified as first-, second- or third-degree injuries like burns. A first-degree road rash injury is minor and does not require much treatment other than cleaning it, if it requires any treatment at all. Second-degree burns penetrate deeper into the skin and may require a thorough cleaning to remove any debris from the wound. It also may require application of an antibiotic ointment as well as a bandage to protect the skin as it heals. A third-degree burn is the most serious and involves injury of the entire layer of skin. It may require skin grafting to replace"}, {"title": "bm25", "text": "percent of admissions to burn centers are male patients, while just over 30 percent of admissions to burn centers are female patients; 43 percent of burn center admissions result from severe burn injuries caused by fire, while about 34 percent result from scald accidents; and Nearly three-quarters of all severe burn injuries occur in the home, while about 8 percent are occupational, 5 percent occur on the road or highway (in auto accident fires), and about 5 percent occur in recreational settings. TYPES OF BURN INJURIES The CDC explains that there are three different types of burn injuries: First-degree burns: these burns affect the top layer of the skin, and they are often red and painful to touch. In most cases, first-degree burns can heal properly with home treatment, but it is important to seek medical attention in cases where there are first-degree burns over large areas of the body, or cases where a very old or very young person has suffered the burn. Sunburns are a type of first-degree burn. Second-degree burns: this type of burn injury affects the first two layers of the skin, or epidermis. In addition to pain and redness, second-degree burns often result in blisters and some loss of skin. It is extremely important to seek medical attention for second-degree burns and to take steps to prevent the victim from going into shock. Third-degree burns: these are the most serious type of burn injury because they \u201cpenetrate the entire thickness of the skin and permanently destroy tissue.\u201d Anyone with a third-degree"}, {"title": "bm25", "text": "different chambers of the human heart. The role of the right ventricle is to assist in pumping oxygen-depleted blood into the lungs of the body. ollo / E+ / Getty Images A patient comes in with a \"full-thickness\" burn. Which degree of burn is it? Zero-degree burn First-degree burn Second-degree burn Third-degree burn While all burns can potentially be serious, a third-degree burn can be horrible. Characteristics of a third-degree burn include black, brown or yellow skin, destroyed nerve endings and multiple layers of skin will be destroyed. According to the Bureau of Labor Statistics, approximately how many nurses are working in the USA? Around 1.5 million Just shy of 3 million About 200,000 Over 10 million Nursing is a very common job and, according to the Bureau of Labor Statistics, there are around 2.95 million registered nurses working in the USA. Most work in the states of California, Texas, New York and Florida. David Sacks / The Image Bank / Getty Images If a patient asks a nurse a question that they don't know the answer to, what should they do? Say they will find out and report back Just ignore it Tell them to look it up If a nurse is asked a question that they don't know the answer to, it is a good idea for them to say they don't know, but will find out. Asking around the unit can often get them the answer they need to report back to the patient. Moyo Studio / E+ / Getty Images What is"}, {"title": "bm25", "text": "the wounded area by removing dead tissue and foreign objects) and skin grafts. Never try to treat fourth degree burns on your own by using ice or cool water. Note: The classification of burns by degree is split into two theories. Some authorities use only three degrees of severity while others use four. On the three degree scale, burns that reach as deep as the muscle and bone are classified as third degree burns. The distinctions between first and second degree burns are the same under both systems. If you have been diagnosed with a third degree burn, it is helpful to find out whether your medical provider uses the three or four degree classification. This distinction will help you determine the extent of the damage to the subcutaneous tissues that have been damaged along with the skin. In addition to the 3 or 4 degrees used to label the severity of the injury, burns may also be categorized based on how they occurred. Chemical burns, sometimes referred to as caustic burns, are caused by contact with an irritant such as an acid or base. The caustic substance is usually an industrial or household cleaner, but natural substances like spicy peppers can cause burns as well. Chemical burns can cause a reaction with the skin or internally, if swallowed or inhaled. Internal burns can cause permanent damage to the internal organs and require immediate treatment. Chemical burns are commonly caused by car battery acid, bleach, ammonia, teeth whitening products, pool chlorination products and fireworks. They can"}, {"title": "bm25", "text": "muscles, and nerves. Generally, burn injuries are classified based on severity. The four main types of burn injuries are: First-degree burns. These types of burns damage only the outer layer of skin. First-degree burns are mild and may heal quickly without any secondary complications. Second-degree burns. Second-degree burns damage both the outer and middle layers of skin, often causing blistering and infection. These types of burns are often treated in the emergency room, but, in some cases, they may require inpatient hospitalization. Third\u2013degree burns. Third-degree burns involve damage to the outer and inner layers of skin. These burns often cause serious secondary health complications for survivors and may necessitate amputation of severely burned finger, toes, or limbs. Treatment may involve skin grafts and prolonged hospitalization. In many cases, permanent disfigurement results. Fourth-degree burns. This is the most serious type of burn and involves damage to the muscle, tendons, and bones. Depending on the circumstances, fourth-degree burns can result in loss of limb, extensive disfigurement, disability, and/or wrongful death. The severity of a burn injury has a direct impact on the financial and psychological costs to victims and their families. Second, third, and fourth-degree burns are more likely to cause disfigurement, amputations and other complications. These may severely reduce the quality of life and require extensive medical care. What are the Possible Consequences of Burn Injuries? Burn injuries are financially and emotionally costly because they can lead to multiple secondary complications. Many individuals with severe burns will require skin grafts, psychological therapy, and rehabilitation. Common secondary complications"}, {"title": "bm25", "text": "Burn injuries are considered a problem in health care. Burn injuries are in the top five as the leading cause of accidental death in the United States. There are over 200 special burn care units in the United States. Statistics on burn injuries confirm that at least 50% of all burn accidents could have been avoided. There is one out of every 13 fire deaths in the United States that was caused by a child setting a fire. One-third of children preschool age has died by playing with fire. There are 2.4 million burn injuries that are reported per year in the United States. There are around 10,000 pediatric burn injuries yearly in the United States. Around 650,000 of the injuries are treated by medical professionals and about 75,000 are hospitalized. Out of the people that are hospitalized, there are 20,000 who have major burns. There are 8,000 to 12,000 who die from these burns. Burns are categorized into first, second, and third degrees. The first degree burns which are superficial burns are caused on the top layer of skin. Symptoms of the first degree burn are redness in the skin. The burn can be painful and dry. It takes about around a week for the first degree burn to heal on its own. The next burn is the second degree burns which are partial-thickness burns. This type of burn goes under a few layers of skin. The symptoms of this burn are redness, and blisters that appear. It usually takes three to four weeks for"}, {"title": "bm25", "text": "What to know about third degree burns Medically reviewed by Alana Biggers, M.D., MPH \u2014 By Louise Morales-Brown on February 15, 2021 Third degree burns, or full-thickness burns, are a type of burn that destroys the skin and may damage the underlying tissue. They are more severe than first or second degree burns and always require skin grafts. Third degree burns are a serious injury requiring immediate medical help. Unlike less severe burns, which can be very painful, full-thickness burns may not hurt. This is because the burn may damage nerve endings in the skin responsible for sensing pain. In addition, the burn site may appear waxy or leathery A person with a third degree burn will require hospitalization. Treatment will vary depending on the extent, severity, and location of the burn. If an individual suspects they have a third degree burn, they should seek immediate medical attention. Without treatment, these burns and resulting complications can be fatal. In this article, learn more about third degree burns, including the symptoms, treatment, and when to speak with a doctor. Third degree burns are a severe type of burn that extends through every layer of skin. This type of burn can destroy: the epidermis, the outer layer of skin the dermis, the layer beneath the epidermis the hypodermis in some cases, which is the subcutaneous tissue and the innermost layer of skin Doctors categorize burns according to the damage they cause to the skin and surrounding tissue. Types of burns include: First degree burn: Also known as superficial"}, {"title": "bm25", "text": "who are allergic to it. It is estimated that 50 million North Americans are affected by allergic conditions. The parts of the body that are prone to react to allergies include the eyes, nose, lungs, skin, and stomach. Common allergic disorders include hay fever, asthma, allergic eyes, allergic eczema, hives, and allergic shock. Eczema is a general term for many types dermatitis (skin inflammation). Atopic dermatitis is the most common of the many types of eczema. Other types of eczema include: contact eczema, allergic contact eczema, seborrheic eczema, nummular eczema, stasis dermatitis, and dyshidrotic eczema. Boils (Skin Abscesses) A boil is a skin abscess, a collection of pus localized deep in the skin. There are several different types of boils. Among them are the following: furuncle or carbuncle, cystic acne, hidradenitis suppurativa, and pilonidal cyst. Bug bites and stings have been known to transmit insect-borne illnesses such as West Nile virus, Rocky Mountain spotted fever, and Lyme disease. Though most reactions to insect bites and stings are mild, some reactions may be life-threatening. Preventing bug bites and stings with insect repellant, wearing the proper protective attire, and not wearing heavily scented perfumes when in grassy, wooded, and brushy areas is key. Burns (First Aid) Burn types are based on their severity: first-degree burns, second-degree burns, and third-degree burns. First-degree burns are similar to a painful sunburn. The damage is more severe with second-degree burns, leading to blistering and more intense pain. The skin turns white and loses sensation with third-degree burns. Burn treatment depends upon the"}, {"title": "bm25", "text": "clean the wound, replace the skin, and make sure the patient has enough fluids and nutrition. Emergency treatment for third-degree and some second-degree burns may include a blood transfusion and/or extra fluids to help maintain blood pressure. Grafting\u2014placing healthy skin on top of the burn wound\u2014might help promote new skin growth. Severe burns can lead to widespread inflammation, organ failure, and shock. This sometimes-deadly response can arise a week or two after the initial burn. But doctors can\u2019t tell beforehand which patients might develop this extreme reaction. You can care for most minor burns at home. If the burn is red and painful with mild swelling or little blistering, then it\u2019s a first-degree or minor second-degree burn. See a doctor if the burn is dark red and looks glossy with a lot of blistering. These are signs of a deep second-degree burn. Get immediate treatment if the burned skin is dry and leathery, perhaps with white, brown, or black patches. These are signs of third-degree burn. Burns can become infected with bacteria or other germs if protective layers of skin are lost. Burns can also lead to painful inflammation, as your immune system shifts into gear. the subcutaneous fat, or subcutis \u2013 the deeper layer of fat and tissue. Full thickness burn \u2013 where all three layers of skin (the epidermis, dermis and subcutis) are damaged; the skin is often burnt away and the tissue underneath may appear pale or blackened, while the remaining skin will be dry and white, brown or black with no blisters,"}, {"title": "bm25", "text": "rich. If women make it to 50, they are just getting started. If a woman reaches her 50th birthday without cancer or heart disease, she can expect to see 92. How bad is that burn? There are 3 classifications of burns. a) First degree burn only involves the outer layer of skin. b) Second degree burn involves several layers of the skin tha become blistered. c) Third degree burn is all layers of the skin,underlying tissue and organs. Nerves are damaged and sometimes destoyed. In early times various body parts were used as tools and guides, hence the word \"feet,\" or \"the rule of thumb.\" Identical twins develop when one egg separates then is fertilized, fraternal twins are 2 separate eggs, and siamese twins is one egg that began to separate but was fertilized before the completion of the egg division. How are identical twins different? One twin is always born healthier and bigger then the other because of the unbalanced distribution of nutrients during pregnancy. Some identical twins are actual mirror images of each other, e.g. one will be right-handed the other left or one is near sighted the other far sighted etc. The amount of blood a person must have. A human can bleed to death in a minute or less. A loss of 1 quart of blood or more will lead to shock or even death. What is the most contagious disease? The most contagious disease is the common cold and the most non-contagious disease is gingivitis. What kind of cancer is that?"}, {"title": "bm25", "text": "and so on. First-degree burns are minor, and 5th\u00b0 burns are often catastrophic. These degrees include: First-degree \u2013 A minor first-degree burn injury only affects the skin\u2019s outer layer, like a mild sunburn, blister, or other heat exposure. Typically, victims with first-degree burns rarely have long-term damage to the affected area. Second-degree \u2013 A moderate second-degree burn injury typically damages the skin's dermis (underlying) layers, appearing swollen, red, wet, or shiny. At this stage, the burn will likely blister and hurt when touched. Superficial second-degree burns typically damage the dermis layer and do not cause scarring. Deep partial-thickness second-degree burns are more severe, causing permanent skin color changes Third-degree \u2013 This full-thickness burn injury usually destroys the skin\u2019s two upper layers, causing the skin to appear yellow, white, brown, or black. Usually, third-degree burns have only minimal pain because the nerve endings have been damaged. Fourth-degree \u2013 Burn specialists identify fourth-degree burns as the most severe life-threatening burn, destroying every skin layer, and killing tissue, tendons, muscles, and bone. Fifth-degree \u2013 Typically, a fifth-degree burn injury surpasses fourth-degree burns when the ligaments and muscle layers have burned away, leaving charred bone, destroying skin and muscle, and loss of function. Every burn degree can worsen over time as the injury spreads. The injury can also cause significant complications, where joint and bone problems arise, or infection begins to develop. According to the World Health Organization (WHO), specific society segments are more at risk of suffering a burn injury than others. Contributing factors to a burn could include:"}, {"title": "bm25", "text": "back down the leg via a motor nerve (4). This causes the muscles in the leg to contract and pull the toe away from the source of injury (6). At the same time, the dorsal horn sends another impulse up the spinal cord to the brain. During this trip, the impulse travels between nerve cells. When the impulse reaches a nerve ending (7), the nerve releases chemical messengers, called neurotransmitters, which carry the message to the adjacent nerve. When the impulse reaches the brain (8), it is analyzed and processed as an unpleasant physical and emotional sensation. Types of burns The Ayat under discussion mentions the burning of the skin. The severity of a burn depends on its depth, its extent, and the age of the victim. Burns are classified by depth as first, second, and third degree. First-degree burns cause redness and pain (e.g., sunburn). Second-degree burns are marked by blisters (e.g., scald by hot liquid). In third-degree burns, both the epidermis and dermis (external and internal parts of the skin) are destroyed, and underlying tissue may also be damaged. Further burn in the skin would damage the pain receptors and hence the person would not feel pain. Word Analysis: Quran rightly mentions this \u2018extreme\u2019 stage for the change of skin. The Arabic word used is \u0646\u0636\u062c\u062a which indicates the burning to the extreme stage. Ibn e Faris says that its basic meaning includes burning something to the last stage. Hence, not only the Quran told humans that sensation is due to the pain receptors"}, {"title": "bm25", "text": "Ticks attach themselves to the scalp, behind the ear, in the armpit and groin, and also between fingers and toes. Find out what to do if you find a tick on your child. ...more Facts About Poisons in Poisons Medicines are the leading cause of poisoning in children. Poisoning by makeup and personal care products is the next most common cause. ...more First Aid for Poisonings in a Child in Poisons Sometimes accidental poisonings can be treated in the home under the direction of a poison control center or your child's healthcare provider. At other times, emergency medical care is necessary. ...more Fire Safety and Burns Overview in About Burns Know the types of burns you can get and how to keep you and your family safe....more Anatomy of the Skin in About Burns The skin is the body's largest organ. It serves as a protective shield against heat, light, injury, and infection. ...more Classification and Treatment of Burns in Types of Burns Burns are classified as first-, second-, or third-degree, depending on how deep and severe they penetrate the skin's surface....more First-Degree Burn in Children in Types of Burns A burn is damage to tissues of the body caused by contact with things such as heat, radiation, or chemicals. A first-degree burn affects only the outer layer of skin (epidermis). ...more Nutrition and Burns in Care of Burns A child who has been burned needs additional calories and protein to help them heal and grow. ...more Burns: Symptom Management in Care of Burns Most children"}, {"title": "bm25", "text": "of Pediatrics. \"Tetanus (Lockjaw).\" In: Pickering, L.K., ed. Red Book: 2009 Report of the Committee on Infectious Diseases. 28th ed. Elk Grove Village, IL: American Academy of Pediatrics, 2009. Kasper, D.L., et al., eds. Harrison's Principles of Internal Medicine, 19th Ed. United States: McGraw-Hill Education, 2015. Switzerland. World Health Organization. \"Diphtheria Reported Cases.\" July 15, 2015. . Childhood Diseases: Measles, Mumps, & More Is your child at risk for these childhood diseases? Know when to call the doctor for conditions such as measles, mumps, ringworm, pink eye, strep throat, cough, ear aches, and more. Read more: Childhood Diseases: Measles, Mumps, & More Tetanus - Describe Your Experience What were the symptoms of your tetanus? Post View 11 Comments Tetanus - Treatment What kinds of treatment did you receive for tetanus? Post View 1 Comment Tetanus - Vaccine Are you up to date on your tetanus vaccine? Tetanus - Experience Did a relative or anyone you know ever become infected with tetanus? Please describe your experience. Post View 2 Comments Top Tetanus Related Articles Burn types are based on their severity: first-degree burns, second-degree burns, and third-degree burns. First-degree burns are similar to a painful sunburn. The damage is more severe with second-degree burns, leading to blistering and more intense pain. The skin turns white and loses sensation with third degree burns. Burn treatment depends upon the burn location, total burn area, and intensity of the burn. Childhood Vaccination Schedule Childhood immunizations can protect children from potentially deadly diseases. Vaccinations included on the childhood immunization schedule include"}, {"title": "bm25", "text": "in which the entire epidermis and variable portions of the dermis are destroyed. A superficial second-degree burn involves heat injury to the upper third of the dermis. The microvessels perfusing this area are injured, and permeability is increased, resulting in the leakage of large amounts of plasma into the interstitium. This fluid lifts off the thin, heat-destroyed epidermis, causing blister formation. Despite loss of the entire basal layer of the epidermis, a burn of this depth will heal in 7 to 14 days. A deep dermal(or deep second-degree) burn extends well into the dermal layer, and fewer viable epidermal cells remain. Therefore, reepithelialization is extremely slow, sometimes requiring months. The wound surface usually is red, with white areas in deeper parts. Because the remaining blood supply is marginal, there is a high probability that the tissue damage will deepen with time. A full-thickness (or third-degree) burn occurs with destruction of the entire epidermis and dermis, leaving no residual epidermal cells to repopulate the burned area. The portion of the wound not closed by wound contraction will require skin grafting. The exact depth of many deep burns cannot be defined on first appearance. A zone of ischemia is present between the dead superficial tissue and the deeper living tissue. This marginally viable tissue can be readily converted to nonviable tissue by infection or a further decrease in blood flow. Severity of Injury The size of the burn is defined as a percentage of the TBS. A useful initial guide is the rule of nines, which divides the"}], "hoverinfo": "text"}, {"x": [0.2772320806980133, 0.24757727980613708, 0.2860690951347351, 0.2860690951347351, 0.2860690951347351, 0.2860690951347351, 0.2860690951347351, 0.2694471478462219, 0.27193859219551086, 0.27193859219551086, 0.2660254240036011, 0.28670570254325867, 0.29160192608833313, 0.27191102504730225, 0.2979755699634552, 0.2979755699634552, 0.2979755699634552, 0.2979755699634552, 0.2979755699634552, 0.2979755699634552, 0.2979755401611328, 0.2979755699634552, 0.2979755699634552, 0.2979755699634552, 0.2979755699634552, 0.2979755699634552, 0.2979755699634552, 0.2979755699634552, 0.2979755699634552, 0.2979755699634552, 0.2979755699634552, 0.2979755699634552, 0.2979755699634552, 0.2979755699634552, 0.2979755699634552, 0.2979755699634552, 0.2759263217449188], "y": [0.038060225546360016, 0.16540423035621643, 0.18557551503181458, 0.18557533621788025, 0.18557533621788025, 0.18557533621788025, 0.18557533621788025, 0.20348933339118958, 0.195970818400383, 0.195970818400383, 0.1543208211660385, 0.18127816915512085, 0.18189437687397003, 0.1493498682975769, 0.2563067376613617, 0.2563067376613617, 0.2563067376613617, 0.2563067376613617, 0.2563067376613617, 0.2563067376613617, 0.2563067674636841, 0.2563067376613617, 0.2563067376613617, 0.2563067376613617, 0.2563067376613617, 0.2563067376613617, 0.2563067376613617, 0.2563067376613617, 0.2563067376613617, 0.2563067376613617, 0.2563067376613617, 0.2563067376613617, 0.2563067376613617, 0.2563067376613617, 0.2563067376613617, 0.2563067376613617, 0.15481294691562653], "mode": "markers", "name": "Cluster 5", "marker": {"size": 8, "color": "rgb(253,180,98)"}, "text": ["Document 374", "Document 402", "Document 579", "Document 580", "Document 581", "Document 582", "Document 584", "Document 612", "Document 673", "Document 679", "Document 716", "Document 734", "Document 765", "Document 783", "Document 915", "Document 916", "Document 923", "Document 926", "Document 927", "Document 928", "Document 930", "Document 931", "Document 938", "Document 939", "Document 942", "Document 943", "Document 945", "Document 946", "Document 951", "Document 953", "Document 955", "Document 956", "Document 961", "Document 965", "Document 966", "Document 967", "Document 991"], "customdata": [{"title": "pes2o", "text": "the second and third directions)."}, {"title": "rpj-stackexchange", "text": "FIRST and THIRD you must have the SECOND."}, {"title": "rpj-c4", "text": "second."}, {"title": "rpj-c4", "text": "second."}, {"title": "rpj-c4", "text": "second."}, {"title": "rpj-common-crawl-2019-30", "text": "second."}, {"title": "math", "text": "second."}, {"title": "rpj-common-crawl-2022-05", "text": "third"}, {"title": "rpj-c4", "text": "third."}, {"title": "rpj-common-crawl-2019-30", "text": "third."}, {"title": "rpj-stackexchange", "text": "third becomes second"}, {"title": "rpj-common-crawl-2019-30", "text": "second\u2026"}, {"title": "rpj-common-crawl-2023-06", "text": "second!"}, {"title": "rpj-common-crawl-2019-30", "text": "second that."}, {"title": "math", "text": "first."}, {"title": "rpj-common-crawl-2023-06", "text": "first."}, {"title": "rpj-stackexchange", "text": "first."}, {"title": "rpj-c4", "text": "first."}, {"title": "rpj-c4", "text": "first."}, {"title": "rpj-c4", "text": "first."}, {"title": "rpj-c4", "text": "first."}, {"title": "rpj-c4", "text": "first."}, {"title": "rpj-c4", "text": "first."}, {"title": "rpj-c4", "text": "first."}, {"title": "rpj-c4", "text": "first."}, {"title": "rpj-c4", "text": "first."}, {"title": "rpj-c4", "text": "first."}, {"title": "rpj-c4", "text": "first."}, {"title": "rpj-c4", "text": "first."}, {"title": "rpj-c4", "text": "first."}, {"title": "rpj-common-crawl-2020-05", "text": "first."}, {"title": "rpj-common-crawl-2020-05", "text": "first."}, {"title": "rpj-common-crawl-2022-05", "text": "first."}, {"title": "rpj-common-crawl-2023-06", "text": "first."}, {"title": "rpj-common-crawl-2023-06", "text": "first."}, {"title": "rpj-common-crawl-2023-06", "text": "first."}, {"title": "rpj-c4", "text": "to second."}], "hoverinfo": "text"}, {"x": [-0.03329218178987503, -0.06787703931331635, -0.07110595703125, -0.03814288601279259, -0.020869361236691475, -0.03814288601279259], "y": [-0.017447052523493767, 0.019478589296340942, 0.011229858733713627, -0.008910620585083961, -0.03305455669760704, -0.008910620585083961], "mode": "markers", "name": "Cluster 6", "marker": {"size": 8, "color": "rgb(179,222,105)"}, "text": ["Document 205", "Document 208", "Document 270", "Document 362", "Document 433", "Document 1404"], "customdata": [{"title": "rpj-book", "text": "fourth character 0 is assigned because third-degree burns affected less than 10 percent of total body surface. W30.89xA indicates that the accident was caused by farm machinery; W40.1xxA indicates explosion. Get a HintShow Answer Previous QuestionNext Question 1. **3. Inpatient admission (episode 1):** The patient was admitted with burns of her right hand and fingers, including thumb, up to the wrist. She had reached into hot water, not realizing the temperature, while canning on her farm. She was taken to surgery, where an excisional debridement of the burns was carried out to prepare the wound for the graft. A split-thickness skin graft was applied over the dorsum and volar aspects of the hand. The postoperative recovery was without infection or other complication. **Discharge diagnosis:** Second- and third-degree burns, right hand and fingers (3 percent of total body surface burned, 2 percent affected by third degree). **Physician office visit (episode 2):** Both the burns and the surgical site on this woman's hand seem to be healing nicely. There was no evidence of infection. The area was rebandaged. Antibiotics were continued, and she was to return the following week. **Diagnosis:** Second- and third-degree burns, right hand and fingers. For burns of more than one degree of the same site, code to the most severe degree. Assign a code for each burn site that is specifically identified. The skin graft meets the objective of the root operation \"Replacement\"; putting in or on biological or synthetic material that physically takes the place and/or function of all or a portion of"}, {"title": "rpj-book", "text": "to bonfire at beach resort while on vacation First-degree _burn_ of lower left leg and second-degree burns of left foot when adding wood to bonfire at beach resort while on vacation _T25.222A_ T24.132A X03.8xxA Y93.89 Y99.8 Y92.838 Get a HintShow Answer Next Question 1. 10. Infected friction burn of left thigh due to rope burn while water skiing barefoot at Lake Berryessa Infected _friction burn_ of left thigh due to rope burn while water skiing barefoot at Lake Berryessa Infected _friction burn_ of left thigh due to rope burn while water skiing barefoot at Lake Berryessa _T24.012A_ L08.89 V94.4xxA Y93.17 Y99.8 Y92.828 Get a HintShow Answer Previous QuestionNext Question 1. 11. First-degree burns of back of left hand due to hot tap water in home where patient was visiting First-degree _burns_ of back of left hand due to hot tap water in home where patient was visiting First-degree _burns_ of back of left hand due to hot tap water in home where patient was visiting _T23.162A_ X11.8xxA Y99.8 Y92.099 Get a HintShow Answer Previous QuestionNext Question 1. 12. Superficial burns (dermatitis) of face and chest from a tanning bed Superficial burns ( _dermatitis_ ) of face and chest from a tanning bed Superficial burns ( _dermatitis_ ) of face and chest from a tanning bed _L56.9_ W89.1xxA Get a HintShow Answer Previous QuestionNext Question 1. 13. Bilateral corneal flash burn due to welding torch Bilateral corneal flash _burn_ due to welding torch Bilateral corneal flash _burn_ due to welding torch _H16.133_ W89.0xxA Get a HintShow Answer"}, {"title": "rpj-book", "text": "1. 4. Acid burns to left cornea from nitric acid Acid _burns_ to left cornea from nitric acid Acid _burns_ to left cornea from nitric acid _T54.2x1A_ T26.62xA Get a HintShow Answer Previous QuestionNext Question 1. 5. Subsequent encounter with nonhealing first- and second-degree burns of back that occurred five weeks ago when patient's clothing caught fire in kitchen accident in his home Subsequent encounter with nonhealing first- and second-degree _burns_ of back that occurred five weeks ago when patient's clothing caught fire in kitchen accident in his home Subsequent encounter with nonhealing first- and second-degree _burns_ of back that occurred five weeks ago when patient's clothing caught fire in kitchen accident in his home _T21.24xD_ X02.0xxD X06.2xxD Get a HintShow Answer Previous QuestionNext Question 1. 6. Food service employee sustained first-degree and second-degree burns, thumb and two fingers, right, from kitchen fire in nursing home while cooking, initial encounter Food service employee sustained first-degree and second-degree _burns,_ thumb and two fingers, right, from kitchen fire in nursing home while cooking, initial encounter Food service employee sustained first-degree and second-degree _burns,_ thumb and two fingers, right, from kitchen fire in nursing home while cooking, initial encounter _T23.241A_ X02.8xxA Y93.G3 Y99.0 Y92.120 Get a HintShow Answer Previous QuestionNext Question 1. 7. Farm employee admitted with severe shock due to third-degree burns of back due to uncontrolled barn fire, initial encounter Farm employee admitted with severe _shock_ due to third-degree _burns_ of back due to uncontrolled barn fire, initial encounter Farm employee admitted with severe _shock_ due to"}, {"title": "rpj-book", "text": "of left lower arm skin, external approach 0HD5XZZ Extraction of chest skin, external approach **Comments:** The patient had first- and second-degree burns on the forearm, but only the highest degree is coded. Code T31.10 is assigned to identify 12 percent of the total body surface that was affected by first- and second-degree burns, with no third-degree burns. Code X04.xxxA indicates that the cause was the ignition of highly flammable material, and code Y92.830 indicates that the injury took place in a park. The activity code is assigned for grilling. Hydrotherapy codes are assigned for the two areas treated. See the Alphabetic Index under the main term **Debridement,** subterm \"nonexcisional\"; the root operation is \"Extraction.\" One code is assigned for each site debrided. Get a HintShow Answer Next Question 1. **2. Inpatient admission:** The patient was brought to the emergency department after being burned. He had been clearing and burning brush in a field at his farm when a gust of wind moved the fire to his tractor. There was an explosion because of the gasoline fumes, and he caught fire. He was treated with IV fluids, antibiotics, and pain medications. All in all, 14 percent of the total body surface was affected by the burns, of which 4 percent was third degree. He was transferred to a burn treatment center for surgical debridement and skin grafting. **Discharge diagnoses:** (1) First- and second-degree burns of the face, right ear, right forearm, and right thumb; (2) third-degree burns of the left hand. The first- and second-degree burns are"}, {"title": "rpj-c4", "text": "the right arm (4.5%), posterior trunk (18%), front and back of the right leg (18%), back of the left leg (9%) which equals 63%. 9. A 30 year old female patient has deep partial thickness burns on the front and back of the right and left leg, front of right arm, and anterior trunk. The patient weighs 63 kg. Use the Parkland Burn Formula: What is the flow rate during the FIRST 8 hours (mL/hr) based on the total you calculated? The answer is A. These are the classic characteristics of a 1st degree, superficial burn. The answer is C. Due to the location of the burns (face and neck), the patient is at major risk for respiratory issues due to damage to the upper airways and the risk of an inhalation injury. 12. A patient is in the acute phase of burn management. The patient experienced full-thickness burns to the perineum and sacral area of the body. In the patient\u2019s plan of care, which nursing diagnosis is priority at this time? The answer is C. The patient is now in the acute phase where fluid resuscitation was successful and ends with wound closure. Therefore, during this stage diuresis occurs (so fluid volume deficient could occur NOT overload) and INFECTION. The location of the burns increases the risk of infection because these areas naturally harbor bacteria. Therefore, this takes priority because during this phase wound healing is promoted. The answer is B and C. The patient has burns that completely surround the front and back of"}, {"title": "bm25", "text": "of left lower arm skin, external approach 0HD5XZZ Extraction of chest skin, external approach **Comments:** The patient had first- and second-degree burns on the forearm, but only the highest degree is coded. Code T31.10 is assigned to identify 12 percent of the total body surface that was affected by first- and second-degree burns, with no third-degree burns. Code X04.xxxA indicates that the cause was the ignition of highly flammable material, and code Y92.830 indicates that the injury took place in a park. The activity code is assigned for grilling. Hydrotherapy codes are assigned for the two areas treated. See the Alphabetic Index under the main term **Debridement,** subterm \"nonexcisional\"; the root operation is \"Extraction.\" One code is assigned for each site debrided. Get a HintShow Answer Next Question 1. **2. Inpatient admission:** The patient was brought to the emergency department after being burned. He had been clearing and burning brush in a field at his farm when a gust of wind moved the fire to his tractor. There was an explosion because of the gasoline fumes, and he caught fire. He was treated with IV fluids, antibiotics, and pain medications. All in all, 14 percent of the total body surface was affected by the burns, of which 4 percent was third degree. He was transferred to a burn treatment center for surgical debridement and skin grafting. **Discharge diagnoses:** (1) First- and second-degree burns of the face, right ear, right forearm, and right thumb; (2) third-degree burns of the left hand. The first- and second-degree burns are"}], "hoverinfo": "text"}, {"x": [-0.02980981208384037, -0.062387991696596146, 0.08077317476272583, -0.018913889303803444, -0.0618690550327301, -0.06970973312854767, -0.019162116572260857, -0.08436290174722672, -0.04893289506435394, -0.043271370232105255, -0.0719282478094101, 0.00227797101251781, -0.04219494387507439, 0.012802398763597012, 0.0386946015059948, -0.020817788317799568, -0.04904664680361748, 0.014174364507198334, 0.0020465718116611242, 0.006642816122621298, 0.0030454634688794613, -0.11070958524942398, -0.03171271085739136, -0.011300747282803059, -0.0037055769935250282, -0.05155377835035324, 0.008794921450316906, -0.013895000331103802, -0.013894999399781227, -0.03985399380326271, 0.018807342275977135, -0.02346220426261425, 0.0023056354839354753, -0.037615515291690826, -0.035495225340127945, -0.0910387858748436, -0.06537854671478271, -0.06604178994894028, 0.004244644194841385, -0.02189362235367298, 0.14145368337631226, -0.038292255252599716, -0.08410375565290451, -0.04283437132835388, -0.0948520228266716, -0.00930317584425211, -0.008302339352667332, 0.00014755767188034952, -0.03455382585525513, -0.0026913462206721306, 0.0023056354839354753, -0.022674284875392914, 0.03789457678794861, -0.062387991696596146, -0.06565321236848831, -0.013862134888768196, -0.04419681802392006, -0.010867287404835224, 0.04578462988138199, 0.0301007442176342, -0.08170352131128311, -0.015867209061980247, -0.009209337644279003, -0.03244079276919365, 0.04554266482591629, -0.03171271085739136, 0.0064175743609666824, -0.05311178043484688, 0.013397129252552986, -0.0660422071814537, 0.040264930576086044, 0.042641106992959976], "y": [0.06464395672082901, -0.014105495065450668, 0.07500386983156204, 0.05371396243572235, -0.0016791223315522075, -0.019212227314710617, -0.022148456424474716, -0.037501346319913864, -0.013719495385885239, -0.018215086311101913, 0.04537975788116455, 0.053859319537878036, 0.02474062889814377, -0.013421468436717987, -0.0031085831578820944, 0.032055143266916275, -0.029101265594363213, -0.005126383621245623, 0.014066352508962154, 0.050533805042505264, -0.0007087468984536827, -0.023234419524669647, -0.06589537858963013, -0.06801734119653702, 0.00614197226241231, -0.03531421348452568, -0.03295415639877319, -0.06687527894973755, -0.06687527149915695, 0.030550753697752953, 0.04002983868122101, -0.04466310143470764, -0.05043012648820877, -0.021712271496653557, -0.03310372680425644, -0.011920697055757046, -0.019680259749293327, -0.046078380197286606, -0.008830629289150238, -0.0426977314054966, 0.0924181342124939, -0.039730727672576904, -0.038056228309869766, 0.005451040808111429, -0.023837419226765633, -0.03059537708759308, -0.03918548673391342, -0.04712402820587158, -0.057653989642858505, -0.025009531527757645, -0.05043012648820877, -0.05520854517817497, -0.05004078149795532, -0.014105495065450668, 0.00432031974196434, -0.0578993484377861, -0.05099084600806236, -0.054666098207235336, -0.03778347000479698, -0.0323154553771019, -0.021185865625739098, -0.01684723235666752, -0.04998448118567467, -0.044435903429985046, 0.0020410711877048016, -0.06589537858963013, -0.006344870198518038, -0.031911421567201614, -0.0005098342662677169, -0.046078406274318695, 0.0014094548532739282, 0.00426121661439538], "mode": "markers", "name": "Cluster 7", "marker": {"size": 8, "color": "rgb(252,205,229)"}, "text": ["Document 64", "Document 143", "Document 152", "Document 215", "Document 216", "Document 237", "Document 271", "Document 287", "Document 298", "Document 322", "Document 350", "Document 391", "Document 395", "Document 398", "Document 406", "Document 425", "Document 431", "Document 455", "Document 463", "Document 465", "Document 469", "Document 470", "Document 474", "Document 484", "Document 494", "Document 499", "Document 687", "Document 694", "Document 695", "Document 741", "Document 748", "Document 829", "Document 831", "Document 841", "Document 855", "Document 859", "Document 869", "Document 872", "Document 874", "Document 875", "Document 888", "Document 896", "Document 898", "Document 971", "Document 974", "Document 983", "Document 998", "Document 1004", "Document 1028", "Document 1030", "Document 1044", "Document 1062", "Document 1064", "Document 1071", "Document 1103", "Document 1143", "Document 1157", "Document 1159", "Document 1213", "Document 1252", "Document 1253", "Document 1276", "Document 1299", "Document 1346", "Document 1347", "Document 1378", "Document 1388", "Document 1407", "Document 1428", "Document 1441", "Document 1456", "Document 1492"], "customdata": [{"title": "rpj-common-crawl-2020-05", "text": "second and third-degree burns on his body. Since the shock, he\u2019s had three surgeries."}, {"title": "rpj-c4", "text": "or third degree, based on visual criteria. First degree burns are visually indicated by redness and blistering of the skin. Second degree burns are visually indicated by withering of the skin without charring. Third degree burns are visually indicated by eschar formation and charring. This type of classification, which has been used with only minor alterations for nearly two hundred years, is concerned chiefly with the intensity of burning and not with the depth of tissue destroyed. Only recently have burn physicians come to realize that the depth of injury is of greater importance than superficial appearance. The classification of burns that has recently been adopted has completely forsaken all reference to outward appearances, which are only an indication of the severity of surface burning. The new type of classification recognizes two degrees of burn injury. The first new classification is partial thickness skin loss, implying the presence of sufficient living epithelial elements to resurface the area. The second new classification is full-thickness skin loss, implying virtually complete destruction of all epithelial elements so that healing can only occur by contraction of the wound and epithelial cell migration from the edge of the wound or by surgical intervention. Proper treatment depends on the correct classification of the burn. Further, early differentiation between these two degrees of burns is critical for several reasons. It is better to excise dead tissue and close the wound than to allow spontaneous separation of the slough, with its attendant risks of infection, fibrosis, and loss of function. Surgical results are best"}, {"title": "rpj-common-crawl-2019-30", "text": "is very special. In fact you could call me\u2026wait for it\u2026.first degree Burns! Interview from 25th August 2010."}, {"title": "pubmed", "text": "[Primary excision of third degree burns]."}, {"title": "rpj-book", "text": "_The Curse of Culcraig_ and _Living Lies_ www.dawnbrown.org AThere are three areas of concern. He could suffer first-, second-, or third-degree burns to his skin. Often there are areas of each. I'd keep any third-degree burns to a minimum since these are the ones that scar and often require skin grafting. First-degree burns are like a bad sunburn, and second are when blistering of the skin occurs. Hair on his head and arms and his eyebrows could be singed away. His eyes, particularly the corneas, might be damaged. This could cause visual defects and require a corneal transplant to correct. His lungs and bronchial tubes (airways) could be affected by the fire and smoke. This could be a minor irritation or a significant degree of damage that requires hospitalization, placement on a ventilator, and several weeks of treatment. And anywhere in between. I'd suggest your character suffer only a moderate degree of lung and bronchial injury, which would cause coughing, shortness of breath, and chest pain for several days. The pain would burn when he breathed or coughed, much as if he had an acute bronchitis from a flu. He would be treated in the hospital for a couple of days with oxygen, antibiotics, and corticosteroids. The antibiotics might be one of the cephalosporins given IV twice each day for a few days and then orally for maybe ten days. The steroids might be something like methylprednisolone 8 milligrams IV twice a day for two or three days. After a few days to a week he"}, {"title": "pes2o", "text": "structure, gouache ink (binder mixture or gum arabic with white pigment) was used. In sum, the methods and materials served for this academic sum are cited in this aspect in the work body. Later the interested reader will get a better understanding of the purpose and main objective of this activity. Theoretical foundations Burns are skin lesions or other tissues, usually caused by heat, electricity. Burns can be classified according to the depth: 1\u00b0, 2\u00b0 and 3\u00b0. A burn, treated with the conventional method, it takes up to eight weeks to heal, leaving permanent marks. Thus, medical researchers from Cear\u00e1 in Brazil, went to experience skin tilapia -fish traditional Brazilian method of treatment of burns of second and third degree. Exotic and unconventional treatment is bringing positive results. Burns Burns are guilty of more serious trauma that can happen to a human being. Plus fewer acres million people are disabled each year worldwide due to burns. They can be differentiated by their type (thermal burns, chemical, and electricity) and classification (1st grade, 2nd grade, 3rd grade). These factors act on the lining of the human body, determining the partial or total destruction of the skin and its attachments, can reach deeper layers, as subcutaneous fat, muscles, tendons and bones. First grade burns Call scorch are those involving only the epidermis, the outermost layer of the skin. Symptoms include severe pain and local redness, but with pale skin when touched. Generally improve in the range of 3 to 6 days and can exfoliate and leave no sequelae"}, {"title": "rpj-common-crawl-2023-06", "text": "most significant contributor to our well-being and protection, and nobody knows her name. She's the reason why the words second degree burns. Was basically coined, you know, now we call it partial thickness or whatever, but she wanted to know a better way to protect fighter pilots when they crashed her plane to protect them from burning a lot. So she was developing fabrics to protect them and her work called heat transfer through fabric. So you find a copy of that, by the way, let me know. The last one I found was $900. It was little 40 50 page book. So she got, she needed human victims to burn them on their arm. Nobody was signing up for it. But she worked at the U S Naval academy. So she voluntold 260 something sailors and they burned them on the arm right here. And she measured when that burn occurred, how long and whatnot. And that's where your TPP data comes from today. They don't obviously use human victims anymore. They use sensors and things that measure from calories to centimeters squared and how fast that energy is transferred. But to put it all into something we can understand is; at 131 degrees, My skin receives a second degree burn where my gear is saturated. And if I don't move away from that year, I'm the baked potato. And my skin increases to 140 and my pain receptors are turned off. So if I'm going to use my ears, my hand or whatever, they're"}, {"title": "rpj-common-crawl-2023-06", "text": "and the hand splinted in the intrinsic plus position. With the wrist in 30 degrees of extension, the metacarpophalangeal joint is flexed and the interphalangeal joints are extended. The thumb should be maintained in an abducted position to prevent contracture of the first web space. The patient should begin a vigorous therapy program emphasizing active ROM as soon as it is tolerated. Compression garments may reduce swelling and scar hypertrophy after reepithelialization. In deep second-degree burns, excision of the remaining portion of the skin and application of a skin graft do not produce long-term results superior to those achieved with spontaneous healing. Therefore, the treatment of deep second-degree burns should be similar to that of superficial second-degree burns. Third-Degree Burns Third-degree burns involve the entire epidermis, dermis, and a portion of the subcutaneous region. These burns result in waxy dry regions often having a nontender central area, caused by burning of the neural tissue. Third-degree burns should be treated with excision within the first 3\u20137 days and a split-thickness skin graft applied to the involved areas. Fourth-Degree Burns In addition to involvement of the skin, fourth-degree burns involve deep tissues, including muscle, tendon, and bone. Often, the only effective treatment for these burns is amputation of the involved part, with appropriate soft-tissue coverage of the residual stump. Neurovascular Complications The neurovascular status of the burned hand should be carefully monitored. Massive swelling necessitates release of compartments of the hand and forearm. Digital releases are best performed by longitudinal releases along the ulnar border of the index,"}, {"title": "rpj-common-crawl-2022-05", "text": "0.3 3.0 0.5 2.5 (3)0.0 (3)0.0 - - 0.6 0.3 0.6 0.4 0.1 0.1 (3)0.0 - (3)0.0 Multiple surface wounds and bruises 0.1 (3)0.0 (3)0.0 (3)0.0 (3)0.0 (3)0.0 (3)0.0 (3)0.0 - - - - (3)0.0 (3)0.0 (3)0.0 (3)0.0 (3)0.0 - - - - Surface wounds and bruises, n.e.c. (3)0.0 (3)0.0 (3)0.0 (3)0.0 (3)0.0 (3)0.0 - (3)0.0 - - - - - - (3)0.0 (3)0.0 - (3)0.0 - - - Burns and corrosions 1.9 (3)0.0 - - (3)0.0 (3)0.0 - (3)0.0 - - - - (3)0.0 (3)0.0 - - - - 0.1 1.8 - Burns and corrosions, unspecified (3)0.0 - - - - - - - - - - - - - - - - - - (3)0.0 - Chemical burns and corrosions 0.3 - - - - - - - - - - - - - - - - - (3)0.0 0.3 - Chemical burns and corrosions, unspecified First degree chemical burns and corrosions (3)0.0 - - - - - - - - - - - - - - - - - (3)0.0 (3)0.0 - Second degree chemical burns and corrosions Third or fourth degree chemical burns and corrosions Chemical burns and corrosions, n.e.c. Heat (thermal) burns 1.4 - - - - (3)0.0 - (3)0.0 - - - - - - - - - - (3)0.0 1.4 - Heat (thermal) burns, unspecified First degree heat (thermal) burns 0.1 - - - - - - - - - - - - - - - - - - 0.1 - Second degree heat (thermal) burns Third or fourth"}, {"title": "rpj-c4", "text": "The Grossman Burn Centers have been involved in the treatment of second degree burns and third degree burns for four decades. GBC\u2019s approach to burn care focuses on more than just patient survival. Its surgeons and health care professionals seek to restore patients to as close to their pre-injury status as possible in terms of physical ability, cosmetic appearance, and emotionally. Besides California and Arizona, the company also has a Louisiana burn center."}, {"title": "pubmed", "text": "Treatment of fourth-degree hand burns."}, {"title": "rpj-common-crawl-2021-04", "text": "last thing I remember was the doctor talking on the phone; it was a wall phone next to the door. I don\u2019t know if I passed out or if they put me to sleep. The emergency room was in a wooden building somewhat like an old wooden army barracks. The rest of my memories are fragmented but clear, if that makes sense. Treating third degree burns was always evolving and constantly changing, my case was very serious because of my age and the area of my body that was burned, so they put me in a private room and the Army assigned my father to the hospital so as to help the hospital staff with my care, one of my parents was always with me until after the second skin graft surgery. I remember that the first time I went in for skin graft surgery I was very excited, they came for me with a hospital transfer bed and they stopped just before the operating theater and checked my temperature, blood pressure, and reflexes. I was very confused and I remember that I asked, \u201cIs this it\u201d and they laughed and said \u201cWe haven\u2019t started yet\u201d. Then they wheeled me into the operating room and placed a mask over my face and dropped something on it with an eye dropper, they then asked me to count backwards from ten, I said \u201cI don\u2019t know how to count and they said do your best. The next thing I knew I was waking up sick, very sick in"}, {"title": "rpj-common-crawl-2020-05", "text": "epidermis and much or all of the dermis beneath but no muscle or bone. Yep. Three is my number, although I do flirt with upper 2nds in weaker moments or when rushed. I\u2019ve done a lousy job before and the proof of it is no end of pain\u20142nd-degree burns hurt\u2014it\u2019s a problem creating its own reward as I go back in to fix things up. 3rds and 4ths can be done with a lit cigarette if you try. It\u2019s all about the prolonged action of any intense form of heat. That cherry glow produced by a puff on most factory-made cigarettes produces roughly 900\u00b0F heat; a smoldering cigarette hovers around 400\u00b0F. The royal tell is not just a loss of sensation but an unmistakable leathery, hard yellow-brown surface. Snakeskin boots. Alligator hide belt. Kid gloves. Getting there takes holding the cigarette in place until the pleasure\u2019s spent. No less than one cigarette will do, with plenty of puffs in between to keep it lit, but two work better, allowing moments of leisure to enjoy the experience between drags. In a severe 2nd or 3rd the blister takes hours, not minutes, to appear. When it does, there\u2019s no change at the center, although the spot may be circled by a delicate golden pus-engorged halo. 4ths are entirely above such mess. I know I shouldn\u2019t get hung up on the numbers. Guillaume Dupuytren\u2019s original 1832 classification of burns orders a lax spectrum even if its weak logic crushes the chaos of the modern bible of psychiatric disorders, the"}, {"title": "pubmed", "text": "Comparing the Curative Efficacy of Different Skin Grafting Methods for Third-Degree Burn Wounds."}, {"title": "rpj-common-crawl-2020-05", "text": "degree of a burn cannot mean it is not a burn or there wouldn't be a degree to it. The degree of the effects of the heat, if low enough, no longer qualify it, in medicine, as a burn. If it is not a burn because no damage was done, then it is in the category of near-burn. Further you have the assumption of your conclusion in your argument. Eating is, for you, some degree of slavery, so it is merely a difference in degree, hence it is slavery. Even if no one owns you and could sell you, you still want that to be defined as slavery. Slavery doesn't mean ownership. Ownership means ownership. Indeed, I own animals but do not subject them to any sort of work. They're called pets. And I could borrow your car and make it my slave for the evening, but I do not own the car. A drop of water on the ground is not a lake or an ocean. It's not even a puddle. To bacteria it is. But the intent is different. All stars are in the category of star, regardless of color. Yes but it's not for a matter of degrees, but 100% absence of certain qualifications. But all blood pressure higher than normal is considered high regardless of how high. But vocalizations above normal are considered screams regardless of intensity. Actually, I think it is. But if it's a gale, then it doesn't matter the degree of a gale that is it; it's still a"}, {"title": "pubmed", "text": "[Technical notes on the first aid in burns]."}, {"title": "rpj-common-crawl-2023-06", "text": "The degree of heat: The effects are severe, if the heat applied is very great. The body of an adult does not burn completely in a burnt house, as the temperature usually does not exceed 650oC. For purpose of cremation, a human body has to be incinerated for one and half hours at 1000oC. The ashes weigh 2 to 3 kg., and contain bone fragments which can be identified as human. The duration of exposure: The symptoms are more severe if the heat is applied for a long time. The extent of the surface: The estimation of the surface area of the body involved is usually worked out by the \u201crule of nine\u201d, 9% for the head and each upper limb; 9% for the front of each lower limb; 9% for the front of chest; 9% for the back of chest; 9% for the front of the abdomen; and 9% for the back of abdomen, 99% of the body. The remaining 1% is for the external genitalia. Involvement of 50 percent of the body surface will prove fatal even when the burns are only of the first degree. The site: Burns of the head and neck, trunk or the anterior abdominal wall are more dangerous. Age: Children are more susceptible, old people less. Sex: Women are more susceptible. Causes of Death: (1) Primary (neurogenic) shock due to pain, etc. (2) More than half of deaths from burns occur within the first 48 hours usually from secondary shock, due to fluid loss from burned surface. (3) Toxaemia,"}, {"title": "rpj-book", "text": "fossil, the carbonized meal told a story. \"Oh, Shigeru,\" his mother cried out to history. \"You died before you could even eat your lunch.\"52 Damage by Thermal Rays Degree of Damage | Distance from Hypocenter (km) | Thermal Energy (cal/cm2) ---|---|--- Hiroshima | Nagasaki Almost everything catches fire; fatal burns Conflagration occurs; third-degree burns Fires occur; second-degree burns Wood and black clothing scorch First-degree burns | 1.3 2.0 2.5 3.0 3.5 | 1.6 2.5 3.0\u20133.5 3.5\u20137.0 4.0\u20139.0 | 15.0 7.3 4.5 3.0 2.3 Comparative flash effects for Hiroshima and Nagasaki are gauged as minimum calories of thermal energy received at increasing distance from the atomic bombs. (Note: first-degree burns are equivalent to severe sunburn; second-degree burns produce white blistering and instant peeling with spotted coagulation; third-degree burns kill all layers of skin and include the \"alligator skin\" effect.) Under the Nagasaki hypocenter, thermal rays reached 160 calories per square centimeter, producing a ground temperature up to 50 times the boiling point of water (up to 4,000 deg. C). The melting point of iron is only 15.5 times the boiling point of water (or 1,550 deg. C). For further comparison, the thermal energy of the sun's rays reaching the ground in August at midday in Japan over a 3-second interval is 0.06 calories per square centimeter. 3.0 cal/cm2 over this same period created shadow people out to the first-degree burn zone. \u2022 10 \u2022 Legacy: To Fold a Thousand Paper Cranes Within minutes, if not seconds, people were changed. As the skies darkened beneath the spreading Urakami"}, {"title": "pes2o", "text": "education level (p=0.585), marital status (p=0.249), employment status (p=0.969), economic status (p=0.947), degree of burn (p=0. 154), cause of burn (p=0. 322), taking painkiller (p=0.739) and having an underlying illness (p=1); in other words, the two groups were homogeneous in terms of these characteristics. However, due to the homogeneity of demographic variables in the two groups, the results can be considered more reliably as a result of intervention. According to Table 1, the mean age of patients in the control group was 32.66 years and the standard deviation was 8.73 years. Burned people in all groups often aged between 20 and 40 years old (76.7 percent) and the population of men and women was equal. The results of age frequency are due to the inclusion criteria where the subjects were over 18 years old. In terms of marital status, 46.7% of burned people were married. According to Table 1, the education level was as follows: 16.7% under high school diploma, 43.3% high school diploma, and 40% associate degree and above. According to the results of Table 1 in the control group, 10% of people had first-degree burn, 56.7% seconddegree burn and 33.3% third-degree burn. In the test group, over 70% had second-and third-degree burn. In terms of economic status, 95% of people were in moderate to low financial status. In connection with cause of burns, the results showed that the most frequent burns cause is direct heat with 52 percent of all people with burns. The other causes are boiling water and steam with 41% and"}, {"title": "rpj-c4", "text": "second-degree burns on his hands after a Marine at an Al Mumudiyah base put an alcohol-based cleaner on the Iraqis hands and then struck a match, Reuters reported. The Marine got a 90-day sentence for that incident."}, {"title": "pubmed", "text": "evaluation to evaluate burn degree, preventing burn wounds from deepening."}, {"title": "rpj-common-crawl-2020-05", "text": "What Do You Know About Burns? Burns can occur anytime of year, but the summertime can hold special hazards because many of us are outdoors doing yard work, grilling, or boating. Learn more about burns by taking the following quiz. 1. Which of these facts is true about burns? To prevent scalds from hot water, check your water heater setting to see that it is set at 120 degrees, the recommended temperature. At that temperature, it takes 5 minutes for a serious burn to occur, according to the American Burn Association (ABA). At higher temperatures, burns occur more quickly: At 140 degrees, for instance, it takes only 5 seconds for a serious burn to occur. And at 160 to 180 degrees\u2014the temperature at which coffee and tea are served\u2014the burn can be instantaneous. Infants, young children, and older adults are more vulnerable to burns because their skin is thinner. A. You can prevent burns by setting your water heater at 120 degrees B. Burns are the second leading cause of death in children ages 1 to 5 C. Infants and young children are more vulnerable to scald injuries D. A and C 2. What are the main causes of death among people who initially survive a severe burn? Your skin protects your body from infection, stabilizes your body temperature, and prevents fluid loss. Your body is highly vulnerable when the skin is injured or lost. A. Fever B. Bacterial infections C. Severe dehydration D. B and C 3. Which of these population groups has the highest"}, {"title": "pes2o", "text": "with Burns The samples were located over the digital hotplate and left to be heated and stabilized to 37.0 \u2022 C. Then contact burns were applied using a heat control metal plate. The plate was heated to 140 \u2022 C and placed directly on the skin surface for a period of time ranging from 10 s to 180 s with a constant pressure. Then emissivity measurements for the burn-damaged skin were obtained and repeated five times using the calibrated radiometer of Figure 3 and Equation (8). Then dressing materials were placed over the burn-damaged skin and the emissivity of the sample was measured using the calibrated radiometer of Figure 3 and Equation (8). Methodology 3: Skin with Different Burn Depths The samples were located over the digital hotplate and left to be heated and stabilized to 37.0 \u2022 C. The emissivities of the samples were obtained using the calibrated radiometer. Then contact burns were applied using a heat control metal plate heated to 100 \u2022 C and placed directly on the skin surface for a different period of time; start from 10 s (first degree burn), then 60 s (second degree burn), and finally 120 s (third degree burns). These periods of time were chosen as they are sufficient to produce different burn depths as assessed experimentally using samples under tests. In addition, the degree of the burns was assessed based on visual signs illustrated in Table 1. The emissivities of the samples after each application of localized heat treatments were obtained using the calibrated radiometer"}, {"title": "rpj-common-crawl-2022-05", "text": "second degree burn injury is not a constant but rather a variable. Note that the 1.2 cal/cm^2 onset to second degree burn energy for bare skin used in IEEE P1584, NFPA 70E and CSA Z462 ( dashed line on Figure 2 ) intersects with the curve produced using the Stoll's data at one (1) second point on Figure 2. This observation supports the choice of Stoll's curve that we made for evaluating the type of burn hazard expected with an arc flash.For exposures lasting less than 1 second the irradiance required for an injury would significantly increase as the duration of exposure decreased; however, the amount of incident energy required to cause a second degree burn would decrease. Equation 2 shown below is an analytical expression for the threshold line represented by Figure 2: Eb = 1.2 * t^0.3 where t is exposure time in seconds. Eb is threshold incident energy in cal/cm^2 that needs to be released during the exposure time t to cause second degree burn. Time and Threshold Incident Energy for Bare Skin Exposure vs Thermal Radiation Level Heat Flux, cal/cm^2/sec (0.1 to 30) Time to 2nd Degree Burn, sec Onset to 2nd Degree Burn Energy, cal/cm^2 As an example of using Equation 2 above, consider 1, 10 and 100kA faults in 600 Volt grounded switchgear with one (1) inch gap between conductors. The table below summarizes Arcing Current, Incident Energy and the Arc Flash Boundary (AFB) predicted using IEEE P1584 Empirical Model. We deliberately assigned arc duration to 1, 0.1, and 0.01"}, {"title": "pubmed", "text": "[Experimental treatment of combined third degree burns by free-skin grafts]."}, {"title": "rpj-common-crawl-2022-05", "text": "the body, mostly the face, neck, and upper limbs. Immersion injuries frequently affect the hands, buttocks, and lower limbs. How do contact burns differ from scald burns? In contrast, a contact burn is caused by dry heat, resulting from brief or prolonged direct contact with extremely hot solid objects like irons, stoves, or electrical fixtures. They cause deep dermal or full-thickness burns with the outline corresponding to the shape of the hot object. The lesion appears blackened, is minimally painful, and frequently requires surgical intervention. Q. How are scald injuries classified in children, on the basis of body surface area and depth? The severity of scalds is assessed on the basis of depth (or layers of skin involved) and size, or the percentage of TBSA affected. Wilson's classification as first-, second-, and third-degree or superficial, partial thickness or full-thickness burns is similar in children and adults. However, in newborns and children, the commonly used \u201cRule of nine\u201d to determine the extent of TBSA affected is not applicable due to different body proportions (i.e. larger heads and smaller limbs). The Lund and Browder chart takes the age-dependent variation in surface area of different parts of the body into account [Figure 2]. A crude method is the \u201cRule of palm,\u201d whence the child's extended palm is considered 1% TBSA. Accurate measurement is also essential for calculating fluid requirements during management. Figure 2: Lund and Browder chart for calculation of affected total body surface area in children Q. What are the risk factors for accidental scald burns? Risk factors"}, {"title": "rpj-common-crawl-2021-04", "text": "cause third-degree burns in about 60 seconds, rather than in two to seven seconds. The margin of safety has been increased as a direct consequence of this verdict. Michael G. Rosenberg .Licensed in Colorado and New Mexico Azure Communications, Inc."}, {"title": "rpj-common-crawl-2022-05", "text": "a second degree burn injury is not a constant but rather a variable. Note that the 1.2 cal/cm^2 onset to second degree burn energy for bare skin used in IEEE P1584, NFPA 70E and CSA Z462 ( dashed line on Figure 2 ) intersects with the curve produced using the Stoll's data at one (1) second point on Figure 2. This observation supports the choice of Stoll's curve that we made for evaluating the type of burn hazard expected with an arc flash.For exposures lasting less than 1 second the irradiance required for an injury would significantly increase as the duration of exposure decreased; however, the amount of incident energy required to cause a second degree burn would decrease. Equation 2 shown below is an analytical expression for the threshold line represented by Figure 2: Eb = 1.2 * t^0.3 where t is exposure time in seconds. Eb is threshold incident energy in cal/cm^2 that needs to be released during the exposure time t to cause second degree burn. Time and Threshold Incident Energy for Bare Skin Exposure vs Thermal Radiation Level Heat Flux, cal/cm^2/sec (0.1 to 30) Time to 2nd Degree Burn, sec Onset to 2nd Degree Burn Energy, cal/cm^2 As an example of using Equation 2 above, consider 1, 10 and 100kA faults in 600 Volt grounded switchgear with one (1) inch gap between conductors. The table below summarizes Arcing Current, Incident Energy and the Arc Flash Boundary (AFB) predicted using IEEE P1584 Empirical Model. We deliberately assigned arc duration to 1, 0.1, and"}, {"title": "rpj-common-crawl-2022-05", "text": "a second degree burn injury is not a constant but rather a variable. Note that the 1.2 cal/cm^2 onset to second degree burn energy for bare skin used in IEEE P1584, NFPA 70E and CSA Z462 ( dashed line on Figure 2 ) intersects with the curve produced using the Stoll's data at one (1) second point on Figure 2. This observation supports the choice of Stoll's curve that we made for evaluating the type of burn hazard expected with an arc flash.For exposures lasting less than 1 second the irradiance required for an injury would significantly increase as the duration of exposure decreased; however, the amount of incident energy required to cause a second degree burn would decrease. Equation 2 shown below is an analytical expression for the threshold line represented by Figure 2: Eb = 1.2 * t^0.3 where t is exposure time in seconds. Eb is threshold incident energy in cal/cm^2 that needs to be released during the exposure time t to cause second degree burn. Time and Threshold Incident Energy for Bare Skin Exposure vs Thermal Radiation Level Heat Flux, cal/cm^2/sec (0.1 to 30) Time to 2nd Degree Burn, sec Onset to 2nd Degree Burn Energy, cal/cm^2 As an example of using Equation 2 above, consider 1, 10 and 100kA faults in 600 Volt grounded switchgear with one (1) inch gap between conductors. The table below summarizes Arcing Current, Incident Energy and the Arc Flash Boundary (AFB) predicted using IEEE P1584 Empirical Model. We deliberately assigned arc duration to 1, 0.1, and"}, {"title": "pes2o", "text": "first-degree burn. This is because the more severe the burn, the higher risk for the victim to accomplish the overall basic needs for life as a person. This is in line with the study conducted in Sweden showed that full-thickness burn injuries were had poor QoL than first-degree burns. 18 It is also supported by the study done in Italy showed that those patients who had severe burn were challenged by poor QoL. 20 It is also supported by the systematic review, which indicated that the severity of burns is a strong predictor of health-related quality of 21 The result also aligned with a study in Australia revealed that increased percentage of full-thickness burns per body surface area was a important predictor of poorer physical health status. 22 Those participants having larger total surface area damage were three times higher to have poor QoL than with those who had smaller surface area burned participants. This is because the participants with extensive burn are more vulnerable to different risks like widespread disfiguring, a dalliance in healing than participants who get small surface area burn. This finding is similar to evidence which showed that the higher percent of total body surface area burn had a negative impact on health dimensions. 20 It was also similar to a study done in Iran which showed that those participants who had a burn of large total body surface area were more likely to had poor quality of life than those with small body surface area victims. 23 Finding revealed that those"}, {"title": "pubmed", "text": "[Primary skin transplantation in third degree burns]."}, {"title": "rpj-common-crawl-2022-05", "text": "caused a superficial second-degree scald and a 5-second scald caused a deep second-degree scald. After third-degree scald, the burn wound continued to contract until day 14. The scalding model of mice can be successfully established by the boiling water method. This method is easy to operate, it has a low cost, and it can control the scald depth by controlling the scald time. This is adequate to study skin thermal injury in the future. The scald model established by this method can last for 14 days. Keywords: Mouse model; Burn; Scald Other SectionsAbstractINTRODUCTIONMATERIALS AND METHODSRESULTSDISCUSSIONACKNOWLDEGEMENTSCONFLICT OF INTERESTHow to cite this article:References INTRODUCTION The American Burn Association estimates that 450,000 burn patients are treated in medical institutions every year in the United States. 40000 of them need to be hospitalized, including 30000 in burn centers of specialized hospitals. 1 The most common etiologies requiring burn center admission are fire/flame (43%), followed narrowly by scalds (34%), contact with hot objects (9%), electricity (4%), and chemical agents (3%). 2 Burns often cause extensive skin defects, resulting in loss of skin barrier function and inflammation. 3-8 Therefore, the wound healing time caused by burns and scalds is long, the prognosis is poor and the function recovery is poor. Generally, the burn is classified according to the depth: Superficial (first-degree) only involves skin epidermis; Superficial partial-thickness (superficial second-degree) involves superficial dermis; Deep partial-thickness (deep second-degree) involves the deeper dermis; Full-thickness (third-degree) includes the whole layer of epidermis and dermis, reaching the subcutaneous tissue, and even muscles and bones are damaged. 9"}, {"title": "rpj-common-crawl-2022-05", "text": "day 14. In the control group, mean granulation score was 5.00 \u00b1 0.00 at baseline and increased to 2.67 \u00b1 0.88 on day 14. On day 14, a significant difference was observed between the mean granulation scores for the experimental and control regions (P = 0.004). Conclusions: Topical administration of a vitamin C solution could be effective in promoting the healing of second-degree burn wounds. Keywords: Topical Vitamin C Solution; Granulation; Wound; Burn Skin burns are among the most important challenge in medicine and remain a major public health issue worldwide (1). Skin injuries occur due to chemicals, ultraviolet radiation, radioactivity, electricity, and boiled water (2, 3). Acute thermal injuries requiring medical treatment affect nearly half a million Americans each year, with approximately 40,000 hospitalizations and 3,400 deaths annually (4). First-degree burn affects the epidermis. Superficial second-degree burns involve damage that penetrates into the papillary dermis. Deep second-degree burns involve damage extending beyond the reticular dermis. Burns that destroy all layers of the skin down to the subcutaneous fat are third-degree burns (5). First- and superficial second-degree burns heal almost without scars, while deep second-degree and third-degree burn lead to the formation of hypertrophic scars during the healing process, and patients often require reconstructive surgery (6). Wound healing is divided into three phases: inflammation, re-epithelialization and granulation tissue formation, and matrix formation and remodeling. The phases of wound repair overlap considerably. Inflammation is divided into early and late phases, denoting neutrophil-rich and mononuclear cell-rich infiltrates, respectively. Wound contraction begins after the granulation tissue is well-established, and"}, {"title": "rpj-book", "text": "anything but their survival. All suffered second-, third-, and fourth-degree burns over more than 50 percent of their bodies. All had leathery eschar encircling torsos or limbs, requiring escharotomies (incising of the burned skin to allow it to split, so that deeper tissues are not compressed by swelling). Still deeper burns required fasciotomies (incising the fascia that divides muscle compartments, to allow swollen muscle tissue to expand). For some, the deepest burns would even necessitate limb amputations. Critically burned patients are maintained in a chemically induced coma during initial treatment, which may last weeks, or even months. Their respiration supported by a ventilator, burn victims often \"lose\" months of their lives, later awakening to a very different reality. If they are lucky. Skin that has suffered third-degree burn cannot be left in place, lest it become a breeding ground for infection. It must be removed within a few days of injury by cutting, called debridement. Charred skin is cut away, revealing fat, muscle, or even bone, depending upon the depth and location of the burn. In order to prevent fluid loss and infection, the debrided site must be covered with some kind of graft. When patients cannot immediately spare sufficient healthy skin of their own, debrided areas are temporarily covered with cadaver skin or a collagen-based product called \"artificial skin.\" Such measures are only stopgaps. Eventually, all debrided areas must be grafted with the patient's own skin. But how can patients with few unburned areas of their body spare sufficient skin to graft everywhere else? The"}, {"title": "pes2o", "text": "Treatment of Second to Third-Degree Burns in A 2-Day-Old Infant: A Case Report Burn injuries in newborns are particularly complex cases. Since these patients are rare, there is little experience and no existing standardized treatment. This report examines a case of accidental second to third-degree burning of the heel and toes on the left foot in a new-born girl. The burns covered an estimated 1% of the total body surface area (TBSA). After an initial debridement and 32 days of non-surgical wound therapy with Adaptic\u00ae fat gauze dressings, we were able to achieve an aesthetically and functionally satisfactory result including the complete preservation of all toes. Modern wound treatment following the principle of less frequent dressing changes allows the burn wound to have better re-epithelialization. New findings in stem cell research indicate that the high proportion of mesenchymal stem cells (MSC) in postnatal blood is also involved in the regeneration and healing of burns. To our knowledge, this is the first case report dealing with initial non-surgical combustion therapy in a newborn. In order to eliminate a scar contracture, we carried out a Z-plasty one year later. INTRODUCTION Division of Plastic and Reconstructive Surgery, Department of Surgery, Klinikum Wels-Grieskirchen, Austria Burns in children can have far more serious consequences than in adults, since even small burns already occupy a large percentage of the body surface. 1 Depending on exposure time and intensity, the thermal damage can affect purely the superficial papillary as well as the deep reticular dermis. The healing of such wounds usually takes 2"}, {"title": "pubmed", "text": "Most of the 2.5 million Americans who seek medical attention for burns each year can be successfully managed as outpatients. Mainstays of treatment are proper wound cleaning, unroofing and debriding of most blisters, and topical chemoprophylaxis for all second- and third-degree burns. Early surgical evaluation for possible excision and grafting is necessary for third-degree burns, deep second-degree burns and infected burns. Systemic antibiotic therapy alone is insufficient for infected burns. Hospitalization is mandated for most fire-related inhalation injuries."}, {"title": "rpj-common-crawl-2019-30", "text": "be added to the list of first aid treatments because they are minor injuries that are exempt from the requirements of the Act. Omission of first degree and second degree burns receiving only first aid treatment from this list is inconsistent with the recording criteria listed for burns of the skin in [proposed] Appendix B\" (Ex. 15: 260). The Chemical Manufacturers Association recommended that OSHA add \"[b]urns that require only one-time treatment. Subsequent observations and changing of bandages does not constitute medical treatment\" (Ex. 15: 301). The former Recordkeeping Guidelines listed the treatment of first degree burns as an example of first aid treatment and did not consider such treatment to be recordable (Ex. 2, p. 43). In the final rule, OSHA has decided not to include burn treatments on the first aid list. If first, second, or third degree burns result in days away from work, restricted work activity, or medical treatment beyond first aid, such as prescription drugs or complex removal of foreign material from the wound, they will rise to the level that requires recording. Taking this approach means that burns will be treated just as other types of injury are, i.e., minor burn injuries will not be recordable, while more serious burns will be recorded because they will involve medical treatment. For example, a small second degree burn to the forearm that is treated with nothing more than a bandage is not recordable. A larger or more severe second degree burn that is treated with prescription creams or antibiotics, or results in"}, {"title": "pes2o", "text": "wounds [14]. Burn healing can be regarded as a particular kind of wound healing and most of the skin reactions are the similar. The conditions for burn healing differ according to the depth of the burn wound in addition to several factors can interfere with the healing process. Consequently three zones have been known in a burn, an inner zone (coagulation zone) where cell damage is irreversible, a middle zone (statis zone) where damage is severe and an outer zone (hyperemic zone) where recovery is likely [15]. Moreover there are three degrees of burns, the first in which the epidermis only is damaged, the second where some dermal damage also occurs but where epithelial regeneration is possible and the third where both epidermis and dermis are irreversibly damaged. 1 st and 2 nd degree burns are known together as partial thickness burns. 2 nd degree burns is the deeper injury than 1 st degree burn. It involves all the epidermis and much of the corium. The deep dermal burn is of important clinical importance. Most 2 nd degree burns are characterized by blisters. They are usually accompanied by considerable subcutaneous oedema. The rate of healing is dependent upon the depth of skin destruction on whether or not presence of infection. In superficial partial thickness burns, healing usually takes place uneventfully in a period of 10 to 14 days unless infection supervenes. Deep dermal burns are injuries that extend down deep in the cornium lining of the sweat glands and their follicles. If the wound is appropriately"}, {"title": "pubmed", "text": "Third-degree burn mouse treatment using recombinant human fibroblast growth factor 2."}, {"title": "rpj-c4", "text": "The typical changes in microcirculation immediately following burn trauma include cellular and gross anatomical changes. At the cellular level, we see an increase of vascular permeability and an increased risk of microthrombus. At the macro level, we see three concentric circles developing around the wound after cutaneous burns, ranging from interior to exterior and termed the zone of necrosis, the zone of stasis and the zone of hyperemia . The microcirculation in the zone of stasis is characterized by the formation of progressive microthrombus. The location of the zone of stasis varies according to the depth of the burns. Burns affecting dermis are termed second-degree burns while third-degree burns involve the full-thickness of skin as well as subcutaneous tissues. The ultimate burn depth is determined by the development of the stasis zone, which may extend full-thickness, arresting blood circulation and causing tissue necrosis resulting in third-degree burn. However, if there is some improvement in the microcirculation in the zone of stasis, deep second-degree burns will rarely deteriorate into third-degree burns. BRT was designed to deal with the zone of stasis by improving the microcirculation, avoiding the formation of microthrombus and thereby arresting progressive necrosis. Recent research suggests that significant release of vascular active factors in plasma, endothelin (ET) and nitric oxide (NO), has a close correlation with the deterioration of vulnerable tissue within the zone of stasis during the early postburn stage[2-4]. ET and NO released from the burn wound become the primary source of ET and NO in plasma. The studies during the previous decade"}, {"title": "rpj-c4", "text": "scent from the first to last burn."}, {"title": "rpj-common-crawl-2022-05", "text": "Less than 30% burns Second degree burns Recent burns within 48 h Patient's age more than 15 years More than 30% burns First degree burns Third degree burns Electrical burns Second degree burn wounds of approximately equal size present on both half of the body were selected. General management of the patients, as well as the initial management of the wound regarding cleaning and debridement was the same for both halves of the body. Patients were also given intra venous fluids, broad spectrum antibiotics and intramuscular analgesics according to need. A thin layer of silver sulfadiazine cream was applied on one side and equally thin layer of Raal ointment was applied on the other side. These applications were done twice daily. After application, we preferred to leave burn wound open. No closed dressings were done. Both wounds were assessed for following parameters: Rate of healing Resultant scar After 24 h and 48 h after treatment pain was assessed by using visual analogue scale. [4] Infection was assessed by visually inspecting for the presence of pus under the dressing. Pus when present was sent for culture and sensitivity. Rate of healing was measured by the number of days required for complete epithelization of wound. Patients were examined daily until complete epithelization of wound occurred. The patients were then followed-up at 10 and 14 weeks and the resultant scars between the two groups were compared using the Vancouver scar scale (VSS). [5] Pain was measured on visual analog scale at 24 and 48 h after applying dressing. The"}, {"title": "rpj-common-crawl-2023-06", "text": "markedly impaired. As a consequence, the barrier to heat loss is also impaired, a fact that is extremely important to recognize in the resuscitation period. Heat loss can be decreased by closing the wound under dressings, thereby limiting air movement and decreasing the air-to-wound temperature gradient. Therefore, the burn is only cooled initially to neutralize excessive heat and to control pain in superficial second-degree burns covering less than 15% of the TBS.21 Patients with major burns must be placed in a warmed external environment to minimize heat loss. Wound d\u00e9bridement and washing should not be initiated on a large burn until the external temperature is controlled.19 Determining the Extent of Injury The wound can be categorized on the basis of size, depth, age, and other complicating factors. Table 98-3 presents the standard categorization used by the American Burn Association. Table 98\u20133. Standard Burn Categorization Critical burns Second-degree burns involving >30% TBS Third-degree burns involving >10% TBS Burns complicated by respiratory tract injury or fractures or involving critical areas such as the face, hands, feet, or perineum High-voltage electrical burns Lesser burns in patients with significant preexisting disease Moderate burns Second-degree burns involving 15%\u201330% TBS (but not involving the face, hands, feet, or perineum) Third-degree burns involving 2%\u201310% TBS (but not involving the face, hands, feet, or perineum) Minor burns Second-degree burn involving <15% TBS Third-degree burns involving <2% TBS Controlling Infection The management of the burn wound itself depends on the status of initial cardiopulmonary function. Adequate control of the airway, maintenance of adequate gas exchange,"}, {"title": "pubmed", "text": "[Healing in second degree burns. An electron microscopy study]."}, {"title": "pes2o", "text": "X-ray, sunlight, ultraviolet, and so forth. Among them, the thermal injuries are leading cause of burn (86%), followed by electrical sources (4%) and contacting with chemical sources (3%), and other sources of burns (7%) [1]. Note that flame and scald burns account for the majority of burns in children and adults. Thermal burn causes not only a small or local injury which can be treated at home or outpatient but also the severe and fatal injuries which require the in-hospital treatment. The World Health Organization estimates that thermal burns account for approximated 6.6 million injuries and 300 thousand deaths annually over the world [1]. Furthermore, Kemp et al. (2017) also suggest that 25,000 children who suffered from burns or scald require the Emergency Department admission in English and Wales each year, of which 3,800 patients must receive in-hospital treatment [2]. The severity of burn is evaluated by the extent and the depth of burn. The extent of burn is estimated through total body surface area burn (% TBSA) whereas the depth of burn is estimated by the deep extent of injury into the epidermis or dermis. If the burn extent involves only the epidermis, thus it is classified as superficial burn (first degree). When the burn involves epidermis and dermis, it is categorized as partial thickness burn (second degree). The other burn is full-thickness burn (third degree) which extend into subcutaneous fat or deeper. Thermal burns resulted in both local injuries and a systemic response, in case of severe burn (% TBSA > 20%). Deep and"}, {"title": "rpj-c4", "text": "an injury was intentional e.g. suspected child abuse. It is known that scald severity is related to water temperature and duration of exposure; however since minimal study has been done on fresh human skin, the ability to apply these findings to practice is limited. Available data lack precision and do not account for differences in age, or ethnicity. Given the high stakes of these determinations, we sought to improve the accuracy of available data tables. Patients undergoing elective removal of healthy skin (e.g. abdominoplasty) donated the removed tissue for this experiment. Immediately after surgical removal, skin was cut into 2cm x 2cm samples and was exposed to water baths of varying temperature for intervals starting at 1 second, and increasing in length by 1 second per trial until second and third degree burns were visualized. In the pilot study, skin was obtained from four women of Caucasian and Hispanic descent. As seen in Table 1, time to 2nd and 3rd degree burn decreased rapidly as water temperature increased. Differences in time to burn were noted at lower temperatures, with variability decreasing with increasing temperature. There is variability in time to scald in human skin at lower temperatures, which narrows with increasing water temperature. We are expanding this pilot study to a larger sample size in order to build a robust reference tool for use by the burn community. Background and Objective: The aim of this project was to investigate non-elective laparoscopic appendectomies to determine whether or not irreversible antithrombotic therapy adversely impacts the patient. Methods: A"}, {"title": "rpj-common-crawl-2021-04", "text": "seconds 12.5 Wood produces ignitable volatiles by pyrolysis 10.4 Human skin: Pain after 3 seconds, second-degree burn blisters after 9 seconds 6.4 Human skin: second-degree burn blisters after 18 seconds 2.5 Human skin: burns after prolonged exposure, radiant flux exposure typically encountered during firefighting 1.4 Sunlight, sunburns potentially within 30 minutes. Sunburn is NOT a thermal burn. It is caused by cellular damage due to ultraviolet radiation. Interchange of energy Radiant heat panel for testing precisely quantified energy exposures at National Research Council, near Ottawa, Ontario, Canada Thermal radiation is one of the three principal mechanisms of heat transfer. It entails the emission of a spectrum of electromagnetic radiation due to an object's temperature. Other mechanisms are convection and conduction. Radiation heat transfer is characteristically different from the other two in that it does not require a medium and, in fact it reaches maximum efficiency in a vacuum. Electromagnetic radiation has some proper characteristics depending on the frequency and wavelengths of the radiation. The phenomenon of radiation is not yet fully understood. Two theories have been used to explain radiation; however neither of them is perfectly satisfactory. First, the earlier theory which originated from the concept of a hypothetical medium referred as ether. Ether supposedly fills all evacuated or non-evacuated spaces. The transmission of light or of radiant heat are allowed by the propagation of electromagnetic waves in the ether.[11] Electromagnetic waves have similar characteristics to television and radio broadcasting waves they only differ in wavelength.[12] All electromagnetic waves travel at the same speed; therefore, shorter"}, {"title": "bm25", "text": "This clinical study was undertaken to test the efficacy of topical Sucralfate Cream in second and third degree burns. Topical Sucralfate Cream has been used on a wide variety of lesions from radiation proctitis and dermatitis to keratoconjunctivitis with remarkable results. The study was carried out in two phases. The first phase comprised 60 patients, 30 of whom were treated with Sucralfate Cream while the other 30 were treated with other topical antimicrobial agents. Twenty-one of the patients in the study group had second-degree burns and nine patients' third degree burns. In the second phase, a double blind study was carried out on 25 patients where one area of burns was treated with Sucralfate Cream while another control area of the same patient was treated with a placebo ointment, containing the excipients used during preparation of the Sucralfate Cream, without Sucralfate. In the first phase, it was seen that the period of epithelialisation of second degree burns in the study group treated with Sucralfate Cream was 18.8 days compared with 24.6 days with other topical agents. This difference is statistically significant with a P value of <0.00001. In the double blind study, also healing in the areas treated with Sucralfate was more rapid than those treated with bland placebo ointment. The difference in the two rates of healing was statistically significant with a P value of 0.00067. Histopathological studies were also carried out in 10 patients of phase I of the trial. Sucralfate Cream promotes rapid epithelialisation of second degree burns with minimal said effects and"}, {"title": "bm25", "text": "A serious problem in emergency medicine is the correct evaluation of skin burn depth to make the appropriate choice of treatment. In clinical practice, there is no difficulty in classifying first- and third-degree burns correctly. However, differentiation between the IIa (superficial dermal) and IIb (deep dermal) wounds is problematic even for experienced practitioners. In this work, the use of surface skin temperature for the determination of the depth of second-degree burns is explored. An analytical solution of the 3D Pennes steady-state equation is obtained assuming that the ratio between burn depth and the burn size is small. The inverse problem is posed in a search space consisting of geometrical parameters associated with the burned region. This space is searched to minimize the error between the analytical and experimental skin surface temperatures. The technique is greatly improved by using local one-dimensionality to provide the shape of the burned region. The feasibility of using this technique and thermography to determine skin burn depth is discussed."}, {"title": "bm25", "text": "the Binninger [12] scale of somewhere between 10% and 50%. With a reflective cloud layer above the fireball, radiation can double, so a 10% fire ignition probability become 50%, while a 50% probability becomes 90% due to the fire ignition probability distribution. This results in the three categories of thermal burn injuries, including first degree burns which are primarily confined to the epidermis, second degree burns which extend to some extent into the underlying dermis, and the third degree burns (or full thickness burn) which involves the entire dermis. Thermal fluences necessary for the first, second and third degree burn levels were taken from Fig. 12.65 of Glasstone & Dolan [9]. The number of uncertainties in a complex environment such as that of a modern city immediately after a nuclear explosion remains high and active debate continues about what constitutes sufficient thermal fluence for mass fires. Blast effects Blast was calculated for psi values that generally followed the National Planning Scenarios [16], (Table 1) using the Defense Nuclear Agency's WE program [18], and for distances corresponding to significant thermal events ( Table 2). This results in the various categories of trauma related injuries, including primary injuries (such as tympanic membrane destruction in the ears due to the overpressure wave), secondary injuries (such as eye injuries and cuts on exposed limbs from wind-blown glass and other debris), tertiary injuries (trauma injuries resulting from the actual impact of a flying human body against structures, or from the tumbling of the body), and quaternary injuries (severe trauma resulting from"}, {"title": "bm25", "text": "day 14. In the control group, mean granulation score was 5.00 \u00b1 0.00 at baseline and increased to 2.67 \u00b1 0.88 on day 14. On day 14, a significant difference was observed between the mean granulation scores for the experimental and control regions (P = 0.004). Conclusions: Topical administration of a vitamin C solution could be effective in promoting the healing of second-degree burn wounds. Keywords: Topical Vitamin C Solution; Granulation; Wound; Burn Skin burns are among the most important challenge in medicine and remain a major public health issue worldwide (1). Skin injuries occur due to chemicals, ultraviolet radiation, radioactivity, electricity, and boiled water (2, 3). Acute thermal injuries requiring medical treatment affect nearly half a million Americans each year, with approximately 40,000 hospitalizations and 3,400 deaths annually (4). First-degree burn affects the epidermis. Superficial second-degree burns involve damage that penetrates into the papillary dermis. Deep second-degree burns involve damage extending beyond the reticular dermis. Burns that destroy all layers of the skin down to the subcutaneous fat are third-degree burns (5). First- and superficial second-degree burns heal almost without scars, while deep second-degree and third-degree burn lead to the formation of hypertrophic scars during the healing process, and patients often require reconstructive surgery (6). Wound healing is divided into three phases: inflammation, re-epithelialization and granulation tissue formation, and matrix formation and remodeling. The phases of wound repair overlap considerably. Inflammation is divided into early and late phases, denoting neutrophil-rich and mononuclear cell-rich infiltrates, respectively. Wound contraction begins after the granulation tissue is well-established, and"}, {"title": "bm25", "text": "days 0, 7, 14, 21, and 28. Every sample was taken under general anesthesia by a punch device which contained a part of burn wound and its surrounding skin. 6,8,16,18 SPSS software (Version 2, Chicago, IL, USA) was used for statistical analysis. Non-parametric Friedman test was used to compare the groups. The level of statistical were considered significant difference (p<0.05). Measurement of treatment size between two groups were done by Image J software. RESULTS There was a considerable epithelization in the vaseline group on days 7, 21, and 28, compared with the herbal ointment group (Figure 1). In addition, neovascularization was significantly more in the herbal ointment group than the vaseline group on days 7, 21, and 28 and the histological findings were demonstrated in Figure 2. There was not any significant difference between groups regarding the time of burn wound contraction on days 0, 7, 14, 21, and 28 and the results were exhibited in Figure 3 and Table 1. The percentage of wound healing was presented in Figure 4. DISCUSSION Burns are the most common injuries, specifically among children. Most people can recover from burns without serious health consequences, depending on the cause and degree of injury. More serious burns need direct emergency medical care to avoid of complications and death. Three primary types of burns are called: first, second, and third degree. Each degree is based on the harshness of injury to the skin, with first degree is the most minor and third-degree is the most severe. Damage contains: first degree burns: red,"}, {"title": "bm25", "text": "In second-degree burn wounds, the original SGCs were destroyed but the supporting structure of the SG remained intact, while in third-degree burn wounds both the original SGCs and the supporting structure were destroyed. H&E stained images showed that the impaired regions were filled with newly migrated cells, which may be transplanted cells or activated endogenous stem cells. Furthermore, GFP-labeled cell tracing showed that transplanted cells were involved in functional SG repair regeneration in second-degree burn wounds but epidermis repair in third-degree burn wounds. These results strongly correspond with our immunofluorescence analysis of specific SG protein expression. Given the different traits between second- and third-degree burn wounds, we hypothesized that environmental signals play an indispensable role in the therapeutic efficacy of inductive SGCs in burn mice. Although these results are shown in the present study, the effects of inductive SGCs on SG regeneration were only examined in burn wounds. Future studies, with different methods according to the different kinds of wound, are required to better determine if environmental signals of wounds lead to the limited therapeutic efficacy of inductive SGCs. In summary, we have provided evidence that IRF6 expression along with SG development and Irf6 is sufficient to direct the SG specification of EPs in vitro. In addition, the inductive SGCs could repair SG both structurally and functionally in second-degree burn wounds, but they had limited regenerative capability in three-degree burn wounds. These results confirmed previously unreported roles of Irf6 in SG development and differentiation, and indicated that the inductive cell and its related therapeutic efficacy during"}, {"title": "bm25", "text": "or third degree, based on visual criteria. First degree burns are visually indicated by redness and blistering of the skin. Second degree burns are visually indicated by withering of the skin without charring. Third degree burns are visually indicated by eschar formation and charring. This type of classification, which has been used with only minor alterations for nearly two hundred years, is concerned chiefly with the intensity of burning and not with the depth of tissue destroyed. Only recently have burn physicians come to realize that the depth of injury is of greater importance than superficial appearance. The classification of burns that has recently been adopted has completely forsaken all reference to outward appearances, which are only an indication of the severity of surface burning. The new type of classification recognizes two degrees of burn injury. The first new classification is partial thickness skin loss, implying the presence of sufficient living epithelial elements to resurface the area. The second new classification is full-thickness skin loss, implying virtually complete destruction of all epithelial elements so that healing can only occur by contraction of the wound and epithelial cell migration from the edge of the wound or by surgical intervention. Proper treatment depends on the correct classification of the burn. Further, early differentiation between these two degrees of burns is critical for several reasons. It is better to excise dead tissue and close the wound than to allow spontaneous separation of the slough, with its attendant risks of infection, fibrosis, and loss of function. Surgical results are best"}, {"title": "bm25", "text": "A hot shower is a must for many people to either start or finish the day. For the elderly, it can be the same, but also a risky undertaking. In all age groups, tap water scalds are the second most common cause of burn injuries. Elderly loved ones, however, are at a greater risk for scalding than other populations for a variety of reasons. The Burn Foundation says that hot water causes third-degree burns in one second at 156 degrees F, in two seconds at 149 degrees F, in five seconds at 140 degrees F, and in 15 seconds at 133 degrees F. Scalding is a second-degree burn that is deep and results in splitting of skin layers and/or blistering. The solution would seem to be to simply decrease the water temperature; the Occupational Safety and Health Administration\u2019s (OSHA) manual on Legionnaire\u2019s disease (a potentially fatal infectious disease) says differently, however. Water is to be stored at a minimum of 140 degrees F, but can be delivered at a minimum of 122 degrees F to ensure harmful bacteria are killed. A caregiver must first recognize the level of risk their loved one has for scalding, and also know ways to prevent unnecessary burns, while maintaining a safe water temperature. The number one risk an elderly person has for scalding is simply a decreased reaction time. Many seniors will unknowingly subject themselves to the danger of severe burns and realize it too late. There are a couple things to know about skin changes as people age. First,"}, {"title": "bm25", "text": "in the treated groups. Comparison between the treated groups showed that burn wound treated with quercetin significantly increased healing potential than the rutin treated MSCs. Histological findings showed enhanced regeneration of skin layers along with hair follicles in the quercetin group, while increased neovascularization was noted in both treatment groups. Gene profile of wound healing mediators illustrated significant upregulation of IL-5, IL-4, GPX-7, TXNRD-2, PRDX, VEGF, and FGF and downregulation of inflammatory cytokines IL-1b and IL-6. Introduction Skin functions as a bacterial, physical and chemical barrier to protect the body against harsh external environment. Any damage to the skin can be devastating and should be recovered efficiently. Skin possesses the ability to regenerate itself after any trauma, through mediated interactions between cells and healing mediators, which triggers healing mechanisms to restore damages [1]. Each layer of skin performs a specialized function; epidermis regulates body temperature, dermis maintains structural integrity and assists in sensation, and hypodermis provides mechanical protection and thermoregulation [2]. Increase in the number of burn wound injuries is a challenge for the healthcare system because of the failure to manage the condition in a timely and systematic way. Burn injuries are classified as first, second, third, and fourth degree burns, based on the depth of penetration of injury and extent of tissue destruction. First and second degree burns are superficial, while third and fourth degree burns are deep wounds [3]. In a clinical setting, diagnoses of burn patients are based on total body surface area (TBSA) affected with the wound. Minor burns are first"}, {"title": "bm25", "text": "humans skin explants submitted to experimental burn injury. Introduction Burns, irrespective of their severity level, are one of the most common causes of accidental injuries worldwide [1][2][3][4]. In first-degree burns, only the superficial layers of the epidermis are affected, allowing tissue repair via the mobilization of the keratinocyte stem cells and progenitors residing in the basal layer [5]. As a result, first-degree burns heal spontaneously without scar formation and do not require any treatment other than a topical moisturizer [6]. In contrast, third-degree burns do not heal spontaneously and require surgical intervention to cover wounds (autografts, allografts, epidermal sheets) [5,7]. Although current treatments have greatly increased the survival rate of patients suffering from extended third-degree burns [8], it is estimated that burns cause 180,000 deaths per year according to a recent report of the World Health Organization. In addition to being potentially fatal, severe skin burns may result in long-term functional and/or aesthetic complications [9], notably when the healing process is hampered by secondary infections and abnormal tissue remodeling. [3]. Finally, superficial partial-thickness (superficial second-degree) burns spontaneously heal within a time period of 7 to 14 days post-burn, as there are still mitotically active stem cells in the basal layer. On the other hand, deep second-degree burns destroy the entire epidermis, including the cells of the basal layer, and result in the formation of a scar. Delayed complications may occur during the healing process of deep second-degree burns requiring then the use of surgical treatments [6,7]. Currently, the most commonly used treatment for second-degree burns worldwide"}, {"title": "bm25", "text": "after hair removal was not damaged. A burn device was prepared from a tabletop constant temperature burner (YLS-5Q, ZS Dichuang Crop., Beijing, China). Two pairs of symmetrical 2.5 cm 2 burn wounds were made on both sides of the spine at 500g pressure (Venter, Monte-Alto-Costa & Marques, 2015). Rats were anesthetized with ether to alleviate their pain. Hematoxylin and eosin (HE) staining indicated that a burn of 80 \u2022 C for 8 s and a burn of 100 \u2022 C for 10 s can cause second and third-degree burns respectively. Body weight, lee's index were measured. The degree of burn was observed by HE staining. The expression of MCP-1, IL-1\uf062, TNF-\uf061 and VEGF were tested by Elisa and qPCR. Experiment design After successfully inflicting a standard burn on the different diet groups, the rats were divided according to a 3*3 factorial design. Each of the weight groups (obese, overweight and normal weight) were randomly divided into the following: the normal weight group, overweight group, obese group, second-degree burn group, third-degree burn group, overweight second-degree burn group, obese second-degree burn group, overweight third-degree burn group, and obese third-degree burn group. Each group had 20 rats. The high fat or normal feeds were continued and no dressing was used following the burn injuries. Body weight was observed and recorded on the 1st, 3rd, 7th and 14th day after burns were inflicted. A control group with no burn injury was depilated following the same method as the above diet groups (Fig. 1). Sample collection and testing According to the"}, {"title": "bm25", "text": "More Than One Third of Intubations in Patients Transferred to Burn Centers are Unnecessary: Proposed Guidelines for Appropriate Intubation of the Burn Patient Advanced Burn Life Support emphasizes endotracheal intubation for patients with facial burns before transfer to a burn center to prevent airway obstruction. Many patients are intubated before transport and are often extubated shortly after burn center arrival. We hypothesize that many intubations performed before burn center transport are unnecessary. We conducted a retrospective review of all adults who were intubated before burn transfer and survived to discharge from August 2003 to June 2013. Intubations that had 2 or fewer ventilator days (i.e., potentially unnecessary intubations) were compared with those lasting longer than 2 days. Data collected included age, ventilator days, length of stay, % TBSA burn, % second degree, % third degree, % second degree face burn, % third degree face burn, and origin of burns. A total of 416 patient met inclusion criteria. Of these, 129 patients (31.0%) were intubated less than or equal to 1 day, and a total of 171 (40.1%) patients remained intubated for less than or equal to 2 days. Patients who were intubated less than or equal to 2 days differed from those intubated more than 2 days with respect to % TBSA burn (10.2 \u00b1 8.1 vs 30.8 \u00b1 19.7, P < .001), % third degree burn (2.84 \u00b1 5.6 vs 22.5 \u00b1 19.6, P < .001), % third degree face burn (0.14 \u00b1 0.7 vs 0.94 \u00b1 1.9, P < .001), and hospital days (11.7"}, {"title": "bm25", "text": "Pro-inflammatory effect of obesity on rats with burn wounds Objective A burn is an inflammatory injury to the skin or other tissue due to contact with thermal, radioactive, electric, or chemical agents. Burn injury is an important cause of disability and death worldwide. Obesity is a significant public health problem, often causing underlying systemic inflammation. Studying the combined impact of burn injuries on obese patients has become critical to the successful treatment of these patients. The aim of this paper is to highlight the effect of inflammation associated with burn injuries on several body weight group in a rat study. Materials and methods Different degrees of obesity and burns were established in rats and divided into a normal weight group, overweight group, obese group, second-degree burn group, third-degree burn group, over-weight second-degree burn group, over-weight third-degree burn group, obese second-degree burn group, and obese third-degree burn group (20 rats per group). Changes in inflammatory factors and growth factor were measured on the 1st, 3rd, 7th and 14th days after burns were inflicted. Results The ELISA test showed that in the unburned control group, MCP-1, IL-1\u03b2 and TNF-\u03b1 protein expressions in the obese and over-weight groups were higher than the normal-weight group (P < 0.05). RT-PCR test showed that the expressions of MCP-1, IL-1\u03b2 and TNF-\u03b1 genes in the obese group were higher compared to the overweight and normal weight groups (P < 0.05). Three and 7 days after burns were inflicted, the level of VEGF in the normal weight group was higher than the obese group"}, {"title": "bm25", "text": "a burn injury on the hand, with most injuries occurring on the ankle and foot. All injuries occurred at home, and the heat applications were prepared by the patients themselves or their caregivers. There was a higher rate of first aid adequacy in the scald-burn group than in the contact or radiation-burn group. However, only five patients (31%) received adequate first aid. The mean %TBSA was 1.54 (SD \u00b1 1.22). The mean % TBSA of scald burn was 2.67, higher than that of the others (contact burn: 1.01, radiation burn: 0.75). The majority of the burns were classified as second-(43.8%) and third-degree burns (50%). Most second-degree injuries were scald burns. In contrast, most third-degree injuries were caused by contact injuries. However, one patient had a fourth-degree burn injury caused by an electric blanket ( Figure 2A) (Table 3). | Clinical treatment and outcomes Only two patients, who had second-degree burn injuries, did not require surgery. Instead, they received hydrotherapy using Aquacel Ag (ConvaTec, Princeton, NJ, USA). Among the 14 patients requiring surgery, the average number of surgeries was 2.31. All patients underwent debridement. Specifically, 10 patients received splitthickness skin grafts, and three patients received negative-pressure wound therapy. Moreover, six patients underwent percutaneous transluminal angioplasty on the affected side of the burn injury during hospitalisation. As for the non-surgical interventions, four patients underwent hyperbaric oxygen therapy. All patients were discharged under stable conditions with a simple dressing. Fourteen patients were followed up at the outpatient clinic department with satisfactory recovery (Figure 4), while two patients were lost"}, {"title": "bm25", "text": "An evaluation of pediatric burn patients over a 15-year period. BACKGROUND Burn injuries are a huge public health issue for children. The aim of this study was to determine the demographic and etiological features, burn wound infections, and clinical trends of 2346 pediatric burns patients over 15 years in the southeast provinces of Turkey and to establish criteria for a pediatric burn prevention program. METHODS Age, gender, degree of burn, demographics, etiology of burn, burn wound infections, length of hospital stay, total body surface area percentage, and outcome data of 2346 children (1064 males, 1282 females; mean age 4.42\u00b13.56 years; range 2 months to 15 years) who admitted to the Burn Center of Dicle University between January 1994 and December 2008 were recorded. RESULTS The male to female ratio was 0.8:1. The highest incidence appeared in the 0-4 years of age group (68.5%). Burn type was scalding burns in 1828 (77.9%), flame burns in 332 (14.2%) and electrical burns in 186 (7.9%). Distribution of the degree of burns was 19 (0.8%) first-degree, 2172 (92.6%) second-degree and 155 (6.6%) third-degree. The mean total body surface area burn was 21.5\u00b112.6%. The mean length of hospitalization was 12.87\u00b110.02 days. The most frequently isolated burn wound infections were Pseudomonas aeruginosa (52%, 368), Acinetobacter spp. (12%, 83), and Escherichia coli (9%, 66). 2241 (95.5%) cases were survivors and 105 (4.5%) were non-survivors. CONCLUSION The epidemiological features of pediatric burns in the southeast region of Turkey differ from those of other regions. Burn prevention education should include training in pediatric burn prevention."}, {"title": "bm25", "text": "Burn injury is considered a global health issue. Third degree burn wounds do not heal spontaneously and require skin grafts. Some factors could contribute to wound healing. In this study we assessed the effect of non-fatty omental cells in burn wound healing. Similar third degree burn wounds were induced on the back of 192 rats. Forty-eight of these rats were put in a control group that did not receive any treatment. The rest of the rats were put in 3 groups, each receiving a different treatment regime. Rats in group 2 had a daily application of silver sulfadiazine; group 3 rats were injected with omental cells, and group 4 rats were injected with phosphate buffer saline (PBS) once, followed by daily application of Vaseline to the burned region. Parameters such as open epidermis length, number of epidermal cell layers, granulation tissue thickness (GTT) and neutrophil density were evaluated in each group. The average open epidermis length in the omental cell group was less than in the other groups on days 10 and 20 (P<0.05). The thickness of epidermal cell layers in the group receiving cells was greater than in the other groups on all days. On the 20th day, there was a significant difference in GTT between the four groups (P<0.05). The injection of non-fatty omental cells has a positive effect on third degree burn wounds in rats."}, {"title": "bm25", "text": "non-blistered skin, second-degree burns: blisters and some thickening of the skin, third-degree burns: widespread thickness with a white, leathery appearance. Second degree burns spread in beneath of epidermis and into the dermis. 9,14,[16][17][18] Many researchers investigated on second degree burns wound using Arnebia euchroma ointment versus silver sulfadiazine to be efficient in wound healing process. 17 Afshar et al. showed that Emu oil can have a positive effect on burns wound healing. 19 Hmmati et al. showed the healing effect of n-hexan dichloromethane extract root Onosma bulbotrichum in second degree burns. 18 Khorasani et al. showed that saffron (Crocus sativus) could help the accelerating wound healing in second degree burn injuries. 20 Gupta et al showed that honey dressings made the wounds sterile in less time, and increased the second degree burn wound healing. 14 Akhoondinasab et al, found that wound healing was more noticeable in Aloe vera group and also, they showed that the speed of wound healing was better in Aloe vera group than silver sulfadiazine group. 21 In this research, histological epithelization and neovascularization assessment showed that epithelization and neovascularization in vaseline group were less and the time of burn wound contraction was shorter in the herbal ointment group during mentioned times. The mixture of sesame oil, camphor and honey was assessed for first time on healing of second degree burn wound injuries in rat with successful results. So it can be concluded that herbal ointment of sesame oil, camphor and honey had a significant effect on epithelization and neovascularization. Also, the time"}, {"title": "bm25", "text": "An explosion and fire occurred in a cracking column at the Chevron Richmond refinery. A total of 8 workers and firefighters were injured. Three workers suffered second and third degree burns. February 23, 1999 - A fire occurred in the crude unit at Tosco Corporation's Avon oil refinery in Martinez. Workers were attempting to replace piping attached to a 150-foot-tall fractionator tower while the process unit was in operation. During removal of the piping, naphtha was released onto the hot fractionator and ignited. The flames engulfed five workers located at different heights on the tower. Four men were killed, and one sustained serious injuries. March 25, 1999 \u2013 An explosion and fire, at the Chevron Richmond refinery, that spread noxious fumes, and sent hundreds of Richmond residents to hospitals. August 6, 2012 \u2013 A large fire erupted at the Chevron Richmond refinery. About 15,000 sought medical treatment for exposure to the smoke. On April 15, 2013, the US Chemical Safety Board released their preliminary report citing Chevron for a chronic failure to replace aging equipment and called for an overhaul of regulatory oversight of the industry to prevent such accidents from happening again. February 12, 2014, - Sulfuric acid burned two workers in a Martinez refinery's alkylation unit, who were transported to the nearest hospital burn unit by life flight. The incident occurred when the operators opened a block valve to return an acid sampling system back to service. Very shortly after this block valve had been fully opened, the tubing directly downstream of the valve"}, {"title": "bm25", "text": "with Burns The samples were located over the digital hotplate and left to be heated and stabilized to 37.0 \u2022 C. Then contact burns were applied using a heat control metal plate. The plate was heated to 140 \u2022 C and placed directly on the skin surface for a period of time ranging from 10 s to 180 s with a constant pressure. Then emissivity measurements for the burn-damaged skin were obtained and repeated five times using the calibrated radiometer of Figure 3 and Equation (8). Then dressing materials were placed over the burn-damaged skin and the emissivity of the sample was measured using the calibrated radiometer of Figure 3 and Equation (8). Methodology 3: Skin with Different Burn Depths The samples were located over the digital hotplate and left to be heated and stabilized to 37.0 \u2022 C. The emissivities of the samples were obtained using the calibrated radiometer. Then contact burns were applied using a heat control metal plate heated to 100 \u2022 C and placed directly on the skin surface for a different period of time; start from 10 s (first degree burn), then 60 s (second degree burn), and finally 120 s (third degree burns). These periods of time were chosen as they are sufficient to produce different burn depths as assessed experimentally using samples under tests. In addition, the degree of the burns was assessed based on visual signs illustrated in Table 1. The emissivities of the samples after each application of localized heat treatments were obtained using the calibrated radiometer"}, {"title": "bm25", "text": "a car that was stopped in the parking lot of the McDonald\u2019s where she bought the coffee. She held the cup between her knees while removing the lid to add cream and sugar. The cup tipped over. The entire contents spilled onto her lap. The coffee was not just \u201chot,\u201d but scalding hot. McDonald\u2019s corporate policy was to serve coffee at a temperature between 180 and 190 degrees. That\u2019s about 30 degrees hotter than the coffee we brew in our home coffee makers. Coffee at 190 degrees can cause us third degree burns in about 3 seconds. Coffee at 160 degrees, the temperature used by most of our home coffee makers, takes 20 seconds to result in third degree burns. If we spill coffee on ourselves at home, we have 20 seconds to wipe it off or to remove the wet clothing and thereby avoid serious injury. At the 190 degrees used by McDonald\u2019s, there is precious little time for a customer to remove soaked clothing before suffering serious burns. Mrs. Liebeck\u2019s injuries were far from frivolous. She was wearing sweatpants that absorbed the coffee and kept it against her skin. She suffered third-degree burns (the most serious kind) and required skin grafts on her inner thighs and her private parts. Liebeck\u2019s case was far from an isolated event. McDonald\u2019s had received more than 700 previous reports of injury from its coffee, including reports of third-degree burns, and had paid settlements in some of those cases. McDonalds stated that it used the higher temperatures to assure"}, {"title": "bm25", "text": "was 14% \u00b1 11% (range 2-70%). Fifty-one percent of the lesions were medium and small area burns. There were a few large (25% TBSA) and extra-large (35% TBSA) area burns, the majority caused by flames. No significant relationship was observed between hot water burns and gender (p > 0.05). Distribution of the Degree of Burns Distribution of the degree of burns was 37 (78%) second-degree and 10 (2%) thirddegree burns. Third-degree burns were observed more frequently in the 4 months-2 years age range, with different etiologies (chemical burns, flame burns and contact burns), the most frequent being hot liquid burns and chemical burns (35%). Anatomically, the majority of the burns were confined to the head, face and neck (17; 36%), followed by burns of the lower extremities (10; 21%), as shown in Figure 4. There were significant differences among ages for different anatomical locations, with the medium age of face and neck burns being 2.4 years; that for lower extremity burns was 5.1 years, and that abdomen and chest burns was 5.6 years. The features of patients are reported in Table 2. Distribution of Length of Stay (LOS) The minimum length of stay (LOS) was one day, while the maximum was 69 days. The average LOS was 17 \u00b1 15 days, with a prevalence of hot liquid burns in the long LOS group. There were significant differences among TBSA groups for LOS, with a mean LOS of 44 days for the extra-large area group, 18 days for the large area group, 16 days for the medium"}, {"title": "bm25", "text": "Customers want their coffee served hot. Stella Liebeck from Albuquerque, New Mexico, was severely burned by McDonald\u2019s coffee in February 1992 while in the passenger seat of her grandson\u2019s car. Liebeck attempted to remove the lid of the coffee cup in order to put cream and sugar in the coffee. The car was stopped. As she was removing the lid, the contents of the 180-190 degree liquid spilled on her. Liebeck suffered burns on her inner thighs, buttocks, and groin areas. She was hospitalized for eight days and underwent skin grafts. Generally coffee is served between 135 and 140 degrees. At that temperature it is still considered very hot, yet not scalding. Coffee that is of the temperature spilled on Liebeck is hot enough to cause third degree burns in two to seven seconds. In other words, the coffee served at McDonald\u2019s was far too hot. The urban myth that was generated from this case was that this was the first and only case of injury caused by scalding coffee sold by McDonald\u2019s drive-through fast food restaurants. Discovery produced in the case however showed that McDonald\u2019s had over 700 documents revealing claims by people burned by its coffee between 1982 and the time Liebeck was burned. McDonald\u2019s is not the only fast food business that serves its coffee at such high temperatures. Dunkin Donuts has also been sued for similar claims."}, {"title": "bm25", "text": "wounds [14]. Burn healing can be regarded as a particular kind of wound healing and most of the skin reactions are the similar. The conditions for burn healing differ according to the depth of the burn wound in addition to several factors can interfere with the healing process. Consequently three zones have been known in a burn, an inner zone (coagulation zone) where cell damage is irreversible, a middle zone (statis zone) where damage is severe and an outer zone (hyperemic zone) where recovery is likely [15]. Moreover there are three degrees of burns, the first in which the epidermis only is damaged, the second where some dermal damage also occurs but where epithelial regeneration is possible and the third where both epidermis and dermis are irreversibly damaged. 1 st and 2 nd degree burns are known together as partial thickness burns. 2 nd degree burns is the deeper injury than 1 st degree burn. It involves all the epidermis and much of the corium. The deep dermal burn is of important clinical importance. Most 2 nd degree burns are characterized by blisters. They are usually accompanied by considerable subcutaneous oedema. The rate of healing is dependent upon the depth of skin destruction on whether or not presence of infection. In superficial partial thickness burns, healing usually takes place uneventfully in a period of 10 to 14 days unless infection supervenes. Deep dermal burns are injuries that extend down deep in the cornium lining of the sweat glands and their follicles. If the wound is appropriately"}, {"title": "bm25", "text": "prospective cross-sectional study was conducted in a large tertiary care setting of the Kingdom of Saudi Arabia between August 2016 and December 2018. Results: A total of 102 hospitalized burn patients were included in this study, of whom 84 (82.4%) were males. Burns were classified as first degree, second degree, third degree, or fourth degree depending on their severity and extent of penetration into the skin. The majority (81.3%) of the patients suffered from flame burn, followed by scald (9.85), chemical (6.9%), and electrical (2%) types of burns. Broad-spectrum antibiotic such as piperacillin/tazobactam (40.57%) was the most common empirically prescribed antibiotic. In 35 patients (34.3%), there was a change in antibiotic after culture findings. Conclusion: This study demonstrated that 40% of antibiotic therapy decisions followed the recommended clinical guidelines. This study also found that Gram-negative microorganisms such as Pseudomonas aeruginosa and Methicillin-resistant Staphylococcus aureus were ubiquitous in our burn unit. The study results will facilitate to develop antibiogram for our study setting, thus reducing antibiotic resistance. Further studies are needed to explore the extent and consequences of irrational antibiotic prescriptions in critically ill burn patients. Effect of pharmacist-led intervention on progression of diabetic complications at two tertiary care hospitals of Malaysia p. 193 Muhammad Zahid Iqbal, Amer Hayat Khan, Syed Azhar Syed Sulaiman, Aznita Ibrahim, Nor Shaffinaz Binti Yusoff Azmi, Muhammad Shahid Iqbal, Fahad I Al-Saikhan, Salah-Ud-Din Khan, Eldowaik Mohamed Salah Saad Background and Objective: Diabetes mellitus is a chronic disease which can lead to different complications in patients if not treated properly. An appropriate intervention"}, {"title": "bm25", "text": "is impossible to keep everyone happy. 3. What are the arguments supporting McDonald\u2019s position in the Liebeck case? What are the arguments supporting Liebeck\u2019s position? McDonald\u2019s stated that Liebeck had only herself to blame for placing the cup between her legs. It was also stated that Liebeck failed to leap out of the seat allowing the coffee to penetrate her clothing and burning her. A burn expert for Liebeck stated that 170 degree coffee is capable of causing second degree burns within 3. 5 seconds. It was also argued that 700 complaints, equal to one in every 24 million cups sold, is trivial. This statement was supposed to help McDonald\u2019s but in turn helped Liebeck. 4. If you had been a juror in the Liebeck case, which position would you most likely have supported? Why? What if you had been a juror in the pickle burn case? If I were a juror in this case or the pickle burn case, I would have most likely supported McDonald\u2019s. I feel that people should show a little more common sense when they order food. Most people want to get their food while it is still hot so why don\u2019t people sue when food is too cold? On the other hand, McDonald\u2019s should make the warning on the cup larger and warn consumers as they order. 5. What are the similarities and differences between the coffee burn case and the pickle burn case? Does one represent a more serious threat to consumer harm? What should McDonald\u2019s, and other fast"}], "hoverinfo": "text"}, {"x": [0.06410431116819382, 0.14902693033218384, 0.12601758539676666, 0.052449781447649, 0.14863385260105133, 0.13385282456874847, 0.15834686160087585, 0.20120906829833984, 0.12833179533481598, 0.12846985459327698, 0.1804828941822052, 0.1131879985332489, 0.07455012202262878, 0.1465974599123001, 0.10046766698360443, 0.11657844483852386, 0.06262753158807755, 0.14863385260105133], "y": [0.04220934584736824, 0.028053149580955505, 0.047469452023506165, 0.04638107120990753, 0.07334326952695847, 0.030361415818333626, 0.09937607496976852, 0.06216114014387131, 0.0256393663585186, 0.0353684239089489, 0.07012869417667389, 0.07760412245988846, 0.005125440191477537, 0.0709528848528862, 0.04685838893055916, 0.08219169080257416, 0.04424299672245979, 0.07334326952695847], "mode": "markers", "name": "Cluster 8", "marker": {"size": 8, "color": "rgb(217,217,217)"}, "text": ["Document 48", "Document 273", "Document 288", "Document 325", "Document 399", "Document 424", "Document 464", "Document 479", "Document 480", "Document 1022", "Document 1034", "Document 1084", "Document 1277", "Document 1305", "Document 1398", "Document 1421", "Document 1468", "Document 1473"], "customdata": [{"title": "rpj-common-crawl-2023-06", "text": "private schools or hire tutors. Most families couldn\u2019t afford this, so most kids simply didn\u2019t go to school. That began to change in th\u2026 1. how much is a 360 degree camera 2. what does 2nd degree sunburn look like 3. how long does it take to get a radiology degree 4. what is murder in the first degree 5. what is a nurse practitioner degree called 6. what is 2nd and 3rd degree murders 7. what is 3rd degree burglary 8. when treating a 3rd-degree burn, you should 9. bachelor's degree or bachelors degree 10. how to treat 1st degree burns"}, {"title": "rpj-common-crawl-2020-05", "text": "degree (noun) associate's degree (noun) bachelor's degree (noun) first\u2013degree (adjective) master's degree (noun) second\u2013degree (adjective) third degree (noun) third\u2013degree (adjective) nth (adjective) degree /d\u026a\u02c8gri\u02d0/ noun plural degrees /d\u026a\u02c8gri\u02d0/ Learner's definition of DEGREE [count] : a unit for measuring temperature Bake the bread at 350 degrees (Fahrenheit) for 35 minutes. 20 degrees Fahrenheit/Celsius [=20\u00b0 F/C] \u2014 abbreviation deg. [count] : a unit for measuring the size of an angle There are 360 degrees in a circle. 47 degrees latitude/longitude a 15 degree angle [=a 15\u00b0 angle] : an amount or level that can be measured or compared to another amount or level These trees will thrive, to a greater or lesser degree, in a number of climates. To what degree [=how much] is she interested in finance? We don't yet know the degree to which [=how much] the roof is damaged. \u2014 usually + of a high degree of difficulty/skill They have had varying degrees of success. We can now predict the weather with a greater degree of accuracy. [=with more accuracy] [noncount] : a measure of how severe or serious something is He was accused of murder in the first degree. = He was accused of first-degree murder. [=the most serious kind of murder] a second-degree burn \u2014 see also first-degree, second-degree, third-degree [count] : an official document and title that is given to someone who has successfully completed a series of classes at a college or university She has a degree in engineering. a four-year degree [=a degree that is given to someone who has"}, {"title": "rpj-common-crawl-2021-04", "text": "Quick Answer: What\u2019S The Difference Between 1st 2nd And 3rd Degree Burglary? What is the difference between burglary 1 and 2? How much time do you get for 2nd degree burglary? How bad is 3rd degree burglary? How do you beat a burglary case? Is burglary only at night? What is classed as a burglary? Is second degree burglary a violent crime? What is worse 1st or 3rd degree burglary? Which is the most serious type of burglary? Can a burglary charge be dropped? What does burglary in the 3rd degree mean? How long does burglary stay on record? Is Robbery worse than burglary? Is breaking into a car burglary? Can you be charged with burglary with no evidence? Is burglary a violent felony? Do dismissed charges stay on record? How bad is a Class D felony? With first degree burglary, someone has entered the home of another person with the aim to commit violence and/or theft. In the case of a second degree burglary, someone entered a property with the aim to commit violence and/or theft, but the property could be a building detached from the actual home, such as a shed.. Second degree burglary can be charged as a misdemeanor or a felony. If charged as a misdemeanor, the punishment can result in imprisonment in county jail for a maximum of one year. If charged as a felony, second degree burglary is punishable by up to 16 months, 2 years, or three years in state prison. Being convicted of this degree can result in"}, {"title": "rpj-common-crawl-2021-04", "text": "State-Of-The-Art Representation In Criminal Defense, Sports And Entertainment Law In Buffalo Reserve An Appointment At 716-312-1136 Daniel J. Henry, Jr. Robert M. (Bert) Villarini Degrees of arson - Degrees of arson On behalf of Villarini & Henry, L.L.P. | Jan 8, 2021 | Firm News | An arson is committed when a person intentionally sets a building on fire. This is a very serious crime that comes with equally serious consequences. States such as New York State will determine those consequences by defining what degree of arson the accused person committed. Read on to learn more about these degrees and how they affect a person\u2019s punishment. First-degree of arson The first degree includes the crime of setting a home or building on fire with the accused having knowledge of someone being inside. In this case, the punishment implemented by the courts will be determined by the severity of the damage. Second-degree arson There have been many cases in which the owner has intentionally set their building or home on fire. They might do this to commit insurance fraud and collect the insurance money. Property crimes such as these may lead to a hefty fine and, in some cases, a short stint in prison. Third-degree arson The third degree involves a person knowingly setting fire to property without anyone being inside of it. This may involve property such as a parking garage, home or even an empty lot, to name a few. Aggravated crimes of arson Perhaps the most severe include aggravated crimes of arson. In this"}, {"title": "rpj-common-crawl-2022-05", "text": "is classified as a homicide in most jurisdictions. These charges can include accidental deaths and those that occur through negligence. More Information on Capital Murder v. First-Degree Murder The easiest way to recall the difference between capital v. first-degree murder is that capital murder results in capital punishment if a person is convicted. For more information on capital v. first-degree murder, we recommend reading our archives on this subject. There, you will learn more first guaranty bank phone number the death penalty, including its history, and discover which states impose capital punishment and which do not. Anyone with further questions on this topic or who may currently be involved in a capital or first-degree murder case should immediately contact a qualified attorney for more specific advice and assistance. \u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a: https://thelawdictionary.org/article/difference-capital-first-degree-murder/ What is 1st 2nd and 3rd degree murders and manslaughter? In most US jurisdictions there is a hierarchy of acts, known collectively as homicide, of which first-degree murder and felony murder are the most serious, followed by second-degree murder and, in a few states, third-degree murder, followed by voluntary manslaughter and involuntary manslaughter which are not as serious \u2026 What is 1st 2nd and 3rd degree murders Minnesota? There are three degrees of murder. They are governed by Minnesota Statutes: 609.185 (first degree murder), 609.19 (second degree murder), and 609.195 (third degree murder). Intentional second degree murder is intentional murder without premeditation. How much time is second degree? Second-degree murder carries a lighter sentence than first-degree murder, but also less than aggravated battery. Second-degree murder bank"}, {"title": "rpj-common-crawl-2021-04", "text": "The degree of a polynomial is the highest degree of any one of its monomial terms. brookscole.com Either the exponent of a power function or the highest power in a polynomial function. For example, the degree of ( is 5, while the degree of ( 3 - 7 is 3. npcts.edu Keywords: murder, seriousness, crime, misdemeanor, felony the seriousness of something (e.g., a burn or crime); \"murder in the second degree\"; \"a second degree burn\" Classification assigned to a crime, depending on circumstances, for purposes of determining punishment. First degree is considered most serious than third; A is more serious than C. Degrees may be assigned to the actual crime (IE: murder in the first or second degree) or the class of crimes (IE: felony or misdemeanor). ci-wackenhut.com The level of seriousness of an offense. duiattorneycalifornia.com Keywords: crucial, step, zeeshan, rank, elizabeth Related Terms: Levels, Mba degree, Degree, Level, Progression, Graduate degree, Educational attainment, Postgraduate diploma, Undergraduate degree, Bachelors degree, Postgraduate, Master's degree, Honours degree, Graduate diploma, Bachelors degree, Baccalaureate, Degrees, Programme, Phd, Bachelors degree, College degree, Masters, Rank, Associate of applied science degree, Master, Bachelor degree, Undergraduate course, Licentiate, Mba, Double degree, Progress , Honours, Award, Assumed knowledge, Ph.d, Tripos, Master of arts, Undergraduate, Distinction, Masters degree, Bachelor, Program, Llb, Degree program, Graduate, Academic program, Doctoral degree, Diploma, Professional degree A step, stair, or staircase. One of a series of progressive steps upward or downward, in quality, rank, acquirement, and the like; a stage in progression; grade; gradation; as, degrees of vice and virtue; to"}, {"title": "rpj-common-crawl-2022-05", "text": "What's the difference between capital murder and first degree murder? First degree murder is a killing that is both intentional and premeditated. A capital murder is a first degree murder which is subject to the death penalty. Depending on the state, a capital murder case may require some aggravating special circumstance. One Smart Guy! What's the difference between first degree second degree and third degree murder? What is the difference between first degree and second degree murder? What is first degree murder? What is the difference between murder and manslaughter? What's the highest degree of murder?"}, {"title": "rpj-common-crawl-2023-06", "text": "sculptors. Let\u2019s talk a little bit more about first, second, and third-person perspective. Then we\u2019ll figure out how to use point of view in a way that will allow your writing to take flight. Undergraduate vs. Graduate Degrees: Exploring Key Differences In the United States, undergraduate and graduate studies are college-level programs. Explore the differences between undergraduate and graduate degrees by looking at their admission requirements and degrees earned. Words near re-entered in the Dictionary re-entering re-enters reenkindle reenlist reenlistment reenslave reenter reentered reentering reenters reenthrone"}, {"title": "rpj-common-crawl-2021-04", "text": "definitions for degree / (d\u026a\u02c8\u0261ri\u02d0) / a stage in a scale of relative amount or intensitya high degree of competence an academic award conferred by a university or college on successful completion of a course or as an honorary distinction (honorary degree) any of three categories of seriousness of a burnSee burn 1 (def. 23) (in the US) any of the categories into which a crime is divided according to its seriousnessfirst-degree murder genealogy a step in a line of descent, used as a measure of the closeness of a blood relationship grammar any of the forms of an adjective used to indicate relative amount or intensity: in English they are positive, comparative, and superlative music any note of a diatonic scale relative to the other notes in that scaleD is the second degree of the scale of C major a unit of temperature on a specified scalethe normal body temperature of man is 36.8 degrees Celsius Symbol: \u00b0 See also Celsius scale, Fahrenheit scale a measure of angle equal to one three-hundred-and-sixtieth of the angle traced by one complete revolution of a line about one of its endsSymbol: \u00b0 See also minute 1, second 2 (def. 1a) Compare radian a unit of latitude or longitude, divided into 60 minutes, used to define points on the earth's surface or on the celestial sphere a point or line defined by units of latitude and/or longitude Symbol: \u00b0 a unit on any of several scales of measurement, as for alcohol content or specific gravitySymbol: \u00b0 the highest power"}, {"title": "bm25", "text": "Second degree may refer to: A postgraduate degree or a professional degree in postgraduate education Second-degree burn Second-degree polynomial, in mathematics Second-degree murder, actual definition varies from country to country The second degree in Freemasonry See also First degree (disambiguation) Third degree (disambiguation) Minute and second of arc, a second of arc being of a degree"}, {"title": "bm25", "text": "What's the difference between felony murder and malice murder? Malice is implied when the killing is unprovoked and \"all the circumstances of the killing show an abandoned and malignant heart.\" A felony murder is committed when a person causes the death of another person while committing a felony. What's the difference between aggravated murder and murder? What's the difference between capital murder and first degree murder? What's the difference between assassinate and murder? What's the difference between homicide and murder? What's the difference between murder and assassination? What is the difference between capital murder and murder? What is the difference between murder and capital murder? What is malice murder? What's the difference between capital murder and murder in the first degree? What's the difference between intentional homicide and murder? What's the difference between assassination and a murder? What's the difference between a homicide and murder? What's the difference between manslaughter and first degree murder? What is the difference between first degree murder and third degree murder? What is the difference between second degree murder and third degree murder? What is the difference between murder and homicide? What is the difference between murder and manslaughter? What is the difference between manslaughter and murder? What's the difference between murder in the first degree and murder in the second degree? What's the difference between third degree and second degree murder? What's the difference between first first and second degree murder? What's the difference between first degree murder and second degree? What's the difference between second degree murder and third"}, {"title": "bm25", "text": "Third-Degree Murder Meaning Third-degree murder, also known as manslaughter, is very different from first and second-degree murder. The crime is different, and so is the punishment. A defendant will be accused of third-degree murder if they unintentionally kill someone else while doing something dangerous. There has to be no intent to kill the person. Pennsylvania, Florida, and Minnesota call this third-degree murder; most other states call it manslaughter. What Is the Difference Between Third-Degree Murder and First or Second-Degree Murder? First-degree murder requires premeditation or for the death to have occurred whilst committing a felony. Some states classify felony murder as first-degree murder and others as second-degree murder. Second-degree murder is an intentional murder in the heat of the moment, so not premeditated. If the defendant planned to commit bodily harm and unintentionally killed the person, then this is second-degree murder in most states. The terms first, second, and third-degree murder are not used in all states, and the definitions vary between states. As we have already mentioned, most states call third-degree murder manslaughter. What Is The Difference Between Third-Degree Murder and Manslaughter? Manslaughter is considered a less serious crime than murder in the eyes of the law. Most states classify the crime as manslaughter if the death was unintentional but could have been avoided if the defendant acted appropriately. In some states, they classify manslaughter with different degrees, similar to murder; others will just classify it as voluntary manslaughter or involuntary manslaughter. Every state has a different classification system for whether a crime is manslaughter"}, {"title": "bm25", "text": "599). Determining whether a jury instruction on second-degree arson was required in this case thus requires understanding the relationship between first- and second-degree arson under section 806.01. The difference between the two offenses primarily relates to the issue of human occupancy. Krantz v. State, 553 So.2d 746, 747 (Fla. 5th DCA 1989) (\u201cAs can be seen, the difference between first degree arson and second degree arson concerns primarily human occupancy.\u201d). First-degree arson involves the burning of a building, and sometimes the contents of a building, that is or is likely to be occupied. Under section 806.01(1), it is committed when \u201c[a]ny person \u2024 willfully and unlawfully, or while in the commission of any felony, by fire or explosion, damages or causes to be damaged\u201d (a) \u201c[a]ny dwelling, whether occupied or not, or its contents,\u201d (b) \u201c[a]ny structure, or contents thereof, where persons are normally present,\u201d or (c) \u201c[a]ny other structure that he or she knew or had reasonable grounds to believe was occupied.\u201d Second-degree arson under section 806.01(2) involves the burning of other structures that are not expressly listed in the first-degree arson statute: it hinges on whether the fire or explosion \u201cdamage[d] or cause[d] to be damaged any structure.\u201d The term \u201cstructure\u201d is defined to include, among other things, \u201cany building of any kind\u201d and \u201cany \u2024 portable building.\u201d \u00a7 806.01(3). The statutory definition of the term \u201cstructure\u201d applies to both first- and second-degree arson. Consistent with the arson statute's focus on treating the burning of buildings that are or are likely to be occupied"}, {"title": "bm25", "text": "Home \u00bb Legal Articles \u00bb Differences Between First, Second and Third Degree Murder Differences Between First, Second and Third Degree Murder Understanding the differences between first, second and third degree murder is difficult especially if you are not in a state where murder is classified in that order. They all involve the killing of one person by another. However the legal punishment for those three offences are not the same. The law always treat them with caution. Having said that, in this article we will be looking closely at the different degrees of murder in law. I highly encourage you to read this work from start to finish so that you will be able to grasp the information contained here. Meaning and Differences Between First, Second and Third Degree Murder Recommended: Advantages and Disadvantages of Alternative Dispute Resolution (ADR) 1 Meaning of murder 2 Meaning of first degree murder 3 Meaning of Second Degree Murder 4 Felony Murder/Third Degree Murder 5 Differences between 1st, 2nd and 3rd degree murder Meaning of murder Murder is the unlawful killing of another human being without justification or valid excuse, with malice aforethought. In criminal law, it refers to the unjustified killing of one person by another, and is usually distinguished from manslaughter by the element of malice aforethought. Malice aforethought is the intention to kill or harm. It exists where a defendant intends to kill another person or to cause severe bodily harm without legal justification or excuse and is usually erroneously mistaken for premeditation. For a killing to"}, {"title": "bm25", "text": "Assault is one of the most common charges in Colorado. It\u2019s important to understand the differences between first, second, and third degree assault and consult a Boulder criminal defense attorney who can counsel you on what defenses are available. First, Second, and Third Degree Assault\u2014What\u2019s The Difference? If you are convicted of Second Degree Assault, the situation is much more serious. As a Fourth Degree Felony, this charge carries a mandatory prison sentence of five years. Below are the definitions a jury uses to determine whether a person will be found guilty of Second Degree Assault. If the District Attorney convinces the jury the defendant is guilty of any of the following actions, the sentence could be up to eight years in prison. 1. The Defendant intentionally caused bodily injury to another by the use of a deadly weapon. 2. The Defendant recklessly caused serious bodily injury to another by the use of a deadly weapon. 3. The Defendant intended to cause any injury, and caused serious injury. 4. The Defendant caused injury to anyone while intentionally trying to hinder the police or firefighters. 5. The Defendant knowingly applied violent force to (certain) government officials. 6. The Defendant intentionally drugged someone without their consent / knowledge. 1. The Defendant intended to cause serious injury, and does in fact cause serious injury. 2. The Defendant intended to, and in fact did, seriously disfigure or disable another person. 3. The Defendant, acting with \u201cextreme indifference to the value of human life,\u201d knowingly created a grave risk of death,"}, {"title": "bm25", "text": "What are 1st, 2nd and 3rd-degree murders? Posted on: 25 Jul, 2020 By Donald I.M. Outerbridge People often think that murder is just a murder. But have you ever thought if somebody kills somebody unintentionally then would it be considered as a murder? And what if somebody kills somebody intentionally then the penalty or punishment law would be as same as the unintentional murder? The answer is NO. So it is important to know about the degree of murder. There are some degrees on the state of murder, and they are named as first degree, second degree and third-degree murder based on the level of killing and so on. Facts about the first degree, second degree, and third-degree murder: Murder is usually a punishable criminal act in the eyes of Canadian law and every single jurisdiction on earth. It is not a matter of joke. No matter who commits the murder or who the victim is, the murderer should get punished. But there are some differences in terms of murder which are also designated as first, second, third-degree murder. This writing will help you to know about the differences between these 3 degrees\u2019 murder and the law behind this. First-degree murder: The topmost serious charge for murder is also known as first-degree murder. This murder is the evilest one. When someone kills someone intentionally with malice aforethought is called first-degree murder. This murder is also designated as premeditated murder which is a planned murder. Some example of first-degree murder: Contract killing or any killing committed by"}, {"title": "bm25", "text": "several other countries divide arson into degrees, depending sometimes on the value of the property but more commonly on its use and whether the crime was committed in the day or night. First-degree arson \u2013 Burning an occupied structure such as a school or a place where people are normally present Second-degree arson \u2013 Burning an unoccupied building such as an empty barn or an unoccupied house or other structure in order to claim insurance on such property Third-degree arson \u2013 Burning an abandoned building or an abandoned area, such as a field, forest or woods. Many statutes vary the degree of the crime according to the criminal intent of the accused. Some US states use other degrees of arson, such as \"fourth\" and \"fifth\" degree,[15] while some states do not categorize arson by any degree. For example, in the state of Tennessee, arson is categorized as \"arson\" and \"aggravated arson\". A U.S. World War II era arson poster In the United States, the common law elements of arson are often varied in different jurisdictions. For example, the element of \"dwelling\" is no longer required in most states, and arson occurs by the burning of any real property without consent or with unlawful intent.[16] Arson is prosecuted with attention to degree of severity[17] in the alleged offense. First degree arson[18] generally occurs when people are harmed or killed in the course of the fire, while second degree arson occurs when significant destruction of property occurs.[19] While usually a felony, arson may also be prosecuted as a"}, {"title": "bm25", "text": "is classified as a homicide in most jurisdictions. These charges can include accidental deaths and those that occur through negligence. More Information on Capital Murder v. First-Degree Murder The easiest way to recall the difference between capital v. first-degree murder is that capital murder results in capital punishment if a person is convicted. For more information on capital v. first-degree murder, we recommend reading our archives on this subject. There, you will learn more first guaranty bank phone number the death penalty, including its history, and discover which states impose capital punishment and which do not. Anyone with further questions on this topic or who may currently be involved in a capital or first-degree murder case should immediately contact a qualified attorney for more specific advice and assistance. \u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a: https://thelawdictionary.org/article/difference-capital-first-degree-murder/ What is 1st 2nd and 3rd degree murders and manslaughter? In most US jurisdictions there is a hierarchy of acts, known collectively as homicide, of which first-degree murder and felony murder are the most serious, followed by second-degree murder and, in a few states, third-degree murder, followed by voluntary manslaughter and involuntary manslaughter which are not as serious \u2026 What is 1st 2nd and 3rd degree murders Minnesota? There are three degrees of murder. They are governed by Minnesota Statutes: 609.185 (first degree murder), 609.19 (second degree murder), and 609.195 (third degree murder). Intentional second degree murder is intentional murder without premeditation. How much time is second degree? Second-degree murder carries a lighter sentence than first-degree murder, but also less than aggravated battery. Second-degree murder bank"}], "hoverinfo": "text"}, {"x": [-0.12630461156368256, -0.1634010672569275, -0.12215162068605423, -0.12215162068605423, -0.12478569895029068, -0.12556761503219604, -0.12338180094957352, -0.12582328915596008, -0.13191863894462585, -0.10905211418867111, -0.14865708351135254, -0.08279749006032944, -0.13510866463184357, -0.09374666213989258, -0.08544149249792099, -0.12263714522123337, -0.06095557287335396, -0.06821510195732117, -0.08756720274686813, -0.11411178857088089, -0.07055014371871948, -0.13865193724632263, -0.15984970331192017, -0.12630467116832733, -0.1550157219171524, -0.12750029563903809, -0.15360385179519653, -0.12338300794363022, -0.09417491406202316, -0.15850353240966797, -0.10458645969629288, -0.07198882848024368, -0.08075885474681854, -0.12478569895029068, -0.10553602129220963, -0.12582328915596008, -0.12582328915596008, -0.17740222811698914, -0.09374666213989258, -0.1250067502260208, -0.12556761503219604, -0.1585036814212799, -0.10611844062805176, -0.1432631015777588, -0.11032697558403015, -0.1376466453075409, -0.14337334036827087, -0.05771755054593086, -0.11034243553876877, -0.10905226320028305, -0.14865708351135254, -0.17848151922225952, -0.1547403186559677, -0.13191863894462585], "y": [0.015054681338369846, 0.019482256844639778, 0.0012922174064442515, 0.0012922172900289297, 0.004945001564919949, 0.005454997532069683, 0.008891799487173557, 0.009638174436986446, -8.462099503958598e-05, 0.0029009145218878984, 0.0025558476336300373, -0.0032373445574194193, -0.009251316078007221, -0.023914631456136703, -0.04157593846321106, -0.03171953186392784, -0.0021752878092229366, 0.001023183693177998, -0.03780803829431534, -0.04231540858745575, -0.020830804482102394, 0.002836113329976797, 0.007454589009284973, 0.01505468599498272, 0.038976721465587616, -0.03461349382996559, -0.007096866611391306, 0.007675470784306526, 0.051611095666885376, 0.004359095823019743, -0.011827073991298676, 0.007437444757670164, -0.00929920095950365, 0.004945001564919949, -0.014435718767344952, 0.009638174436986446, 0.009638174436986446, -0.003566255560144782, -0.023914631456136703, -0.0006059331935830414, 0.005454997532069683, 0.0043590436689555645, -0.02509138733148575, -0.020502615720033646, -0.018122034147381783, -0.0052115838043391705, 0.010346990078687668, -0.0169038325548172, -0.03532299026846886, 0.0029008365236222744, 0.0025558476336300373, 0.013859950006008148, -0.009185636416077614, -8.462099503958598e-05], "mode": "markers", "name": "Cluster 9", "marker": {"size": 8, "color": "rgb(188,128,189)"}, "text": ["Document 3", "Document 13", "Document 18", "Document 19", "Document 20", "Document 22", "Document 24", "Document 46", "Document 89", "Document 106", "Document 131", "Document 223", "Document 235", "Document 282", "Document 303", "Document 316", "Document 339", "Document 354", "Document 369", "Document 486", "Document 493", "Document 505", "Document 511", "Document 527", "Document 542", "Document 551", "Document 553", "Document 556", "Document 590", "Document 595", "Document 614", "Document 671", "Document 688", "Document 758", "Document 777", "Document 804", "Document 805", "Document 812", "Document 816", "Document 818", "Document 821", "Document 1013", "Document 1018", "Document 1047", "Document 1089", "Document 1104", "Document 1123", "Document 1154", "Document 1169", "Document 1207", "Document 1263", "Document 1285", "Document 1328", "Document 1476"], "customdata": [{"title": "rpj-c4", "text": "When you have been involved in an explosion, there are many things that you need to worry about. Being burned can be a hard situation to handle for anyone who may be involved. Determining the difference between a second and third degree burn can be hard because they are both quite intense burns with painful side effects that go along with it. Second degree burns can be a painful process to go through. These types of burns usually are blistered and can look extremely red. Depending on the site of the burn will determine if their will be any type of scarring on the burn site. The larger the second degree burn site is, the more likely it is that someone will go into shock after the burn has happened. If you have a smaller second degree burn, there is a chance that you will not end up with any scarring on the burn site. Third degree burns are the worst of all the burns that could happen to you. You should always remember that when you have a third degree burn, you need to get some type of medical help. When you get a third degree burn, the skin looks very different than having a second degree burn. Your skin will look leathery on the top of the surface. When the third degree burn first happens, you will not feel much of anything. The reason you won\u2019t feel anything in the beginning is because of the trauma to the nerve endings. Once the nerve endings"}, {"title": "rpj-c4", "text": "can have a first-, second-, third-, or fourth-degree burn. The higher the degree, the more severe the burn is. First-degree. These burns only affect the outer layer of your skin. A mild sunburn\u2019s one example. Your skin may be red and painful, but you won\u2019t have any blisters. Long-term damage is rare. Second-degree. If you have this type of burn, the outer layer of your skin as well the dermis \u2013 the layer underneath \u2013 has been damaged. Your skin will be bright red, swollen, and may look shiny and wet. You\u2019ll see blisters, and the burn will hurt to the touch. If you have a superficial second-degree burn, only part of your dermis is damaged. You probably won\u2019t have scarring. A deep partial thickness burn is more severe. It may leave a scar or cause a permanent change in the color of your skin. Third-degree. Sometimes called a \u201cfull thickness burn,\u201d this type of injury destroys two full layers of your skin. Instead of turning red, it may appear black, brown, white or yellow. It won\u2019t hurt because this type of burn damages nerve endings. Fourth-degree. This is the deepest and most severe of burns. They\u2019re potentially life-threatening. These burns destroy all layers of your skin, as well as your bones, muscles, and tendons."}, {"title": "rpj-common-crawl-2020-05", "text": "risk for burns? Men are twice as likely to be burned as women. In part, this is because men more often work with flammable substances like gasoline. Most gasoline-related burns and deaths occur in males under age 45. And most of these accidents occur in the summer months, when people are outdoors doing yard work, farming, or boating, according to the ABA. A. 60- to 65-year-olds B. 18- to 35-year-olds C. 24 months or younger D. All of the above 4. Burns are classified by degrees from first to third. Which of these describes a third-degree burn? A first-degree, or superficial, burn, although painful, causes only minor skin damage, usually heals in 3 to 5 days, and leaves no scar. Skin with a first-degree (superficial) burn is dry with no blisters. Sunburn or a minor scald is an example of a first-degree (superficial) burn. A second-degree, or partial thickness, burn is more painful; it damages but does not destroy the top two layers of skin, and heals in 10 to 21 days, according to the ABA. The skin is moist, wet and weepy, with blisters present. It is swollen and bright pink to cherry red in color. A third-degree, or full thickness, burn, the most severe, destroys all three layers of skin, and can involve fat, muscle, and bone. Skin grafts are required to treat this kind of burn. A person with a third-degree burn cannot feel anything in the burned area because the nerves are destroyed. A. Burned area is larger than 5 inches across"}, {"title": "rpj-common-crawl-2019-30", "text": "risk for burns? Men are twice as likely to be burned as women. In part, this is because men more often work with flammable substances like gasoline. Most gasoline-related burns and deaths occur in males under age 45. And most of these accidents occur in the summer months, when people are outdoors doing yard work, farming, or boating, according to the ABA. A. 60- to 65-year-olds B. 18- to 35-year-olds C. 24 months or younger D. All of the above 4. Burns are classified by degrees from first to third. Which of these describes a third-degree burn? A first-degree, or superficial, burn, although painful, causes only minor skin damage, usually heals in 3 to 5 days, and leaves no scar. Skin with a first-degree (superficial) burn is dry with no blisters. Sunburn or a minor scald is an example of a first-degree (superficial) burn. A second-degree, or partial thickness, burn is more painful; it damages but does not destroy the top two layers of skin, and heals in 10 to 21 days, according to the ABA. The skin is moist, wet and weepy, with blisters present. It is swollen and bright pink to cherry red in color. A third-degree, or full thickness, burn, the most severe, destroys all three layers of skin, and can involve fat, muscle, and bone. Skin grafts are required to treat this kind of burn. A person with a third-degree burn cannot feel anything in the burned area because the nerves are destroyed. A. Burned area is larger than 5 inches across"}, {"title": "rpj-common-crawl-2020-05", "text": "and C 3. Which of these population groups has the highest risk for burns? Men are twice as likely to be burned as women. In part, this is because men more often work with flammable substances like gasoline. Most gasoline-related burns and deaths occur in males under age 45. And most of these accidents occur in the summer months, when people are outdoors doing yard work, farming, or boating, according to the ABA. A. 60- to 65-year-olds B. 18- to 35-year-olds C. 24 months or younger D. All of the above 4. Burns are classified by degrees from first to third. Which of these describes a third-degree burn? A first-degree, or superficial, burn, although painful, causes only minor skin damage, usually heals in 3 to 5 days, and leaves no scar. Skin with a first-degree (superficial) burn is dry with no blisters. Sunburn or a minor scald is an example of a first-degree (superficial) burn. A second-degree, or partial thickness, burn is more painful; it damages but does not destroy the top two layers of skin, and heals in 10 to 21 days, according to the ABA. The skin is moist, wet and weepy, with blisters present. It is swollen and bright pink to cherry red in color. A third-degree, or full thickness, burn, the most severe, destroys all three layers of skin, and can involve fat, muscle, and bone. Skin grafts are required to treat this kind of burn. A person with a third-degree burn cannot feel anything in the burned area because the nerves"}, {"title": "rpj-common-crawl-2021-04", "text": "highest risk for burns? Men are twice as likely to be burned as women. In part, this is because men more often work with flammable substances like gasoline. Most gasoline-related burns and deaths occur in males under age 45. And most of these accidents occur in the summer months, when people are outdoors doing yard work, farming, or boating, according to the ABA. A. 60- to 65-year-olds B. 18- to 35-year-olds C. 24 months or younger D. All of the above 4. Burns are classified by degrees from first to third. Which of these describes a third-degree burn? A first-degree, or superficial, burn, although painful, causes only minor skin damage, usually heals in 3 to 5 days, and leaves no scar. Skin with a first-degree (superficial) burn is dry with no blisters. Sunburn or a minor scald is an example of a first-degree (superficial) burn. A second-degree, or partial thickness, burn is more painful; it damages but does not destroy the top two layers of skin, and heals in 10 to 21 days, according to the ABA. The skin is moist, wet and weepy, with blisters present. It is swollen and bright pink to cherry red in color. A third-degree, or full thickness, burn, the most severe, destroys all three layers of skin, and can involve fat, muscle, and bone. Skin grafts are required to treat this kind of burn. A person with a third-degree burn cannot feel anything in the burned area because the nerves are destroyed. A. Burned area is larger than 5 inches"}, {"title": "rpj-common-crawl-2021-04", "text": "B and C 3. Which of these population groups has the highest risk for burns? Men are twice as likely to be burned as women. In part, this is because men more often work with flammable substances like gasoline. Most gasoline-related burns and deaths occur in males under age 45. And most of these accidents occur in the summer months, when people are outdoors doing yard work, farming, or boating, according to the ABA. A. 60- to 65-year-olds B. 18- to 35-year-olds C. 24 months or younger D. All of the above 4. Burns are classified by degrees from first to third. Which of these describes a third-degree burn? A first-degree, or superficial, burn, although painful, causes only minor skin damage, usually heals in 3 to 5 days, and leaves no scar. Skin with a first-degree (superficial) burn is dry with no blisters. Sunburn or a minor scald is an example of a first-degree (superficial) burn. A second-degree, or partial thickness, burn is more painful; it damages but does not destroy the top two layers of skin, and heals in 10 to 21 days, according to the ABA. The skin is moist, wet and weepy, with blisters present. It is swollen and bright pink to cherry red in color. A third-degree, or full thickness, burn, the most severe, destroys all three layers of skin, and can involve fat, muscle, and bone. Skin grafts are required to treat this kind of burn. A person with a third-degree burn cannot feel anything in the burned area because the"}, {"title": "rpj-common-crawl-2020-05", "text": "Your body is highly vulnerable when the skin is injured or lost. A. Fever B. Bacterial infections C. Severe dehydration D. B and C 3. Which of these population groups has the highest risk for burns? Men are twice as likely to be burned as women. In part, this is because men more often work with flammable substances like gasoline. Most gasoline-related burns and deaths occur in males under age 45. And most of these accidents occur in the summer months, when people are outdoors doing yard work, farming, or boating, according to the ABA. A. 60- to 65-year-olds B. 18- to 35-year-olds C. 24 months or younger D. All of the above 4. Burns are classified by degrees from first to third. Which of these describes a third-degree burn? A first-degree, or superficial, burn, although painful, causes only minor skin damage, usually heals in 3 to 5 days, and leaves no scar. Skin with a first-degree (superficial) burn is dry with no blisters. Sunburn or a minor scald is an example of a first-degree (superficial) burn. A second-degree, or partial thickness, burn is more painful; it damages but does not destroy the top two layers of skin, and heals in 10 to 21 days, according to the ABA. The skin is moist, wet and weepy, with blisters present. It is swollen and bright pink to cherry red in color. A third-degree, or full thickness, burn, the most severe, destroys all three layers of skin, and can involve fat, muscle, and bone. Skin grafts are required"}, {"title": "rpj-book", "text": "oil, tea tree essential oil, citronella essential oil, and rosemary essential oil # Burns **First-degree burns** leave a painful red mark without blisters and often occur from brief contact with a hot object. Mild sunburn is a first-degree burn. Only the first layer of skin is affected. **Second-degree burns** develop blisters and swelling. They are more painful, are deeper, and may appear wet. There may be raw, red blisters. They may be caused by boiling water or contact with a very hot object, such as a woodstove. A severe sunburn could be classified as a second-degree burn. They are more likely to cause scarring than are first-degree burns. **Third-degree burns** may look white and charred. They may be caused by electrical shock or prolonged contact with a hot object. Since skin and nerve endings are often destroyed, the pain may actually be less than with a first- or second-degree burn, but there is a greater likelihood of infection. Third-degree burns are frequently \u00adsurrounded by lesser-degree burns that will probably be painful. # Seek immediate medical attention if: * A large area of skin is burned (more than 10 percent in a child or 15 percent in an adult) * The burned area develops blisters or swelling * The burn has resulted from severe electrical shock * The burned area is on the face * The eyes are burned ## While you wait for medical attention: 1. 1. **If the eyes have been burned by fire,** flush with cold water. 2. 2. **If the eyes have been"}, {"title": "rpj-common-crawl-2019-30", "text": "to hot water or steam, and overexposure to sun (light sunburn) or wind Characteristics of Second-Degree Burns There are several characteristics of second-degree burns. These include: mottled marked with irregular spots or splotches of different colors or shades of color. scalding - the burning of the skin by a substance that is near boiling in Involve deeper layers of skin Cause skin to turn red and/or mottled Appear moist and oozing from the loss of fluid through damaged skin layers Produce blisters and swelling Usually the most painful type of burn because nerve endings are still intact even though tissue damage is severe Burns covering a large area may cause shock due to extensive loss of fluid from the burned skin Smaller second-degree burns that are properly treated should heal within two weeks with little or no scarring Caused by a deep sunburn, prolonged contact with hot objects, scalding, and flash burns from flammable liquids suddenly bursting into flame Characteristics of Third-Degree Burns There are specific characteristics of third-degree burns. These include: Deepest and most severe type of burn May look white or charred (may appear to be a second-degree burn at first) Result in deep tissue destruction, reaching all layers of the skin and sometimes structures below the skin Often cause little or no pain since nerve endings are destroyed Often cause shock When healed, will be covered by scar tissue Caused by immersion in extremely hot water, prolonged contact with flames, and electric shock Treatment of Heat Burns Treat heat burns based on their"}, {"title": "rpj-c4", "text": "result in redness of the affected area and minor pain. Second-Degree Burns: Second-degree burns are moderate burns that affect both the upper layer of skin (epidermis) and the lower layer of skin (dermis). Second-degree burns usually result in pain, redness, and blistering. Third-Degree Burns: The most severe type of burns, third-degree burns affect the upper and lower layers of skin, as well as the muscles, tissues, and sometimes bones beneath the skin. These burns often result in whitened or blackened skin and very high levels of pain. Regardless of the type, all burns can result in other related injuries. Often, burns cause extreme pain, blisters, swelling, and/or damaged or peeling skin. In certain cases, an individual may experience shock, which can lead to dangerously low blood pressure. Burns can also be permanent and cause scarring, disfigurement and physical impairment that lasts a lifetime. When Are Burns Caused by Negligence? Burns are a fairly common result of many different types of accidents. When these accidents are caused by negligence, the victim may be entitled to compensation for his or her burn injuries. A distracted driver hits a motorcyclist, causing the motorcyclist to hit the ground where he suffers road rash and burn injuries. An explosion at a construction site or oilfield causes a fire that leaves several workers with extensive burns. A defective electronic device sparks when it is plugged into an outlet, causing the user to burn her hand. Unsafe electrical wiring at a hotel causes a fire the results in multiple people suffering severe burn"}, {"title": "rpj-c4", "text": "larger than 2 or 3 inches in diameter. Exposing broken skin to the chemicals in pool water or the high salt content of ocean water is a recipe for irritation and possible infection. Swimming after a second degree burn leads to possible complications with the burn, as the chemicals can penetrate the layer of broken skin and cause issues with healing. Avoid swimming until the burn fully heals and no unbroken skin remains anywhere on the body. Since many people contract second degree burns through extended exposure to the sun, prevent them easily through regular sunblock application and skin care. Always use a full spectrum sunblock of at least SPF 30 strength when spending time in direct sunlight, and reapply regularly throughout the day. For other causes of second degree burns, always use caution and proper protection when dealing with fire and other hot elements in your environment."}, {"title": "rpj-common-crawl-2023-06", "text": "they look. This article will also explain how to care for them. Scalding This photo contains content that some people may find graphic or disturbing. See Photo Nordyke This second-degree burn was caused by scalding with hot water. The woman involved was carrying a pot of boiling water and lost her grip on one handle. The water spilled on her left hand. Scalds are burns from hot liquids. They almost never cause full-thickness (third-degree) burns, but they do blister quickly. According to the Centers for Disease Control and Prevention (CDC), over 350,000 Americans are treated for burns in emergency rooms each year. Over 40,000 are hospitalized. Open Flame Burn An unloaded potato gun gave this person a second-degree burn. A potato gun uses hairspray as the explosive agent to shoot a potato into the air. In this case, the flaming hairspray damaged the skin. Symptoms of a second-degree burn include pain, deep redness, blistering, and areas of exposed tissue that are moist and shiny. Chemical Heat Pack Burn Nise A reusable chemical heat pack burned this person's neck. The person microwaved the pack for 60 seconds, even though the instructions said to heat it for 30 seconds. There are no blisters here. Blisters show that the epidermis is damaged but not destroyed. In this case, the destruction of the outer layer caused areas of whiteness and discoloration common with many second-degree burns. Chemical Heat Pack Burn (Five Weeks Later) After a burn from a chemical heat pack, this person was treated with topical anesthetics to numb"}, {"title": "rpj-common-crawl-2023-06", "text": "Advil (ibuprofen) Elevation to prevent inflammation and lessen pain When to Get Medical Help Get medical attention for a second-degree burn if: The burn is blistered You have severe pain You develop a fever or other signs of infection The burn doesn't improve in two weeks Fluid is leaking from the burned area Swelling or redness increase The burn is more than 2-3 inches wide The burn is on the hands, feet, face, genitals, buttocks, or over a major joint Second-degree burns damage the top layer of skin (epidermis) and sometimes also involve the dermis. Fire, chemical heat packs, and hot liquids can cause burns like these. So can friction and sunburn. If you've had a second-degree burn, you can expect to have pain, redness, blistering, and sloughing of the top layers of skin as you heal. You may have some scarring and your skin may be a different color after the burn heals. You may be able to treat a second-degree burn with cool water, antibiotic creams, pain relievers, and clean bandages. If your burn is more severe, you should seek medical care right away. What is the fluid in a burn blister? The fluid inside a burn blister is ultrafiltration of plasma. It is rich in immunoglobulins, cytokines, prostaglandins, and interleukins. This may help the burn to heal faster. How often do you change the dressing for a second-degree burn? Change the dressing within 48 hours after the wound is first bandaged. If it's healing well after that, change the dressing every three to"}, {"title": "rpj-common-crawl-2021-04", "text": "creams. Superficial second-degree: if there are no complications they can be left to heal by themselves with the application of topical treatment. Deep second-degree and third-degree: require skin grafts as they need at least three weeks to heal by themselves. There may also be functional and aesthetic complications. Extensive burns: require specific life support in a Burns Unit. Most burns are avoidable and therefore the main tools for prevention are education and legislation in society. Hospital o serveis complementaris relacionats Children's Hospital and Woman's Hospital Where to find it Educaci\u00f3 sanit\u00e0ria relacionades Health tips to avoid burns and their sequelae What to do if you burn yourself Dr. Juan Pedro Barret Ner\u00edn Plastic Surgery and Burns Vall d'Hebron University Hospital Dr. Marcelino Baguena Mart\u00ednez Traumatology Intensive Care Dra. Judith Sanchez Raya Sr. Alex Gin\u00e9s Puertas Person in charge/Coordinator Serracanta Domenech Lead Researcher Vall d'Hebron Research Institute Sr. Albert Cort\u00e9s Borra Sr. Carlos Moreno Ramos Sra. Laura Yague Velasco Sr. Victor Quintanilla Janillo Dra. Yolanda Pe\u00f1a-L\u00f3pez Hospital Maternoinfantil Vall d'Hebron Institut de Recerca - Edifici Mediterr\u00e0nia Dra. Mar\u00eda Sonsoles Cepeda Diez Psychiatrics Dra. Alba G\u00f3mez Garrido Dra. Maria Pilar Lusilla Palacios Search more professionals"}, {"title": "rpj-common-crawl-2023-06", "text": "According to Healthline, a first- or second-degree burn can take up to two to three weeks to fully heal. As it heals, you should periodically apply an antibacterial ointment and change the bandage covering the burn. Keep the area covered in the sun. Don\u2019t use ice or oil products on the burn, as these could make it worse. A burn may heal quicker if you take immediate action to treat it, including: Immediately running the burned area under cool water for 20 minutes. Don\u2019t delay as the area will continue to burn until cooled off. Rinsing the area with mild soap and applying a cold compress to the area. Don\u2019t apply ice directly to the skin. Applying an antibacterial ointment like Neosporin or Bacitracin, and covering the burn with a bandage or gauze. Taking anti-inflammatory pain relievers like Tylenol to reduce discomfort. If the burn is oozing or doesn\u2019t seem to be healing, consult a medical professional. Do Wax Burns Go Away? First-degree burns from waxing usually go away on their own without scarring, according to Healthline. Second- and third-degree burns are more likely to leave scars, though, due to the amount of heat and how long it was in contact with your skin. Second-degree burns may leave scars that eventually fade, but third-degree burns will almost certainly leave scars, some severe enough to require skin grafts. Burn Lawsuit Settlements Injuries from burns can be incredibly painful and have long-lasting physical and psychological effects. If you\u2019ve suffered due to someone else\u2019s negligence, you may be entitled"}, {"title": "rpj-c4", "text": "something similar to sunburn where the skin reddens and is tender, but there is no severely wounded tissue. Second-degree burns affect the entire epidermis, leading to blisters and reddening of the skin which varies in intensity depending on the extent of damage. Healing takes time but usually occurs with minimal scarring after two weeks. A third-degree burn destroys the entire epidermal layer. Pain receptors are often destroyed\u2014 which is why many victims initially feel no pain\u2014along with blood vessels and skin glands. As the burn penetrates, most victims face acute loss of fluid and their metabolic rates are affected. The body is unable to repair the damage itself, requiring skin grafts and surgery. In rare cases, bone and muscle are damaged, which, in some cases, is inoperable. This burn is also called full thickness: the skin is damaged to an extent that it becomes thick and leathery. According to news reports, the government is in the process of repealing Section 309. Early last month, the Home Ministry circulated a note to all states on effacing the section, and is currently waiting for their responses. In October 1984, M. G. Ramachandran\u2014the man the people of Tamil Nadu called their son, father, and brother all in one\u2014fell ill. His kidney failed on October 6, followed by a mild heart attack and then a stroke on October 16. He was flown to Brooklyn, New York, for treatment. MGR would return to India in February the following year, after going through a kidney transplant in December, but public sentiment was"}, {"title": "rpj-common-crawl-2019-30", "text": "the hot stainless steel skillet and I sustained a first degree burn. I took the cantharis I keep handy in the kitchen and suffered no burning sensation. As for the claim I didn\u2019t have a third degree burn in the incident reported earlier, I\u2019ll say this\u2026What is beyond a second degree burn; the blistering one? To my knowledge and experience, it\u2019s your skin is turned into crusty dark matter, dark brown or black. That\u2019s what I had. You don\u2019t like it? Tough noogies\u2026.. The hot shower had not relieved my acute symptoms of gout. As for research-based evidence, as I stated earlier, you can do what you wish with my honest report. Including using it as a\u2014wipe. It\u2019s not MY problem. However, I find it interesting that so many allegedly \u2018intelligent\u2019 people don\u2019t have the brains to run simple tests for themselves. And instead, hide behind what their latter-day \u2018priests\u2019 tell them is \u2018true\u2019. Seriously\u2026. \u2026.we\u2019re talking CLASSIC \u2018True Believers\u2019 here. And, having been one myself, i.e., pre-med microbiology undergrad work, I can understand their disbelief. What I DON\u2019T care for is their pride in being \u2018ignorant\u2019. As if a simple $7 purchase against a simple accident that happens frequently in the home is REALLY quite an interesting \u2018indicator\u2019 of their mind-set. [Stupid, adj, Ignorant and proud of it.] There is a reasonable explanation of the different severity of burns on wiki: http://en.wikipedia.org/wiki/Burn. Sounds like you had a superficial burn to me. As for the tests, these are typical of the ones a lay-person would propose."}, {"title": "rpj-common-crawl-2023-06", "text": "five days. However, if the burn area is painful or there's an odor, change the bandages right away. How long does it take a second-degree sunburn to heal? A second-degree sunburn should be fully healed within one to three weeks if it's treated properly and infection doesn\u2019t develop. Your skin may still be discolored and scars may be permanent, but the discomfort should be fully resolved. National Institutes of Health, U.S. National Library of Medicine: MedlinePlus. Burns. Vloemans AF, Hermans MH, van der Wal MB, Liebregts J, Middelkoop E. Optimal treatment of partial thickness burns in children: a systematic review. Burns. 2014;40(2):177-90. doi:10.1016/j.burns.2013.09.016 Centers for Disease Control and Prevention. National Hospital Ambulatory Medical Care survey: 2015 emergency department summary tables. Bittner EA, Shank E, Woodson L, Martyn JA. Acute and perioperative care of the burn-injured patient. Anesthesiology. 2015;122(2):448-464. doi:10.1097/ALN.0000000000000559 University of California San Diego School of Medicine: UC San Diego Health. About burns. Grosu-Bularda A, Andrei MC, Mladin AD, et al. Periorbital lesions in severely burned patients. Rom J Ophthalmol. 2019;63(1):38-55. Bachier M, Hammond SE, Williams R, Jancelewicz T, Feliz A. Pediatric scalds: Do cooking-related burns have a higher injury burden? J Surg Res. 2015;199(1):230-236. doi:10.1016/j.jss.2015.05.016 Norman G, Christie J, Liu Z, et al. Antiseptics for burns. Cochrane Database Syst Rev. 2017;7(7):CD011821. doi:10.1002/14651858.CD011821.pub2 S\u00e1nchez-P\u00e9rez JF, Vicente-Agullo D, Barber\u00e1 M, Castro-Rodr\u00edguez E, C\u00e1novas M. Relationship between ultraviolet index (UVI) and first-, second- and third-degree sunburn using the Probit methodology. Sci Rep. 2019;9(1):733. doi:10.1038/s41598-018-36850-x University of Michigan Medical School: Michigan Medicine. Home treatment for second-degree burns. Cleveland Clinic."}, {"title": "rpj-c4", "text": "single day. Outside of work, Dr. Senchenkov enjoys spending time reading and going for an occasional swim. These burns only include the outer layer for skin (the dermis), and are marked by red, pink or dark pink skin. The burns are usually painful, but there are no blisters and will heal in a week or so. These burns progress deeper into the dermis and may include large blisters and may have a wet appearance. These burns will take 14-21 days to heal. These burns may have a charred appearance, be leathery or white in color and feel dry to the touch. Often, the burned areas will lose sensation and include the entire depth of skin. Healing will likely require skin grafts and rarely more intensive methods. These burns progress down to muscles, tendons and bones. Often, skin grafts, intensive surgeries and even amputations may be required for healing. What Should You Do Right After a Burn? Remove ALL clothing and jewelry. Run cool water over the burn for several minutes. Do not place any home remedies including butter, ointments or ice on burned areas. Do not use cotton balls or wool to clean a burn. Do not burst any blisters. Cover the burn with a clean bandage or clean cloth. For pain, take ibuprofen or acetaminophen. Both almost always require skin grafting and/or some type of surgery. In many cases, fourth degree burns will also require some level of amputation to ensure the best possible outcome. These burns usually take at least four to six weeks"}, {"title": "rpj-c4", "text": "ultraviolet rays; UVA, UVB and UVC rays which emitted continuously during the day. Among those three types of ultraviolet rays, only the first two which potentially harmful to our skin. UVA and UVB rays not only damage the first layer (epidermis) of the skin, but they have the ability to penetrate into the deepest skin layers. Once your skin is exposed to sunlight for a long time, sunburn may arise due to leaving the protection of the skin. The sun burns skin area literally that leads to redness and burning. When you have a sunburn, you need to identify the level of the burning of your skin. First degree burns characterized by very red skin once your skin is exposed to excessive sunlight. When your skin leaving the blisters caused by sun exposure, you are likely to have second degree burns. Sunburn Blisters are fluid-filled bumps that cause pain and discomfort, in certain cases, it may cause itching that leads to infection, fever, and swelling. No matter you are suffering either the first and second level burns, or even leaving with no trace at all once overexposure to sunlight, you need to perform the appropriate treatments to prevent and treat the sunburns. Because over the time you may develop different diseases that could potentially damage the skin permanently if you are leaving the protection of the skin against the sun. Visiting the dermatologist or taking a cold shower are efficient and easy ways to get rid of sunburn on the face and body quickly and safely."}, {"title": "rpj-c4", "text": "Healing a second degree burn remains no trivial matter. Characterized by broken skin and deeper damage to the epidermis, second degree burns prove more serious than first degree burns. Many people get second degree burns from extended exposure to dangerous UV rays from the sun, causing a deeply uncomfortable and painful sunburn. Limit activities that irritate your skin following a second degree burn, including exposing your skin to chlorine or ocean water through swimming. Three degrees of burns correspond to the layers of skin each type affects. First degree, or surface burns, remain the least harmful type of burn and surface simply through exposure to the sun or touching a hot stove. You'll find recovery quick and more uncomfortable than painful. Doctors characterize more serious second degree burns by blistering and broken skin. With a second degree burn, the first layer of skin bubbles and blisters as well as turning red. A third degree burn, the most serious burn, affects all layers of skin as well as possibly organs, muscles, tendons and ligaments. Third degree burns can even cause permanent nerve and tissue damage. Healing a second degree burn takes patience and caution. Wash the affected area with warm water immediately after the skin has been burned. Cover the burn with a sterile gauze, remaining particularly careful not to pop any blisters. Don't apply topical burn creams or ice to a second degree burn as this impedes the healing process and, in the case of ice, even causes frostbite. Seek medical attention if the burn is"}, {"title": "rpj-c4", "text": "Recognize a first-degree burn. Burns can happen pretty easily. You can get burned by heat, fire, the sun, electricity, boiling liquids like water, sauces and other foods, and chemicals. A first-degree burn is the least severe, affecting the topmost layers of your skin. A first-degree burn will be red and painful. It turns white when you put pressure on it. This type of burn usually heals within 3-6 days. The skin may peel during healing. There is usually little to no scarring. Recognize a second-degree burn. A second-degree burn is more severe than a first-degree burn. It affects deeper layers of the skin. It will be red or splotchy, swollen and very painful. There may be blisters. This type of burn usually heals within 2-3 weeks. You may have some scarring. If your burn is any larger than about 1 inch (2.5 centimeters), see your doctor immediately. Know what a third-degree burn is like. Third-degree burns are the deepest and most serious burns. They damage all the layers of the skin. The skin may be whitish (charred) or black. Third-degree burns require immediate medical attention. Do not attempt to treat this type of burn on your own. Third-degree burns are not usually painful because the nerves have been damaged. These burns may take months to heal and may scar during healing. Run cold water over the burn. Immediately after getting burned, use cold, running water to cool the area to a comfortable level. Do this for at least 5 minutes. Second-degree burns should be cooled for"}, {"title": "rpj-c4", "text": "When you have been involved in an explosion, there are many things that you need to worry about. Being burned can be a hard situation to handle for anyone who may be involved. Determining the difference between a second and third degree burn can be hard because they are both quite intense burns with painful side effects that go along with it. Second degree burns can be a painful process to go through. These types of burns usually are blistered and can look extremely red. Depending on the site of the burn will determine if their will be any type of scarring on the burn site. The larger the second degree burn site is, the more likely it is that someone will go into shock after the burn has happened. If you have a smaller second degree burn, there is a chance that you will not end up with any scarring on the burn site. Third degree burns are the worst of all the burns that could happen to you. You should always remember that when you have a third degree burn, you need to get some type of medical help. When you get a third degree burn, the skin looks very different than having a second degree burn. Your skin will look leathery on the top of the surface. When the third degree burn first happens, you will not feel much of anything. The reason you won\u2019t feel anything in the beginning is because of the trauma to the nerve endings. Once the nerve endings"}, {"title": "rpj-c4", "text": "The treatment of burns depends on the depth, area and location of the burn. Burn depth is generally categorized as first, second or third degree. A first degree burn is superficial and has similar characteristics to a typical sun burn. The skin is red in color and sensation is intact. In fact, it is usually somewhat painful. Second degree burns look similar to the first degree burns; however, the damage is now severe enough to cause blistering of the skin and the pain is usually somewhat more intense. In third degree burns the damage has progressed to the point of skin death. The skin is white and without sensation. What type of burn did you experience? What kind of treatment did you receive for your burn? What part or how much of your body was affected? Have you or someone you know suffered an electrical shock and/or burns? Please describe your experience. Did you suffer a chemical burn? Please describe what happened. Do you know what to do with a cut, scrape, burn or wound? These quick home-care first aid tips from our experts will prepare you for various accidents--and let you know when to seek a doctor's help."}, {"title": "rpj-common-crawl-2023-06", "text": "Second-degree Facial Burns Second-degree burns on the face are serious. These burns, also called partial thickness burns, damage both the outermost layer of skin (the epidermis) and the deeper layers of skin (the dermis). Second-degree burns usually appear red and painful and often have blisters. If the blisters have ruptured, the skin may look wet and shiny. There [...] By BVR Team|2017-04-06T17:42:21+00:00April 6th, 2017|Comments Off on Second-degree Facial Burns For most, the second-degree burn will heal in a few weeks without any lasting visible reminders of the burn. But some people might experience skin discoloration in the affected area. Some second-degree burns leave scars. Why might second-degree burns leave scars or discoloration? Second-degree burns bring a risk of discoloration and scars because they damage [...] By BVR Team|2017-03-02T23:05:13+00:00March 2nd, 2017|Comments Off on How do second-degree burns heal? Do burns cause swelling? Yes, burns may swell. Swelling, also called edema, happens when fluids collect in an area of the body in response to injury, such as a burn. This can happen at the wound itself or in the tissue around the burn. First- and second-degree burns often have swelling. First-degree burns may bring a little swelling, along [...] By BVR Team|2017-01-26T21:36:41+00:00January 26th, 2017|Comments Off on Do burns cause swelling? Common Causes of Second-Degree Burns Any burn source can cause second-degree burns: Sunburn Flames Contact with hot objects Scalds Chemicals Electricity The appearance of second-degree burns is similar to first-degree burns in some cases, but second-degree burns may blister and have more serious complications. They may even scar."}, {"title": "rpj-common-crawl-2023-06", "text": "of a few hours. After rinsing and treating your burn, monitor your burn to make sure that it does not develop into a second-degree burn. If it does, consider seeking medical treatment.[20] X Research source Go to source Treating a Second-Degree Burn Recognize second-degree burns. Second-degree burns are more severe than first-degree burns because they extend past the epidermis and into the lower layer of skin (the dermis).[21] X Trustworthy Source University of Rochester Medical Center Leading academic medical center in the U.S. focused on clinical care and research Go to source This doesn't necessarily mean they need medical care. The burns will be a dark red and will produce blisters on the skin. They are more swollen and splotchy than first-degree, with more reddened skin, which may look wet or shiny. The burned area itself may look white or discolored.[22] X Trustworthy Source University of Rochester Medical Center Leading academic medical center in the U.S. focused on clinical care and research Go to source If the burn is larger than 3 inches (7.6 cm), treat as third-degree and seek medical attention immediately.[23] X Trustworthy Source Mayo Clinic Educational website from one of the world's leading hospitals Go to source Common causes of second-degree burns including scalding, flame, contact with a very hot object, bad sunburn, chemical burns, and electrical burns.[24] X Trustworthy Source University of Rochester Medical Center Leading academic medical center in the U.S. focused on clinical care and research Go to source Rinse the burn. Treatment for second-degree burns is almost the same"}, {"title": "rpj-common-crawl-2022-05", "text": "child may experience symptoms differently. Symptoms may include: blisters. deep redness. burned area may appear wet and shiny. skin that is painful to the touch. burn may be white or discolored in an irregular pattern. What is the treatment for a second degree burn? As with first-degree burns, avoid cotton balls and questionable home remedies. Treatments for a mild second-degree burn generally include: running the skin under cool water for 15 minutes or longer. taking over-the-counter pain medication (acetaminophen or ibuprofen) applying antibiotic cream to blisters. What are the characteristics of a second degree burn? Second degree burns are severe than the first degree burns . They exhibit the characteristics like skin with swelling and blister formation. A third degree burn is the worst among them. These burns cause no or little pain due to the damage caused in the nerves. They destroy all layers of the skin. Previous: Can someone with Down syndrome pass it on? Next: Can brooms cause allergies?"}, {"title": "rpj-c4", "text": "What is first degree burns? First degree burns are those in which only the outer layer of skin is burned, but not all the way through. The skin is usually red and sometimes can swell or be painful. It is the least serious type of burn to have. Data from patients with first degree burns, who reported starting treatments within the last 5 years. Who has first degree burns on PatientsLikeMe? Let\u2019s build this page together! When you share what it\u2019s like to have first degree burns through your profile, those stories and data appear here too. Got a question about living with first degree burns? Members in the forum might have the answers."}, {"title": "rpj-c4", "text": "Burns are in the list of common injuries at home. Children are prone to burns. Depending on degree and cause of burns, we have different treatments. Minor burns in which damage is on the top skin layers can be recovered naturally without severe health consequences. However, the immediate emergency medical care is necessary if you have more serious burns. If not treated with medical care, serious burns may leave complications and even skin cell death. Burns have three primary types, including first, second and third-degree. Each degree of burns is based on the cause and the severity of skin damage. Second-degree burns: The damage is beyond the top of skin layers. Some blisters appear on the affected skin that is extremely sore and red. Compared with first-degree burns, the second-degree burns take longer to heal. The recovery time may be up to more than three weeks. It may leave pigment changes on the affected skin areas. Treatments for second-degree burns are antibiotic cream and over the counter pain medication such as ibuprofen or acetaminophen. Third-degree burns: the type of burns is more severe than other above types of burns. The damage extends through every skin layer. Some people believed that the third-degree burns are the most painful. However, you may feel no pain if it is nerve damage. Never use questionable home remedies, cream or medication at home when you suffer from third-degree burns. Call a doctor immediately. Medical treatment and even surgery are required in case of the third-degree burns. Patients with third-degree burns should"}, {"title": "rpj-common-crawl-2023-06", "text": "may also experience: Rapid dehydration Higher likelihood of infection In rare cases, people with sunburn can go into shock. How to Treat a Sunburn Second-degree sunburns take longer to heal. They increase the lifetime risk of developing skin cancer, including melanoma. Friction Burn Dawn H. A friction burn is a type of abrasion or scrape. It causes the loss of the epidermis and damages the dermis below. Friction burns don't involve heat, but they are still considered second-degree burns. They're treated in the same way as a thermal (heat) burn. The most common types of friction burn are road rash and rug burns. Topical antibiotic ointments and twice-daily dressing changes can usually prevent infection. Oral antibiotics may be prescribed for more severe cases. How to Treat a 2nd-Degree Burn The first thing you should do for a second-degree burn is cool the skin to keep the burn from getting worse. You can do this by: Running cool water over it Putting the burned area in a container of cool water Applying a cool compress Continue cooling the skin until it no longer hurts when you remove the source of the cold. It may take as long as 30 minutes. No Ice! Don't use ice or ice water to cool your skin after a burn. Temperatures that are too low can further damage the tissues. Treatments for a second-degree burn may include: Antibiotic cream, over-the-counter or prescription Bandaging with gauze or something else that won't stick to the burn Over-the-counter pain medication such as Tylenol (acetaminophen) or"}, {"title": "rpj-c4", "text": "of second degree burns\u2014I hope you have that notebook of random story research facts out all of you NaNo procrastinators who are reading this instead of frantically writing words\u2014is late in coming. The instant effect is shock and a feeling of near separation of your mind to your body. After a few minutes a stinging and tearing pain (Also known as a burning pain) comes in. It causeses your muscles to seize up and rates high on the pain scale (on someone with high pain tolerance about a 7-8.) Appearance-wise, it is little more than red skin. Red angry skin. Depending on the area and the severity, it could release a pus, or bleed. The heat also does not tend to vanish straight away as some people believe, but can last for days. The particular case that involved my brother was a burn caused by oil which meant it clung to his skin in a way that I would imagine magical flames would. After a few weeks, a second degree burn will go down to a less noticeable pink scarring that mostly would be permanent. Burns can do damage to tissue and any weak tissues or thin muscles could be destroyed completely. But yes, that is some of what I learnt and spent time procrastinating on. Person: What are you doing? I completely cracked up when that was how it was described, \u2018writing with pictures\u2019 But it really is like that. You get to form more about your characters through a pretty collage, and they are"}, {"title": "rpj-c4", "text": "Second degree sunburns can last anywhere from 10 to 21 days. The exact length of time varies depending on the person and the medical treatment used. Burns are classified according to how deep the burn goes through the tissue layers. Second degree burns affect the entire epidermis and upper layers of the dermis. Since more damage is caused with second degree burns than those of first degree burns, the healing time is quite longer. Some second degree sunburns require grafting and other forms of medical treatment in order to heal properly and minimize scarring. According to the University of New Mexico Hospital, a doctor should be consulted concerning a second degree burn of any kind. Discover how to get rid of a sunburn immediately with these amazing treatments."}, {"title": "rpj-common-crawl-2020-05", "text": "and C 3. Which of these population groups has the highest risk for burns? Men are twice as likely to be burned as women. In part, this is because men more often work with flammable substances like gasoline. Most gasoline-related burns and deaths occur in males under age 45. And most of these accidents occur in the summer months, when people are outdoors doing yard work, farming, or boating, according to the ABA. A. 60- to 65-year-olds B. 18- to 35-year-olds C. 24 months or younger D. All of the above 4. Burns are classified by degrees from first to third. Which of these describes a third-degree burn? A first-degree, or superficial, burn, although painful, causes only minor skin damage, usually heals in 3 to 5 days, and leaves no scar. Skin with a first-degree (superficial) burn is dry with no blisters. Sunburn or a minor scald is an example of a first-degree (superficial) burn. A second-degree, or partial thickness, burn is more painful; it damages but does not destroy the top two layers of skin, and heals in 10 to 21 days, according to the ABA. The skin is moist, wet and weepy, with blisters present. It is swollen and bright pink to cherry red in color. A third-degree, or full thickness, burn, the most severe, destroys all three layers of skin, and can involve fat, muscle, and bone. Skin grafts are required to treat this kind of burn. A person with a third-degree burn cannot feel anything in the burned area because the nerves"}, {"title": "rpj-common-crawl-2020-05", "text": "spiked once temperatures topped 105 degrees. That's because pavement is heat-absorbing, so a 110-degree day can result in 150-degree pavement. And with 158 degrees hot enough to fry eggs, the study's message is clear: Pavement burns are not your run-of-the-mill summer burn. \"A first-degree burn, commonly called a sunburn, just injures the top layer of skin, or epithelium,\" Chestovich said. Though painful, such minor burns can be treated with over-the-counter pain medications. By contrast, a second-degree burn blisters into the skin's deeper base. These can require topical antibiotics and even surgery to remove dead tissue or a graft to cover damaged skin with healthy tissue. \"A third-degree burn damages the skin in its entirety,\" Chestovich said. Such burns can require multiple surgeries and leave lasting scars. Fourth-degree pavement burns -- which hit muscle, deep tissue and bone -- are rare but not unheard of. \"We have seen hot pavement cause fourth-degree burns in cases when there was extended contact, usually a person lying unconscious on pavement for an extended period of time,\" Chestovich said. It appears that pavement burns may be becoming more common. The Lions Burn Care Center has seen an increase in recent years, but it's not clear why. It could be due to gradually rising temperatures, but also might simply owe to a population increase, Chestovich said. If you suffer a pavement burn, Chestovich cautioned against self-treating with cold water or ice, which could make matters worse. He suggested wrapping the affected skin in a clean dressing, and immediately seeking care at a"}, {"title": "rpj-common-crawl-2020-05", "text": "Your body is highly vulnerable when the skin is injured or lost. A. Fever B. Bacterial infections C. Severe dehydration D. B and C 3. Which of these population groups has the highest risk for burns? Men are twice as likely to be burned as women. In part, this is because men more often work with flammable substances like gasoline. Most gasoline-related burns and deaths occur in males under age 45. And most of these accidents occur in the summer months, when people are outdoors doing yard work, farming, or boating, according to the ABA. A. 60- to 65-year-olds B. 18- to 35-year-olds C. 24 months or younger D. All of the above 4. Burns are classified by degrees from first to third. Which of these describes a third-degree burn? A first-degree, or superficial, burn, although painful, causes only minor skin damage, usually heals in 3 to 5 days, and leaves no scar. Skin with a first-degree (superficial) burn is dry with no blisters. Sunburn or a minor scald is an example of a first-degree (superficial) burn. A second-degree, or partial thickness, burn is more painful; it damages but does not destroy the top two layers of skin, and heals in 10 to 21 days, according to the ABA. The skin is moist, wet and weepy, with blisters present. It is swollen and bright pink to cherry red in color. A third-degree, or full thickness, burn, the most severe, destroys all three layers of skin, and can involve fat, muscle, and bone. Skin grafts are required"}, {"title": "rpj-common-crawl-2020-05", "text": "Your body is highly vulnerable when the skin is injured or lost. A. Fever B. Bacterial infections C. Severe dehydration D. B and C 3. Which of these population groups has the highest risk for burns? Men are twice as likely to be burned as women. In part, this is because men more often work with flammable substances like gasoline. Most gasoline-related burns and deaths occur in males under age 45. And most of these accidents occur in the summer months, when people are outdoors doing yard work, farming, or boating, according to the ABA. A. 60- to 65-year-olds B. 18- to 35-year-olds C. 24 months or younger D. All of the above 4. Burns are classified by degrees from first to third. Which of these describes a third-degree burn? A first-degree, or superficial, burn, although painful, causes only minor skin damage, usually heals in 3 to 5 days, and leaves no scar. Skin with a first-degree (superficial) burn is dry with no blisters. Sunburn or a minor scald is an example of a first-degree (superficial) burn. A second-degree, or partial thickness, burn is more painful; it damages but does not destroy the top two layers of skin, and heals in 10 to 21 days, according to the ABA. The skin is moist, wet and weepy, with blisters present. It is swollen and bright pink to cherry red in color. A third-degree, or full thickness, burn, the most severe, destroys all three layers of skin, and can involve fat, muscle, and bone. Skin grafts are required"}, {"title": "rpj-c4", "text": "Burns are among the most common household injuries in the United States. Every year, almost 500,000 people seek medical attention for burns with about 10 percent of them ending up in hospital. While some burns are so severe that they require hospitalization, many can be safely treated at home. These include first-degree burns, which only affect the external layer of the skin and cause minor redness and pain, as well as blister-causing second-degree burns up to three inches in diameter. There are many home remedies for burns, but not all of them are as safe as they\u2019re made out to be. In this article, you\u2019ll find tips on how to treat a burn safely in your own home. You will also learn which burn remedies you should steer clear from. What Types of Burns Can You Treat at Home? First-degree burns are superficial and affect only the top layer of the skin. The burn site will typically be red and painful, with some minor swelling and peeling as the burn starts to heal. Second-degree burns are deeper and affect the first two layers of the skin. In addition to redness, swelling, and pain, they also cause blisters that ooze clear or yellow-colored fluid. Third-degree burns affect not just the first two layers of the skin but also the tissue underneath. The burn site appears charred and isn\u2019t usually painful because the burn has destroyed the nerve endings. However, the pain in the surrounding areas can be very severe. In some cases, third-degree burns can be so"}, {"title": "rpj-common-crawl-2023-06", "text": "Advil (ibuprofen) Elevation to prevent inflammation and lessen pain When to Get Medical Help Get medical attention for a second-degree burn if: The burn is blistered You have severe pain You develop a fever or other signs of infection The burn doesn't improve in two weeks Fluid is leaking from the burned area Swelling or redness increase The burn is more than 2-3 inches wide The burn is on the hands, feet, face, genitals, buttocks, or over a major joint Second-degree burns damage the top layer of skin (epidermis) and sometimes also involve the dermis. Fire, chemical heat packs, and hot liquids can cause burns like these. So can friction and sunburn. If you've had a second-degree burn, you can expect to have pain, redness, blistering, and sloughing of the top layers of skin as you heal. You may have some scarring and your skin may be a different color after the burn heals. You may be able to treat a second-degree burn with cool water, antibiotic creams, pain relievers, and clean bandages. If your burn is more severe, you should seek medical care right away. What is the fluid in a burn blister? The fluid inside a burn blister is ultrafiltration of plasma. It is rich in immunoglobulins, cytokines, prostaglandins, and interleukins. This may help the burn to heal faster. How often do you change the dressing for a second-degree burn? Change the dressing within 48 hours after the wound is first bandaged. If it's healing well after that, change the dressing every three to"}, {"title": "rpj-c4", "text": "First-degree burns, such as sunburns are minor and heal quickly. First-degree burns result in reddened skin. Second-degree burns are serious injuries that require medical attention. Symptoms of second-degree burns include blistered, peeling skin. Third-degree burns are severe and require immediate, professional medical attention. You will likely notice dry/charred, white, yellow or bright red tissue. Although the severely burned area may not be blistered, it often is surrounded by blistered areas. A burn wound is constantly changing, which sometimes makes it dif\ufb01cult to determine the depth of the injury in the \ufb01rst 2-5 days. Burns are painful. Our goal is for your child to be as comfortable as possible. Let the burn team know if your child\u2019s pain is not well controlled. Run cool water over the burn. Do not use ice directly on the burn wound. Take Ibuprofen or Acetaminophen for pain. A high protein diet is important for wound healing. Encourage foods such as milk, meat, eggs, yogurt, cheese, beans and peanut butter. Limit water, juices and junk food. If the burn wounds heal within 14-21 days, the chance of scarring is minimal to none. Once the skin is healed, you may begin to apply a non-perfumed lotion or moisturizer at least 4 times a day. Use a circular motion when rubbing the lotion into the skin. Massage the new skin with the lotion until you can no longer see the lotion. Lotion massage helps the skin be more elastic and smooth like uninjured skin, and also helps with itching. A cast will protect the"}, {"title": "rpj-common-crawl-2021-04", "text": "highest risk for burns? Men are twice as likely to be burned as women. In part, this is because men more often work with flammable substances like gasoline. Most gasoline-related burns and deaths occur in males under age 45. And most of these accidents occur in the summer months, when people are outdoors doing yard work, farming, or boating, according to the ABA. A. 60- to 65-year-olds B. 18- to 35-year-olds C. 24 months or younger D. All of the above 4. Burns are classified by degrees from first to third. Which of these describes a third-degree burn? A first-degree, or superficial, burn, although painful, causes only minor skin damage, usually heals in 3 to 5 days, and leaves no scar. Skin with a first-degree (superficial) burn is dry with no blisters. Sunburn or a minor scald is an example of a first-degree (superficial) burn. A second-degree, or partial thickness, burn is more painful; it damages but does not destroy the top two layers of skin, and heals in 10 to 21 days, according to the ABA. The skin is moist, wet and weepy, with blisters present. It is swollen and bright pink to cherry red in color. A third-degree, or full thickness, burn, the most severe, destroys all three layers of skin, and can involve fat, muscle, and bone. Skin grafts are required to treat this kind of burn. A person with a third-degree burn cannot feel anything in the burned area because the nerves are destroyed. A. Burned area is larger than 5 inches"}, {"title": "bm25", "text": "Burns are in the list of common injuries at home. Children are prone to burns. Depending on degree and cause of burns, we have different treatments. Minor burns in which damage is on the top skin layers can be recovered naturally without severe health consequences. However, the immediate emergency medical care is necessary if you have more serious burns. If not treated with medical care, serious burns may leave complications and even skin cell death. Burns have three primary types, including first, second and third-degree. Each degree of burns is based on the cause and the severity of skin damage. Second-degree burns: The damage is beyond the top of skin layers. Some blisters appear on the affected skin that is extremely sore and red. Compared with first-degree burns, the second-degree burns take longer to heal. The recovery time may be up to more than three weeks. It may leave pigment changes on the affected skin areas. Treatments for second-degree burns are antibiotic cream and over the counter pain medication such as ibuprofen or acetaminophen. Third-degree burns: the type of burns is more severe than other above types of burns. The damage extends through every skin layer. Some people believed that the third-degree burns are the most painful. However, you may feel no pain if it is nerve damage. Never use questionable home remedies, cream or medication at home when you suffer from third-degree burns. Call a doctor immediately. Medical treatment and even surgery are required in case of the third-degree burns. Patients with third-degree burns should"}, {"title": "bm25", "text": "a second degree burn? In some cases, blisters may appear almost immediately after exposure to or contact with a hot object, whereas in other cases, they may appear at a later time, ranging from a few minutes to a couple of hours after contact. Most second-degree burns that are characterized by blisters can be treated at home or at the hospital. What should I do after a second degree burn? Your muscles and joints may not work well after a second-degree burn. A physical therapist teaches you exercises to help improve movement and strength, and to decrease pain. How can I prevent second-degree burns? What\u2019s the difference between a second and Third Degree Burn? With a second-degree, the injury will compromise the outermost layer of skin ( epidermis) and extend to the middle skin layer below ( dermis ). If the burn extends beyond the dermis to the fatty tissues of the subcutaneous layer, it is deemed a third-degree burn. How do you heal a second degree burn? In order to treat a second degree burn, cover it with a dry, nonstick cloth such as gauze. Secure the gauze with tape, and replace the dressing with a clean one every day. Wash the burn every day. It is important to keep a second degree burn clean as it heals to aid with treatment. Wash the burn and reapply antibiotic cream every day. What are the symptoms of a second degree burn? The following are the most common signs and symptoms of a second-degree burn. However, each"}, {"title": "bm25", "text": "(Redirected from Burn (injury)) This article is about the injury. For other uses, see Burn (disambiguation). Injury to flesh or skin, often caused by excessive heat Second-degree burn of the hand Dermatology Critical care medicine, plastic surgery[1] First degree: Red without blisters[2] Second degree: Blisters and pain[2] Third degree: Area stiff and not painful[2] Infection[3] Days to weeks[2] First degree, Second degree, Third degree[2] Heat, cold, electricity, chemicals, friction, radiation[4] Open cooking fires, unsafe cook stoves, smoking, alcoholism, dangerous work environment[5] Depends on the severity[2] Pain medication, intravenous fluids, tetanus toxoid[2] 67 million (2015)[6] 176,000 (2015)[7] A burn is a type of injury to skin, or other tissues, caused by heat, cold, electricity, chemicals, friction, or radiation (like sunburn).[4] Most burns are due to heat from hot liquids (called scalding), solids, or fire.[8] While rates are similar for males and females the underlying causes often differ.[5] Among women in some areas, risk is related to use of open cooking fires or unsafe cook stoves.[5] Among men, risk is related to the work environments.[5] Alcoholism and smoking are other risk factors.[5] Burns can also occur as a result of self-harm or violence between people.[5] Burns that affect only the superficial skin layers are known as superficial or first-degree burns.[2][9] They appear red without blisters and pain typically lasts around three days.[2][9] When the injury extends into some of the underlying skin layer, it is a partial-thickness or second-degree burn.[2] Blisters are frequently present and they are often very painful.[2] Healing can require up to eight weeks and"}, {"title": "bm25", "text": "4.4 Analgesics 4.5 Surgery 4.6 Alternative treatments 5 Complications 6 Prognosis Three degrees of burns Burns can be classified by mechanism of injury, depth, extent and associated injuries and comorbidities. By depth Currently, burns are described according to the depth of injury to the dermis and are loosely classified into first, second, third and fourth degrees. This system was devised by the French barber-surgeon Ambroise Pare and remains in use today.[7] It is often difficult to accurately determine the depth of a burn. This is especially so in the case of second degree burns, which can continue to evolve over time. As such, a second-degree partial-thickness burn can progress to a third-degree burn over time even after initial treatment. Distinguishing between the superficial-thickness burn and the partial-thickness burn is important, as the former may heal spontaneously, whereas the latter often requires surgical excision and skin grafting. The following tables describe degrees of burn injury under this system as well as provide pictorial examples. Layer involved Time to healing First degree Epidermis Redness (erythema) Dry Painful 1wk or less None Second degree (superficial partial thickness) Extends into superficial (papillary) dermis Red with clear blister. Blanches with pressure Moist Painful 2-3wks Local infection/cellulitis Second degree (deep partial thickness) Extends into deep (reticular) dermis Red-and-white with bloody blisters. Less blanching. Moist Painful Weeks - may progress to third degree Scarring, contractures (may require excision and skin grafting) Third degree (full thickness) Extends through entire dermis Stiff and white/brown Dry, leathery Painless Requires excision Scarring, contractures, amputation Fourth degree Extends"}, {"title": "bm25", "text": "jobs. First-degree burns: These are superficial burns that involve only the epidermis or outer layer of skin. They are the most common and minor of all burns. The skin is reddened and extremely painful, but the burn will heal on its own without scarring within two to five days. There may be peeling of the skin and temporary discoloration. Second-degree burns: These occur when the first layer of skin is burned through and the second layer, the corium, is damaged but the burn does not pass through underlying tissues. The skin is moist and there will be a deep intense pain, reddening, blisters and a mottled appearance to the skin. These burns are considered minor if they involve less than 15 percent of the body surface in adults and less than 10 percent in children. Second-degree burns will heal themselves and produce very little scarring when treated with reasonable care. Healing is usually complete within three weeks. Second-degree burns covering more than 30% of the body are serious or complex burns. Third-degree burns: These burns involve all skin layers. These are the most serious of all burns and are usually charred black and include areas that are dry and white. Third-degree burns may be very painful, but some victims feel little or no pain because the nerve endings have been destroyed. This type of burn may require skin grafting. When third-degree burns heal, dense scars form. Our attorneys understand burn injuries may result in a tremendous amount of pain and emotional trauma. The burn injury attorneys"}, {"title": "bm25", "text": "peeling as it heals. A sunburn is technically a first-degree burn, usually of a mild nature. A second-degree burn goes through the first layer of skin and into the second layer, usually causing \u201cwater blisters.\u201d Many times, the burn will \u201cweep\u201d fluid, and the water blisters may burst open. These burns usually require medical treatment and sometimes skin grafting. Third-degree burns are the most severe, destroying the top two layers of skin and damaging the third layer or even deeper tissues of the body. They tend to look waxy and white, and can also appear charred or dark brown. Never attempt to self-treat a third-degree burn. Get medical attention immediately. If possible, raise the burned area above the level of your heart. Third-degree burns leave the body at a great risk for infection, hypothermia, and even death. You must seek medical help immediately. The long-term consequences of a third-degree burn are significant. Skin grafts are usually required in order to replace the body\u2019s natural skin barrier. Fortunately, in Georgia, we have the top burn facility in the world located in Augusta, GA \u2014 the Joseph M. Still Burn Center. Most serious burn patients are airlifted directly to the Burn Center in Augusta. Our firm has significant experience handling severe burn cases. Based on our prior experience in working with the skilled doctors who treat burn injuries, we understand that a significant third-degree burn may cause a wide variety of health problems. Once the initial burn treatment is complete, our clients still face many future issues resulting"}, {"title": "bm25", "text": "to sunlight for an increased length of time, and reaches a peak at 12 hours.33 These signs are the result of inflammation brought on by the UV exposure and are caused by vasodilation of the cutaneous blood vessels. Prostaglandin and leukotriene synthesis is brought about by the release of preformed mediators including histamine, serotonin, and tumor necrosis factor from mast cells.34 DNA damage occurs within the epidermal cells, leading to apoptosis. Depending on the degree of sunburn, over a period of four to seven days, the erythematous skin begins to either fade or blister and peel. Sunburns, like other burns, can be categorized by degrees, depending on their depth. (See Table 5.) First-degree sunburns are pink or red, painful to the touch, and limited to the epidermis. Second-degree burns can be categorized further depending on whether they are superficial or deep partial-thickness. The superficial second-degree burns form blisters, are erythematous, painful, and blanch upon palpation. This wound is limited to the superficial dermis. Conversely, deep second-degree partial-thickness burns range between white and erythematous areas, with areas that blanch less, and extend throughout the epidermis into the dermis. Although a third-degree sunburn occurs rarely, it appears stiff and white or tan, does not blanch at all, and is painless, compared to the first- and second-degree burns. Third-degree burns extend fully through the dermis.24 Table 5. Sunburn Depth Classification Pink or red Superficial second degree Pink, clear blisters Deep second degree Pink, white areas, blisters White, tan Treatment. Treatment in the emergency department for mild sunburns that are"}, {"title": "bm25", "text": "will heal after only a few days. Second degree burns damage the epidermis and dermis layers, causing redness of the skin, blisters, and inflammation. Third degree burns penetrate all three layers of the skin, causing extreme pain and significantly charring the skin. Fourth, fifth, and sixth degree burns also exist, but they are less-mentioned burn types that are often fatal. First degree burns usually leave no scarring and tend to heal on their own in a matter of days. Second degree burns may leave a scar that will likely fade over time. Third degree burns will almost always leave a scar, and depending on the severity, may require surgical skin grafting. It\u2019s difficult to determine the effectiveness of using Aloe vera to treat burns and reduce scars. Online sources cite conflicting evidence. Because Aloe vera is part of huge industry of skin care products, any company that sells it as a cream, lotion, or oil will certainly advocate for its many benefits. Most scientific studies are inconclusive; some reveal Aloe vera as a potential healing agent for burns and various wounds, while others seem to indicate it has no effect in the wound-healing process. No doubt further evidence is needed to form a valid conclusion. Clinical studies aside, Aloe vera is generally safe to use on the skin. The moisture and cooling sensation of this plant may help ease the pain of a first or second degree burn. However, more serious burns that cause scarring will likely need to be treated in a different way. Luckily,"}, {"title": "bm25", "text": "to hot water or steam, and overexposure to sun (light sunburn) or wind Characteristics of Second-Degree Burns There are several characteristics of second-degree burns. These include: mottled marked with irregular spots or splotches of different colors or shades of color. scalding - the burning of the skin by a substance that is near boiling in Involve deeper layers of skin Cause skin to turn red and/or mottled Appear moist and oozing from the loss of fluid through damaged skin layers Produce blisters and swelling Usually the most painful type of burn because nerve endings are still intact even though tissue damage is severe Burns covering a large area may cause shock due to extensive loss of fluid from the burned skin Smaller second-degree burns that are properly treated should heal within two weeks with little or no scarring Caused by a deep sunburn, prolonged contact with hot objects, scalding, and flash burns from flammable liquids suddenly bursting into flame Characteristics of Third-Degree Burns There are specific characteristics of third-degree burns. These include: Deepest and most severe type of burn May look white or charred (may appear to be a second-degree burn at first) Result in deep tissue destruction, reaching all layers of the skin and sometimes structures below the skin Often cause little or no pain since nerve endings are destroyed Often cause shock When healed, will be covered by scar tissue Caused by immersion in extremely hot water, prolonged contact with flames, and electric shock Treatment of Heat Burns Treat heat burns based on their"}, {"title": "bm25", "text": "result in redness of the affected area and minor pain. Second-Degree Burns: Second-degree burns are moderate burns that affect both the upper layer of skin (epidermis) and the lower layer of skin (dermis). Second-degree burns usually result in pain, redness, and blistering. Third-Degree Burns: The most severe type of burns, third-degree burns affect the upper and lower layers of skin, as well as the muscles, tissues, and sometimes bones beneath the skin. These burns often result in whitened or blackened skin and very high levels of pain. Regardless of the type, all burns can result in other related injuries. Often, burns cause extreme pain, blisters, swelling, and/or damaged or peeling skin. In certain cases, an individual may experience shock, which can lead to dangerously low blood pressure. Burns can also be permanent and cause scarring, disfigurement and physical impairment that lasts a lifetime. When Are Burns Caused by Negligence? Burns are a fairly common result of many different types of accidents. When these accidents are caused by negligence, the victim may be entitled to compensation for his or her burn injuries. A distracted driver hits a motorcyclist, causing the motorcyclist to hit the ground where he suffers road rash and burn injuries. An explosion at a construction site or oilfield causes a fire that leaves several workers with extensive burns. A defective electronic device sparks when it is plugged into an outlet, causing the user to burn her hand. Unsafe electrical wiring at a hotel causes a fire the results in multiple people suffering severe burn"}, {"title": "bm25", "text": "- First-degree burns: Also known as `superficial burns`, these are the least severe type of burns and affect the epidermal (outermost) layer of skin only. Skin remains intact but is red (though white when pressed), swollen and painful. - Second-degree burns: Also known as `partial thickness burns`, skin damage extends beyond the outermost layer of skin to the dermis. Skin blisters and appears red, may weep and is painful. - Third-degree burns: The most severe types of burns are also known as \u2018full thickness burns\u2019 as they damage the tissue and perhaps also the bone beneath skin\u2019s surface. They are often brown/black and dry to look at and, as nerves are often damaged too, may not be painful. - First-degree burns: can normally be treated at home but you should still see a doctor if the burn affects an area of skin of more than three inches and is on your face or a major joint. - Second-degree burns: may require antibiotic ointment and frequent bandaging. It is advisable to consult a doctor if they cover a large area or are on your face. - Third-degree burns, chemical and electrical burns: require immediate medical attention and you should call your local emergency services or consult a doctor depending on the severity of the injury. - If your skin is red and irritated, you can then apply a burn cream or a protective ointment such as Eucerin Aquaphor Soothing Skin Balm. It gives skin the SOS care that it needs and will help to accelerate skin regeneration."}, {"title": "bm25", "text": "of skin, or epidermis, is damaged by these burns. Common side effects of first-degree burns are redness, inflammation, pain, and sensitivity to pressure. Usually, these burns heal by themselves within a week, and can be treated with over-the-counter sprays and cold water. Contrary to popular belief, ice should never be applied to a first-degree burn injury, as this can affect the skin and its ability to heal itself. Second-degree burns: these are where damage goes beyond the epidermis into the dermis, or the second layer of a human\u2019s skin. Second-degree burns are further broken down into \u201csuperficial\u201d and \u201cdeep\u201d burn types. Superficial second-degree burns usually result in clear blisters appearing, extreme pain, and the surface of the skin being much more moist, while deep thickness burns result in heavy scarring and drier skin around the site of the burn. Both of these burns take weeks to heal and require proper bandaging and treatment. Third-degree burns: occurs when damage extends through the entire dermis and affects organs and nerves. Common signs of a third-degree burn include dry skin, white or black wounds, and nerve or tissue damage. Treatment for a third-degree burn often requires skin grafts and extensive surgery, and even then may not fully restore the skin to its original, pre-accident condition. Fourth-degree burns: the most serious type of burn, fourth-degree burns are when damage goes all the way through the skin and down to the underlying muscle and bone. Injuries from fourth-degree burns result in severe disfigurement and often require amputation of the affected limb."}, {"title": "bm25", "text": "oil, tea tree essential oil, citronella essential oil, and rosemary essential oil # Burns **First-degree burns** leave a painful red mark without blisters and often occur from brief contact with a hot object. Mild sunburn is a first-degree burn. Only the first layer of skin is affected. **Second-degree burns** develop blisters and swelling. They are more painful, are deeper, and may appear wet. There may be raw, red blisters. They may be caused by boiling water or contact with a very hot object, such as a woodstove. A severe sunburn could be classified as a second-degree burn. They are more likely to cause scarring than are first-degree burns. **Third-degree burns** may look white and charred. They may be caused by electrical shock or prolonged contact with a hot object. Since skin and nerve endings are often destroyed, the pain may actually be less than with a first- or second-degree burn, but there is a greater likelihood of infection. Third-degree burns are frequently \u00adsurrounded by lesser-degree burns that will probably be painful. # Seek immediate medical attention if: * A large area of skin is burned (more than 10 percent in a child or 15 percent in an adult) * The burned area develops blisters or swelling * The burn has resulted from severe electrical shock * The burned area is on the face * The eyes are burned ## While you wait for medical attention: 1. 1. **If the eyes have been burned by fire,** flush with cold water. 2. 2. **If the eyes have been"}], "hoverinfo": "text"}, {"x": [-0.11961805820465088, 0.34379398822784424, -0.12011098861694336, 0.23662471771240234, -0.10353001952171326, 0.2822752296924591, -0.03474324941635132, -0.017837733030319214, 0.10810789465904236, -0.1228017508983612], "y": [0.002873428165912628, -0.279610812664032, -0.001392751932144165, -0.03764514625072479, -0.0010527148842811584, 0.2159452736377716, -0.004347987473011017, -0.013051733374595642, 0.04830893129110336, -0.0031072795391082764], "mode": "markers", "name": "Centroids", "marker": {"size": 12, "symbol": "star", "color": "black"}, "text": ["Centroid 0", "Centroid 1", "Centroid 2", "Centroid 3", "Centroid 4", "Centroid 5", "Centroid 6", "Centroid 7", "Centroid 8", "Centroid 9"], "hoverinfo": "text"}], [{"x": [-0.16170579195022583, -0.11228722333908081, -0.15759766101837158, -0.15759766101837158, -0.11228722333908081, -0.08271117508411407, -0.21001850068569183], "y": [-0.02820964716374874, -0.03680683299899101, 0.022257018834352493, 0.022257018834352493, -0.03680683299899101, -0.0909891426563263, 0.05906561762094498], "mode": "markers", "name": "Cluster 0", "marker": {"size": 8, "color": "rgb(141,211,199)"}, "text": ["Document 153", "Document 166", "Document 539", "Document 540", "Document 650", "Document 1058", "Document 1280"], "customdata": [{"title": "pubmed", "text": "The perception of cast shadows."}, {"title": "rpj-stackexchange", "text": "translucent object also cast partial shadow."}, {"title": "rpj-common-crawl-2019-30", "text": "cast a clearly defined light and shadow on the floor."}, {"title": "rpj-common-crawl-2019-30", "text": "cast a clearly defined light and shadow on the floor."}, {"title": "rpj-stackexchange", "text": "translucent object also cast partial shadow."}, {"title": "bm25", "text": "Q: Does a spark cast a shadow? Does an electrical spark / arc cast a shadow? For example, if you shine a flashlight through the sparks generated through a tazer, will it cast a shadow on the wall? Unfortunately I don't have a tazer handy to conduct my own experiment here. I know from google searches that fire does not cast (much of) a shadow, but have not been able to find out how light passes through sparks yet. Edit: This is a bit different than fire (here, talking about an electrical arc or spark vs. fire, which may or may not behave the same)."}, {"title": "bm25", "text": "and isolation that may surround us as we age, the shadow is a constant attachment (in isolation) and witness (to the lonely). Shadow Maps are evidence that time is passing as we see the lines of shadows shift towards the edge of the page while the sun moves across the sky. In this way they are testament to the fact that while we move through time and changes they do not define us and we remain closely connected to the constant, core elements of ourselves.The shadow maps serve as an allegory or symbol for the impact of the Arts on alleviating social isolation and loneliness for older people. The passage of time, normally invisible, is made tangible by the shadow lines. When viewed in conjunction with evidence of how participation in the Arts by older people has enhanced their sense of belonging, health and wellbeing the shadow maps provide a compelling reminder of the inter-connectedness between Art and public health. Shadow castings were used throughout the report to illustrate individual stories and the transformative impact of the Arts in the lives of older people. Depicting a story through cut out shapes that become shadow puppets \u2013 shadow casting is an effective vehicle for communicating complex messages to a wide variety of audiences. Alexander created her shadow cast images by cutting out shadow puppets and installing them into mini shadow stage sets. The shadow images were then photographed, using lights and filters and produced as still images to create beautiful but simple illustrations. This creative process is"}], "hoverinfo": "text"}, {"x": [-0.053966257721185684, -0.07338224351406097, 0.08870197087526321, 0.03427889198064804, 0.043586526066064835, 0.02879992686212063, -0.09617826342582703, -0.08595246821641922, -0.09860444813966751, -0.12268169224262238, -0.14513714611530304, -0.06530874967575073, -0.0499630831182003, 0.02548164129257202, 0.02907751314342022, -0.040616828948259354, 0.05214652046561241, -0.07961422204971313, -0.0802234411239624, -0.017546609044075012, -0.035473354160785675, -0.13178569078445435, -0.07914312928915024, 0.028424862772226334, -0.09860444813966751, -0.15106423199176788, 0.048218678683042526, -0.14644350111484528, -0.0910479724407196, -0.14811375737190247, -0.003957600332796574, -0.09106308966875076, -0.07819095999002457, -0.05610217899084091, -0.06908758729696274, -0.0746966004371643, -0.08911250531673431, -0.08379779756069183, -0.13793504238128662, -0.09101565927267075, -0.06113345921039581, -0.09621130675077438], "y": [-0.08109234273433685, -0.1096467599272728, -0.09349193423986435, 0.024352705106139183, -0.0579998753964901, -0.09041933715343475, -0.03704278916120529, 0.004241722635924816, -0.0004981241654604673, 0.036938317120075226, 0.02178604155778885, -0.010986490175127983, 0.0019388394430279732, -0.050810638815164566, 0.016329597681760788, 0.06268742680549622, 0.030328398570418358, -0.0170319601893425, -0.020286904647946358, 0.0707637295126915, -0.03235683590173721, 0.04636957123875618, 0.042674846947193146, -0.03934132307767868, -0.0004981241654604673, 0.036008648574352264, -0.1273239552974701, -0.004752248991280794, -0.06976016610860825, 0.09928600490093231, -0.033911123871803284, -0.07387837022542953, -0.07112114876508713, -0.015179755166172981, -0.0804898664355278, -0.015666747465729713, -0.03562658280134201, -0.09681762009859085, 0.012880701571702957, -0.06844273954629898, -0.0005934267537668347, -0.04570263624191284], "mode": "markers", "name": "Cluster 1", "marker": {"size": 8, "color": "rgb(255,255,179)"}, "text": ["Document 149", "Document 197", "Document 252", "Document 349", "Document 382", "Document 594", "Document 667", "Document 692", "Document 693", "Document 697", "Document 793", "Document 880", "Document 899", "Document 934", "Document 938", "Document 961", "Document 971", "Document 992", "Document 1015", "Document 1017", "Document 1022", "Document 1061", "Document 1062", "Document 1122", "Document 1190", "Document 1227", "Document 1241", "Document 1244", "Document 1248", "Document 1313", "Document 1315", "Document 1341", "Document 1346", "Document 1356", "Document 1371", "Document 1401", "Document 1405", "Document 1417", "Document 1438", "Document 1465", "Document 1489", "Document 1498"], "customdata": [{"title": "rpj-c4", "text": "instance, a glowing filament as shown above), it doesn\u2019t change the fact that the main surface of the sun is still glowing. Any attempt to put an object between the filament and the surface of the sun in order to cast a shadow would simply result in both sides of the object being illuminated! And very likely, said object would subsequent vaporize, given the 5500 degree Celsius temperatures near the surface of the sun. Have your own question? Something here unclear? Feel free to ask! Or submit your questions via the sidebar, twitter, Facebook, or Google+!"}, {"title": "rpj-common-crawl-2020-05", "text": "this is false. Surface angle and shape of object do indeed matter in how shadows are captured in camera in relation to the perspective of the camera to the shadows. An irregular shaped object can give the illusion when recorded into a 2D medium of having a shadow going in a different direction. A rise or fall in surface will also cause a shadow to have an appearance of going in a different direction. All of this is readily observed here on Earth. And once again, if there were multiple lights there would be multiple shadows, this would be unavoidable with out having obvious light fall off from the directional lights to minimize their overlap. Look at any sporting event at night and you will see multiple shadows from the players and the shadows even rotate about a player as they move about the field. #6 Pretty much any expert in radiations in space is going to tell you a 6ft wall of lead is the least desirable shielding because of the increased likelihood of creating a cascade of radiation from particles hitting the lead. A more desirable shielding tends to be of a type that doesn\u2019t cause the particles to be split up and shot all about and instead merely block them in a less rigid manner. Which is why water and PVC are popular for dealing with the most common forms of radiation. But for solar events the radiation in space is easily blocked by a few mm of aluminum, it is when solar"}, {"title": "rpj-common-crawl-2023-06", "text": "in the glass elevator. But how could that be when it is well known that photons of light have no mass and are not attracted by a gravitational field? There could only be one answer. If light were not attracted by gravity, and therefore would be expected to travel in a straight line through the gravitational field, the only way one could explain its bending would be to assume that the space the light traveled through was being bent! In that way, the light would bend even though it was going \u201cstraight,\u201d because the space it passed through was being curved. Intuitively, this argument makes no sense. How could space be bent? But as you recall, space is a thing, it is not nothing (recall that if there were nothing between the Earth and the Moon, they\u2019d be touching). So, if this \u201cthing\u201d we call space could somehow be bent by gravity, was there any way to prove it? As it turned out, there was a way. On May 29th, 1919, a total eclipse of the sun was to occur. At the moment of totality, the sun would be in front of a fairly bright field of stars (part of the Hyades group). If the distance between two bright stars could be determined beforehand, two stars that would be on either side of the sun during totality, that particular measurement could be compared with the same measurement taken when the sun was between the two stars. If a large gravitational field truly \u201cbent\u201d space, then one"}, {"title": "rpj-common-crawl-2021-04", "text": "therefore the darkest, because the light has to travel all the way to the ocean floor before it is reflected back to the camera.\" \u2014 Ancient Aliens on the Moon, p.125 Last Saturday, speaking to a packed house at Contact in the Desert, he confirmed for us all that his understanding of optics, albedo, and selenology is dismal. He was talking about the glass towers that he claims were constructed by some alien civilization on the Moon. 17:17 \"It seems to correspond with the parts of the Moon that are dark. If you've noticed, the Moon, look at the face of the Moon ... there's light stuff and dark stuff, and the dark stuff seems to have a lot of this glass structure over it and what seems to be happening is light takes a little bit longer to get to the ground and bounce back to the camera. And that's why you see this darkness in these areas.\" It hardly needs saying that the dark appearance of the lunar mares by comparison with the bright highlands is caused by the fact that the mares were created by lava flows when the Moon was young and hot, several billion years ago. They are predominantly basalt, whereas the highlands are plagioclase. And there are no glass towers anywhere on the Moon\u2014the artifacts that Hoagland and Bara see are entirely due to scanner contamination. Bara came up with one additional bit of nonsense on this topic. He said (16:30 approx.) that lunar glass is a fine material for"}, {"title": "rpj-common-crawl-2021-04", "text": "will need to vent the heat to the outside of the cylinder. Perhaps it's a rotating one, to provide artificial gravity, since the real one can't act the way OP wants because Gauss theorem. $\\endgroup$ \u2013 John Dvorak May 10 '20 at 14:27 $\\begingroup$ You omitted one factor in your albedo. This is light traveling down an enclosed tube, with no exit except at the ends, which do not exist. All of the 'rays' of light would continuously bounce off the sides of the tube, cumulatively, all the way down. The only thing absorbing the light would be the sides of the tube, measured by the albedo. The light from ALL of the suns would collectively be going down the tubes, like a light beam travels down a fiber optic tube. There could be no dark 'night', because there is no 'void' for a backdrop, except the 'ends', beams of light shining down the tube. $\\endgroup$ \u2013 Justin Thyme the Second May 10 '20 at 15:05 $\\begingroup$ Nothing has been stated about the outside of the cylinder. There could be a heat sink there that absorbs heat from ground. This would also form the exit that Justin Thyme is positing does not exist -- the ground absorbs the visible light, radiates it as infrared to the outside heat sink, and it is gone. $\\endgroup$ \u2013 Mary May 10 '20 at 15:43 $\\begingroup$ @JustinThymetheSecond: Ugh, no. Visible light from the distant suns would be attenuated into nothingness. That's the point of the second pass, to discuss what"}, {"title": "rpj-common-crawl-2021-04", "text": "due to absorption between each scattering.) 8. For some purposes, scattering and reflection at the surface can also be neglected for LW radiation. Additional notes and observations of scattering of solar radiation: When there is a hole through which direct solar rays pass, scattering along the path of the beam allows the beam to glow with scattered radiation - it can be seen from outside itself. This can be observed in a dusty room with sunlight coming through a window. A shadow cast through the air can also be seen from outside itself by the same mechanism. Variations in direct solar ray intensity can be seen to the extent that they have optical thickness along the line of sight and there is not too much optical thickness along the line of sight between the viewer and variation being observed. These variations are called crepescular rays and can be seen when the direct sun is blocked by a layer of clouds with holes, or there are patches of clouds casting shadows, or when the sun is behind a cloud with an irregular edge. One particularly interesting case is the shadow cast be a long thin straight contrail (the cloud left by a jet when conditions allow). Such a contrail casts a shadow that is a thin planar slice through the air; along lines of sight nearly parallel to this shadow, a dark streak can be seen through the sky; it will be darkest to viewers within the shadow. But the shadow will not be observed along lines"}, {"title": "rpj-c4", "text": "try to replicate the shadow of the eaves on the Trent garage. The board casts a decent shadow for a few inches below the point where it touches the wall, then as the board moves slightly farther from the wall, the shadow quickly fades to invisibility. At the point where the shadow disappears, at the top of the support pillar, the board is only 8 inches or so from its shadow. The end of the eaves on Trent's garage were approximately twenty inches from the wall (I measured this on a building of similar construction), yet the shadows are still sharp and distinct. This is because they were cast by the sun, small and very bright, not a large, diffuse cloud. If Maccabee can find a sunset cloud that can cast sharp shadows of such boards at twenty inches, then I might be prepared to accept his argument. Maccabee's illustration of a bright cloud casting a shadow at sunset. But the shadow is too diffuse to allow it to be seen when the board casting it is some twenty inches from the wall. In 2004, researcher Joel Carpenter (1959-2014) created a website on the McMinnville photos, making a very good case that the object was directly beneath the overhead wires, and close to the camera. He suggests that the object was a mirror from an old truck. I have restored Joel Carpenter's original McMinnville photos website (fixing only the links), and placed it on the Internet Archive. Instead of moving toward the object and shooting the"}, {"title": "rpj-c4", "text": "We have talked at length about skyscrapers and their fascinating photographs. However, from the perspective of a real-world scenario, skyscrapers unfortunately tend to cast long shadows on the neighboring areas and sidewalks \u2013 much to the inconvenience of people using those spaces. But as always, there is science that can account for a solution. To that end, architects at the London-based firm NBBJ have come up with the notion of what can be termed as shadow-less buildings. This ingeniously contrived scope entails a pair of buildings that would reflect much of the incoming sunlight onto the adjacent spaces (areas where the shadows would have been cast). Of course, beyond just a concept, such an idea needs some details and complexity \u2013 so as to maintain the sunlight reflection mode during most time of the day. For this, the architects utilized a computer software known as Rhinoceros for the 3D modelling of the consequent buildings. This resulted in the rendering of one of the buildings designed like a gargantuan, curved mirror. This building would reflect the light onto the shadow formed by its southern counterpart \u2013 and, the specific curve of its glass surface would maintain the alignment of reflection all throughout the day. In other words, it is all about following the sun path and offering diffused reflection; as opposed to magnifying the sun-ray that can potentially cause harm to pedestrians using the building sidewalks. The \u2018Rhinoceros\u2019 was fed with many architectural data, including office and living space footprints; while the design software did respond back"}, {"title": "pes2o", "text": "evidently cast by a horizontal bar in the window frame (Fig. 8). From Yang's present position looking up at it, that shadow curved like a 'U'. If she moved her perspective, would that shadow's curve invert? Yang Suppose I am looking [down] from very high up, what would that shadow look like? Gathering around the window, everyone sighted through it, observing an upward arc in the bar's shadow. Lydia asked if Yang could get ''tall enough'' to look down on it. After standing on a bench of insufficient height, Yang placed a large trash can on it. With classmates' supporting her standing on the can, she gained the perspective of looking down (Fig. 9): Yang Yeah! It [shadow] is slightly curved [upside-down U] Come and see. (Cavicchi 2013a) Oblivious to Yang's invitation that her classmates look for themselves, I passed over my camera for her to photograph the effect from both high and low vantages. Her digital images absorbed the class in collective fascination, not only for the up and down arcing shadows, but also for fluctuating sunlight intensities and their own reflections (Fig. 10, left). Saying ''so that's an example'' of inversion in an image, Yang brought that spontaneously initiated activity to a close. I encouraged the class to take advantage of the fleeting sunlight by revisiting geometrical explorations conducted with their own bodies' sun-cast shadows (Fig. 10, middle). Yet in doing so, I was also torn about turning the class aside from that window phenomenon. Did the students suppose they had settled it? I"}, {"title": "rpj-c4", "text": "Build A Skyscraper That Casts No Shadow? We Can Do That, Architects Say! Tall buildings can be beautiful, but the big gloomy shadows they cast can leave urban centers starved of sunlight. Now a London-based architecture firm says it\u2019s hit upon a way around that problem. The firm devised a plan to build paired skyscrapers in such a way that sunlight reflected by one fills in the shadow of the other. Brilliant!"}, {"title": "rpj-c4", "text": "for pedestrians. The After Take: To those who I showed these photos there was initial puzzlement - then as I went through the series and explained it - a point of enjoyment reached. I think some of the enjoyment came from listening to my lengthy explanation - lol. Shadows gone, but not forgotten. Here is hoping you occasion upon such a moving shadow show and enjoy it. The third photo is my favorite. The way the shadow bends across that wood is really cool. I dont know if Id feel safe walking under that thing. While I agree with sarah, I think it still beats no protection at all! Not to mention I don't think I'd be able to pass up the chance at walking through it with all the lights around it. It'd look really cool! I like the fourth better than the third. This is a really fun photo series to look at. It'd be interesting to see how different times of day affect the curves. Ya I'd like to see that too."}, {"title": "rpj-common-crawl-2022-05", "text": "juniper branches moved with the leaves of deciduous trees. A couple of sparrows perched momentarily on our empty bird feeder. Then moved on. The sun came out again, blazing through a vale of white. By 2:30 it looked to me eclipsed with the east horn matching the west horn of light. From my Somerville porch the eclipse is twisted to the west, not perpendicular with horizon to the southwest. Instead the horns of light, the corners of the open-mouth smile, are pointing to the West. Wisps of passing cloud give the sun, viewed through my very dark glasses, the look of smoking. As the world turns, the horns of the occluded sun appear to rotate downwards. The moon stands before the sun, blocking about a third of light for what seems to me like a wonderfully long time. Yet it has only been 15 minutes. I took a piece of paper, about 4 by 4 inches, and with a sewing needle poked a hole in the middle of it. Sunlight streamed through the window onto the kitchen table. I held the paper in the sunlight, tipping it to be more perpendicular to the sun. On table top a tiny bright spot appeared in the middle of the shadow square. I got out the magnifying lens, the one we keep for reading warning labels not meant to be read. Held the lens above the spot of light on the kitchen table, while in the other hand held the shadow puppet. Through the lens I thought I saw"}, {"title": "math", "text": "reveal input data is specified in the WindowProperty:FrameAndDivider object expect for the depth of the outside reveal, which is determined from the vertex locations of the window and its parent wall. If an exterior shading device (shade, screen or blind) is in place it is assumed that it blocks beam solar before it reaches outside or inside reveal surfaces. Correspondingly, it is assumed that an interior or between-glass shading device blocks beam solar before it reaches inside reveal surfaces. Representative shadow patterns are shown in Figure 99 for a window with no shading device, and without and with a frame. The case with a frame has to be considered separately because the frame can cast an additional shadow on the inside reveal surfaces. The patterns shown apply to both vertical and horizontal reveal surfaces. It is important to keep in mind that, for a window of arbitrary tilt, if the left reveal surfaces are illuminated the right surfaces will not be, and vice versa. And if the bottom reveal surfaces are illuminated the top surfaces will not be, and vice versa. (Of course, for a vertical window, the top reveal surfaces will never be illuminated by beam solar if the reveal surfaces are perpendicular to the glazing, as is being assumed. For each shadow pattern in Figure 99, equations are given for the shadowed areas $${A_{1,sh}}$$ and $${A_{2,sh}}$$ of the outside and inside reveal surfaces, respectively. The variables in these equations are the following (see also Figure 100): $${d_1}$$ = depth of outside reveal, measured from"}, {"title": "rpj-common-crawl-2019-30", "text": "supposedly use polarized light to navigate: https://link.springer.com/article/10.1007/BF00696165 The polarization in question is created by sunlight passing through the stone, it is not a natural property of the sunlight as your response assumes. No, that was my point about one area darker or no. The local gradients will still point, on average, to where the sun is. Where the edge of thick area of clouds is will leave a gradient line across the sky but once you step across that line you're back to pointing in the correct direction again. So if you consider the sky as a hemisphere there will be a consistent trend to point at the sun along with various cloud shadows that may go any which way. But if you grew up learning to \"see\" the sun from such a pattern it's possible your brain might filter it properly. Perhaps a rising thunderstorm on the far side of a cloud layer might throw things totally out of whack but there's not a lot of thermal energy to feed those in Scandinavia so they wouldn't be as common as, e.g. here in Florida. Yes, but the effect being utilised is that there are two rays with different refractive indices. I thought that the article didn't make this clear. As I was never a very good student and am not very intelligent, and had to work quite hard to understand birefringence, it occurred to me that others might be confused. DRF Smack-Fu Master, in training Wouldn't the more clever vikings have gone from Bergen, to"}, {"title": "rpj-common-crawl-2022-05", "text": "sun is very low on the horizon). But it happens quite frequently with inclined or open windows, like those found in modern buildings.\" Sometimes the reflections take the shape of an X, depending on the curvature of the window creating the reflection. \"The whole effect is due to gravity and heat,\" explains Bagnasco. \"The glass plate slightly curves in the sun, a couple of millimeters are enough, and it becomes a concave mirror, creating a spherical reflection. However, sometimes it can produce a cross or a double cross, according to how the plates are held by the frames, either with four or six hinges.\" A member of CICAP in Turin, Stefano Bardelli, was even able to find just the perfect conditions, demonstrating very clearly how the phenomenon is created (see photographs). The real mystery The only mystery that remains is why the circles of light cause such marvel. Nobody is surprised at seeing such reflections when walking down the street, because one immediately realizes that they are produced by windows reflecting sunlight. It is only when dozens of pictures of such reflections appear on the World Wide Web, coming from different parts of the world\u2014and newspapers pick up on it\u2014that the \"marvel effect\" strikes. It is not unusual for a phenomenon that has a quite simple explanation to become, by word of mouth, an inexplicable mystery. Orbs are another example. \"These 'circles of light,'\" concludes Bagnasco, \"have always been there, but were unheard of in the past; they were noticed and picked up by the media"}, {"title": "rpj-common-crawl-2020-05", "text": "sunlight through a window - quotes and descriptions to inspire creative writing Search entire site for sunlight through a window entering a house The sunlight makes rainbow diamonds that dance upon the canvas that is the wall. As Earth turns they stretch and fade to the silent applause of eyes. By Angela Abraham, @daisydescriptionari, September 1, 2019. New white rays shine through window and curtain just the same, showing the beauty of the many tan hues that weave together to make the fabric I love so much. The browns are as varied as sand dunes at dawn, as pretty as the lightest of wood carried ashore upon windswept waves. Amid the light I see the beams as if they wave with the undulating pleats, yet in truth they are strong and true, giving structure and form. As the moments pass the intensity rises and softens, bold and gentle, telling of the day that passes in the world beyond. By Angela Abraham, @daisydescriptionari, October 25, 2018. The ancient mullioned window cast a checker board of brilliant noon sunlight onto the dark walnut floor. As the afternoon gave way to early evening Alysa watched the stubby squares elongate to faded rectangles, as if stretching and yawning before waning and finally surrendering to the night. By angela, April 17, 2012. The last rays of the late afternoon sun fell slanting through Ernest's window. By mikeb, May 25, 2013. Found in The House of the Vampire, authored by George Sylvester Viereck. A triangle of white light was advancing from the"}, {"title": "rpj-common-crawl-2019-30", "text": "against a south-facing wall that 1) is protected from the wind and 2) receives direct sunlight at noon. By 1:00PM the glass will be too hot to touch due to the sunlight that it has absorbed. Then touch the wall behind the glass and you will discover that this clear plate of glass has been \u201cshading\u201d the wall, which will be significantly cooler than the glass.\u201d When I took physics many of the \u2018homework\u2019 problems that I was given to solve stated that I should assume frictionless surfaces and bearings and massless pulleys. From this I conclude that physics majors maybe have not learned to reason about real world problems. In his book about Richard Feynman titled Genius, James Gleick wrote (in a section titled All His Knowledge): \u201cBut a part of him still preferred to give fundamental a different definition. \u201cWhat we are talking about is real and at hand: Nature,\u201d he wrote to a correspondent in India, who had, he thought, spent too much time reading about esoteric phenomena. \u201cLearn by trying to understand simple things in terms of other ideas\u2014always honestly and directly. What keeps the clouds up, why can\u2019t I see stars in the daytime, why do colors appear on oily water, what makes the lines on the surface of water being poured from a pitcher, why does a hanging lamp swing back and forth\u2014and all the innumerable little things you see all around you. Then when you have learned what an explanation really is, you can then go on to more"}, {"title": "rpj-c4", "text": "live in Edmonton, the other side of said mountains. I love'm too. Born and raised in Toronto, but left there in 1967. I posted my NDE on the main site some years ago. It was labeled as \"Michael C's\" experience. And light bringer is, in Latin, Lucifer. This is beginning to get a bit weird, even for me. I am trying to formulate questions about 'light bringers', for my own bed becoming. That is still in the works. I'll get back to with that in a day or two. My opinion is that all NDErs are people 'bringing light', or showing us what the light is, and where the light comes from. In this respect you are a 'light bringer'. Our world needs them. Talking about light! Another idea that just hit me. Well it's because all material things are catching light one way or another, even glass, crystals, water etc... So when I'm walking outside in sunshine and the sun is on my back then I can see my shadow because I'm taking in sunshine e.g. light and keep it (even so some is reflected) and it cannot go through unhindered. Glass, crystal, water etc.. bend light or are slicing it up into different light waves but they still interact with light, so they also produce shadow. It's good you found us! There are probably many light-bearers, not only the 'lucifer' in literature. That would be like saying there is only one carpenter in a town, and his name is Charlie. But wait! I'm a"}, {"title": "bm25", "text": "dense fog. Visibility effects Depending on the concentration of the droplets, visibility in fog can range from the appearance of haze, to almost zero visibility. Many lives are lost each year worldwide from accidents involving fog conditions on the highways, including multiple-vehicle collisions. The aviation travel industry is affected by the severity of fog conditions. Even though modern auto-landing computers can put an aircraft down without the aid of a pilot, personnel manning an airport control tower must be able to see if aircraft are sitting on the runway awaiting takeoff. Safe operations are difficult in thick fog, and civilian airports may forbid takeoffs and landings until conditions improve. A solution for landing returning military aircraft developed in World War II was called Fog Investigation and Dispersal Operation (FIDO). It involved burning enormous amounts of fuel alongside runways to evaporate fog, allowing returning fighter and bomber pilots sufficient visual cues to safely land their aircraft. The high energy demands of this method discourage its use for routine operations. Shadows Shadows are cast through fog in three dimensions. The fog is dense enough to be illuminated by light that passes through gaps in a structure or tree, but thin enough to let a large quantity of that light pass through to illuminate points further on. As a result, object shadows appear as \"beams\" oriented in a direction parallel to the light source. These voluminous shadows are created the same way as crepuscular rays, which are the shadows of clouds. In fog, it is solid objects that cast"}, {"title": "bm25", "text": "and bottom like this photo. ![5](http://7xnp1z.com1.z0.glb.clouddn.com/guitar_nut_real.png) You can check it with a light like this. I just used my iPhone torch and it works fine. If there's gap you can see the light coming through and it's not a good news! ![6](http://7xnp1z.com1.z0.glb.clouddn.com/guitar_nut_light.png) For nut action, this website below is so great. A perfect explanation. I think this part is the main reason you want to replace the nut right? Oh and Is your 808TE a newer model? If yours has a kangaroo inlay and reddish colour back and sides, the nut and saddles are bone. My older model had black nut and saddle made of some mixture of glass and plastic. [http://www.frets.com/FretsPages/Musician/GenSetup/NutAction/nutaction.html](http://www.frets.com/FretsPages/Musician/GenSetup/NutAction/nutaction.html) I learnt everything on the internet. So you can do research by your self too. Just search by \"how to shape a guitar nut\" \"how to file nut slots\". And it will show you lots of links. Lots of videos available on youtube too. One of the important thing I can say is that to do it slowly, don't rush and be patient because once you file a nut too much, you'll have to start a new one again! Let me know if you need anything else. First work on nut then you can change the saddle. If you need my help for the saddle, just write me again and I'll give you some advise. Just be gentle on your guitar because you don't wanna wreck your guitar! No one wants to:) Good luck! Akira"}, {"title": "bm25", "text": "Such strange light mid-morning today. Very bright sun in a cloudless sky, yet also somehow very \u201cgauzy.\u201d It\u2019s not hazy today, nor is it humid or even slightly overcast, so the gauzy quality makes no sense. But you can see how soft some of the shadows are. Even if they are thrown down by more faraway trees, those trees aren\u2019t so distant that I\u2019d expect such faint shadows. Actually, I think I just figured it out, but sadly it\u2019s now almost 1:00 pm, so there\u2019s no chance to check my theory out. I\u2019m guessing that the fainter shadows are the result of sunlight reflecting off the glass of the Grohmann Museum\u2019s atrium and then casting shadows of those branches from a different angle and with a weaker light. I suppose that might also explain the strangely gauzy quality of sunlight, as well. This entry was posted in Life, Milwaukee, Nature, Photography and tagged quality of light, tree shadows. Bookmark the permalink. Not a bad theory. I wonder if light, as does sound, cancels itself out if coming from two different sources. When designing an auditorium placement of the speakers is important or one might create a dead spot where there is no sound (or almost no sound). Light travels faster than sound and the waves are much shorter so\u2026? If two identical light sources were shot directly into each other, I would think, that would they pass right through each other or at least look like they did to the naked eye. \u201cIf you want light"}, {"title": "bm25", "text": "For Those Who Spend Time in a Place movement is always the same. As the sun's path drops lower in the sky dur\u00ad time. Its celebration has often lifted architecture out of the region of fact into the realm of art. In great cathedrals, sun\u00ad light cycles occupy a year in the nave, a day in the transept. In a monastic church of the Middle Ages as well as a basilica of Renaissance Rome, some sort of spatial crossing pro\u00ad portions time. In these places, the perpetually renewed experience of wonder is intensified by For Those Who Spend Time in a Place ing the summer and fall, the shadow moves up. As the sun's path rises in the sky during the winter and spring, the shadow moves down. Ralph Knoivles Whether we occupy an inside or an outside space, two scales of the passage of time can be noted. One measures a day of experi\u00ad ences and actions; the other, a year. People must AM \u2022PM .AM the changing qualities of light, variations of hue as well as value. vrrm. remain a while. They can\u00ad not really know their possi\u00ad bilities, or the possibilities of a place, by passing through just once. Any space that is orient\u00ad ed from north to south hi sharpens our experience of a day. Both main walls are lighted, but at different hours. Every morning, light from the east will cast a shadow that moves quick\u00ad ly down the opposite wall and across the floor. Every afternoon, light from the west"}, {"title": "bm25", "text": "recalled her method of viewing the shadow cast by the window bar across the pillar. She had moved her body so as to see it from below, and then climbed high to view it from above. Perhaps the shared activity of making and watching shadows of her body moved Lydia toward a new disequilibrium about the window bar's shadow that the class had investigated, yet not fully probed. It came to surprise us how the art of Escher reopened the shadow analogy, with questions that deepened into a new understanding. In initiating that process, pensively, tentatively, Lydia asked: Lydia I was wondering: why you could see that shadow [of the window bar on the pillar]!? Yang What a great question! Yang erupted with delight as Lydia struggled to articulate what was so strange about that ''shadow''. Lydia Because -the sun wasn't hitting from behind us!! Yang You know. I didn't think about it!\u2026 Author You didn't think about it then? Yang Now I feel like: the window glass reflects the light but the frame stuff doesn't \u2026 (Cavicchi 2013a) As Yang now described it, sunlight reflected off the windowpanes to fall on the pillar, producing bright areas there, whereas it did not reflect from the window's bar (Fig. 11, Middle). The ''shadow'' was not a shadow; it was a gap in the window's reflected light. Diagram illustrating parallel rays from the sun, striking the window glass and the window bar. Those rays striking the window glass are strongly reflected to the pillar; those striking the bar"}, {"title": "bm25", "text": "other. In a solar eclipse, the sun, moon and Earth line up in that order. The moon casts its shadow on the Earth. From Earth, it looks like the moon is blocking out the sun. In a lunar eclipse, the three bodies line up in a different order \u2014 sun, Earth, moon \u2014 and the Earth casts its shadow on the moon, turning the moon a deep red. GPS Abbreviation for global positioning system. GPS device Devices that calculate their position (in terms of latitude and longitude) from any place on the ground or in the air. They do this by comparing how long it takes signals from different satellites to reach them. lens (in physics) A transparent material that can either focus or spread out parallel rays of light as they pass through it. (in optics) A curved piece of transparent material (such as glass) that bends incoming light in such a way as to focus it at a particular point in space. Or something, such as gravity, that can mimic some of the light bending attributes of a physical lens. moon The natural satellite of any planet. recruit (in research) New member of a group or human trial, or to enroll a new member into a research trial. Some may receive money or other compensation for their participation, particularly if they enter the trial healthy. smartphone A cell (or mobile) phone that can perform a host of functions, including search for information on the internet. solar eclipse An event in which the moon passes"}, {"title": "bm25", "text": "evidently cast by a horizontal bar in the window frame (Fig. 8). From Yang's present position looking up at it, that shadow curved like a 'U'. If she moved her perspective, would that shadow's curve invert? Yang Suppose I am looking [down] from very high up, what would that shadow look like? Gathering around the window, everyone sighted through it, observing an upward arc in the bar's shadow. Lydia asked if Yang could get ''tall enough'' to look down on it. After standing on a bench of insufficient height, Yang placed a large trash can on it. With classmates' supporting her standing on the can, she gained the perspective of looking down (Fig. 9): Yang Yeah! It [shadow] is slightly curved [upside-down U] Come and see. (Cavicchi 2013a) Oblivious to Yang's invitation that her classmates look for themselves, I passed over my camera for her to photograph the effect from both high and low vantages. Her digital images absorbed the class in collective fascination, not only for the up and down arcing shadows, but also for fluctuating sunlight intensities and their own reflections (Fig. 10, left). Saying ''so that's an example'' of inversion in an image, Yang brought that spontaneously initiated activity to a close. I encouraged the class to take advantage of the fleeting sunlight by revisiting geometrical explorations conducted with their own bodies' sun-cast shadows (Fig. 10, middle). Yet in doing so, I was also torn about turning the class aside from that window phenomenon. Did the students suppose they had settled it? I"}, {"title": "bm25", "text": ">

The light of a cloudy day is made distinct by the clouds which filter the sunlight. The resulting light feels colder and softer, yet less inviting. It spreads and diffuses out more than sunlight, yet its bleak appearance detracts from its feeling of openness. On a partly cloudy day, the passing clouds cast odd, unpredictable shadows on the ground. Without looking up at the sky, it is impossible to know when or where a shadow will appear. The environment adds an extra dynamic to the pleasantness of a sunny day, and makes the light more fluid in intensity. The constant changes in light can be both a distraction and a nuisance.

On the umbrella, the feeling of a partly cloudy day is captured by moving randomly-positioned shadows across the canopy. These shadows are amorphous, without a distinct and traceable shape, much like how the shadows left behind by a cloud appear to a person on the ground. The rhythm of the shadow is predictable when overhead, but the delay before the next is made random and unpredictable.

At Sunset

As the sun sets, the ambient light begins to fade away; the sky yellows as the light slides away with the sun. Normally a scene which plays out over several minutes, here the same pattern is captured in a brief few seconds. The effect is far more dramatic, especially without the eye having the chance to adjust and catch up to the shifting"}, {"title": "bm25", "text": "I can show that the sun should be at different angles than what is observed. What's up? A: The sun's light refracts as it enters the atmosphere and continues downward, thus causing light to be bent. Also notice that in cold areas this effect will have a greater effect on the sunlight because the cold air is denser. This also causes light to be bent in the way it is on the Equinoxes and Solstices. Q: How do sunrises/sunsets occur? A: The sun gets to far away for the sunlight to reach us, also caused by the refraction as stated above. Q: How come the sun doesn't get smaller as it moves farther away? A: Unknown. Possibly because of refraction and magnification through the atmosphere. Q: What about the sinking ship effect? On a Flat Earth, shouldn't they ship stay visible? A: Unknown. Possibly the laws of perspective are flawed, mostly the theory of the vanishing point. Q: What about lunar/solar eclipses/phases? A1: There is an unknown object known as the \"Shadow Object\" which passes in front of the moon/sun. A2: The light from the sun that is reflected onto the moon is disrupted by objects on the surface of the Earth. Q: How about Great Circle Routes in the Southern Hemisphere? If the Flat Earth curves in the opposite direction as the Round Earth, they shouldn't work. A1: Unknown. Possibly pilots are misleading passengers. A2: Unknown. Possibly the planes are using jet streams, causing a shorter flight time. Q: What about the Coriolis Effect on"}, {"title": "bm25", "text": "the moon disappeared. (In the moon poem, for a real challenge, make an allusion to the old tv show, Space 1999, if anyone remembers that!) Fluorescent Lights as Thieves; or Me & My Bones; or In the Event of Light, the Only Safe Place is Under the Desk Where I work is good place. Good, creative people making a fine product. But I noticed something most odd the other day when I was turning the corner. You see, when I turn corners, I listen to hear if anyone is coming, I try to look through the corners (which can be done if you know how) to see if anyone is coming, & I look to the floor for shadows to see if anyone is approaching, for I don\u2019t want to have a collision at the corner. And then I realized, after never seeing a shadow approach a corner despite hearing a person & seeing a person through corner walls that people at work don\u2019t cast shadows. It\u2019s strange. Some of the cubicle walls cast shadows, & there is always a shadow under my desk (or is it just dark?). But people here have no shadows. To which my friend responded, \u201cWe are the shadows.\u201d I think it\u2019s just the fluorescent lights . . . not the people. I mean, I\u2019ve seen their shadows on the sidewalk outside. I\u2019ve seen the shadows get into their owner\u2019s (or does the shadow own the person) car. But anyhow. Here is the assignment. Imagine a world where only inanimate objects"}, {"title": "bm25", "text": "can happen only during a full moon, when the Moon and the Sun are on opposite sides of Earth. At that point, the Moon can move into the shadow cast by Earth, resulting in a lunar eclipse. However, most of the time, the Moon\u2019s slightly tilted orbit brings it above or below Earth\u2019s shadow. The time period when the Moon, Earth and the Sun are lined up and on the same plane \u2013 allowing for the Moon to pass through Earth\u2019s shadow \u2013 is called an eclipse season. Eclipse seasons last about 34 days and occur just shy of every six months. When a full moon occurs during an eclipse season, the Moon travels through Earth\u2019s shadow, creating a lunar eclipse. When a full moon occurs during an eclipse season, the Moon travels through Earth's shadow, creating a lunar eclipse. Credit: NASA/JPL-Caltech | + Enlarge image Unlike solar eclipses, which require special glasses to view and can be seen only for a few short minutes in a very limited area, a total lunar eclipse can be seen for about an hour by anyone on the nighttime side of Earth \u2013 as long as skies are clear. The Moon passes through two distinct parts of Earth\u2019s shadow during a lunar eclipse. The outer part of the cone-shaped shadow is called the penumbra. The penumbra is less dark than the inner part of the shadow because it\u2019s penetrated by some sunlight. (You have probably noticed that some shadows on the ground are darker than others, depending on how"}, {"title": "bm25", "text": "A quiet couple and a beautiful, lazy sunny day spent lingering at the cafe after the crowd had disappeared. Light and shadow caught my eye and what more says warm summer day than brightly colored umbrellas? Pastel, 12 x 18, framed under museum glass. \u200bThis scene is what summer is about when spending long lazy days at the Cape. I came upon this couple just relaxing mid afternoon, after the crowds had already left. Sunlight coming through those brightly colored umbrellas cast a warm shadow underneath. I knew it was something that I wanted to paint."}, {"title": "bm25", "text": "How To Make a Pinhole Solar Viewer | David Chandler Company, Inc. If you are just getting up to speed on the 2017 Total Solar Eclipse in the United States it may be too late to find safe, certified Eclipse Glasses in your area. Don\u2019t despair, there are other ways to view the event. This is one of them. Many of you may have made a pinhole camera in the past, and a pinhole solar viewer works in exactly the same way. Because we are at such a distance, light from the Sun is traveling in rays that are close enough to parallel that focal distances and hole diameters are not highly critical. In fact, just about any hole in any opaque material will do. The size of the hole can (and should) be much bigger than a pin. The simplest form of this type of viewer can be constructed with just an index card! Simply poke a hole in the card, hold it above the ground (or another index card) while facing AWAY from the Sun and look at the shadow of the card. The light coming through the hole will form an image of the Sun. As the Moon starts to pass in front you will see its round shadow begin to cover the Sun. By constructing the viewer inside a cardboard box we can block some of the ambient light for a better view. Materials needed are a medium sized cardboard box, a small piece of aluminum foil, some tape, a sharp knife"}, {"title": "bm25", "text": "brings it above or below Earth\u2019s shadow. The time period when the Moon, Earth and the Sun are lined up and on the same plane \u2013 allowing for the Moon to pass through Earth\u2019s shadow \u2013 is called an eclipse season. Eclipse seasons last about 34 days and occur just shy of every six months. When a full moon occurs during an eclipse season, the Moon travels through Earth\u2019s shadow, creating a lunar eclipse. When a full moon occurs during an eclipse season, the Moon travels through Earth\u2019s shadow, creating a lunar eclipse. Credit: NASA/JPL-Caltech Unlike solar eclipses, which require special glasses to view and can be seen only for a few short minutes in a very limited area, a total lunar eclipse can be seen for about an hour by anyone on the nighttime side of Earth \u2013 as long as skies are clear. The Moon passes through two distinct parts of Earth\u2019s shadow during a lunar eclipse. The outer part of the cone-shaped shadow is called the penumbra. The penumbra is less dark than the inner part of the shadow because it\u2019s penetrated by some sunlight. (You have probably noticed that some shadows on the ground are darker than others, depending on how much outside light enters the shadow; the same is true for the outer part of Earth\u2019s shadow.) The inner part of the shadow, known as the umbra, is much darker because Earth blocks additional sunlight from entering the umbra. During a total lunar eclipse, the Moon first enters into the penumbra,"}, {"title": "bm25", "text": "the shadow of the Earth. But the Earth doesn\u2019t actually cast one super-delineated shadow. There are two components: the penumbra and umbra. \u201cThe reason there are these two portions of the Earth's shadow, umbra and penumbra, is because the sun is not a single small point, it's got this big disk,\u201d says Noah Petro, a research scientist at NASA\u2019s Goddard Space Flight Center. So the penumbra is more a partial shadow, caused by a portion of the sun being blocked by the Earth. image : NASA You can see that light sneaking through in the penumbra. If you glimpse the moon when it\u2019s there, it still won\u2019t have the reddish or orangish or brownish hue it takes on during the so-called blood moon. \u201cOnly once it passes completely into the Earth's umbra does it turn that red color, and the reason for that is because it's very, very dim,\u201d says Petro. \u201cSo just having any part of the moon illuminated by sunlight during an eclipse, washes out that red color that you would eventually see when it's in totality.\u201d That bizarre color comes from Earth itself. As sunlight passes through our atmosphere, it interacts with particles like dust, scattering certain colors. Specifically, blue, which has a shorter wavelength. Red and orange with their longer wavelengths will pass right through. It's nearly impossible to compare the apparent size of the supermoon with a micromoon from memory, but when seen side-by-side as in this graphic, it becomes clear. NASA/JPL-Caltech Think about the different kinds of light you see"}, {"title": "bm25", "text": "is of a rather rapid and accelerating sequence of phenomena -the level of ambient light decreases faster and faster, the lunar shadow materialises more and more noticeably and comes rushing towards the observer, the photospheric crescent shrinks and breaks into rapidly vanishing Baily's beads, often one last bright point of light shimmers past the lunar edge at the same time as the solar corona fully comes into view and then totality begins. The preceding dramatic and rapid progression of events is followed by the rather calm, albeit spectacular, phase of totality that evolves far more subtly. From the limit this familiar experience is upended and turned into a rather alien experience. We would like to describe what we saw from observing the 2017 August 21 st total solar eclipse from just a few hundred meters inside the southern limit of the umbral shadow path. A couple of minutes before second contact, the progression of the eclipse started diverging from the common picture usually reported by seasoned observers. The ambient light level decreased organically without noticeable acceleration -it was as if the entire sky, almost without noticing, took a deep purplish-blue tinge. Instead of an acceleration of transient phenomena, the exact opposite occurred -a deceleration of transient phenomena. The mad rush of the breaking of the photospheric crescent into rapidly vanishing Baily's beads that happens over 10-15 s at the centreline got extended to over a minute or more. From our observing site we observed for 30-35 s, with the naked eye and without eclipse glasses, three"}, {"title": "bm25", "text": "73$^\\circ$ E (2 and 3) due to zonal motions. The B image is shown rotated counterclockwise 90$^\\circ$ from its position in Fig.\\ \\ref{Fig:shadow} to put the cloud features in roughly the same orientation as in A, at a time when the sun is incident from roughly the opposite direction. Note in particular the effects of sun reversal at boundary 3, which in A displays a relatively bright antishadow to its right with sunlight incident from the left, but in B, the antishadow disappears and the same edge casts a shadow to the left resulting from sunlight here coming from the right. If the shadow had been cast by a wall, that wall should appear to VIMS as a bright feature in A, extending to the left, opposite to what is observed.}\\label{Fig:closeup} \\end{figure} \\begin{figure}[!t]\\centering \\includegraphics[width=3.5in]{ICARUS-2019-4R1_fig04cmp.eps} \\caption{Photographs of tracing-paper physical models illustrating two alternative shadow production mechanisms: a sharp change in optical depth of a translucent layer (top) or a step change in cloud pressure at an eyewall edge (bottom). Light from the sun is indicated by yellow rays, and light to the observer is indicated by blue rays. Each model produces a shadow on the lower layer when the transition is located on the sun-ward side (left) of the pole. But on the opposite side (right) the translucent layer model displays a moderately bright ``antishadow'' produced by light shining underneath the top layer and providing extra illumination from below, while the alternate model displays a brightly illuminated eyewall. When illuminated and observed at the angles illustrated here,"}, {"title": "bm25", "text": "mechanics of their tinfoil-and-cardboard pinhole projectors to anyone who\u2019d listen. They gawked, wide-eyed, at the much larger telescopes operated by scientists from the University of Toronto, who organized the free viewing event for CNE goers near the Better Living Centre. Matt Russo, a theoretical astrophysicist who\u2019s worked on translating the structure of planetary systems into music, was no less excited about the cosmic anomaly. \u201cWe\u2019ve got this incredible projection telescope that lets us look at the sun in real time,\u201d he explained, pointing to the white space near the bottom where shadows and light painted an image of the sky. The event wasn\u2019t just an eclipse, he added. Viewers could also look out for a dazzling array of sunspots in Monday\u2019s skies. For those without a projection telescope, methods of viewing the event ranged from simple \u2014 paper-rimmed glasses, which CNE-goers lined up for \u2014 to experimental. Wielding a kitchen colander and a sifter, retired Grade 2 teacher Anna Werbowy of Mississauga demonstrated how to cast tiny shadows onto a surface below. \u201cI was watching the live broadcast about the eclipse and there was a young scientist interviewed,\u201d she said. The scientist suggested using the kitchen apparatus, but Werbowy wasn\u2019t entirely sure how to do it. As she walked through the CNE, she stopped a group of young scientists and asked them if it would really work. \u201cAnd they said, \u2018Sure, that would work!\u2019\u201d she said, laughing. Together, they figured out how to use the equipment to cast shadows of \u201clittle moons, instead of a hole\u201d"}, {"title": "bm25", "text": "Shadows,\u201d we\u2019ll be able to speak of photos of the event horizon of a black hole. What will we see? What will we learn about gravity and how it distorts light and matter just outside such a massive black hole? These are exciting times! We have seen black holes colliding and rippling the fabric of space-time, bringing messages to us from the event horizons of newly formed black holes. Soon, we will have a radio image of the event horizon of a black hole. I wonder what can be learned from all of this? \u201cReality in the Shadows (or) What the Heck\u2019s the Higgs\u201d by S. James Gates Jr., Frank Blitzer, and Stephen Jacob Sekula. Available from Amazon.com, Barnes and Noble, Books a Million!, YBK Publishers, and other book retailers. \\$26.95. Description: In recent years, we have learned that the commonplace materials described by the scientific findings we have so far discovered portray but a tiny piece of a much greater universe\u2013a universe ruled by vast mysteries that appear to shape reality at both its largest and smallest sizes. That universe is now coming to be better understood. You will see how this has happened and how the shadows in the unknown slowly continue to be lit and identified. Reality in the Shadows is a chronicle of the men and women who cast light on these mysteries of our existence, a look into some of the brilliant ideas that they presented, and a longer look at the new and even greater mysteries of the cosmos that"}, {"title": "bm25", "text": "The earth and the moon cast their shadows leading to the phenomena of eclipses. At times, the sun, the earth and the moon come to lie in a straight line. The object in between casts a shadow and causes an eclipse. There are two kinds of eclipses, the lunar and solar eclipse. Lunar Eclipse The lunar eclipse occurs when the sun, earth and moon are in a straight line, with the earth in between the sun and the moon. The shadow of the earth is cast on the moon. If the moon is in the umbra cone of the earth, it will not be visible because the moon is non\u2013luminous and since it does not receive any light from the sun, it does not reflect any light. This is called a total lunar eclipse. If the moon is slightly out of line, it will not be completely in the umbra cone of the earth. It then receives some light from the sun which it reflects to the earth and makes itself partially visible. This is called a partial lunar eclipse. A lunar eclipse can occur only on a full moon day. Solar Eclipse A solar eclipse occurs when the sun, earth and the moon are in a straight line, with the moon between the sun and the earth. The shadow of the moon is cast on the earth. The portion of the earth falling completely in the umbra region has total solar eclipse. The sun appears as a black circular disc with a ring of light."}, {"title": "bm25", "text": "passengers but for photographers, this is a dream come true. Just think about all the images at the New York Central station where the sun is just merely entering the station through the windows. You can capture images like during the morning or evening when sun is at a lower angle again. For added effect, smoke works wonders with the light rays just passing in. Stations where you are allowed to vape an e-cigarette would be my favorite choice. So far, the sun was mostly the highlight of the scene itself. Creating a scene of high contrast needs the support of the sun as well, but is more built around the shadows and darker areas. Much like the normal shadow pictures, this time we can search for high buildings that are able to cast a massive shadow and leave only little light left to illuminate the scene. Another place where you can capture photos of high contrast is under bridges. Here you need to face the tunnel while the sun is diagonally behind your back. Search for the edges where the shadow begins to start and photograph the people as they are exiting the dark tunnel. Images like these almost look like you have used a flash, but instead, you utilized the natural contrast to create negative space in your photography. I am Sebastian Jacobitz, a 28 year old hobby Street Photographer from Berlin, capturing the everyday life in this city. Street Bounty is your resource for Street Photography and contemporary Documentary Photography. Thanks for summarizing"}, {"title": "bm25", "text": "Q: Why is a gibbous moon possible? This could be a silly question to ask, but I would like to know why is a gibbous moon shape possible. From the few cases I've drawn here, I could not think of a configuration where the Earth's shadow can be cast on the Moon in a way that leads to a gibbous shape of the bright part of Moon. In my diagrams, grey represents bright and black represents shadowed portions of the Moon (smaller circles, with the bigger circles being Earth). As for the order of the celestial bodies, the Sun is out of the screen, Earth is on the screen and the Moon is inside the screen. That could be a crude arrangement but it's the only one I can come up with to cast shadows, though I can accept the fact that there could be more complex 3-D arrangements. A: The shadow in a gibbous Moon is not caused by the Earth's shadow \u2500 Earth plays no role in that arrangement, beyond being the place where the observer sits. Instead, the shadow in a gibbous Moon is simply cast by the Moon itself. The correct arrangement is as follows: (With due apologies for the poor drawing quality.) This means, in particular, that your depiction of how the gibbous Moon looks like is incorrect: the terminator (i.e. the line between the illuminated and dark sides) is a meridian, and it passes (at least, modulo inclinations and so on) through the North and South poles. (This is true"}, {"title": "bm25", "text": "parade. No flags. No fireworks. It was going to be hot for our hike out. Blazing sun and perspiration. But first we sit beside the mirror lake on our blue mats sipping tea and mocha, swallowed by the buzzing of a thousand insects. Pollinators. Clear sky, except for a few vague vapor trails drifting east. Later in that calm morning, a pattern of high cirrus would turn the vapor trails into wispy feathers. Dragonflies dance over the water, do-si-doing around each other, dropping to kiss the mirrored surface. Fish, some eight inches long, explode into our rarer medium like Olympians in training. Expanding rings pass through one another. Before the wind comes up. Before the beginning of time. I \"see\" their motion in the everyday moment. Just how wide is the present moment, in which all consciousness takes place? The rising sun casts long shadows. I do not \"see\" them move. With a shadow, it is different. To perceive the motion of a shadow, I must mark a leaf, a twig, a stone, and then look back a few moments later to see if the line between light and dark has advanced. This is not short-term memory. This does not arise in the \"present moment.\" The movement of shadows is a fabrication of the mind. Albert Einstein wrote, \"People like us, who believe in physics, know that the distinction between past, present, and future is only a stubbornly persistent illusion.\" Is this not the legacy of our larger brains? Natural selection favored the construction of a"}, {"title": "bm25", "text": "full moon, when the Moon and the Sun are on opposite sides of Earth. At that point, the Moon can move into the shadow cast by Earth, resulting in a lunar eclipse. However, most of the time, the Moon\u2019s slightly tilted orbit brings it above or below Earth\u2019s shadow. The time period when the Moon, Earth and the Sun are lined up and on the same plane \u2013 allowing for the Moon to pass through Earth\u2019s shadow \u2013 is called an eclipse season. Eclipse seasons last about 34 days and occur just shy of every six months. When a full moon occurs during an eclipse season, the Moon travels through Earth\u2019s shadow, creating a lunar eclipse. Unlike solar eclipses, which require special glasses to view and can be seen only for a few short minutes in a very limited area, a total lunar eclipse can be seen for about an hour by anyone on the nighttime side of Earth \u2013 as long as skies are clear. During a lunar eclipse, the Moon passes through two distinct parts of Earth\u2019s shadow. The outer part of the cone-shaped shadow is called the penumbra. The penumbra is less dark than the inner part of the shadow because it\u2019s penetrated by some sunlight. The inner part of the shadow, known as the umbra, is much darker because Earth blocks additional sunlight from entering the umbra. During a total lunar eclipse, the Moon first enters into the penumbra, or the outer part of Earth's shadow, where the shadow is still penetrated"}], "hoverinfo": "text"}, {"x": [0.09786628186702728, 0.022738801315426826, 0.15829913318157196, 0.1619056761264801, 0.14066793024539948, 0.1664133220911026, 0.17037738859653473, 0.1828850954771042, 0.23222926259040833, 0.1777459979057312, 0.15108776092529297, 0.06154938414692879, 0.1505974978208542, 0.07806169241666794, 0.05164331942796707, 0.15133905410766602, 0.17957650125026703, 0.17583821713924408, 0.1500990390777588, 0.15108734369277954, 0.15808022022247314, 0.12320351600646973, 0.05980907008051872, 0.1615983098745346, 0.17442427575588226, 0.16013504564762115, 0.16642016172409058, 0.20555271208286285, 0.14261998236179352, 0.16986621916294098, 0.14441509544849396, 0.12762275338172913, 0.1679392158985138, 0.08692538738250732, 0.03894039988517761, 0.14615431427955627, 0.09417323023080826, 0.08992096781730652, 0.11982208490371704, 0.16242046654224396, 0.14104795455932617, 0.14466814696788788, 0.146677628159523, 0.2027306854724884, 0.1310296505689621, 0.09233205020427704, 0.10089495778083801, 0.15686163306236267, 0.10610096156597137, 0.07783312350511551, 0.16951477527618408, 0.1357416957616806, 0.13489922881126404, 0.2003050446510315, 0.1013704463839531, 0.14954687654972076, 0.15234361588954926, 0.13620679080486298, 0.12501521408557892, 0.14489659667015076, 0.18240134418010712, 0.16480907797813416, 0.11479439586400986, 0.12335982173681259, 0.16461576521396637, 0.1571810096502304, 0.10355531424283981, 0.18039095401763916, 0.16648052632808685, 0.10920824855566025, 0.17962299287319183, 0.07071896642446518, 0.0685238465666771, 0.0685238465666771, 0.15829919278621674, 0.16648052632808685, 0.12236184626817703, 0.0927027091383934, 0.11683304607868195, 0.07933393865823746, 0.1713941991329193, 0.07409381866455078, 0.10746268928050995, 0.14886663854122162, 0.11902832239866257, 0.08683961629867554, 0.08402685821056366, 0.14441509544849396, 0.15854676067829132, 0.21276213228702545, 0.18186646699905396, 0.09841946512460709, 0.19043771922588348, 0.09269754588603973, 0.1948869675397873, 0.10762716829776764, 0.16442619264125824, 0.06664139032363892, 0.13519753515720367, 0.0835614874958992, 0.12086259573698044, 0.10797860473394394, 0.13145293295383453, 0.21276213228702545, 0.10033852607011795, 0.09269754588603973, 0.12334959954023361, 0.010507136583328247, 0.04023045301437378, 0.07183760404586792, 0.0797078087925911, 0.19535650312900543, 0.08692538738250732, 0.050730008631944656, 0.11964758485555649, 0.13087022304534912], "y": [-0.15207307040691376, -0.02775418758392334, 0.010833222419023514, -0.035340894013643265, -0.059342071413993835, -0.018090900033712387, -0.07392421364784241, 0.030123069882392883, -0.04781926050782204, 0.02933536469936371, -0.08245591819286346, -0.057315655052661896, -0.04355248808860779, 0.009164217859506607, -0.010418442077934742, -0.09401492029428482, -0.01615634188055992, -0.09517458081245422, -0.07783054560422897, -0.028592072427272797, -0.034847892820835114, -0.05431228503584862, -0.12525717914104462, -0.029234634712338448, -0.05708885192871094, -0.11171401292085648, -0.02773580327630043, -0.057743508368730545, -0.08743687719106674, -0.044301941990852356, -0.07702480256557465, -0.13803382217884064, -0.09070786833763123, -0.01917441375553608, -0.08405894041061401, -0.040706511586904526, 0.008535581640899181, -0.14372140169143677, -0.003542163874953985, -0.10614966601133347, -0.09139446914196014, 0.06473926454782486, -0.12025483697652817, 0.020903144031763077, -0.027289194986224174, -0.11989312618970871, 0.03388543054461479, -0.07128395885229111, -0.14161323010921478, 0.007793448865413666, -0.04268205165863037, 0.03052009828388691, 0.07321193814277649, -0.005231726448982954, -0.10918060690164566, -0.08471477031707764, -0.06982066482305527, -0.06943324208259583, -0.11591046303510666, -0.06666280329227448, -0.06418576091527939, -0.07648778706789017, -0.04670635983347893, -0.10610432177782059, -0.10350015759468079, -0.06878834217786789, -0.018765605986118317, -0.05947131663560867, -0.02638634294271469, -0.08080460131168365, -0.08539408445358276, -0.006463449448347092, -0.0010833503911271691, -0.0010833503911271691, 0.01083341520279646, -0.02638634294271469, -0.06829334795475006, 0.01693294756114483, 0.025795603170990944, -0.07058404386043549, 0.02261471375823021, -0.04794084280729294, -0.002600461943075061, -0.044758252799510956, -0.03787917271256447, -0.01998414844274521, -0.025809215381741524, -0.07702480256557465, -0.09111930429935455, -0.06386442482471466, -0.004454456735402346, -0.024958036839962006, 0.0007899106130935252, -0.05913154035806656, -0.04655022546648979, 0.010319802910089493, -0.1069946438074112, 0.006113436073064804, -0.14139330387115479, -0.12978926301002502, 0.03161216527223587, 0.009025126695632935, -0.051915306597948074, -0.06386442482471466, -0.05215514823794365, -0.05913154035806656, -0.07374872267246246, -0.07422595471143723, 0.005276161711663008, -0.1369628757238388, -0.05565151944756508, -0.059413228183984756, -0.01917441375553608, -0.00870876107364893, -0.029820984229445457, -0.07386050373315811], "mode": "markers", "name": "Cluster 2", "marker": {"size": 8, "color": "rgb(190,186,218)"}, "text": ["Document 1", "Document 2", "Document 13", "Document 16", "Document 31", "Document 33", "Document 36", "Document 61", "Document 67", "Document 69", "Document 84", "Document 86", "Document 98", "Document 117", "Document 120", "Document 124", "Document 125", "Document 126", "Document 132", "Document 146", "Document 176", "Document 179", "Document 180", "Document 195", "Document 204", "Document 209", "Document 213", "Document 217", "Document 219", "Document 223", "Document 229", "Document 235", "Document 239", "Document 241", "Document 244", "Document 249", "Document 254", "Document 257", "Document 275", "Document 280", "Document 301", "Document 309", "Document 319", "Document 321", "Document 327", "Document 343", "Document 346", "Document 371", "Document 372", "Document 374", "Document 377", "Document 383", "Document 385", "Document 386", "Document 398", "Document 399", "Document 405", "Document 409", "Document 412", "Document 419", "Document 430", "Document 438", "Document 439", "Document 443", "Document 448", "Document 456", "Document 476", "Document 478", "Document 486", "Document 499", "Document 511", "Document 512", "Document 535", "Document 536", "Document 543", "Document 548", "Document 556", "Document 614", "Document 628", "Document 629", "Document 631", "Document 660", "Document 676", "Document 707", "Document 718", "Document 734", "Document 735", "Document 749", "Document 764", "Document 781", "Document 794", "Document 808", "Document 847", "Document 876", "Document 881", "Document 891", "Document 892", "Document 905", "Document 940", "Document 942", "Document 993", "Document 1048", "Document 1158", "Document 1179", "Document 1208", "Document 1217", "Document 1220", "Document 1261", "Document 1351", "Document 1355", "Document 1383", "Document 1391", "Document 1423", "Document 1434", "Document 1450", "Document 1490"], "customdata": [{"title": "rpj-stackexchange", "text": "light that hits the object passes through, but the light's direction is bent by the object. If the direction is bent enough, the light that passes through the object will be angled out of the forward-traveling beam. As a result, the beam will have a dark spot; a shadow. Consider completely transparent objects such as glass cups, bottles of water, or the lenses of eyeglasses. Even though such transparent objects do not absorb or reflect very much light, they still interact with light through refraction. Refraction is what makes transparent cups visible to our eyes. Refraction also enables clear objects to cast shadows. Take off your eyeglasses and place them on the table at night under the illumination of a single lamp and you will see a distinct shadow caused by the transparent lenses. Although air is almost perfectly transparent, it can still cast shadows via refraction. The key principle regarding refraction is that light is bent when the index of refraction differs from one location to the next. Air and glass are different materials and have different indices of refraction. Light therefore bends when it goes from air into glass, such as at the surface of a glass lens. Refraction does not happen inside a glass lens because the material inside the lens is uniform. Refraction happens at the surface of a glass lens because that is the only place where the index of refraction differs. Uniform air itself cannot refract light and create shadows because the index of refraction does not differ anywhere. But,"}, {"title": "rpj-stackexchange", "text": "glass-air surfaces -- then not all the light reaches you. The result of this is shadows with fairly hard edges. A: It appears to me that your piece of glass is beveled on the edges. When I place a beveled and non beveled piece of glass side by side directly under a light only the beveled one has the shadow.The angled edges are reflecting and refracting the light away from the area directly below."}, {"title": "rpj-common-crawl-2020-05", "text": "tank is a good way to see this sort of thing. (You don't usually get thick enough glass on its own.) I don't have a fishtank so I can't do that. But I'm happy to know that I was correct about it For once :tongue2: Next time you go to an Indian or Chinese takeaway, see if they have a fishtank (very popular in UK takeaways) and look at the dispersion of light from the edges of light sources behind the tank (it needn't be a slit- you can just look at an edge for the effect to show itself). It's nice to have something to do whilst you're waiting but you may have to explain your weird behaviour by giving a Physics lecture to the assembled customers. A pet / aquarian shop would do. Related Threads for: Formation of spectrum of colors when light passes through a flat pane of glass What happens in terms of absorption when a light passes through a green transparent glass? Why does light intensity decrease when light passes through a glass block? How do I asses the % of light transmission that passes through glass When bulb light passes through a prism Light passing through the normal of a surface Reflection of light through a wine glass with water Light through glass ? When elctrons pass through a bulb it poduces heat and light why? B Is Voltage a measurement of pressure? B What parameters of physics are most important to the existence of life? B Falsifiability -- What"}, {"title": "math", "text": "if that should possibly be supposed, it will avail nothing; for the reflection is as strong, if not stronger, when the air is drawn away from the glass (suppose in the air-pump invented by Mr. BOYLE) as when it is adjacent to it. Secondly, if light in its passage out of glass into air be incident more obliquely than at an angle of forty or forty-one degrees, it is wholly reflected; if less obliquely, it is in great measure transmitted. Now it is not to be imagined, that light at one degree of obliquity should meet with pores enough in the air to transmit the greater part of it, and at another degree of obliquity meet with nothing but parts to reflect it wholly; especially considering, that in its passage out of air into glass, how oblique soever be its incidence, it finds pores enough in the glass to transmit the greatest part of it. <304> If any man suppose, that it is not reflected by the air, but by the utmost superficial parts of the glass, there is still the same difficulty; besides, that such a supposition is unintelligible; and will also appear to be false, by applying water behind some part of the glass instead of air. For so in a convenient obliquity of the rays, suppose of forty-five or forty-six degrees, at which they are all reflected, where the air is adjacent to the glass, they shall be in great measure transmitted, where the water is adjacent to it; which argues, that their"}, {"title": "rpj-common-crawl-2021-04", "text": "together to form a real image -- an image that looks just like the scene in front of the lens. But how can a piece of glass do this? The process is actually very simple. As light travels from one medium to another, it changes speed. Light travels more quickly through air than it does through glass, so a lens slows it down. When light waves enter a piece of glass at an angle, one part of the wave will reach the glass before another and so will start slowing down first. This is something like pushing a shopping cart from pavement to grass, at an angle. The right wheel hits the grass first and so slows down while the left wheel is still on the pavement. Because the left wheel is briefly moving more quickly than the right wheel, the shopping cart turns to the right as it moves onto the grass. The effect on light is the same -- as it enters the glass at an angle, it bends in one direction. It bends again when it exits the glass because parts of the light wave enter the air and speed up before other parts of the wave. In a standard converging, or convex lens, one or both sides of the glass curves out. This means rays of light passing through will bend toward the center of the lens on entry. In a double convex lens, such as a magnifying glass, the light will bend when it exits as well as when it enters."}, {"title": "rpj-stackexchange", "text": "a slanted angle? Also the colours get repeated after some interval which would imply that thickness decreases then increases or that the angle somehow (still confused about the angle argument) to give thaf red which seems unlikely. *You have mentioned that reflected light enhances the effect (which I also think) but putting a mirror where image is formed does not give any colour. So why would reflection from floor only do this and not the mirror? 3)\"The glass changes the angle (and it does so differently for different wave-lengths) at different points, therefore, light gets censored differently at different points\" yet the colours have a width and are uniform. This would imply that the change in angle at different points etc etc would have to happen in a very special way to give this pattern. A: What is happening, in my opinion, is the result of two effects: First one is to notice that the glass of your window is most probably not uniform. Meaning, as a guess, it is thinner on the top and gradually gets thicker to the bottom, but in a very slight manner that only light feels it. What does this cause? Well if the glass also has two different refraction indices, say $n_v$ for vertical refraction index and $n_h$ for horizontal refraction index, then the polarization of the light traveling through the glass will rotate due to this non-isometry $n_h \\neq n_v$. But remember that the glass at some point is thicker than the others; which leads to the fact that"}, {"title": "rpj-common-crawl-2019-30", "text": "the convex lens, but also because this is the thinnest part of the lens, and it also lies at the furthest point, away from the denser outer bases of the prisms. And it follows that when the speed of a beam of light passing through a glass lens/medium, is measured against the speed of a light beam passing through a vacuum or through the atmosphere; the light speed will be less in the glass medium, because of the \"nucleon gravitational pull\" being exerted on the photons, during their passage through the greater density of the glass medium. And if we were we to use to use a snooker cue, to superimpose/impact the same angles of impact as those angles of light entering the glass sphere as shown in diagram B, onto the solid sphere of a snooker ball; we would find that the snooker ball would travel forward directly in line, with the line of angle extending from/between the point of impact on its solid body, and its centre of gravity. Because there is essentially no difference between the energy of a cohesive beam of light force, entering a solid transparent object, than there is of the energy of a cohesive beam of compacted (Kinetic) force (or the downward acting force of gravity), entering a solid none transparent object. It is only the amounts and types of energy involved, and their methods of delivery that is different; the mechanics of energy passing through an object, always remains essentially the same. Refer to Dr Quantum Double Slit"}, {"title": "rpj-c4", "text": "window will turn into some sort of deeply frosted glass that will randomly scatter light in every direction. If windows are made of zillions of randomly arranged excitable molecules, then windows can not be transparent. That's what I would predict. The first optical miracle is that windows are transparent. But the second, third and fourth miracle are even better. Ewald proves for random media like glass (and Oseen does the same for ordered media such as crystals), that the net result of all of those zillions of little excited light waves add up to zero in every direction but three. Only three big waves survive the fierce destructive interference between zillions of little waves. The first surviving wave travels in the same direction as the incident wave but vibrates exactly 180 degrees out of phase with the incident wave. Thus the incident wave is extinguished as it passes into the glass over a length of a few tenths of a micron (the extinction length). This exceedingly unlikely mechanism for extincting the incident wave gives the extinction theorem its odd name. Two more waves survive the Great Destruction -- the reflected wave that seems to bounce off the glass but in reality is created by zillions of tiny molecules all radiating with the proper timing to direct a beam only in the reflected direction (and no other) much in the manner of phased-array radar antennas which do not physically move but are aimed by changing the phase relation between separate fixed transmitters. The glass molecules (like the"}, {"title": "rpj-common-crawl-2022-05", "text": "you need the photons to come out of the medium going in the same direction as they went in. If photons are scattered in all different directions, you get a translucent or opaque medium. Transparency is only achieved when the photons that come out have the same velocity and frequency as those going in, or at least when the outgoing velocity depends in some simple fashion on the incoming velocity, as with a lens. Since the photon that comes out of glass is going in the exact same direction as the photon that went in, something very interesting is happening inside the glass. The photon reaches the glass and is immediately absorbed by an electron. Sometime later, the electron emits a new photon. The new photon is travelling in exactly the same direction as the old photon. The new photon is absorbed by the next electron, which later emits another photon, again travelling in the exact same direction. This process repeats billions of times until the final photon is ejected on the other side of the glass, still in the exact same direction, and goes on its way. Even a tiny amount of random scattering of the photons would disrupt the transparency completely. So, I thought, I would expect to find transparency in media that have a very rigid crystalline structure, so that the electromagnetic interactions would be exactly the same at each step. But in fact we find transparency not in crystalline substances, such as metals, but rather in amorphous ones, like glass and water!"}, {"title": "rpj-common-crawl-2022-05", "text": "the glass are not the same ones that went in to the glass. As photons hit the glass, they scatter off the atoms in the glass \u2014 or rather, they are absorbed by the glass atoms, inducing a vibration of the atom, and then the vibration causes a new photon to be emitted in a random direction. There\u2019s a delay between when the photon is absorbed and when the new one is emitted. https://www.quora.com/When-photons-travel-through-glass-their-speed-is-reduced-When-they-exit-the-glass-e-g-into-a-vacuum-their-speed-will-be-higher-What-gives-them-the-energy-to-accelerate How does image fidelity survive the process, rs? Why does glass not pass IR and UV? Too far out of range for the material to absorb and emit? Windows have \u2018windows\u2019. I could never get a \u2018feel\u2019 for that, Wzrd1 #11. Relativistic Aberration: Half the speed of light, and we\u2019re developing eyes in the back of our head http://www.fourmilab.ch/cship/aberration.html I tried that game, Calli Arcale #22. It is certainly interesting though there is too much \u2018inertia\u2019 in the game mechanic sort of spoiling it \u2014 It\u2019s like trying to be nimble piloting a hovercraft or airboat. Why should a spirit have inertia anyways? Aether frame dragging? p.s. Anyone wishing to try it can safely ignore those \u2018system requirements\u2019; It looks as though they just posted it as the state of the art in 2012. Denice Waltersays: That\u2019s quite hilarious! I often wonder how many of the anti-vaxxers we follow hold *interesting* religious/ philosophical views as well. In other (non) news\u2026 it appears that at least two well-known woo-meisters ( Adams and Null) are again speculating upon the health of one HRC. At"}, {"title": "rpj-c4", "text": "fast enough to more than circle the globe seven times. When light goes through a transparent substance, such as glass or water, it is slowed down. It can travel only about two-thirds as fast through a piece of glass as it can through empty space or air, and about three-quarters as fast through water as through air. This slowing down is important, as it makes it possible for us to bend beams of light, and thus to make prisms, lenses, eye-glasses, telescopes, microscopes, cameras and other devices that help us to see better. When a light ray moves from one substance to another so that its speed is changed, the ray changes direction. This is called refraction. There are some objects which do not reflect light, but permit it to pass through, while slowing it down somewhat, according to the density of the object. Water, which is denser than air, will slow the light velocity by about one-fourth, while glass which is more dense, will slow its speed of travel by one-third. One can observe the changed effect in water, by dangling an object partially below and partially above the water\u2019s surface. Light directed head-on at a medium such as glass will not deflect or bend the ray of light. It will pass straight through. In order for refraction to occur, light must strike the medium at an angle other than 90\u00b0. Thus the spectrum colors reach the edge of the surface in different time sequence, so they are \u201csurprised\u201d into manifesting one by one in"}, {"title": "rpj-common-crawl-2021-04", "text": "glass about three-fourths full of water. The pencil will appear to be broken at the water surface, and the coin will appear to be on the side of the glass. This is a phenomenon produced by refraction. Why is it that we still have light long after the sun has disappeared over the horizon? And why do we have light in the morning before the sun comes into view? You guessed it! It is the law of refraction at work. As the sun\u2019s rays travel through space, they move very rapidly, as if in a vacuum, but when contact is made with the more dense atmospheric medium of the earth, the light decelerates, and is bend around the curvature of the earth by the law of refraction. This law causes the light to reach the surface before the sun appears in the morning, and to trail behind on the surface long after the early evening sun disappears. The great cloud of volcanic smoke will be firmly established as shown in figure 14 by the time the battle of Armageddon occurs. This great encompassing shroud will vertically be thousands of feet thick and, as such, a very dense medium through which the sun\u2019s rays must filter on their way to the earth\u2019s surface. As the rays filter through by refraction and scattering, they will be severely bent around the curvature of the earth\u2019s surface. As you may observe in figure 16, the small island, on the opposite side of the earth from the sun, would normally be"}, {"title": "math", "text": "reflection or transmission depends on the consitution of the air and water behind the glass, and not on the parts of the glass. Thirdly, if the colours made by a prism, placed at the entrance of a beam of light into a darkened room, be successively cast on a second prism placed at a great distance from the former, in such manner that they are all alike incident upon it; the second prism may be so inclined to the incident rays, that those, which are of a blue colour, shall be all reflected by it; and yet those of a red colour pretty copiously transmitted. Now if the reflection be caused by the parts of air or glass, I would ask, why at the same obliquity of incidence the blue should wholly impinge on those parts so as to be all reflected, and yet the red find pores enough to be in great measure transmitted. Fourthly, where two glasses touch one another, there is no sensible reflection, as was declared in the first observation; and yet I see no reason, why the rays should not impinge on the parts of glass, when contiguous to another glass, a smuch {sic} as when contiguous to air. Fifthly, when the top of a water-bubble (in the seventeenth observation) by the continual subsiding and exhaling of the water grew very thin, there was such a little and almost insensible quantity of light reflected from it, that it appeared intensely black; whereas, round about that black spot, where the water was"}, {"title": "rpj-common-crawl-2022-05", "text": "it scatter, like a satellite or a hydrogen cloud. This is called diffuse reflection and is how we interpret light hitting uneven surfaces. The law of reflection we spoke of earlier still applies, but instead of one surface, the light is hitting countless surfaces that are microscopic. Mirrors, on the other hand, do not give a diffused reflection. Rather, they offer a specular reflection that allows light to reflect without disturbing an incoming image on its smooth surface. This complex concept brings up an interesting question: Why do mirrors turn right into left and left into right? Why are up and down not reversed? When you get down to it, mirrors do not actually reverse anything! Mirrors are simply switching front and back, just like a stamp or a printing press would. Try writing your name on a piece of paper with a black marker and hold it up to a mirror; it\u2019s backward. Just as if you were to hold it up to a light and look at it from behind. Your mirror image is essentially a light-print of you! Contact Murray Glass Next time you look in a mirror, you\u2019ll know precisely how mirrors work. For all of your glass and mirror needs, installation or repairs, commercial or residential, the experts at Murray Glass can help. Our number one priority is to ensure you are 100% satisfied. We proudly hold ourselves to the highest standards and offer only the highest-quality glass and mirrors. See why countless homes and businesses across the Wasatch Front in"}, {"title": "rpj-common-crawl-2019-30", "text": "examine the glass, and we find that the metal framework forms a cage with four sides, each approximately flat, but really slightly spherical. Each of these sides is called a \"panel.\" In the centre of each is a lens. Peeping through the interstices between the prisms, we perceive that the lamp is inside this structure, exactly in the centre, so that its light shines directly through the central lens or bull's eye. Around this bull's-eye are many circles of glass bar, forming refracting prisms. Around this again are more bars in the form of segments, which together form circles, some being refracting prisms and others reflecting prisms. All the light rays from the lamp which fall on any one prism are deflected, so that they proceed approximately in the same direction. Those prisms in the upper part lay hold of the rays which would otherwise go up into the sky. Those at the bottom collect those which would fall near the foot of the tower. So scarcely any are lost. But for the fact that the lamp itself is comparatively large and not a theoretical point, as already explained, the beam from this panel would be perfectly straight, parallel, and of uniform density everywhere. As it is, it widens slightly as it proceeds, but, practically speaking, we might call it a solid beam of light. Each of the panels sends forth such a beam, so that they strike out in four directions from the central lamp much as four spokes from the hub of a wheel."}, {"title": "rpj-c4", "text": "We've touched on visible light combining different wavelengths that bend in a slightly different ways to create different colours. Also how certain wavelengths get absorbed and some reflected when it hits and object. Now what happens when light passes through a substance, like water, or class, or the lens of your camera? Now take into consideration the angle that the light hits the medium; and if it moves from a denser medium to less or the other way around. You can see this when looking through a glass with water. The light will hit the glass and because it is a different density, will slow down and bend, again when it hits the water and again upon exit, distorting the image. Now how does this effect your photography? Ok so you can take some interesting distorted portraits through a fish bowl, but the true reason is lenses. The reason why we are able to capture the quality of light we do now is because we use a piece of glass that will bend and concentrate light onto a surface for us to capture. Different combinations and shapes will bend light to our will. Simplest form is a magnifying glass, combine that idea and you have a telescope. There are two main factors that that determine how much a lens bends the light. The reflective index(n) of a material is how much it slows down the beam. Air being n=1, water n=1.33, glass n=1.5 ect. Then the angle of incidence is the angle at which the light"}, {"title": "rpj-stackexchange", "text": "Q: Light Absorption of a glass I've the $n$ (refractive index of the glass sheet ) and $t$ (the thickness of the glass sheet) with this information, how can I find the amount light absorption of the glass sheet? A: Possibly some semantic confusion here. Glass, with a simple refractive index, does not \"absorb\" light, it is transparent. Therefore the amount of light that emerges on the other side, for a given angle of incidence, is independent of the thickness of the glass. Instead, some of the incident light is reflected from the first boundary as the light enters the glass, and some is reflected from the second boundary as it exits the glass. Perhaps this is what you are calculating? Have a look at Fresnel Equations. Of course, real materials do absorb/scatter light, but you need a complex refractive index to sort that out. Do you have a complex refractive index? If you do then the light is exponentially attenuated as it travels through the material, but the amount of intensity attenuation depends on the (vacuum) wavelength of the light, $\\lambda$, and the path length through the glass, roughly as $\\exp(-4\\pi \\kappa x/\\lambda)$, where $\\kappa$ is the imaginary part of the refractive index and $x$ is the path length (which will be $t$ for normal incidence, but larger for non-normal incidence). A: To add to Rob Jeffries's answer: the absorption data for glass are separate from the refractive index and are measured by measuring the attenuation of light through a known thickness of glass, after"}, {"title": "rpj-stackexchange", "text": "Q: Why doesn't a light ray bend again when emerging from a lens? This image is a representation for light passing through a convex lens. It shows light entering from air to glass. When the light enters the glass we can see that it bends towards the normal. Now when the ray of light leaves the glass and enters the air again, we see no refraction. What I expect: The ray of light should bend away from normal once it exits the glass because it is going from an optically denser medium to a rarer medium. Is it just a bad representation or the bend is negligible or I am getting something wrong? A: They technically should \"bend\" because of refraction, and a more accurate drawing would be this: But drawings like the one that you show usually just tell you the net effect of the lens, i.e. treating the lens as a black box and not a series of interfaces. In the derivation of the thin lens equation, however, both curved surfaces, refractive indices, and radii of curvature are taken into account. A: You are right. The drawing shown in your question is quite poor. Here is a much better drawing, which correctly shows the refraction of rays on both convex surfaces. The rays bend towards the normal when entering the glass. And they bend away from the normal when exiting the glass. (image from Toppr - Convex Lens) A: That diagram shows what's called the \"thin lens\" approximation. In real life, lenses have thickness,"}, {"title": "rpj-c4", "text": "Light interacts with different mediums by transmission including refraction , absorption or scattering. it depends on the medium. While doing so, light follows a set of laws i.e. for reflection , refraction etc. Aim of this experiment is to show the peculiarities of light when passing through different shapes of glass. A wonderful kit to understand the concept of reflection, refraction. A wonderful kit to understand the concept of critical angle and total internal reflection. Correlation between theory and practical becomes easier."}, {"title": "rpj-stackexchange", "text": "would reflection from floor only do this and not the mirror? *\"The glass changes the angle (and it does so differently for different wave-lengths) at different points, therefore, light gets censored differently at different points\" yet the colours have a width and are uniform. This would imply that the change in angle at different points etc etc would have to happen in a very special way to give this pattern. To answer these queries it is simpler to imaging that the incident light includes only one frequency (let's say red) of the whole visible spectrum. * *If the thickness of the glass gradually increases from top to bottom, then our red polarized light gradually rotates from top to bottom. Of course, the transformation of rotation is periodic, therefore after a while the direction of polarization comes back to its initial state. This then leads to having an image constructed by ordered bands of dark and light red. *The reflected light is polarized to some extent but there is an optimum angle for polarization that is different in different material. I suspect that if you look at the mirror while holding it with a different angle than the floor (probably almost perpendicular to the incident light) then you might be able to see the same phenomenon. *It is kind of a special way, since it is periodic. A: Your colour effect is somewhat similar to what can be seen through the windows of some trains. A part of the blue sky is a source of polarised light."}, {"title": "rpj-common-crawl-2020-05", "text": "mirror to the left must total 100%, since the mirror is the middle layer in the sandwich, and that's true no matter what material we use for that layer. So, (100-m) + k must be 100%, which can only be true if m=k. In short, if the mirror reflects more light on one side than the other, the \"brighter\" side ends up with more total energy, and objects placed on that side of the mirror will warm up, while objects on the \"dimmer\" side of the mirror will cool off. The second law says that can't happen. Consider a sheet of ordinary glass. When light enters it, not all the light goes in -- some is reflected. Call that fraction k%. Again, when the light exits the other side, some light is reflected inside the glass, and doesn't get out; call that fraction m%. Let's just consider light which strikes the glass perpendicularly (at a 90 degree angle), so we don't have to worry about the effects of refraction. Can we say anything about the values of k and m? We can, if we can eliminate one surface from consideration -- and that's something we can do. By careful choice of coatings on one surface of the glass, we can (nearly) eliminate reflections, both internal and external, from that surface. This is done commercially with multicoated camera lenses; they reflect far less light than ordinary (uncoated) glass. While real coatings only affect certain frequencies, we'll assume for the moment we can have an ideal anti-reflective coating,"}, {"title": "math", "text": "a single metal layer, Science (2017). DOI: 10.1126/science.aan5953 Journal reference: Science Provided by: ETH Zurich Read more at: https://phys.org/news/2017-11-optoelectronics-glass.html#jCp[url=https://phys.org/news/2017-11-optoelectronics-glass.html#jCp] Along the vines of the Vineyard. With a forked tongue the snake singsss... EA Posting Freak Posts: 9,721 Threads: 146 Joined: Jan 2006 Reputation: 16 11-12-2017, 09:12 PM (This post was last modified: 11-12-2017, 09:17 PM by EA.) The path length of light in opaque media November 10, 2017 Light on its way through a liquid: In case of a transparent liquid (left) light paths are straight lines. In case the liquid is made opaque through nanoparticles (right) light paths get more complicated through scattering. Some of the paths become longer, others shorter - on average though the length of light paths is the same as in the transparent case. Credit: Vienna University of Technology A seemingly paradoxical prediction in physics has now been confirmed in an experiment: No matter whether an object is opaque or transparent, the average length of the light's paths through the object is always the same. What happens when light passes through a glass of milk? It enters the liquid, is scattered unpredictably at countless tiny particles and exits the glass again. This effect makes milk appear white. The specific paths that the incident light beam takes depend, however, on the opacity of the liquid: A transparent substance will allow the light to travel through on a straight line, in a turbid substance the light will be scattered numerous times, travelling on more complicated zig-zag trajectories. But astonishingly, the average total distance"}, {"title": "rpj-common-crawl-2019-30", "text": "to refract it must pass through a medium different from the one it was travelling through. In space light travels at 100% because there is nothing to impede its progress. Its speed is reduced to 99.7% when it travels through air, and is further reduces to 75% when it travels through water. Because light waves slow down when passing through a denser medium, they bunch up. That is why if you place a pencil in a glass of water it appears to bend. Therefore, as there is neither air nor water on the Moon, refraction cannot occur. It was this phenomenon of refraction to which Aldrin had alluded, and not reflection. Note, too, the fall-off areas in the Aldrin photograph. Because the Moon has no atmosphere to pollute the light, hoax theorists claim these areas should be bright and crisp and not gradually fade into darkness. This so-called \u2018anomaly\u2019 is due to simple optic and lighting effects, however. The mid-to-foreground surface regions are being viewed from a different angle than that of the distant background surface. As Armstrong is focussing specifically on Aldrin in this shot the background naturally appears out of focus. The local terrain and light from the lunar module, which is situated to the left of Aldrin, also reflect significant amounts of light, as evidenced by the illuminated area directly behind him. The Case for Shadow Divergence. Sceptics claim that the divergence of the shadows in the above image is impossible if the sun is the only source of light on the Moon."}, {"title": "rpj-common-crawl-2020-05", "text": "reflected portions add up and the transmitted portions cancel out, so in aggregate nearly all of the light is reflected. Sorry; wrong reference. What I said is what Carl Zimmer said in the NYT, who presumably talked to the authors: The layers of tiles are separated by thin layers of fluid, and as a ray of light passes through them, it gets bent further and further from its original direction. Eventually the light gets turned completely around, heading back toward the front of the eye. https://www.nytimes.com/?mcubz=0 You\u2019re right that that\u2019s what Zimmer says (correct link here), but I think he just got that part of it garbled. Everything else about his description \u2014 the alternative layers of tiles and fluid (with different refractive index), and the fact that it\u2019s optimized for a particular wavelength \u2014 is characteristic of the kind of dielectric mirror described in the Physics 162 explanation and in this Wikipedia article. You\u2019re probably right; I\u2019ll take that part out, thanks. guanine crystals in the shape of squares (not their natural crystalline configuration\u2014how does the scallop do this In general, this is no news. I recall \u201cnews\u201d reports from the late 18xx that table salt (NaCl, halite) would form cubic forms when grown from solution in pure water, but if grown from water with (IIRC) 1% urea in solution, it would form octahedral form crystals. This requires no change in the internal, atomic even, structure of the crystals, but the energy of the crystal surface relative to the solution in which it grows. The"}, {"title": "rpj-common-crawl-2021-04", "text": "#1, and the rest is transmitted through the glass and incident on the second surface where a part of it is reflected and goes back up as indicated by the arrow #2. Rest of light emerges from the other side of the glass plate indicated by the dotted arrow. Two more things to be noted: What is plotted on the right side of the figure is the light signal in the reflected beams #1 and #2. Variable on the X-axis of that figure is the thickness of the glass plate (L). 4. The first thing one would expect is to have a fraction of light (about 8%) to be reflected via path #1. In fact, that is what one WILL observe with normal light (with all wavelengths in the visible region). However, as we can see in the experimental data to the right in the figure, that reflected signal varies from 0% to 16% as the thickness of the glass plate in increased for light with a well-defined wavelength (like from a laser). It is interesting to see that the reflected signal is zero (very low) at some thicknesses of the glass plate. This is a KEY feature that cannot be explained without our interpretation of QM. If anyone can, please post at the discussion forum. Feynman explicitly said that he could not, on p. 10 of his book. 5. Normally, one would expect the light reflected from the front surface (#1) to be at a constant level since photons are particles, i.e., a photon hitting"}, {"title": "math", "text": "# Tag Info 5 The answer is \"almost no\" - the wavelength of the photon is virtually unchanged (in the initial rest frame of the mirror, the \"lab frame\"). Because the mirror is much more \"massive\" than the photon, it serves as a \"momentum sink\" and picks up almost no energy. The best way to develop an intuition for this is to consider a collision between two balls: one ... 3 If you paint the inside surfaces flat black, or cover them with black felt, a \"maze\" will let air through but stop 99.9% of the light. 3 It will behave as a concave mirror with a convex lens in front of it, or just as a convex mirror if the other side is reflecting (with a lens behind it that doesn't really do anything because it's blocked). You would have to do ray tracing to see more precise behavior for the former case. 2 You are seeing fringes of equal thickness where light from a source is being reflected off the top of the soap film and the bottom of the soap film and then entering your eye to form an interference pattern on the retina of your eye with your eye focussed on the soap film. The condition for a maximum is $2 \\, n\\, t_{\\rm m} = (m+\\frac 12) \\lambda$ where $... 2 I have done some calculations, and in my solution, the law of reflection does apply in this case. Am I right? Yes, you're right. However, I offer you to use"}, {"title": "rpj-stackexchange", "text": "the table through the water (refractive index, $\\mu = 1.33$) and then into the glass ($\\mu = 1.5$) rather than from air ($\\mu = 1$) into glass ($\\mu = 1.5$) more of the light is transmitted than reflected at the interface. Image 3 shows the effect of filling the tumbler with water. There is a greater contrast between the water drop and no water drop regions. Image 4 has the whole of the base of the tumbler standing in water. Being anxious to get reasonable images I only noticed the different regions $a,\\,b,\\,c$ and $d$ when I was processing the images. Image 5 shows the bevel on the tumbler which was responsible for region $c$ in image 6. It then became clear to me that region $d$ showed a reflection of light from the bottom of the tumbler. I suspected that it was total internal reflection at the air - outside surface of glass interface. Image 7 shows what happened when I placed a finger outside the glass. My finger was seen through the bevel region $c$ but note in region $d$. Image 8 shows my finger touching the outside of the glass in region $d$ resulting in any reflection not being visible. I conclude that the effect is due to the water layer providing improved coupling to allow more light to enter the tumbler and the tumbler with water in it acting as an optical fibre."}, {"title": "rpj-c4", "text": "Exactly 100 years ago a remarkable paper appeared in Annalen der Physik, a prestigious German physics journal in which both Max Planck and Albert Einstein published their findings. This paper, by German physicist Paul Peter Ewald explained how light behaves when it strikes a sheet of glass. Ewald, in 1915, explained, in effect, how a window works. A few year later, Swedish physicist Carl Wilhelm Oseen extended these findings to explain how light behaves when it strikes a crystal. Together the work of these two men is known as the Ewald-Oseen Extinction Theorem. What's so mysterious about how a window works. Isn't a window merely a sheet of glass? When light strikes a window some of it bounces off (about 10%) and the remainder is refracted (bent) into the glass at an angle that depends on a number \"n\" called the refractive index which is different for different materials. If n is greater than 1, the light bends deeper into the material; if n is less than 1, the light bends towards the surface. In a vacuum the speed of light is equal to a constant c. But in material media, the velocity v of light is equal to: v = c/n. For visible light in glass, the refractive index is about 1.5, so light travels at about 70% of its vacuum speed: inside glass, light travels SLOW. On the other hand, for X-rays in many materials, the refractive index is less than 1, so X-ray light travels FAST -- faster than light in a vacuum."}, {"title": "rpj-common-crawl-2021-04", "text": "passes through a parallel sided glass block: if it hits the glass block at 90\u00b0 (that is, perpendicular to the glass block) if it hits the glass block at an angle other than 90\u00b0 (that is, obliquely to the glass block). Explain why, a stick half immersed in water appears to be bent at the surface. Draw a labelled diagram to illustrate your answer. With the help of a labelled diagram, explain why a tank full of water appears less deep than it actually is. Name the phenomenon due to which a pencil partly immersed in water and held obliquely appears to be bent at the water surface. With the help of a diagram, show how when light falls obliquely on the side of a rectangular glass slab, the emergent ray is parallel to the incident ray. Show the lateral displacement of the ray on the diagram. State two factors on which the lateral displacement of the emergent ray depends. Explain with the help of a labelled ray diagram, why a pencil partly immersed in water appears to be bent at the water surface. State whether the bending of pencil will increase or decrease if water is replaced by another liquid which is optically more dense than water. Give reason for your answer. Light travelling from a denser medium to a rarer medium along a normal to the boundary: (a) is refracted towards the normal (b) is refracted away from the normal (c) goes along the boundary (d) is not refracted A ray of light passes"}, {"title": "rpj-common-crawl-2023-06", "text": "both air and glass, light's most likely path from A to B will depend on the thickness of glass it needs to traverse, as well as the total distance it needs to cover. That means that the light may sometimes prefer to bend. This is the quantum-mechanical basis of refraction. In order to maximise the probability that photons from A will end up precisely at B, those going in a straight line need to be slowed down relative to those taking a more circuitous route, so that, in effect, all hit B the same time. This can be done by forcing the former to pass through more glass than the latter. The result is a round piece of glass that is thick in the middle, where the straight-line path crosses, and tapers off towards the edge, where the less direct routes do\u2014in other words, a focusing lens, with its focal point at B. Dr Capasso's lens, described in Nano Letters, also slows photons down. But instead of using varying thickness of glass to do the job, he and his team created an array of antennae which absorb photons, hold on to them for a short time and then release them. In order for this trick to work, though, the distance between the antennae has to be smaller than the wavelength of the light being focused. In Dr Capasso's case that means less than 1,550 nanometres, though he thinks that with tweaking it could be made to work with shorter-wavelength visible light, too. Creating the array involved"}, {"title": "rpj-book", "text": "wave. A rainbow is made by raindrops which work like millions of tiny prisms to split up sunlight. Light waves hit mirror Light is directed back, giving a back-to-front reflection Light waves bounce off a mirror. Like sound, light bounces off surfaces which are very smooth. This is called reflection. A mirror is smooth, hard and flat. When you look at it, you see your reflection. Light passes through certain materials, like clear glass and plastic. Materials which let light pass through, to give a clear view, are transparent. Those which do not allow light through, like wood and metal, are opaque. Mirrors and lenses are important parts of many optical (light-using) gadgets. They are found in cameras, binoculars, microscopes, telescopes and lasers. Without them,we would have no close-up photographs of tiny microchips or insects or giant planets \u2013 in fact, no photos at all. A concave lens, which is thin in the middle, makes things look smaller. A convex lens, which bulges in the middle, makes things look larger. Glass and water bend, or refract, light waves. This makes a drinking straw look bent where it goes behind the glass and then into the water. Light does not usually go straight through glass. It bends slightly where it goes into the glass, then bends back as it comes out. This is called refraction. A lens is a curved piece of glass or plastic that bends light to make things look bigger, smaller or clearer. Spectacle and contact lenses bend light to help people see more"}, {"title": "rpj-common-crawl-2022-05", "text": "It is not my purpose to teach physics, so I will refrain from a technical discussion of the law itself, and will rather refer those interested in such a dissertation to any general physics textbook. Refraction occurs because light waves travel at different speeds through different substances. Refraction involves the bending of light waves as they move from one medium to another. In figure 15 you can see the bending effect on light as it passes from a less dense medium (air) into a more dense medium (water). If you want to see this bending of light in action, drop a pencil and a coin into a glass about three-fourths full of water. The pencil will appear to be broken at the water surface, and the coin will appear to be on the side of the glass. This is a phenomenon produced by refraction. Why is it that we still have light long after the sun has disappeared over the horizon? And why do we have light in the morning before the sun comes into view? You guessed it! It is the law of refraction at work. As the sun\u2019s rays travel through space, they move very rapidly, as if in a vacuum, but when contact is made with the more dense atmospheric medium of the earth, the light decelerates, and is bend around the curvature of the earth by the law of refraction. This law causes the light to reach the surface before the sun appears in the morning, and to trail behind on the"}, {"title": "math", "text": "in light refraction glass or.. Rays travel through air, they experience little or no refraction in coding circuit... Bag water refraction trick of of card or paper refraction at the bottom until blocks! Zip Lock Bag water refraction is the bending of light | Solved Example-12 o practical experiment in refraction of. Word that still makes sense if you put it behind the glass and the image appears to be when. And a helpful explanation of how this experiment demonstrates a total internal reflection ( )... Love ) can learn more about refraction of light reaching your eye ( or in this our. Don \u2019 t see light move in waves just like sound light and glass_Passion. Incidence angle the interface between the light slow down and change direction more as it enters the.. The principle of optical fibres passes through substances, such as oil juice. ) can learn more about light refraction with a water bottle experiment of light rays that reach our eyes of or. Makes it possible for us to have its reversed picture can learn more go to 1 Liter of is! Get weekly videos, articles, play ideas and mocomi updates in your inbox, |. Them watch this video to find out how light refraction with a water bottle experiment use light refraction and light reflection from transparent! Experiments for kids when our magazine is published on, and a helpful explanation of how this demonstrates. In speed this light ray bends when it passes from one material to another, it bends all."}, {"title": "math", "text": "finger placed behind the device is readily visible, but a finger placed within the cloak vanishes! For about \\$50, you too can make your own \u201ccloaking device\u201d, albeit an oversimplified and crude one! Let\u2019s take a look at how it is done. The device is constructed out of eight glass right-angle prisms arranged as shown in the top-down photograph below. The operation of the cloak is really simple to explain. Suppose we look through the device from the bottom up; light coming from above bounces through the system as shown in the following image. (Rays have been color-coded to clearly show path of travel.) The illusion is obviously not perfect \u2014 looking at the \u201ccloak\u201d from any direction other than directly in front of one of the flat faces will not provide any effect, other than a highly distorted image. This is not exactly a flaw, as more recent cloaking investigations have focused on such \u201cdirectional\u201d cloaks as a way to simplify the design requirements. But an interesting question arises: the prisms are made of clear glass: why doesn\u2019t some of the light passing through the system just go right through the side of the prism and into the diamond-shaped cloaked region? For that matter, why doesn\u2019t some of the light escape out through the sides of the cloak as it bounces around? The answer is that the light is totally internally reflected at the glass interfaces, and none escapes until it hits the exit surface head on. What is total internal reflection? As discussed in"}, {"title": "rpj-common-crawl-2021-04", "text": "15 you can see the bending effect on light as it passes from a less dense medium (air) into a more dense medium (water). If you want to see this bending of light in action, drop a pencil and a coin into a glass about three-fourths full of water. The pencil will appear to be broken at the water surface, and the coin will appear to be on the side of the glass. This is a phenomenon produced by refraction. Why is it that we still have light long after the sun has disappeared over the horizon? And why do we have light in the morning before the sun comes into view? You guessed it! It is the law of refraction at work. As the sun\u2019s rays travel through space, they move very rapidly, as if in a vacuum, but when contact is made with the more dense atmospheric medium of the earth, the light decelerates, and is bend around the curvature of the earth by the law of refraction. This law causes the light to reach the surface before the sun appears in the morning, and to trail behind on the surface long after the early evening sun disappears. The great cloud of volcanic smoke will be firmly established as shown in figure 14 by the time the battle of Armageddon occurs. This great encompassing shroud will vertically be thousands of feet thick and, as such, a very dense medium through which the sun\u2019s rays must filter on their way to the earth\u2019s surface. As"}, {"title": "rpj-common-crawl-2020-05", "text": "total internal reflection.\u201d Yes, that\u2019s what I figured . . and I\u2019m wondering about very small \u201cparticles\u201d, in general, of which some might be close enough to spherical to act as those glass beads do. Other shaped particles would (theoretically) not cancel/nullify such a unidirectional effect, so it seems to me it might be a \u201cnegative feedback\u201d . . peerhaps of some small significance anyway. I just so happen to have posted this comment on another post here, two weeks ago; \u2018Settled Science: Clusters of small satellites could help estimate Earth\u2019s reflected energy\u2019 \u201cI\u2019m a nobody who had read about these matters for about a decade, and there is this idea that has at times rattles around in my ignorant skull . . Water molecules at the edge of space, being \u201caligned\u201d into sheet-like thin layers, sometimes, by magnetic fields, which creates a slight \u201csheen\u201d, sometimes, deflecting some light in some places . . So, please abuse me of my affliction if it\u2019s silly, experts ; ) \u201c To quote Sean Connery, \u201cNever say never!\u201d But, other than wind, I\u2019m personally unacquainted with anything that might align small water droplets or ice crystals. And, if you are talking about the upper reaches of the stratosphere, I wouldn\u2019t expect much water and I would expect it to be frozen. \u201d I \u201cdiscovered\u201d years ago that if one looks up into the blue, on a clear dry summer day, one can see (what I assume to be) water droplets in the air . . \u201d Ever since I"}, {"title": "rpj-common-crawl-2019-30", "text": "represents an eye, looking at the image of a vase, reflected by a mirror; it must see it in the direction of the ray A B, as that is the ray which brings the image to the eye; prolong the ray to C, and in that spot will the image _Caroline._ I do not understand why a looking-glass reflects the rays of light; for glass is a transparent body, which should transmit them! _Mrs. B._ It is not the glass that reflects the rays which form the image you behold, but the silvering behind it; this silvering is a compound of mercury and tin, which forms a brilliant metallic coating. The glass acts chiefly as a transparent case, through which the rays find an easy passage, to, and from, the quicksilver. _Caroline._ Why then should not mirrors be made simply of mercury? _Mrs. B._ Because mercury is a fluid. By amalgamating it with tinfoil, it becomes of the consistence of paste, attaches itself to the glass, and forms, in fact, a metallic mirror, which would be much more perfect without its glass cover, for the purest glass is never perfectly transparent; some of the rays, therefore, are lost during their passage through it, by being either absorbed, or irregularly reflected. This imperfection of glass mirrors, has introduced the use of metallic mirrors, for optical purposes. _Emily._ But since all opaque bodies reflect the rays of light, I do not understand why they are not all mirrors. _Caroline._ A curious idea indeed, sister; it would be very"}, {"title": "rpj-c4", "text": "ray emitted by the sphere bounces multiple times off of the surface of the two mirrors before it reaches the eye. Figure 4: objects we see through transparent objects are distorted due to refraction. Figure 5: different types of rays cast into a scene made of reflective, transparent and diffuse objects. Figure 3 shows an example in which the sphere is reflected a couple of times by the two mirrors before its image finally reaches the eye. What about transparent objects? We should see though transparent surfaces, though material such as water or glass bend light rays due to the phenomenon of refraction. The optical (and physical) laws governing the phenomena of reflection and refraction are well known. The reflection direction only depends on the surface orientation and the incoming light direction. The refraction direction can be computed using Snell's law and depends on the surface orientation (the surface's normal), the incoming light direction and the material refractive index (around 1.3 for water and 1.5 for glass). If you know these parameters, computing these direction is just a straight application of the laws of reflection and refractions whose equations are quite simple. Case 1: if the surface at the intersection point is opaque and diffuse, all we need to do is use an illumination model such as the Phong model, to compute the color of the object at the intersection point. This process also involves to cast a ray in the direction of each light in the scene to find if the point is in shadow."}, {"title": "rpj-common-crawl-2020-05", "text": "looks like, however, by pressing a powerful flashlight against the \"one-way\" mirror, and thus illuminating the chamber behind it, which he can then see by looking through the mirror. Clarke then explains that there is no such thing as a \"true\" one-way mirror; all a one-way glass really is, is a semi-silvered mirror with a darkened room on one side. From time to time over the years, I've thought of this, and wondered if it was really correct. Can we do better than Clarke's semi-reflective mirror? As we saw above, a semi-silvered mirror is necessarily symmetric -- if that's all that's used, then you can indeed see through it equally easily from either side, and the only thing which makes it \"one way\" is that the \"observer\" sits in a dark room, while the \"subject\" is in a brightly lit chamber. And in that sense Clarke was indeed correct. However, though we can't find a true \"one-way\" glass, we can do a little better than a simple semi-silvered mirror, as we shall now see. First, though, I should point out that it appears to be impossible to make the image of the \"observer\" which is seen by the \"subject\" any dimmer than the image of the \"subject\" as seen by the \"observer\". That is to say, if the glass transmits k% of the light going one way, it's going to transmit k% going the other way, too, and there's nothing we can do about it. I don't have an airtight proof (cf. Non-Symmetric Semi-Transparent Materials, above),"}, {"title": "rpj-common-crawl-2019-30", "text": "also its speed on the balcony floor. Similarly, light travels with different speeds in different places. The ray of light changes its direction or refraction takes place because of the difference in speeds in different media. Refraction is why water appears shallower than it really is.\u201d \u201cWhere do we use this?\u201d Nitin asked. Eeshan answered, \u201cWell, you are able to see yourself in the mirror because of reflection. Spectacles make use of refraction to correct the vision of people who are nearsighted or farsighted. This is also used in telescopes. Did you understand?\u201d \u201cYes, Eeshan. Thank you!\u201d said Nitin. Looking for more Physics articles and videos? Go to: Physics for Kids. Wheel and Axle How Does A Vacuum Cleaner Work? The Science of Swing Bowling How does Atmospheric Pressure work? How Many Colours Does Sunlight Have? How does a Refrigerator Work? Aerodynamics of Paper Planes How does a Light Bulb Work? Elasticity vs Plasticity How do Night Vision Goggles work?"}, {"title": "rpj-common-crawl-2023-06", "text": "The outer rings are spaced more closely than the inner ones because the slope of the curved lens surface increases outwards. The radius of the Nth bright ring is given by: rN=[(N\u221212\u03bbR)]1/2\\text{r}_\\text{N} = \\left[\\left(\\text{N} - \\frac{1}{2} \\lambda \\text{R} \\right ) \\right] ^{1/2}rN\u200b=[(N\u221221\u200b\u03bbR)]1/2 where N is the bright-ring number, R is the radius of curvature of the lens the light is passing through, and \u03bb is the wavelength of the light passing through the glass. A spherical lens is placed on top of a flat glass surface. An incident ray of light passes through the curved lens until it comes to the glass-air boundary, at which point it passes from a region of higher refractive index n (the glass) to a region of lower n (air). At this boundary, some light is transmitted into the air, while some light is reflected. The light that is transmitted into the air does not experience a change in phase and travels a a distance, d, before it is reflected at the flat glass surface below. This second air-glass boundary imparts a half-cycle phase shift to the reflected light ray because air has a lower n than the glass. The two reflected light rays now travel in the same direction to be detected. As one gets farther from the point at which the two surfaces touch, the distance d increases because the lens is curving away from the flat surface. Formation of Interference Fringes: This figure shows how interference fringes form. If the path length difference between the two reflected light"}, {"title": "rpj-common-crawl-2022-05", "text": "a way to make On a Thread of Glass: Optical Fibers for Communication I have heard a ray of the sun laugh and cough and sing! \u2014 Alexander Graham Bell It was a bright idea: use sunlight to transmit the human voice. In 1880, American innovator Alexander Graham Bell tried it, using a thin, flexible mirror to reflect a light beam onto a distant receiver. His voice Getting the Whole Picture: Bundled Glass Fibers Glass rods could transmit light, but could they transmit an image? A professor at a French agricultural college found himself faced with that question in the 1890s while he was tinkering with an early version of television. Henri C. Saint-Rene needed to find a way to transmit an image onto his Lighting the Way: Fresnel Lens The most dangerous part of a sailing trip used to be returning to shore. Lighthouses were built to signal the safest route, but often the weak light from their lamps was not visible until too late. The large, thick lens that was supposed to project the light absorbed much of the signal. Hollowing A Break with Tradition: Fused Silica After you see something work, then you realize that it\u2019s not so complicated after all. \u2014 J. Franklin Hyde It\u2019s exquisitely pure and remarkably transparent. It expands and contracts very little with changes in temperature. It is the simplest of all glasses, yet for years it was nearly Continuous Perfection: Optical-Quality Glass They make glass. By day and night, the fires burn on \u2026 and bid the"}, {"title": "rpj-common-crawl-2019-30", "text": "is passing through a medium that is different in density than our atmosphere. Mind if I ask how you missed this ? The image is reversed because of how the path of light is refracted. The order of the wavelengths in an image are reversed. A mere reflection would not reverse the image. A reversal of the image happens when the speed at which light is absorbed and then emitted changes it's velocity in the medium. ..Reflection as you call it is refraction. Nope. Reflection and refraction are two completely different things. Why does anything have color ? Because it is refracting light. No, because some wavelengths are absorbed, and others are reflected or just simply pass through (such as colored glass). This means it absorbs it on certain wavelengths and then emits a different wavelength that we perceive as color. Wavelength does change. Absorption DESTROYS light...utterly. ..When a mirror reflects light that light is passing through a medium that is different in density than our atmosphere. True. That is why mirrors can distort the image, sometimes producing a color fringe around the image or even double images. Mind if I ask how you missed this ? The image is reversed because of how the path of light is refracted. Nope. The image is reversed because of reflection. The back of the mirror is silvered. Light must pass through the glass twice. This can produce distortions in the image due to refraction, but the prevalent image you see is due to reflection from the silvered coating."}, {"title": "math", "text": "strongly absorbed by water. Move up to slightly higher frequency, and infrared is strongly absorbed by both glass and water, but both substances transmit visible light. Ultraviolet is stopped by glass, but not so readily by water."}, {"title": "rpj-common-crawl-2019-30", "text": "in Europe, artisans in glass-making centers like Venice and Florence had already found practical techniques for grinding and polishing glass relatively cheaply and easily. Moreover, people of that time were aware that the condition known today as presbyopia, in which the aging eye can no longer focus on something held at a comfortable distance, could be helped with a simple magnifying glass. But two smaller disks of glass, convex on both sides and supported in a... Basic optical properties Wed, 03 Aug 2016 | Electronic Imaging In this section we summarize and apply useful relationships that are derived in any good book on optics. It is well-known that when a ray of light strikes the boundary between two different transparent materials, such as air and glass, it is divided into a reflected ray (which is why you can see a faint reflection of yourself in a transparent window) and a transmitted ray whose direction in the glass is different from that in the air for oblique incidence this ray is said to be refracted. A ray... Clock Voltages And Basic Electrical Factors Sun, 01 May 2016 | Electronic Imaging CCD manufacturers provide a data sheet which gives the electrical pin connection diagram for the device (Figure 8.1), the names and symbols for each pin, the voltages or range of voltages to be applied to each pin, and the timing diagram (i.e., a diagram showing the time sequence of the CCD drive signals and the relationship between them). Terminology varies, but certain basic functions are common to"}, {"title": "rpj-common-crawl-2019-30", "text": "explanation when he said there is no refracted light on the Moon, thereby supporting their contention that another source of light (i.e. studio lighting) was responsible. In fact, both statements are true and are not diametrically opposed. How so? Though the words refraction and reflection sound similar, there meanings are entirely different. Refraction occurs when light passes through a transparent material. Whereas, reflection occurs when it bounces off an opaque material. For light to refract it must pass through a medium different from the one it was travelling through. In space light travels at 100% because there is nothing to impede its progress. Its speed is reduced to 99.7% when it travels through air, and is further reduces to 75% when it travels through water. Because light waves slow down when passing through a denser medium, they bunch up. That is why if you place a pencil in a glass of water it appears to bend. Therefore, as there is neither air nor water on the Moon, refraction cannot occur. It was this phenomenon of refraction to which Aldrin had alluded, and not reflection. Note, too, the fall-off areas in the Aldrin photograph. Because the Moon has no atmosphere to pollute the light, hoax theorists claim these areas should be bright and crisp and not gradually fade into darkness. This so-called \u2018anomaly\u2019 is due to simple optic and lighting effects, however. The mid-to-foreground surface regions are being viewed from a different angle than that of the distant background surface. As Armstrong is focussing specifically on Aldrin"}, {"title": "rpj-common-crawl-2020-05", "text": "How do one-way mirrors work? One-way mirrors are coated with a half-silvered layer, allowing the mirror to reflect half the light that strikes its surface. Just about everyone has seen a television show or movie in which a criminal suspect is questioned while detectives watch from behind a one-way mirror. How does a piece of glass manage to reflect light from one side while remaining clear on the other? The secret is that it doesn't. A one-way mirror has a reflective coating applied in a very thin, sparse layer -- so thin that it's called a half-silvered surface. The name half-silvered comes from the fact that the reflective molecules coat the glass so sparsely that only about half the molecules needed to make the glass an opaque mirror are applied. At the molecular level, there are reflective molecules speckled all over the glass in an even film but only half of the glass is covered. The half-silvered surface will reflect about half the light that strikes its surface, while letting the other half go straight through. It turns out that half-silvered mirrors are also essential to many types of lasers -- see How Lasers Work for details. So why doesn't the \"criminal suspect\" see the detectives in the next room? The answer lies in the lighting of the two rooms. The room in which the glass looks like a mirror is kept very brightly lit, so that there is plenty of light to reflect back from the mirror's surface. The other room, in which the glass"}, {"title": "math", "text": "comes from a location close enough to the surface (or the angle of incidence is larger than water\u2019s critical angle) the light bends so much that instead of passing out into the air, all of it reflects back into the water as if the water \u2026 Activities for Kids. See January 20th, 2012 for the Arrow/Water Glass experiment on light refraction & a link to the light & color absorption / reflection activity with red jello. In this demo light will continually \u2026 Simple Light Refraction Experiment. When the light passes from one material, into another, it bends or refracts i.e. Finally pour water into the glass and watch in amazement as the arrow changes its direction! Refraction, on the other hand, means bending of the light.Bending happens whenever light changes medium in which it\u2019s traveling. Above that, the laser beam can pass through the stream of water and you should be able to see some points of refraction, which visualises the demonstrated phenomenon. It\u2019s a fun experiment to teach kids how light moves in waves just like sound. Stand the soda bottle on top of a stack of books so the hole is facing the bucket. Light refraction with a water bottle . 23. The simplest experiment to show total internal reflection is to fill a perspex tank with water. Have you noticed that things look a little funny when you see them through a glass of water? For the Refraction Bottle, light rays are bent at the interface between the outside air and the"}, {"title": "math", "text": "of light that bends around a corner depends on the exact situation. Light is a lot more complex than many people realize. Light behaves often as a wave. Is it working? Light is a jumble of waves, and their peaks and troughs can interfere with one another. For light to bend by itself, however, is unheard of\u2014almost. To understand why light bends, imagine you're pushing a shopping cart across a parking lot. You may wonder how light can bend, because you\u2019re used to being told that light always travels in a straight line. This is a basic property of light and all other waves. Light does bend due to gravity, but not in the formation of a rainbow. The problem with the Airy function, says Segev, is that the shape of its oscillations specify the right phases only at small angles; at angles much greater than 8\u00b0, the shape becomes a crude approximation. When light rays pass from air into water, for instance, they take a sharp turn; that's why a stick dipped in a pond appears to tilt toward the surface. The light bends away from the normal line. Refraction and light bending. Light can therefore bend around the corner of an object by riding the curved surface of the object. Category: Physics Published: February 7, 2014. There are two mechanisms that cause light to bend around corners. Snell's law example 2. Light is always waving against itself, leading to internal interference of the different wave components in what we call internal diffraction. The ray"}, {"title": "rpj-common-crawl-2020-05", "text": "\"No.\" Then I asked, \"If this book was made of glass, and I was looking at something on the table through it, what would happen to the image if I tilted the glass?\" \"It would be deflected, sir, by twice the angle that you've turned the book.\" I said, \"You haven't got it mixed up with a mirror, have you?\" \"No, sir!\" He had just told me in the examination that the light would be displaced, parallel to itself, and therefore the image would move over to one side, but would not be turned by any angle. He had even figured out how much it would be displaced, but he didn't realize that a piece of glass is a material with an index, and that his calculation had applied to my question. I taught a course at the engineering school on mathematical methods in physics, in which I tried to show how to solve problems by trial and error. It's something that people don't usually learn, so I began with some simple examples of arithmetic to illustrate the method. I was surprised that only about eight out of the eighty or so students turned in the first assignment. So I gave a strong lecture about having to actually try it, not just sit back and watch me do it. After the lecture some students came up to me in a little delegation, and told me that I didn't understand the backgrounds that they have, that they can study without doing the problems, that they have already"}, {"title": "rpj-common-crawl-2019-30", "text": "the air, it is again refracted by the glass, but in a contrary direction to the first refraction, and in consequence proceeds to E. Now you must observe that the ray B C and the ray D E being parallel, the light does not appear to have suffered any refraction: the apparent, differing so little from the true place of any object, when seen through glass of ordinary thickness. _Emily._ So that the effect which takes place on the ray entering the glass, is undone on its quitting it. Or, to express myself more scientifically, when a ray of light passes from one medium into another, and through that into the first again, the two refractions being equal, and in opposite directions, no sensible effect is produced. _Caroline._ I think the effect is very sensible, for, in looking through the glass of the window, I see objects very much distorted; articles which I know to be straight, appear bent and broken, and sometimes the parts seem to be separated to a distance from each other. _Mrs. B._ That is because common window glass is not flat, its whole surface being uneven. Rays from any object, falling upon it under different angles, are, consequently, refracted in various ways, and thus produce the distortion you have observed. _Emily._ Is it not in consequence of refraction, that the glasses in common spectacles, magnify objects seen through them? _Mrs. B._ Yes. Glasses of this description are called _lenses_; of these, there are several kinds, the names of which it will"}, {"title": "rpj-c4", "text": "enters and exits the glass in the same direction, i.e., the original path is not deviated *in angle* upon exiting. The lateral translation induced in non-perpendicular light rays leads to the apparent displacement of objects which are sufficiently near that parallax is perceptible. So, in layman's terms you are saying that the armored glass would not reduce the visible lower framework (\"bar\") of the windscreen? Didn't say that, or even address the issue specifically. But the answer was implied in a subtle way when I stated that the refraction operated in the downward direction when the plate is angled back. Furthermore, I elaborated at length on the fact that *nearby* objects are more displaced that those farther away, and the outer frame which is in actual contact with the glass would most certainly qualify as being close--as close as something on the outside could get. Holding the thick glass plate in hand right now, this is amply verified. That is, the outside lower frame would be quite noticeably displaced downward, so that it would probably extend upward to one-half to two-thirds the un-refracted height. Just conducted an experiment, by making a crude \"model\" of the front of a plane to gauge the effect of the tilted thick glass plate. And it confirmed my thoughts on the matter. In a nutshell, the thick plate has the effect of raising the pilot's viewing position by an amount equal to the lateral displacement of the refracted light path. How did I conduct this experiment? In this crude \"model\" the"}, {"title": "rpj-common-crawl-2019-30", "text": "C. Saint-Rene needed to find a way to transmit an image onto his Lighting the Way: Fresnel Lens The most dangerous part of a sailing trip used to be returning to shore. Lighthouses were built to signal the safest route, but often the weak light from their lamps was not visible until too late. The large, thick lens that was supposed to project the light absorbed much of the signal. Hollowing A Break with Tradition: Fused Silica After you see something work, then you realize that it\u2019s not so complicated after all. \u2014 J. Franklin Hyde It\u2019s exquisitely pure and remarkably transparent. It expands and contracts very little with changes in temperature. It is the simplest of all glasses, yet for years it was nearly Continuous Perfection: Optical-Quality Glass They make glass. By day and night, the fires burn on \u2026 and bid the sand let in the light. \u2014 Carl Sandburg, In Reckless Ecstasy, 1904. To see the unseeable: the quest is unending. But lenses and prisms are only as good as their glass. Optical-quality glass must be flawless. Even tiny flecks, Countless Variations: Lens Combinations The world began to realize that so far it had only toyed with glass. Now a brand new material was born. \u2014 Walter Kioulehn, Odyssey of the 41 Glassmakers, 1959 By the mid-1800s, there were still only two kinds of optical glass: soda-lime crown glass and lead-containing flint glass. Opticians Reflections on Glass: Telescope Mirrors I contrived heretofore, a perspective by Reflexion. \u2014 Sir Isaac Newton, c. 1668 The"}, {"title": "math", "text": "# Why glass is transparent 1. Sep 18, 2009 ### hagopbul hello my question is why glass is transparent why the photon are traveling in it with out being absorb use equation & explanation , please this Q? for high level Physicist not for any one so pleas if you cant use proper equations DONT REPLY and why its path are so specific and strait ? 2. Sep 19, 2009 ### alxm Re: photon Well, a \"high level physicist\" should already know that there is no single equation that will directly explain the absorbance spectrum of glass or any other material, that such spectra can't be calculated analytically to begin with, and that explaining how to calculate an absorbance spectrum from first principles would require at least a book's worth of text. I don't think anyone's going to write a textbook for you, so I'd suggest that you either accept a simplified, non-rigorous answer or don't ask. 3. Sep 19, 2009 ### hagopbul Re: photon {Well, a \"high level physicist\" should already know that there is no single equation that will directly explain the absorbance spectrum of glass or any other material, that such spectra can't be calculated analytically to begin with, and that explaining how to calculate an absorbance spectrum from first principles would require at least a book's worth of text. I don't think anyone's going to write a textbook for you, so I'd suggest that you either accept a simplified, non-rigorous answer or don't ask. } ok i said equations not equation ,"}, {"title": "rpj-common-crawl-2020-05", "text": "the whole quantity of light and heat is spread out over the surface of a sphere with a radius of one foot. At a distance of two feet from the centre it is spread over the surface of a sphere of radius two feet. Now to find an area we multiply two lengths; in the case of a sphere both lengths are the radius of the sphere. As both lengths are doubled the area is four times as great\u2026 We have the same amounts of light and heat spread over a sphere four times as great, and so the illumination and heating effect are reduced to a quarter as great. 2. MIRAGES ARE DUE TO Total internal reflection. This is one of the things I dimly remember being taught in school, which this book has considerably refreshed me on. When light travels from one transparent substance to another, less dense, transparent substance, it bends towards the surface. This is called refraction, and it\u2019s the reason that, for example, streams look shallower than they really are, when viewed from the bank. If the first substance is very dense, or the light ray is approaching the surface at a glancing angle, the ray might not escape at all, instead bouncing back down. This is called total internal reflection, and it\u2019s the science behind mirages. The heated sand heats the air above it, and so we get an inversion of the density gradient: low density along the heated surface, higher density in the cooler air above. Light rays are"}, {"title": "rpj-c4", "text": "pointer) through a prism, lens, thick piece of glass, or a container of water. Ask students to observe the path of the light. Encourage them to notice how the light bends when it enters a new substance. For example, the light bends when it passes from air into glass when it enters a prism or lens, AND it bends again when it leaves the prism or lens and passes back out into air. As in demonstration option 1, ask students if they have ever seen anything like this before and encourage them to state a possible explanation about what is going on in the demonstration. Ask students whether they think the material that the light passes through (such as glass vs. water) makes a difference in the amount of refraction. This option requires a bit more time and materials, but also produces a relatively dramatic demonstration of a light ray bending. In this demonstration, a laser pointer first shines a beam of light in a straight line through air, but then is clearly deflected when it shines through water instead. First, remove the plastic tub. Turn on the laser and note the position where it shines on the graph paper. Place a mark on the paper to record the baseline position of the beam when neither the tub nor water is in its path. Next, place the tub back onto the center of the graph paper. Mark the positions of the corners of the tub on the paper, so you can return the tub to the"}, {"title": "math", "text": "different distances between the glass and the graphics. We did the water refraction experiment. When the light passes from one material, into another, it bends or refracts i.e. Because the light from the torch passes from a lower-index medium (air) to a higher-index medium (water) the light rays bend inside the water, then when the light comes out it is spread out around the room. Can Water Bend a Straw Video. Step 2/3 \u2013 Put the dry erase board vertically on the ground and place the bottle \u2026 Angle a directed ray of light to the underneath of the surface and total internal reflection can be seen (it is easier to see with the lights off). Paper or card. You\u2019ll find printable instructions, a video demonstration, and a helpful explanation of how this experiment works, below. When filling the bottle, it is recommended to seal the hole and the bottle so that the water does not spill until the experiment \u2026 A piece of paper with an arrow drawn on it. You can\u2019t see light move in waves until something blocks the light (the water) and bends the light. This experiment demonstrates a total internal reflection and shows the principle of optical fibres. Passion for Learn. Want to be notified when our magazine is published? This Zip Lock Bag Water Refraction is good to try. In fact, you have just demonstrated a physics concept called refraction, the bending of light. I love this light box experiment. This water refraction science experiment has such a \u201cwow factor\u201d"}, {"title": "rpj-c4", "text": "A tree trunk partly submerged in water appears to be bent. For hundreds of years people have known that this is caused by refraction, i.e. the light changes its direction when traveling from one medium (water) to another (air) at an angle. Refraction is also the underlying physical principle behind lenses which play an indispensable role in everyday life: They are a part of the human eye, they are used as glasses, contact lenses, as camera objectives and for controlling laser beams. This is remarkable work, truly thinking 'outside the box'. Hopefully, this leads to breakthroughs in the XUV lithography involved with chip manufacture. We have been stumbling over problems with it for years now."}, {"title": "rpj-common-crawl-2021-04", "text": "night because the cooler air near the ground is denser: Image from Rod Nave\u2019s hyperphysics, see refraction of sound In similar vein a light wave \u201cveers\u201d downwards rather like a car veers left when it encounters mud at the side of the road. We can do something similar with light with something as simple as a piece of glass. That\u2019s why we have lenses in spectacles. But we can also do it with an energy-density gradient in space. That\u2019s why we have gravitational lensing. See Professor Ned Wright\u2019s Deflection and Delay of Light article for more. He doesn\u2019t say the light is deflected because spacetime is curved. Instead he says this: \u201cIn a very real sense, the delay experienced by light passing a massive object is responsible for the deflection of the light. The figure below shows a bundle of rays passing the Sun at various distances\u201d: Gif from Ned Wright\u2019s Deflection and Delay of Light Once you know this, you can make sense of the rubber-sheet analogy. It\u2019s sometimes said to be a tautology, in that gravity is used to try to explain gravity. However it can explain gravity rather well provided you know what it\u2019s really depicting. The rubber sheet analogy The starting place for that is that the curvature you can see in the images relates to spacetime curvature. That\u2019s associated with a \u201ccurved metric\u201d, and a metric is associated with measurement. As for what you\u2019re measuring, imagine you could place a 15 x 15 array of optical clocks throughout a horizontal slice"}, {"title": "math", "text": "amount light reflected from either side. If the two films are now separated slightly to allow for a small air gap between them, and we repeat the process with the same light, what will we see in the way of light reflections from the two sides? Solution The only change that occurs with the separation is that the second reflection in both thin films is now off a surface in contact with air. This means there will be no phase shift at that reflection, since air has a lower index of refraction than either film. Before the separation, the second reflection within the plastic was off a faster medium (glass), so there is no change to the phase shift for the plastic, and the same interference as before (destructive) will result. But the second reflection for the glass film was previously off a slower medium (plastic), so changing that reflection so that it is off air will make it go from a $$\\pi$$ radian phase shift to no phase shift. With the film thickness the same as before, this means that light that previously emerged from the glass $$\\pi$$ out of phase with the first reflection is now in phase with it, so light will be seen reflected off the glass film. ## Light in a Medium There is one element of this phenomenon that we have not yet accounted for. Clearly the film thickness has to be just right for the timing of the two reflected waves to come out exactly $$\\pi$$ out of phase."}, {"title": "math", "text": "adequate Newtonian ... 1 What is happening, in my opinion, is the result of two effects: First one is to notice that the glass of your window is most probably not uniform. Meaning, as a guess, it is thinner on the top and gradually gets thicker to the bottom, but in a very slight manner that only light feels it. What does this cause? Well if the glass also has two different ... 0 As I vaguely remember, Newtonian gravity does not have any affect on light. Einstein's General Relativity was the first prediction about gravity bending light, and this was confirmed a few years later by seeing the effect in a telescope during a full solar eclipse. 0 The trick is that the system is designed in layers, and the data for one layer includes the metadata for the next layer. Here's how a hypothetical system could work: Layer A: So the fiber-optic transmitter - the physical layer - only knows how to transmit a 1, transmit a 0, or turn off. Layer B: The next layer understands that if the transmitter was off and ... 0 The key point here I think is that the path difference must be calculated at a wavefront, which is orthogonal to the rays. See the diagram below and note that the path difference is$\\ell_1 + \\ell_2$instead of$2\\ell_1$.$\\ell_1 = \\dfrac{d}{\\cos\\theta}$indeed, but$\\ell_2 = \\ell_1 \\cos(2\\theta)$. Therefore, $$\\Delta = \\ell_1 + \\ell_2 = \\left(1+\\cos(2\\theta)... 1 Having made a hash of my original answer which was pointed out by @Pieter, I have"}, {"title": "math", "text": "speeds up it slows down it curves through the glass it bends when entering the glass it separates into colors 1 See answer beckhamschooling is waiting for your help. Light does NOT have mass, and gravity does not \"slow everythinng down. When it comes to speed limits, the ultimate one set by the laws of physics themselves is the speed of light. 1) The speed of light is an absolute. So, there is a drag on the wave, and it slows down. The first statement is the backbone of all of modern physics (relativity), and the second helps explain things like diffraction and rainbows. 2) Light slows down when it passes through a medium (like water, glass, air, \u2026). The light waves that go through the glass don't actually slow down. How to slow down light until it stops In vacuum, light always travels at a constant speed of 299,792,458 metres per second. From that point onward, everything proceeds according to normal physics. The effect is only apparent and applies to the speed of light 'in the material' as opposed to the speed of light 'in vacuum' where light ALWAYS travels at the speed of light c. The reason you treat the light as if it did slow down is an effect of the wave nature of light. What causes an orbit to happen? Let\u2019s set aside the question of how we got the baseball moving that fast. So if a wave slows down, its wavelength will decrease. The effect of this can be shown using"}, {"title": "rpj-c4", "text": "to understand about lenses is that they bend light. This is the principle behind their use in all sorts of devices, such as cameras, telescopes, microscopes, binoculars, magnifying glasses, and eyeglasses, which I think covers most of the applications people would immediately think of. These devices all gather light and allow you to look at objects in particular ways that you can't do otherwise. Lenses are also used in things like movie projectors, torches (flashlights for the Americans), car headlights, and lighthouses, to project beams of light. And the other important place you can find lenses is in eyes; you're reading this now through lenses in the front of your own eyeballs (unless you're using a screen reader). If you examine some lenses, one thing you can notice pretty quickly is that they are all transparent, so that they let light pass through them. The next thing you might notice is that they all have curved surfaces. Here is an important hint about how lenses work. Figure 2. Light entering glass. So we've moved from complicated curved shapes to simpler shapes with flat surfaces that still bend light. We can simplify things one step more by considering only one of the two flat surfaces, either where the light goes from air into the glass, or where the light goes from inside the glass back out into the air. If you draw that, you get the diagram shown in Figure 2. So what's going on here? Why does the light bend like that? Why doesn't it just"}, {"title": "math", "text": "doesn\u2019t exit the higher refractive index object and instead ONLY reflects back into the object, because the reflective amount becomes 100%. When this happens, it\u2019s called \u201cTotal Internal Reflection\u201d for hopefully obvious reasons (: There isn\u2019t a whole lot to say about this, because you can see that this is even accounted for in the GLSL Fresnel function from the last section. However, if you are ever under water in a swimming pool and look up to see the water surface looking like a mirror, that is total internal reflection in action. You can also see it in the render below, where you can see reflections on the inside of the walls of the object, especially on the bottom (floor) of the object: # Beer\u2019s Law Beer\u2019s law is the last item to talk about, and relates to transparent surfaces. Beer\u2019s law deals with light being absorbed over distance as it travels through a material. Beer\u2019s law is why a thin piece of jello is mostly colorless, but a thicker piece of jello has a much richer and deeper color. Here\u2019s a cube with beer\u2019s law absorbing red and green light over distance. You should notice that where the light travels less distance through the cube that it\u2019s not as blue, because not as much red and green light has been absorbed: To apply beer\u2019s law, you first figure out how long a ray has traveled through the absorbing material (by tracing the ray inside the object to see where it hits the back side). You"}, {"title": "rpj-c4", "text": "A light ray is refracted (bent) when it passes from one medium to another at an angle and its speed changes. At the interface, it is bent in one direction if the material it enters is denser (when light slows down) and in the OTHER direction if the material is less dense (when light speeds up). Because different wavelengths (colors) of light travel through a medium at different speeds, the amount of bending is different for different wavelengths. Violet is bent the most and red the least because violet light has a shorter wavelength, and short wavelengths travel more slowly through a medium than longer ones do. Because white light is made up of ALL visible wavelengths, its colors can be separated (dispersed) by this difference in behavior. When light passes through glass, it encounters TWO interfaces--one entering and the other leaving. It slows down at the first interface and speeds back up at the second. If the two interface surfaces are parallel to each other, as in a 'slab' of glass, all of the bending (and dispersion) that takes place at the first interfaces is exactly reversed at the second, 'undoing' the effect of the first interface; so although the emerging ray of light is displaced slightly from the entering ray, it travels in the same direction as the incoming ray and all wavelengths that separated at the first interface are re-combined. If the second interface is NOT parallel to the first, as in a prism, the effects of the first interface are NOT reversed"}, {"title": "rpj-c4", "text": "a ray of light goes from a denser medium to a rarer medium, it bends away from the normal (at the point of incidence). Light ray incident on a Window glass at different angles The light rays entering from a one medium and emerging out back in to the same medium will be parallel. Consider the pane of thick window glass as shown in the figure. When light falls normally to the surface of a glass slab (from point A through the glass to point B), it will go in a straight\u2013line path. In this case, light encounters the glass perpendicularly and hence there is no bending of the ray of light. But when it goes from A to C, the emerging light is displaced but parallel to the incident light. A ray of light Aa travelling in air is incident on the glass block. On entering the glass block, it gets refracted and bends towards the normal. Again a change of direction takes place when the ray of light ac, travelling in glass emerges into air at point c. Since the ray of light ac goes from a denser medium glass into the rarer medium air, it bends away from the normal and goes in the direction cC. The incident ray Aa and the emergent ray cC are parallel to each other."}, {"title": "rpj-book", "text": "the earth which has been dug out of them; for apparently some air occupies the space excavated, and for this reason it does not hold all the earth. 9 \u00b7 Why is it that, though air is denser than light, it can pass through solids? [10] Is it because light travels in a straight line only, and so the sight cannot see through porous substances like pumice-stone, in which the pores are irregular, whereas they are not so in glass? The air, on the other hand, is not obstructed, because it does not travel in a straight line through anything through which it passes. [15] 10 \u00b7 Why is it that the air becomes cold by touching water but not moist, even though one blows so hard upon water as to cause waves? That it becomes cold is clear from the change which it undergoes; for the air from water causes cold. Is it because it is the nature of air to be cold or hot, and it changes by touching anything [20] with which it comes into contact; but it does not also become moist, because it is too light and so never penetrates below the level of the water, but always remains in contact only with the surface, even though it be forced downwards, and the water then recedes still lower, so that the air can never penetrate into its depth? 11 \u00b7 Why is the air from bubbles and the air which comes up from beneath [25] the water never wet? Is it"}, {"title": "math", "text": "for crown glass is often given as being 1.52. This table shows how that figure alters with wavelength The diagram \u2022 The diagram shows six different wavelengths (ROYGBV) of incident light approaching the boundary between air and glass. \u2022 The wavelengths form a single ray and were emitted by a single point light source. \u2022 As the ray crosses the boundary between the air and the glass refraction takes place and it bends towards the normal (the dotted green line). \u2022 At the same time, the different wavelengths separate out from one another as dispersion takes place. \u2022 All six wavelengths are refracted towards the normal because they are travelling from air, the faster, less optically dense medium with a smaller refractive index into the glass, a slower, more optically dense medium with the higher refractive index. \u2022 The different paths each wavelength takes in the course of their dispersion results from the fact that the refractive index of the glass is different for each wavelength of light (ROYGBV). Remember: \u2022 In the right conditions, all transparent media cause incident light to change direction and to disperse into their component colours. \u2022 When light is refracted and changes direction, the angle is determined by the refractive index of the medium it enters. \u2022 Refractive index (n) is equal to the speed of light in a vacuum (c) divided by the speed of light in the medium (v) \u2022 Light travels at 299.792 kilometres per second in a vacuum. \u2022 Only a narrow range of wavelengths that"}, {"title": "rpj-book", "text": "lit room at night looking at the window, and you will see a reflection of the room. But go outside and you see into the room. So, despite some of the light from inside reflecting off the glass back into the room, the rest passes through the glass. This is classic quantum probabilistic behavior. Around five percent of the light reflects back into the room and ninety-five percent passes through. But how does a photon know whether to pass through or reflect? This was a puzzle to Isaac Newton, who believed light was made of particles. Newton thought the effect might be due to imperfections in the surface of the glass\u2014but polishing the glass doesn't make it go away. From a quantum viewpoint, we can see that there are no surface blemishes required to make the split. The photon exists merely as probabilities of passing through or reflecting, producing the statistical result. A sheet of glass isn't a great beam splitter\u2014for experiments, more sophisticated devices involving part-silvered mirrors or prisms, which split light 50/50, are used. **SCHR\u00d6DINGER'S EQUATION** **QUANTUM DOUBLE SLIT** **BELL'S INEQUALITY** **DRILL DOWN |** When light reflects back off window glass, the probability of the photon reflecting from the inner surface depends on the thickness of the glass. Somehow, the photon \"knows\" how thick the glass is. With a wave-based approach, this is easy to explain as an interaction between waves that pass through the glass and reflect back from the outer surface and those that reflect off the inner surface. But with particles"}, {"title": "math", "text": "waving of the electromagnetic field. For this reason, the direction that the path of a light wave bends depends on whether the light wave is traveling from a more dense (slow) medium to \u2026 If light hits an object made out of conducting material (such as metal), the electromagnetic fields in the light exert a force on and accelerate the free charges in the conductor, thereby inducing electric currents in the surface of the conducting object. 03. Refraction through glass slab. Development of unique Australian COVID-19 vaccine halted, FDA panel backs Pfizer\u2019s COVID-19 vaccine, paving way for emergency use in the United States, China launches gamma ray\u2013hunting satellites to trace sources of gravitational waves, Scientists are rethinking where life originated on Earth, These shrews can shrink and regrow their brains, Breast milk contains coronavirus antibodies, study suggests, Hurricanes are retaining their strength after reaching land, study suggests, Ecologists push for more reliable research, Scientists rally around plan for fusion power plant, Tasmanian devils claw their way back from extinction, American Association for the Advancement of Science. Also, note that the fuzziness of shadows in everyday life is not caused by diffraction, but is instead caused by the fact that an extended light source creates many, slightly-offset, shadows of the object which blur together. The work of Segev's group might have remained theoretical, but by coincidence, a group led by John Dudley at the University of Franche-Comt\u00e9 in Besan\u00e7on, France, has been performing its own experiments on self-bending light. In the demonstration, a line of students (representing"}, {"title": "rpj-common-crawl-2021-04", "text": "a rubber ball. Reflection is interesting in itself, but today we're talking about the sort of bending that happens to light when it passes through an object, not when it bounces off one. The things with flat surfaces that bend light are chunks of transparent material (glass usually) in triangle or wedge shapes, things we call prisms. The way a lens and prism bend light is shown in the diagram in Figure 1. Notice that the angle of the glass at the points where the top light beam enters and exits the glass are the same for both the lens and the prism. The way the glass curves (or is straight) away from that point doesn't matter for that beam of light. (It does matter for other beams of light that hit the glass elsewhere, which is where the difference between lenses and prisms comes into play.) Figure 2. Light entering glass. So we've moved from complicated curved shapes to simpler shapes with flat surfaces that still bend light. We can simplify things one step more by considering only one of the two flat surfaces, either where the light goes from air into the glass, or where the light goes from inside the glass back out into the air. If you draw that, you get the diagram shown in Figure 2. So what's going on here? Why does the light bend like that? Why doesn't it just go through in a straight line? This might seem a bit surprising, but the answer depends on how fast"}, {"title": "math", "text": "reflects off the metal, goes back through the glass interface (glass-to-air), and gets to your eye. The ghosts come from extraneous reflections at those glass/air interfaces (5%, as I mentioned before). The first ghost comes from that first interface (appearing to one side of the regular image). The second ghost comes from the second interface, sent back to the metal (appearing to the other side of the regular image). There will actually be more reflections, 3rd and 4th etc., getting progressively (and quickly) weaker. Check out Floris' answer to this question. I don't think the bevel is relevant for the ghosts around your LED. I'll say it again: Good eye! And good for you for wondering about it. This is kind of hard to answer from only this one picture, but I'll give it a shot. My guess is that the centre LED in the mirror is the one reflected by the actual reflective coating (most likely silver) at the back of the mirror. The one appearing to be closer to the mirror is the reflection from the bare glass surface that you would see even without the coating. Just like you see yourself in your windows when it's dark outside. The one appearing farther from the mirror (i.e. the rightmost in the picture) is then probably the same effect but for the light coming back from the silver through the glass, reflected at the glass-air surface, that is then again reflected back to you from the silver coating. The reflectance of an air-glass surface is"}, {"title": "rpj-common-crawl-2022-05", "text": "Fun Physics Quiz People will never stop admiring the miracles and mysterious phenomena discovered in nature. Thanks to the development of physics and other sciences, most phenomena finally received a rational explanation. The world around us is full of amazing things, you just need to look closely! What do you need to do to prevent a raw egg from sinking on the bottom of a glass with water? It's all about water density. Since an egg has a higher density than pure water, it sinks when put into a glass. However, salted water has a higher density than an egg, which makes an egg float close to the surface. Heat the water Put a magnet close to the glass Add some salt to the water Say a spell You're holding a lit match 10-15 cm from the wall. Then you light a flashlight at the match. What is it that you won't see on the wall? Fire doesn't throw a shadow because the light comes through the flame freely, without meeting any obstacles. Shadow of your hand Shadow of the match Shadow of the flame The wall itself A mirror lies on the bottom of a bowl filled with water. You light a flashlight at the mirror and catch the reflected light on a piece of paper. What will you see on the paper? When coming through water, a ray splits into separate colors. It looks like a rainbow. Secret messages A wet coin lies on the neck of an open empty bottle. How do you"}, {"title": "rpj-common-crawl-2022-05", "text": "Fun Physics Quiz People will never stop admiring the miracles and mysterious phenomena discovered in nature. Thanks to the development of physics and other sciences, most phenomena finally received a rational explanation. The world around us is full of amazing things, you just need to look closely! What do you need to do to prevent a raw egg from sinking on the bottom of a glass with water? It's all about water density. Since an egg has a higher density than pure water, it sinks when put into a glass. However, salted water has a higher density than an egg, which makes an egg float close to the surface. Heat the water Put a magnet close to the glass Add some salt to the water Say a spell You're holding a lit match 10-15 cm from the wall. Then you light a flashlight at the match. What is it that you won't see on the wall? Fire doesn't throw a shadow because the light comes through the flame freely, without meeting any obstacles. Shadow of your hand Shadow of the match Shadow of the flame The wall itself A mirror lies on the bottom of a bowl filled with water. You light a flashlight at the mirror and catch the reflected light on a piece of paper. What will you see on the paper? When coming through water, a ray splits into separate colors. It looks like a rainbow. Secret messages A wet coin lies on the neck of an open empty bottle. How do you"}, {"title": "rpj-common-crawl-2020-05", "text": "tank is a good way to see this sort of thing. (You don't usually get thick enough glass on its own.) I don't have a fishtank so I can't do that. But I'm happy to know that I was correct about it For once :tongue2: Next time you go to an Indian or Chinese takeaway, see if they have a fishtank (very popular in UK takeaways) and look at the dispersion of light from the edges of light sources behind the tank (it needn't be a slit- you can just look at an edge for the effect to show itself). It's nice to have something to do whilst you're waiting but you may have to explain your weird behaviour by giving a Physics lecture to the assembled customers. A pet / aquarian shop would do. Related Threads for: Formation of spectrum of colors when light passes through a flat pane of glass What happens in terms of absorption when a light passes through a green transparent glass? Why does light intensity decrease when light passes through a glass block? How do I asses the % of light transmission that passes through glass When bulb light passes through a prism Light passing through the normal of a surface Reflection of light through a wine glass with water Light through glass ? When elctrons pass through a bulb it poduces heat and light why? B Is Voltage a measurement of pressure? B What parameters of physics are most important to the existence of life? B Falsifiability -- What"}, {"title": "rpj-book", "text": "lit room at night looking at the window, and you will see a reflection of the room. But go outside and you see into the room. So, despite some of the light from inside reflecting off the glass back into the room, the rest passes through the glass. This is classic quantum probabilistic behavior. Around five percent of the light reflects back into the room and ninety-five percent passes through. But how does a photon know whether to pass through or reflect? This was a puzzle to Isaac Newton, who believed light was made of particles. Newton thought the effect might be due to imperfections in the surface of the glass\u2014but polishing the glass doesn't make it go away. From a quantum viewpoint, we can see that there are no surface blemishes required to make the split. The photon exists merely as probabilities of passing through or reflecting, producing the statistical result. A sheet of glass isn't a great beam splitter\u2014for experiments, more sophisticated devices involving part-silvered mirrors or prisms, which split light 50/50, are used. **SCHR\u00d6DINGER'S EQUATION** **QUANTUM DOUBLE SLIT** **BELL'S INEQUALITY** **DRILL DOWN |** When light reflects back off window glass, the probability of the photon reflecting from the inner surface depends on the thickness of the glass. Somehow, the photon \"knows\" how thick the glass is. With a wave-based approach, this is easy to explain as an interaction between waves that pass through the glass and reflect back from the outer surface and those that reflect off the inner surface. But with particles"}, {"title": "rpj-c4", "text": "\uf388 Public Lab: Passing Light Through an Object. Passing Light Through an Object. I was trying to work out how to keep the brightness of the image produced. Due to the laws of physics (I know! Those again...) each time the beam of light was bouncing/passing through an object, it was losing energy & thus losing its overall brightness/strength. So, what I did was get three different shaped glasses & fill them with water, so as to record the effects of light passing through them. The result was some interesting revelations about how passing light through different shaped containers could potentially affect resolution. In the image above, you can see what I am calling my circular glass, my square glass and my prism glass (which has an octagon base for those wondering). The .gif above is of me passing a red laser pointer through the circular glass. The point of origin for the laser beam is at the bottom of the image - where I am holding it against the glass. You can see as part of the light beam reflects back off of the other side of the glass, the beam splits, continuing to bounce until the photons escape to the right of the image. So, every time the light beam bounces, it loses intensity, as photons are split between reflecting, refracting and being absorbed by the glass. To see how light is divided, I then passed a light back and forth along an x, y and z axis through the prism glass, to help"}, {"title": "rpj-stackexchange", "text": "sort of constructive/destructive interference? Thank you for your time. As spooky as this was to discover, I am genuinely interested in how and why this was happening. UPDATE: I got my housemate to come in the bathroom with me, and he confirmed my observation. What's more, we could see the rings in our own eyes, but not each other's eyes. A: Sorry for my poor english. My native language is French. It is possible that what you saw were Quetelet fringes, or Newton diffusion rings. They are discribed in this link : Quetelet rings with another interesting link. In general, in physical optics, the fringes only appear with well-worked glass slides, under certain lighting conditions. While these fringes can be observed with thick slides of any kind of glass. They are well described in old optical books and dew on the glass helps to see them, hence the interest of a bathroom ! They are also described in the book by Craig F. Bohren: \"What Light Through Yonder Window Breaks\" Chapter 2 : interference patterns on garage door windows\". I can't do better than quote it : A particle on a window illuminated by a beam scatters toward the back surface of the window, and part of this scattered light is reflected to the observer. But light from the incident beam also is reflected by the back-surface and illuminates the particle, which scatters some of this reflected light to the observer. Interference between these two beams with different histories -scattered by the particle, then reflected by"}, {"title": "rpj-stackexchange", "text": "the following ways: \u2714 Light can travel through glass or plastic threads in order to deliver information. \u2714 Light can deliver information through glass or plastic threads. A: Fibre optics: the use of very thin glass or plastic threads [through which light can travel to carry information]. First, there's nothing at all wrong with this sentence; it's impeccable. In the bracketed relative clause, \"which\" is complement of the preposition \"through\" and has the nominal \"very thin glass or plastic threads\" as antecedent. Your two alternants are A) the use of very thin glass or plastic threads through which light can travel _____ to carry information. B) the use of very thin glass or plastic threads through which light can travel to carry information _____ In both cases the gap notation '____' represents the PP \"through very thin glass or plastic threads', the only difference being the linear position of gap. I can't see any motivation for B) which postposes the PP \"through very thin glass or plastic beads\" over the infinitival clause adjunct \"to carry information\". Semantically the PP belongs more naturally with \"travel\"."}, {"title": "rpj-stackexchange", "text": "Q: Why do headlights through a window move around a room? As I lay in bed this evening a few cars have passed by and my blinds are down. As they come down the street, you can see a sliver of light on the wall on the side of the room that is in the direction they are traveling (this is wall A). As they get closer and closer to the window and eventually pass it, the light moves from wall A to its adjacent wall B, and eventually to wall C which is adjacent to B. Since the source of light is essentially traveling a line that is parallel to the window, why does this movement occur? I\u2019m thinking perhaps refraction but I\u2019m still learning the basics. A: Refraction isn't needed to explain this. If you draw a straight line from the car's headlight to your window (the part that's not covered by the blinds), and extend that line into your room until it hits a wall, then that's the part of the wall that will be illuminated by the cars headlight. Here's a picture:"}, {"title": "rpj-stackexchange", "text": "Q: Does infrared rays pass through polarized glass? Actually I had asked in another post that \"Does infrared rays pass through active shutter glass\" but someone just commented that infrared rays dont pass through polarized glass. If infrared rays doesnt pass through polarized glass can someone explain the reason or give reference link to look through. A: Infra-red radiation will pass through a polarised medium just like visible light does i.e. the component at right angles to the plane of polarisation will be blocked. So there's nothing special about the fact the glasses are polarised. However most materials are only transparent over a restricted range of wavelengths. Optical glass only transmits light with a wavelength from about 300nm to around 2500nm. There's a good article on the optical properties of glass here. However I think passive 3D glasses are made from conventional polarisers, which are made from a polymer called polyvinyl alcohol. I struggled to find much about the spectra of PVA polarisers, though I found this article that lists some polarisers that work down to 3000nm. So it seems PVA polarisers will transmit at least the near infra-red. However the term infra-red covers a huge range of wavelengths from 750nm - 1mm. I can't think of anything, even air, that is transparent right across this range of wavelengths so everything absorbs infra-red light to some extent. Generally speaking, ultra-violet light is absorbed because it has enough energy to excite the electrons in atoms and infra-red light is absorbed because it has the right energy to"}, {"title": "rpj-c4", "text": "When this pair of polaroid film squares are aligned, light passes through them appearing much as it would if viewed through sunglasses. However, if one square is rotated 90 no light passes through at all! A great way to demonstrate the principles of polarization and the wave properties of light."}, {"title": "rpj-book", "text": "transmitted, that is, pass through the body; or it may be absorbed, that is, stop in it.\" \"Very well stated, Samuel. In regard to reflection I need to say very little. You know how light is reflected from a polished surface, such as a lamp reflector: heat is reflected in the same manner. One fact you must bear in mind touching reflected heat: it does not heat the reflecting body. \"There is no need of telling you that light passes through certain substances. It passes through gases and through some liquids and some solids. The best of glass, though it is so solid, interposes very little hindrance to the passage of light. Heat in like manner radiates through certain solids. Luminous heat is radiated through glass. Rock-salt transmits dark heat also. A plate of alum permits light to pass, but stops both luminous heat and dark heat. Remember that transmitted heat, as was said of reflected heat, does not heat the body through which it passes. I have seen boys make burning-glasses of ice. The heat passes through them and burns that upon which it is concentrated, while the ice itself through which the heat passes is not melted. \"If a body have a good radiating surface, that is, if its surface be dull and rough, the heat which falls upon it will be mostly absorbed. The reflecting and absorbing qualities hold an inverse ratio to each other; the better the reflecting qualities, the worse the absorbing, and the worse the reflecting, the better the absorbing."}, {"title": "rpj-stackexchange", "text": "Q: Explaining this optical phenomenon Sometimes when you blow/direct a ring of smoke at a glass window(you can see both your reflections if you stand in front of it as well as the outside) the ring,after some time seems to pass through the pane into the outside surroundings. How can i explain this? Does this have something do with the brightness of the object becoming comparable to the brightness of the objects outside and the brain perceiving this a s being a part of the outside ore this there a more mathematical/rigorous explanation for this?"}, {"title": "rpj-book", "text": "Though they keep together when moving in a straight line, at the first sharp corner they will fan out into a band. How do rainbows form? Newton explains this as raindrops acting like a cloud of tiny prisms, refracting the light of the sun behind them. What about those \"odd phenomena\" involving colored glass and other materials in which the same stuff gives off different colors? These are \"no longer riddles,\" Newton says, for they are materials that reflect and transmit different kinds of light in different conditions. Newton accounted for an \"unexpected experiment\" made by Robert Hooke, the Royal Society's Curator of Experiments. Hooke had shined light through a jar of red liquid and a jar of blue liquid. Each one let light through\u2014but when he tried to shine light through both jars together, they blocked all light. Hooke had not been able to explain this: Why, if each individual jar allowed light to pass through, would the combination block all light? Hooke's puzzlement, Newton said, was evidently due to the assumption that light was a uniform substance; instead, light was composed of many types of rays. The blue jar let through one type but blocked all others; the red jar let through a second type, and blocked all others. Because the two jars did not allow the same type of light to pass, \"no rays could pass through both.\" Newton was now also able to explain the color of natural bodies\u2014they reflect \"one sort of light in greater plenty than another\"\u2014and he described his"}, {"title": "rpj-common-crawl-2020-05", "text": "community at the time was the real nature of light or more precisely, whether its physics should be described as a wave or particles. The popular opinion on Newton\u2019s experiments was that the glass prism was responsible for the colorization of light, which itself was a combination of light and darkness. The experiment involved a small circular hole in a window shutter, through which a beam of light can enter a very dark room. A glass prism is then placed on the path of the light beam. After passing through the prism the light is refracted into a vibrant colorful line on the wall. Newton called it the spectrum (greek for image/to see). Experiment \u21161 \u201c I procured a triangular glass prism, to try therewith the celebrated phaenomena of colours. And for that purpose having darkened my chamber, and made a small hole in the window shuts, to let in a convenient quantity of the sun's light, I place my prism at his entrance, that it might be thereby refracted to the opposite wall. It was at first a very pleasing diversion to view the vivid and intense colours produced thereby; but after a while applying myself to consider them more circumspectly, I was surprised to see them in an oblong form; which, according to the received laws of refraction, I expected would have been circular. They were terminated at the sides with straight lines, but at the ends, the decay of light was so gradual, that it was difficult to determine justly what was the"}, {"title": "rpj-common-crawl-2023-06", "text": "to pass through? I An idea involving polarised light and photography -- can what I suggest work?"}, {"title": "rpj-book", "text": "wave. A rainbow is made by raindrops which work like millions of tiny prisms to split up sunlight. Light waves hit mirror Light is directed back, giving a back-to-front reflection Light waves bounce off a mirror. Like sound, light bounces off surfaces which are very smooth. This is called reflection. A mirror is smooth, hard and flat. When you look at it, you see your reflection. Light passes through certain materials, like clear glass and plastic. Materials which let light pass through, to give a clear view, are transparent. Those which do not allow light through, like wood and metal, are opaque. Mirrors and lenses are important parts of many optical (light-using) gadgets. They are found in cameras, binoculars, microscopes, telescopes and lasers. Without them,we would have no close-up photographs of tiny microchips or insects or giant planets \u2013 in fact, no photos at all. A concave lens, which is thin in the middle, makes things look smaller. A convex lens, which bulges in the middle, makes things look larger. Glass and water bend, or refract, light waves. This makes a drinking straw look bent where it goes behind the glass and then into the water. Light does not usually go straight through glass. It bends slightly where it goes into the glass, then bends back as it comes out. This is called refraction. A lens is a curved piece of glass or plastic that bends light to make things look bigger, smaller or clearer. Spectacle and contact lenses bend light to help people see more"}, {"title": "rpj-common-crawl-2023-06", "text": "air, water, and clear glass, but can not go through ________ materials such as a brick wall, and can only travel partially through _____________ material such as frosted glass. transparent (see through), opaque (such as a brick wall), translucent (frosted glass) Rough surfaces tend to scatter lightwaves in _________ direction(s). many Smooth surfaces tend to scatter lightwaves in _________ direction(s). one ____________ occurs when light passes through a transparent material like water at a slant angle, the ray of light bends or changes direction. Light always travels in a _________ ___________. straight line _______________ occurs when a ray of light bends around the edges of an object. diffraction ___________ is a branch of physics that studies the physical properties of light. Optics provides information about the behavior and properties of light and its interaction with __________. matter ______________ provides information about the behavior and properties of light and its interaction with matter. Optics A ___________ is a piece of transparent and curved material. lens _____________ lenses are thicker in the middle and are used as magnifying glasses and to help correct the vision of nearsighted people. convex A _________ is a transparent object with flat polished surfaces that refracts or diffuses light. prism _________ is a branch of physics that studies the physical properties of matter. optics A type of energy that has a comparatively low level of physical weight or density is called ___________. A ______ is a piece of transparent and curved material. lens ______________ is a physical occurrence related to stationary and moving"}, {"title": "math", "text": "# Why photons reflect off glass? Why photon reflects and refracts through glass? Some photons pass through glass and some reflects.I know this is due to energy levels of electrons of glass, an incoming photon is unable to excite the electron to a different energy orbit. But I want to know, if an incoming photon is unable to excite an electron, then why not all the photons pass through glass? i.e. photons should not reflect off glass, all the photons should pass through glass. (Not sure! Just a thought)Is this due to atoms of different substances like water,glass or wood etc curve spacetime differently and thus it influences how photons interact with matter? i.e. some photons reflect and some refract. In classical electrodynamics, the process of how much light refracts, passing through the glass, and how much light reflects, is determined by the Huygens-Fresnel principle. This principle, named after Christiaan Huygens and Augustin-Jean Fresnel, is a method of analyzing the wave propagation patterns of light, especially in diffraction and refraction. It states that every unobstructed point on a wave-front emanates secondary spherical waves in all directions. Hence, the net light amplitude at a given point is the vector sum of all wave amplitudes at that point. This principle makes it very useful in visualizing what happens during light diffraction. Although, as Alex says in his answer, you can use the QFT approach, I would like to provide an alternative answer, using classical, (that is not quantum based) reasoning. It's just easier, for me anyway, to understand"}, {"title": "rpj-common-crawl-2023-06", "text": "from glass back to let say vacuum - it's quantum effect. BTW, a normal mirror is glass with one side coated with silver (which is what they also use on two-way mirrors IIRC), just a thicker layer. Someone correct me if I'm wrong, but I don't think the asymmetry of the metalic film and glass is particularly important to the working of a two-way mirror. Here's an experiment you can try at home: - Take an ordinary piece of glass. You'll have to work out where to get this, but a hobby store would be a good start. - Carefully (use gloves, etc.) smoke up one side of the glass with a candle. Just a bit though, so you have slightly dark glass. - Place the glass in something like a large cardboard box. - From inside the cardboard box, where it's dark, you should be able to see out. - From outside, where it's light, you should be able to see your reflection somewhat. To verify what's important here, you can turn the glass around or try it without smoking it up. (Actually, you might want to try that first.) I apologies for the two-way mirror example, I generally feel convinced now, that they work only because the difference in amount of light - the effect while looking on dark glasses could be explained for example by their curvature. When I was thinking about it, I had a picture of destructive interference from anti-reflective coating. But let's look at such coating... http://en.wikipedia.org/wiki/Anti-reflective_coating Let say: thick"}, {"title": "rpj-common-crawl-2021-04", "text": "Cutting through fog with laser focus by University of Queensland Dr Mickael Mounaix and Dr Joel Carpenter. Credit: University of Queensland Research from The University of Queensland aimed at controlling light in scattering materials, such as fog or biological tissues, will benefit future biomedical imaging and telecommunications. Optics researchers Dr. Mickael Mounaix and Dr. Joel Carpenter have found a new way of controlling how light travels through different materials at different times using optical fibers. \"The reason you can't see through a solid brick wall is pretty straightforward\u2014the wall absorbs the light so no image or information can get through,\" Dr. Mounaix said. \"The reason you can't see through scattering materials like fog is quite different\u2014most of the light gets through, it's just completely scrambled and unrecognizable.\" Scattering materials like fog, cloud, a glass of milk or biological tissues have complex microscopic structures, and when light travels through these materials, it interacts with them. \"Light may enter the cloudy material as a single spot at a single point in time, however as it travels through the material the light gets scattered,\" Dr. Carpenter said. \"On the other side, you end up with light arriving at many different places at many different times.\" Most of the research during the past ten years has focused on controlling the spatial properties of beams of light, but the UQ-based research shows how to control light's properties in time. \"For many applications, it's more important that the light arrives at the desired time, rather than what the light beam looks like"}, {"title": "rpj-book", "text": "incoming photon of light, causing those electrons to gain energy. But electrons can gain or lose energy only in discrete steps, known as \"quanta.\" But the size of the steps varies from material to material. Silicon dioxide happens to have very large steps, which means that the energy from a single photon of light is not sufficient to bump up the electrons to the higher level of energy. Instead, the light passes through the material. (Most ultraviolet light, however, does have enough energy to be absorbed, which is why you can't get a suntan through a glass window.) But light doesn't simply pass through glass; it can also be bent and distorted or even broken up into its component wavelengths. Glass could be used to change the look of the world, by bending light in precise ways. This turned out to be even more revolutionary than simple transparency. In the monasteries of the twelfth and thirteenth centuries, monks laboring over religious manuscripts in candlelit rooms used curved chunks of glass as a reading aid. They would run what were effectively bulky magnifiers over the page, enlarging the Latin inscriptions. No one is sure exactly when or where it happened, but somewhere around this time in Northern Italy, glassmakers came up with an innovation that would change the way we see the world, or at least clarify it: shaping glass into small disks that bulge in the center, placing each one in a frame, and joining the frames together at the top, creating the world's first spectacles."}, {"title": "rpj-common-crawl-2020-05", "text": "index of the water cladding is 1. It is the dispersion of light by ordinary glass that is responsible for the familiar splitting of light into its component colors by a prism. Given n lines L and a point P L on each line, find the locus of points Q such that the lengths of the line segments QP L satisfy certain conditions. Light can be transmitted along an optical fibre with almost zero energy loss. This means that a person can be diagnosed and treated through a small incision cut. The critical angle is: If, instead of your finger, a high-speed bullet passes through the light beam, the resulting shadow will move even faster. The speeds of the shadow in the above example are still well below c , but you can extend this analogy to a wall 20 m away where the beam is 40 m in diameter or to a wall 2,, m away. Of course, a flashlight that would have measureable intensity over a wide angle at that distance would blind individuals near it, but one could still imagine the situation. It is, after all, analagous to a star that radiates uniformly in all directions with an appreciable intensity at exceptionally far distances. A planet or a giant cloud of interstellar dust passing between that star and the observer would cast a shadow, however small, that could move faster than c at the observer's location. True Believers: The Tragic Inner Life of Sports Fans Advances in Computers: Architectural Advances: 69 Unquenchable Fire"}, {"title": "math", "text": "a lecture here. In some liquids and most gases the electronic structure of each individual atom or molecule is enough to describe their spectra. The \"property\" you are looking for in the case of solids is the band ... 1 Parallel rays reflecting on a concave mirror do intersect at one point, the focus, if the mirror is a parabola (in 2d plane geometry) or paraboloid (in 3d space geometry). 1 Although glass is an amorphous material, it behaves surprisingly similar to crystalline materials in some respects. In this case, you can imagine glass to be a semiconductor with a large bandgap, at least large enough to be beyond the visible wavelengths. Therefore, all visible light passes through, which makes glass transparent. Obviously, there will be ... 1 Although the shortfalls of focusing more light on the array have been described, a similar question is why you would not mount mirrors to reflect sunlight toward the array only when the incident angle is well off normal. This might provide some of the advantage of tracking the angle of the sun during the day. I think in this case the placement and size of ... 1 1) A stationary charge that has always been stationary is associated with an electric field and only an electric field. The electric field points towards the charge and every point that us equally far away has an equally strong field and the fields gets four times as weak if you go twice as far away. 2) A uniformly moving charge that"}, {"title": "rpj-stackexchange", "text": "Q: through + relative clause fibre optics:the use of very thin glass or plastic threads through which light can travel to carry information. I am unsure about where through should go to in the relative clause. Which of the following is correct? A) Light can travel through glass or plastic threads to carry information. B) Light can travel to carry information through glass or plastic threads. A: Both of those sentences sound awkward. From a semantic perspective, the way they are both phrased (the order doesn't matter) makes it sounds like light is travelling through glass or plastic threads in order to get to the destination of \"carry information,\" which is bizarre and I'm sure not the intended meaning\u2014since it's fairly meaningless. Forgetting about the ordering of the specific words, consider the following: Chickens can cross the road to the other side. Rockets can travel through the atmosphere to space. Tourists can pass through customs to another country. Now look at the first of your sentences: \u2754 Light can travel through glass or plastic thread to carry information. (The second sentence has the same issue.) The construction makes it sound like carry information is a destination consisting of a compound noun, rather than an activity involving a verb and a noun. In order to prevent that puzzling interpretation, the following versions would sound much more natural: \u2714 Light can travel through glass or plastic threads while carrying information. \u2714 Light can carry information through glass or plastic threads. Alternatively, you can replace carry with deliver in"}, {"title": "rpj-common-crawl-2019-30", "text": "redistributes it. Thus when light waves are passed through a diffraction slit, the resulting pattern is formed by the diffracted light rays constructively and destructively interfering with each other. Constructive and destructive interference of two waves by Haade - Licensed under CC BY-SA 3.0 via Commons When light is able to traverse through matter of some sort, perhaps its most useful behavior emerges. Refraction is the bending of light rays as they travel across the interface between two different materials, such as air and water. The cause of this behavior is that light travels at different speeds through different materials. It is well known that the speed of light is constant in a vacuum, and it doesn't slow down much when traveling through air. But light travels only 3/4 as fast through water and only 2/3 as fast through glass. The slower light travels through a substance, the more it will be bent through refraction. Snell's Law which describes refraction by Cristan - Public Domain via Commons Large portions of the science of optics largely proceed from the very simple rules of refraction. Because translucent materials such as glass bend light rays, we can create lenses that manipulate and focus the light that passes through them to serve various purposes. The lenses in eyeglasses, microscopes and telescopes all harness the refractory behavior of light, which is only possible because light observably behaves like all waves do. Of course, light also behaves in some ways as a particle (see the photoelectric effect, for example), but that is"}, {"title": "rpj-common-crawl-2021-04", "text": "light on its first pass through the frosted pane is distorted in a complicated way by irregularities in the glass. The phase conjugate mirror reverses the distorted beam, and as it passes back through the glass it precisely retraces its steps and thus returns to its original undistorted form. The beam reflected from the phase conjugate mirror has the curious property that it encodes information for the original image in a distorted, unrecognizable form, and as time passes, the distortion is reduced and the information contained by the beam becomes clearly manifest. Normally, we expect to see just the opposite -- a pattern containing meaningful information will gradually degrade until the information is irretrievably lost. Thompson further elucidates the connection between the material and transcendental levels of existence with an example similar to that of optical phase conjugation. Suppose we have an arrangement in which pictures are being transmitted through a sheet of frosted glass. On one side of the glass we would see a series of images but we would not be able to determine the source of the images on the other side of the opaque glass. But in thinking about it, one would expect that the light coming through the frosted glass would become distorted. The fact that it does not seems to indicate that there is some sort of intelligence which is organizing or ordering the transmitted images. This is a simplified example of optical phase conjugation. Similarly, the order and complexity we find in matter must have intelligence behind it, although"}, {"title": "rpj-c4", "text": "As light travels its path, through space, it often encounters matter in one form or another. We should all be familiar with reflection since we see bright reflections when a light hits a smooth shiny surface like a mirror. This is an example of light interacting with matter in a certain way. When light travels from one medium to another, the light bends. This is called refraction. If the medium, in the path of the light, bends the light or blocks certain frequencies of it, we can see separate colors. A rainbow, for example, occurs when the sun's light becomes separated by moisture in the air. The moisture bends the light, thus separating the frequencies and allowing us to see the unique colors of the light spectrum. Prisms also provide this effect. When light hits a prism at certain angles, the light will refract (bend), causing it to be separated into its individual frequencies. This effect occurs because of the shape of the prism and the angle of the light. If you look closely at what happens as the light wave enters the prism in the second diagram, you will notice that it bends down. This bending occurs because the light travels faster through the air than it does through the prism. When the lower portion of the wave enters the prism, it slows down. Since the upper portion of the wave (still in the air) is traveling faster than the lower portion, the wave bends. Similarly, as the wave exits the prism, the upper portion"}, {"title": "rpj-common-crawl-2023-06", "text": "travel through various media, such as air and glass, to the person. Light can also arrive after being reflected, such as by a mirror. In all of these cases, light is modeled as traveling in straight lines called rays. Light may change direction when it encounters objects (such as a mirror) or in passing from one material to another (such as in passing from air to glass), but it then continues in a straight line or as a ray. The word ray comes from mathematics and here means a straight line that originates at some point. It is acceptable to visualize light rays as laser rays (or even science fiction depictions of ray guns). The word \u201cray\u201d comes from mathematics and here means a straight line that originates at some point. Figure 1. Three methods for light to travel from a source to another location. (a) Light reaches the upper atmosphere of Earth traveling through empty space directly from the source. (b) Light can reach a person in one of two ways. It can travel through media like air and glass. It can also reflect from an object like a mirror. In the situations shown here, light interacts with objects large enough that it travels in straight lines, like a ray. Experiments, as well as our own experiences, show that when light interacts with objects several times as large as its wavelength, it travels in straight lines and acts like a ray. Its wave characteristics are not pronounced in such situations. Since the wavelength of light"}, {"title": "rpj-c4", "text": "glass also absorbs a small portion of the light."}, {"title": "bm25", "text": "Q: Why removing one slab in Michelson-Morley experiment causes an elliptical fringe pattern? I performed Morley experiment using He-Ne laser. Two glass slabs were there and circular fringes were formed but when I removed one slab elliptical fringes were there (and less intense fringes). Why? In general is there any benefit of using two slabs? A: Look carefully at the two paths that the split beam of light covers, and think about the glass that the light goes through. Beam #1 bounces off the front of the beam splitter, goes over and off the front of a mirror, comes back and goes through the beam splitter at a $45^{\\circ}$ angle. (One pass through the glass of the beam splitter) Beam #2 goes through the beam splitter, over to the other mirror, comes back and goes through the beam splitter from behind at a $45^{\\circ}$ angle, bounces off the back of the half-silvered surface, and goes back through the beam splitter again at a $45^{\\circ}$ angle. (Three passes through the beam splitter glass) Adding a clear piece of the beam splitter glass at a $45^{\\circ}$ angle to the first path makes the two beams optically equivalent."}, {"title": "bm25", "text": "object, like the cup, it is absorbed. Place the glass in front of the graphics. Stop crying. Copyright \u00a9 2020 Mocomi & Anibrain Digital Technologies Pvt. You can use a water bottle\u2026 Login or Register above to download the content. Course: PHY156. 3:42. Because the light from the torch passes from a lower-index medium (air) to a higher-index medium (water) the light rays bend inside the water, then when the light comes out it is spread out around the room. As you sight at the portion of the pencil that was submerged in the water, light travels from water to air (or from water to glass to air). Also let them watch this video to find out how people use light refraction to light their homes! In the experiment that you just completed, light traveled from the air, through the glass, through the water, through the back of the \u2026 Learn the magic of science in this water refraction trick. When light passes from one material to another, it can bend or refract. It is yet another way to show kids light reflection. This bending by refraction allows us to make use of lenses, magnifying glasses, prisms, etc. Copyright \u00a9 2020 rookieparenting.com. That\u2019s why you can still see the penny through the side of the empty glass. Dinosaur Activities & Crafts; Preschool Activities; Preschool Construction Activities; Preschool Dental Health Activities; Spring Crafts & Activities ; Stem Activities; Summer Crafts & Activities. Jiang W, Chen RT, Lu X. In this cool science experiment from Look We\u2019re Learning,"}, {"title": "bm25", "text": "# Why photons reflect off glass? Why photon reflects and refracts through glass? Some photons pass through glass and some reflects.I know this is due to energy levels of electrons of glass, an incoming photon is unable to excite the electron to a different energy orbit. But I want to know, if an incoming photon is unable to excite an electron, then why not all the photons pass through glass? i.e. photons should not reflect off glass, all the photons should pass through glass. (Not sure! Just a thought)Is this due to atoms of different substances like water,glass or wood etc curve spacetime differently and thus it influences how photons interact with matter? i.e. some photons reflect and some refract. In classical electrodynamics, the process of how much light refracts, passing through the glass, and how much light reflects, is determined by the Huygens-Fresnel principle. This principle, named after Christiaan Huygens and Augustin-Jean Fresnel, is a method of analyzing the wave propagation patterns of light, especially in diffraction and refraction. It states that every unobstructed point on a wave-front emanates secondary spherical waves in all directions. Hence, the net light amplitude at a given point is the vector sum of all wave amplitudes at that point. This principle makes it very useful in visualizing what happens during light diffraction. Although, as Alex says in his answer, you can use the QFT approach, I would like to provide an alternative answer, using classical, (that is not quantum based) reasoning. It's just easier, for me anyway, to understand"}, {"title": "bm25", "text": "passes through the mirror and travels away from the glass plate. For a light beam passing through the mirror after multiple reflections, the position of the line-focus can be seen in the virtual image when observed from the light output side. Therefore, this light beam travels as if it originated at a virtual light source located at the position of the line-focus and diverged from the virtual light source. The positions of the virtual light sources for all the transmitted light beams automatically align along the normal to the glass plate with a constant spacing, that is, a number of virtual light sources are superimposed to create an optical phased array. Due to the interference of all the light beams, the phased array emits a collimated light beam in one direction, which is at a wavelength dependent angle, and therefore, an angular dispersion is produced. Wavelength resolution Similarly to the resolving power of a diffraction grating, which is determined by the number of the illuminated grating elements and the order of diffraction, the resolving power of a VIPA is determined by the reflectivity of the back surface of the VIPA and the thickness of the glass plate. For a fixed thickness, a high reflectivity causes light to stay longer in the VIPA. This creates more virtual sources of light and thus increases the resolving power. On the other hand, with a lower reflectivity, the light in the VIPA is quickly lost, meaning fewer virtual sources of light are superimposed. This results in lower resolving power. For"}, {"title": "bm25", "text": "index of the water cladding is 1. It is the dispersion of light by ordinary glass that is responsible for the familiar splitting of light into its component colors by a prism. Given n lines L and a point P L on each line, find the locus of points Q such that the lengths of the line segments QP L satisfy certain conditions. Light can be transmitted along an optical fibre with almost zero energy loss. This means that a person can be diagnosed and treated through a small incision cut. The critical angle is: If, instead of your finger, a high-speed bullet passes through the light beam, the resulting shadow will move even faster. The speeds of the shadow in the above example are still well below c , but you can extend this analogy to a wall 20 m away where the beam is 40 m in diameter or to a wall 2,, m away. Of course, a flashlight that would have measureable intensity over a wide angle at that distance would blind individuals near it, but one could still imagine the situation. It is, after all, analagous to a star that radiates uniformly in all directions with an appreciable intensity at exceptionally far distances. A planet or a giant cloud of interstellar dust passing between that star and the observer would cast a shadow, however small, that could move faster than c at the observer's location. True Believers: The Tragic Inner Life of Sports Fans Advances in Computers: Architectural Advances: 69 Unquenchable Fire"}, {"title": "bm25", "text": "used by Galileo. Newton solved the problem by swapping the lenses for curved mirrors so that the light rays did not have to pass through glass but reflected off it. At around the same time, the Dutch scientist CHRISTIAAN HUYGENS came up with the convincing but wholly contradictory theory that light travels in waves like ripples on a pond. Newton vigorously challenged anyone who tried to contradict his opinion on the theory of light, as Robert Hooke and Leibniz, who shared similar views to Huygens found out. Given Newton\u2019s standing, science abandoned the wave theory for the best part of two hundred years. 1704 \u2013 \u2018Optiks\u2019 published. In it he articulates his influential (if partly inaccurate) particle or corpuscle theory of light. Newton suggested that a beam of light is a stream of tiny particles or corpuscles, traveling at huge speed. If so, this would explain why light could travel through a vacu\u00fcm, where there is nothing to carry it. It also explained, he argued, why light travels in straight lines and casts sharp shadows \u2013 and is reflected from mirrors. His particle theory leads to an inverse square law that says that the intensity of light varies as the square of its distance from the source, just as gravity does. Newton was not dogmatic in Optiks, and shows an awareness of problems with the corpuscular theory. In the mid-eighteenth century an English optician John Dolland realized that the problem of coloured images could largely be overcome by making two element glass lenses, in which a"}, {"title": "bm25", "text": "definition of the concept while the example of the multimedia display provided was presented in Figure 7. From the two MBI 2 displays, students were trained to identify patterns of formation of light trajectories that passed through convex lenses. Students observed how the light passing through the lens was refracted so that it intersected at a certain point. The video display at the first Figure 7 aimed to guide students to identify the nature of the convex lens that was collecting light passing through it. In the second Figure 7, a simulation displays of the shaping of objects based on the path diagram of light. Light from objects passing through the convex lens produced intersections of light paths where the object's shadow was formed. Students were trained to be able to identify the nature of the formation of shadows based on the comparison of the shape of the object's original shadow shape. The aspect of giving further explanation became the aspect which had the highest N-gain value compared to other aspects. It was inversely related to clarifying aspects. There were two items of the critical thinking skills test instrument in the form of multiple choice which were used to test aspects of giving further explanation. Both of these items tested students to explain the further meaning of a concept that was raised. Figure 8 presented one example of the items used to test the critical thinking skills aspects of providing further explanation. For this aspect, students were expected to be able to define the meaning of"}, {"title": "bm25", "text": "Do I Need Glasses? Vision can change; need an eye exam? How do you know when it's time to get glasses? Short answer is, get an eye exam. If your eyes are bugging you in any way, it's time to get them checked out! But sometimes our vision changes without us realizing. Sometimes we just need a little more light for doing close-up work. Either way, you shouldn't be straining or squinting. Seeing well is important for healthy eye development and can be a matter of life and death, if you're a driver. So you're wondering \"Do I need glasses?\" You might, but there are a myriad of reasons why. The main cause of vision problems are refractive errors. When light passes through an object, it bends. This is called refraction. Light must pass through the cornea and the lens and reach the retina in order for you to see. When the shape of the eyeball or the cornea prevents light from focusing directly on the retina, that is a refractive error. The natural aging of the lens can also cause refractive errors. Being nearsighted (also called Myopia.) Nearsightedness means that you can see things that are close but they become blurrier the further away they get. Being farsighted (also called Hyperopia.) Farsightedness means things in the distance are clearer than things that are close-up. Presbyopia also affects close-up vision, but is a result of the natural aging of the eye. It can affect anyone over the age of 35 but is more likely the older"}, {"title": "bm25", "text": "front of a plane mirror seems to be _______m away from his image. Here is the activity to show the seven different colors of sunlight. The objects which does not have their own light. \u2192 Light casts shadow. We see only those objects from which reflected rays enter our eyes. (b) A diffused reflection takes place on a chalk powder because its surface is uneven. Name the ray which comes back from the surface after reflection. All types of questions are solved for all topics. wave as well as particle. Clean it and put it on a white sheet of paper. Media having such a property are termed dispersive media. Lesson Extensions. Soln: The law of reflection states that. (d) Marble floor with water spread over it. (c) Real at the surface of the mirror and enlarged. The light reflected from the wall, from the trees, from whatever rough surface, these are the examples of diffused reflection. Target Vocab: Santa (G.B. These solutions for Reflection Of Light are extremely popular among Class 8 students for Science Reflection Of Light Solutions come handy for quickly completing your homework and preparing for exams. Light Class 8 Science Chapter 16 as per NCERT Book used in CBSE and other Schools. Wash your eyes with cold water at least three times a day. NCERT Class 8 Physics Chapter 16 Explanation and Question Answers. The process when light falls on a surface may pass through the surface is known as transmition. Convex and Concave Lenses. Rainbow is the natural phenomenon in"}, {"title": "bm25", "text": "specific wavelengths of light, fluorophore dyes will reemit light at longer wavelengths (which contain less energy). In the context of TIRFM, only fluorophores close to the interface will be readily excited by the evanescent field, while those past ~100 nm will be highly attenuated. Light emitted by the fluorophores will be undirected, and thus will pass through the objective lens at varying locations with varying intensities. This signal will then pass through the dichromatic mirror and onward to the detector. Cover Slip & Immersion Oil Glass cover slips typically have a reflective index around , while the immersion oil refractive index is a comparable . The medium of air, which has a refractive index of , would cause refraction of the excitation beam between the objective and the coverslip, thus the oil is used to buffer the region and prevent superfluous interface interactions before the beam reaches the interface between coverslip and sample. Objective Lens The objective lens numerical aperture (NA) specifies the range of range of angles over which the system can accept or emit light. To achieve the greatest incident angles, it is desirable to pass light at an off-axis angle through the peripheries of the lens. Back focal plane (BPF) The back focal plane (also called \u201caperture plane\u201d) is the plane through which the excitatory beam is focused before passing through the objective. Adjusting the distance between the objective and BPF can yield different imaging magnification, as the incident angle will become less or more steep. The beam must be passed through the"}, {"title": "bm25", "text": "causes the paths to bend with a radius proportional to the particles velocity and with a sense that dependent on both the particles charge and the direction of the particles velocity. In high energy (compared to $m_e$ events) such as the one pictured, the particles are nearly co-linear at the ... 2 The violation of gauge invariance by this term is the \"only\" reason why it's never written down \u2013 as long as we define the word \"only\" to include all other reasons that may be shown to be \"physically equivalent\" to gauge symmetry. Gauge symmetry is extremely important and its violation would make a similar theory inconsistent, especially at the quantum ... 2 In classical electrodynamics, the process of how much light refracts, passing through the glass, and how much light reflects, is determined by the Huygens-Fresnel principle. This principle, named after Christiaan Huygens and Augustin-Jean Fresnel, is a method of analyzing the wave propagation patterns of light, especially in diffraction and refraction. It ... 2 Photons come with chirality, so you should consider angular momentum conservation as well. For $1\\gamma \\to 2\\gamma$ scattering, this will not be possible. (I'm assuming production of collinear photons only; it's obvious when two are not collinear, energy and momentum conservation will be violated) 1 But I want to know, if an incoming photon is unable to excite an electron, then why not all the photons pass through glass? i.e. photons should not reflect off glass, all the photons should pass through glass. While I don't know the exact"}, {"title": "bm25", "text": "finger placed behind the device is readily visible, but a finger placed within the cloak vanishes! For about \\$50, you too can make your own \u201ccloaking device\u201d, albeit an oversimplified and crude one! Let\u2019s take a look at how it is done. The device is constructed out of eight glass right-angle prisms arranged as shown in the top-down photograph below. The operation of the cloak is really simple to explain. Suppose we look through the device from the bottom up; light coming from above bounces through the system as shown in the following image. (Rays have been color-coded to clearly show path of travel.) The illusion is obviously not perfect \u2014 looking at the \u201ccloak\u201d from any direction other than directly in front of one of the flat faces will not provide any effect, other than a highly distorted image. This is not exactly a flaw, as more recent cloaking investigations have focused on such \u201cdirectional\u201d cloaks as a way to simplify the design requirements. But an interesting question arises: the prisms are made of clear glass: why doesn\u2019t some of the light passing through the system just go right through the side of the prism and into the diamond-shaped cloaked region? For that matter, why doesn\u2019t some of the light escape out through the sides of the cloak as it bounces around? The answer is that the light is totally internally reflected at the glass interfaces, and none escapes until it hits the exit surface head on. What is total internal reflection? As discussed in"}, {"title": "bm25", "text": "this reddit discussion - in which they talk about the fact that both sides of the mirror are actually reflective. That type of mirror doesn't reflect just one way - light from both sides are transmitted and reflected. It only works when there is a huge discrepancy in lighting conditions - for example, the interrogation room is brightly lit, while the observation room is dark. The mirror works by reflecting only a percentage of light. Since there is so much light coming from the interrogation room, whatever percentage that is reflected drowns out any light that is transmitted from the observation room, so to them it looks like a mirror. ref But from the language point of view, both 'one way mirror' and 'two way mirror' are synonymous. A: I think more commonly \"two-way mirror\" is used. It makes sense to think of the common mirror as a simple \"one-way mirror\". That makes some sense scientifically as the photons radiate off your body, then bounce off the mirror and into your eye. The photons are going one way (with a bounce). In the Interrogation Room the photons radiate off the suspect's body, then some bounce back to the suspect, but others pass through the glass to reach the observer's eyes. The photons are going two ways."}, {"title": "bm25", "text": "a 4.5-mm diameter double convex glass lens (lens focus 6 mm) was coated on one side with a 30-nm gold film. The lens was placed with the gold-coated side down on top of a flat glass slide coated with a 70-nm gold film. The air gap between these surfaces has been used as an adiabatically changing waveguide. A simplified schematic of the test geometry is shown in Fig. 2 (not to scale). The point of contact between two gold-coated surfaces is visible in Fig. 3(a). Newton rings appear around the point of contact upon illumination of the waveguide with white light from the top. The radius of the l th ring is given by the expression, where 0 r is the lens radius. Figure 1(b) shows the central area around the point of contact; it appears bright since light reflected from the two gold-coated surfaces has the same phase. Light from an argon ion laser was coupled to the waveguide via side illumination. Light propagation through the waveguide was imaged from the top using an optical microscope. Figures 3(e-h) show microscope images of the light propagation through the waveguide in an experiment in which a gold particle cut from a 50-\u00b5m diameter gold wire is placed inside the waveguide. A pronounced long shadow is cast by the particle inside the waveguide (Fig. 3(e,g)). This is natural since the gold particle size is approximately equal to 100\u03bb (note that the first dark Newton rings magnified in Figs. 3(f,h) have approximately the same size). Since the gold particle"}, {"title": "bm25", "text": "Newton's rings seen in two plano-convex lenses with their flat surfaces in contact. One surface is slightly convex, creating the rings. In white light, the rings are rainbow-colored, because the different wavelengths of each color interfere at different locations. The light rings are caused by constructive interference between the light rays reflected from both surfaces, while the dark rings are caused by destructive interference. The outer rings are spaced more closely than the inner ones because the slope of the curved lens surface increases outwards. The radius of the Nth bright ring is given by: $\\text{r}_\\text{N} = \\left[\\left(\\text{N} - \\frac{1}{2} \\lambda \\text{R} \\right ) \\right] ^{1/2}$ where N is the bright-ring number, R is the radius of curvature of the lens the light is passing through, and \u03bb is the wavelength of the light passing through the glass. A spherical lens is placed on top of a flat glass surface. An incident ray of light passes through the curved lens until it comes to the glass-air boundary, at which point it passes from a region of higher refractive index n (the glass) to a region of lower n (air). At this boundary, some light is transmitted into the air, while some light is reflected. The light that is transmitted into the air does not experience a change in phase and travels a a distance, d, before it is reflected at the flat glass surface below. This second air-glass boundary imparts a half-cycle phase shift to the reflected light ray because air has a lower n than"}], "hoverinfo": "text"}, {"x": [0.05978512391448021, 0.07977554947137833, 0.01811170019209385, 0.0771600529551506, 0.0036238643806427717, 0.09279486536979675, 0.021061846986413002, -0.02884485013782978, 0.0842297300696373, 0.07665640115737915, 0.022077912464737892, 0.022077912464737892, 0.022077912464737892, 0.022077912464737892, 0.022077912464737892, -0.014255995862185955, -0.05535284802317619, 0.05152459070086479, 0.09020554274320602, 0.025364486500620842, -0.004817781504243612, 0.04418913647532463, 0.04442986100912094, -0.0874260812997818, 0.030493948608636856, 0.03847808763384819, 0.06679077446460724, 0.001959135988727212, 0.03049391135573387, -0.08683231472969055, -0.05535285174846649, -0.05535285174846649, -0.11162722855806351, -0.009383101016283035, 0.0029287219513207674, 0.019355623051524162, 0.04301309585571289, -0.07148933410644531, -0.07148933410644531, 0.004456495866179466, 0.04628749191761017, 0.005416732747107744, 0.05316726863384247, -0.0015613073483109474, -0.04041063040494919, 0.05556400865316391, 0.0043603116646409035, 0.0043603116646409035, -0.028696032240986824, 0.032581161707639694, -0.05089210346341133, 0.10111512243747711, 0.10111512243747711, 0.03388696908950806, -0.043568309396505356, -0.09888382256031036, -0.0007419767789542675, -0.00855678878724575, -0.04935799166560173, -0.08683231472969055, 0.03383960202336311, -0.07750797271728516, 0.03462579473853111, -0.0785202831029892, -0.1116272434592247, -0.13049960136413574, -0.051284123212099075, -0.06336177885532379, -0.05393489822745323, -0.043404512107372284, -0.031077811494469643, 0.002404844854027033, -0.017791396006941795, 0.09899533540010452, -0.02379761077463627, -0.11090128868818283], "y": [0.06787507236003876, 0.05067237839102745, 0.18009674549102783, 0.1166386604309082, 0.11527130752801895, 0.13142023980617523, 0.07896561920642853, 0.1156681552529335, 0.15333585441112518, 0.1514214426279068, 0.1752677708864212, 0.1752677708864212, 0.1752677708864212, 0.1752677708864212, 0.1752677708864212, 0.17069140076637268, 0.03607218340039253, 0.05491447076201439, 0.1275922656059265, 0.1535804718732834, 0.021206635981798172, 0.19150105118751526, 0.062414344400167465, 0.11781138926744461, 0.05955635383725166, 0.10848062485456467, 0.16329807043075562, 0.13488651812076569, 0.05955624580383301, 0.1117398738861084, 0.036072179675102234, 0.036072179675102234, 0.08372550457715988, 0.11819218099117279, -0.017353996634483337, 0.11123854666948318, 0.06855317950248718, 0.10464950650930405, 0.10464950650930405, 0.05238955095410347, 0.14596807956695557, 0.06399130076169968, 0.11366893351078033, 0.1454378217458725, 0.1324431300163269, 0.0653306394815445, 0.17364643514156342, 0.17364643514156342, 0.14838111400604248, 0.03439654782414436, 0.04269157350063324, 0.09050554782152176, 0.09050554782152176, 0.09614381194114685, 0.1267055869102478, 0.14657436311244965, 0.16698142886161804, 0.1177765503525734, 0.09367594122886658, 0.1117398738861084, 0.11117736995220184, 0.12888045608997345, 0.13266783952713013, 0.049151595681905746, 0.08372574299573898, 0.09007763117551804, 0.09127801656723022, 0.15907514095306396, 0.08160697668790817, 0.14463628828525543, 0.10832667350769043, 0.10138536989688873, 0.1880536526441574, 0.09553636610507965, 0.033106520771980286, 0.08209405094385147], "mode": "markers", "name": "Cluster 3", "marker": {"size": 8, "color": "rgb(251,128,114)"}, "text": ["Document 15", "Document 65", "Document 81", "Document 137", "Document 174", "Document 186", "Document 187", "Document 247", "Document 253", "Document 271", "Document 285", "Document 286", "Document 287", "Document 288", "Document 291", "Document 292", "Document 296", "Document 315", "Document 336", "Document 384", "Document 410", "Document 414", "Document 431", "Document 469", "Document 473", "Document 475", "Document 485", "Document 521", "Document 529", "Document 576", "Document 582", "Document 583", "Document 658", "Document 671", "Document 673", "Document 691", "Document 702", "Document 708", "Document 709", "Document 715", "Document 729", "Document 761", "Document 790", "Document 797", "Document 804", "Document 833", "Document 835", "Document 837", "Document 869", "Document 917", "Document 936", "Document 965", "Document 966", "Document 994", "Document 1043", "Document 1049", "Document 1063", "Document 1077", "Document 1085", "Document 1100", "Document 1116", "Document 1138", "Document 1145", "Document 1168", "Document 1247", "Document 1301", "Document 1365", "Document 1367", "Document 1376", "Document 1406", "Document 1408", "Document 1413", "Document 1415", "Document 1453", "Document 1469", "Document 1481"], "customdata": [{"title": "rpj-common-crawl-2023-06", "text": "\u2013 is responsible for the faithful, or not, display of an image. Round elements, convex or concave surfaces create a distorted projected image as light rays are reflected in a different angle than the incident ones on the surface. Thicker elements can also create distortions compared to thinner ones; if we look at a structural glass pane perpendicularly it appears transparent, while if we look at it longitudinally it appears translucent. Free-Form Shape Cold-Bent Structural Silicone Glazed Fa\u00e7ades - Design Concept and Challenges This is more obvious when we stack glass panes on top of each other; they transmit light but prevent visual connection. Similarly, cast glass produced in larger thicknesses can create more distortion compared to thinner float glass, due to the larger distance the light has to travel through the medium. Given the fact that a flat glass surface can transmit, absorb and reflect the light, the more the layers the greater the optical illusions (Brzezicki 2017). This phenomenon is evident in cavity geometries, such as hollow glass, where the double panes create more reflections and alter the perceived image, or alternatively, in the overall configuration of the structure. A monolithic cast glass wall would create less distortion than a wall of the same thickness comprising of fins and plates under certain angles of view; the more the overlapping elements, the greater the optical phenomena (Fig. 11). Figure 11. Degrees of optical illusions related to the surface treatment, geometry and configuration of the glass elements: a) Translucent surface diffuses the light and allows for"}, {"title": "rpj-common-crawl-2020-05", "text": "that the end of the metal rod, which is clearly visible through the transparent glass, is glowing far brighter than the glass. The rod is glowing bright red; the glass is glowing a relatively dim orange. In fact, if we look carefully, we see that the part of the glass immediately next to the end of the rod actually looks dark; that part of the glass may be the coolest part, though it's certainly at least as hot as the rod end. The visible orange glow seems to be limited to the portion a finger's width away from the end of the rod, where we might expect the glass to be substantially hotter than the rod. So, what can we say? The glass is apparently transparent, or nearly so; it is glowing, but apparently quite a bit less strongly than the metal rod embedded in it. The second law predicts that transparent glass should glow less brightly than the opaque rod, and that to the extent that the glass glows, it must not be fully transparent. While these photos don't let us conclude anything quantitative about either the brightness or transparency of the glass, they seem to be consistent with what was predicted. Unfortunately we also can't tell from these pictures whether the glass has become any less transparent when heated to the point of glowing. This is an unsatisfactory conclusion, and I may add to this section if I can obtain some more quantitative results. Figure 6.3a -- Shadow of candle, cast by flashlight Candle"}, {"title": "rpj-common-crawl-2022-05", "text": "their glass confines."}, {"title": "rpj-common-crawl-2019-30", "text": "also explain why sound cannot penetrate. The internals of this wall are effectively a vacuum. As for the power requirements, a civilisation that has time/space sheering knowledge to the ability of this wall, could easily transmit power through a much smaller time/space shear from some astronomical power source such as a neutron star/black hole/etc... Necreaux Kain0_0Kain0_0 You need a secondary structure, a primary one, and transparent cladding Modern day skyscrapers are often clad in glass, to form full height glass 'walls'. This is achieved with what is called a 'curtain walling system'. It is essentially a primary structure, with a secondary structure attached that supports smaller glazed panels. This enables the following advantages: The wall is not supported by glass, but instead a protected robust structure behind it. The wall is partially flexible, wind loads could slightly bend the wall as the glass is segmented. The secondary structure under could cater for deflection, while the primary structure caters for the main static load. The glass could be as thick, strong or rigid as needed, just being accommodated with a thick structure as needed behind it. The structure behind can be a truss-like structure, using lightweight steel elements (much like high voltage towers), in particular if you do not require the wall to be habitable. The interior structure has the added advantage that it is protected from weather. The primary structure being protected could be large concrete columns, or thick steel columns, as large as is necessary The glass could be replaced individually from behind if any"}, {"title": "pubmed", "text": "Reflection in the glass."}, {"title": "rpj-common-crawl-2021-04", "text": "inherent stiffness which came with the change in geometry from flat to curved was sufficient to require only two 12mm-thick-plies of glass laminated together to span the 9m height. As a comparison, a flat glass would have required approximately 10 layers of 10mm glass, to achieve a similar performance over the span of 9m. The thinness of the glass also increased its transparency with the thicker build up having an increased light absorption. The curvature results in an increase in light transmission of 20%. But this was not the only benefit of the thinness of the glass. \u201cThe colour plays a very important role in the perception of transparency,\u201d says Eckersley O\u2019Callaghan Associate Director Lisa Rammig. \u201cThe smaller the perceivable tint in the material, the clearer the glass appears. \u201cEven on a glass tube with a reduced iron content as used in this installation, a tint is existent, which becomes more visible when more layers of glass are stacked and laminated together.\u201d \u201cThe two layers that are to be laminated, have to be curved together in the same mould to achieve the dimensional precision that was lacking in the initial borosilicate tube splice test. There is then a negotiation between exposure time in the oven to achieve the desired geometrical precision and the quality of the glass surface. Longer exposure to heat can cause visible mould marks on the surface of the glass. CRICURSA did an excellent job at testing and optimising this throughout the manufacturing period\u201d Image courtesy of New World Development Company Limited A"}, {"title": "rpj-c4", "text": "light scattering. The translucent glass optimally uses the incident daylight and distributes it evenly throughout the room without any shadow. The glare from the sunlight is greatly reduced."}, {"title": "rpj-c4", "text": "how the lid is cocked in the glass? (no matter how many times I straighten it, it goes back that way) Well in the shadow it looked perfectly straight!!!! I didn't think I better start trying to 'correct' it...as I think it has lots to do with more how we perceive it than how it is, I think the shadow is showing the BACK part of the elipse....anyways...I'm really just glad it looks like the glass vase....close is good enough for me on this one LOL!!!!! Never thought I could get this close without real measuring and griding...I'm content to blame it on the painter and not the glass blower lol!!! Thanks Nori....I love the vase...used to be encased in a glass ball you could shake and rearrange...it got dropped :mad: :crying: and I came up with another way to have it. I finally saw what you are talking about and you know what is throwing everybody off is the sand in the jar - that is an opposite ellipse and it makes your eye want the lower ellipse to be the edge. I know this does not make sense - but that is what it is doing. Oh, I get it. I see what Mo is talking about. I was so enamoured by the work on the glass I didn't see it the first time. Consider what I have attached here. The lid, at least to me, looks like it's wedged inside the opening. According to your shadow on the wall, you'd expect to find"}, {"title": "rpj-common-crawl-2021-04", "text": "Plate Glass? What is Offhand Glass Blowing? What is Glass Blowing? You cannot see through spandrel glass from the outside, whereas you can see through vision glass from outside. Spandrel glass, from a heat gain standpoint, can pretty much be considered opaque. It hardly lets any light in and is very good for stopping the suns radiation. Vision glass lets a lot more heat in, and a film or tint on the glass helps reduce heat gain. @ Aplenty- I would just like to point out the difference between spandrel glass and the glazed glass on a building. Spandrel glass is designed to hide the structure, so it is created to be only opaque enough to give the glass depth and dimension. The glazed glass that covers the windows is meant to be translucent. The coatings are designed to let light in, but control heat transfer, brightness, and condensation. Babalaas @ Aplenty- You are right about what spandrel glass is. Architects use spandrel glass to create the flowing glass curtains that wrap around some structures. A perfect example of a building cloaked in spandrel glass and tinted double insulated glass would be the Mandalay Bay Casino in Las Vegas. The entire hotel is covered in insulating glass coated with an optically thin 24K gold film. Do not quote me on this, but I am pretty sure that the spandrel glass is flecked with 24K gold as well to match the insulating glass. There are also vertical stone columns that run up three quarters of the building"}, {"title": "rpj-c4", "text": "will persist for a long time and it\u2019s safer than regular glass Lee, SE12. It\u2019s like seeing shapes in cumulus clouds on a reasonable moment. You can select from various patterns to fit your taste and to match your house decor. Many colors are available and a few manufacturers will also offer customized colours. The quantity of light that may pass through an object depends upon its density of molecules. A material through which it cannot pass at all. Also, starting and keeping a fire demands patience and savvy. The very best thing to say about aluminum is due to its strength the frames are inclined to be very narrow allowing more glass Lee, SE12. Obscure glass Lee, SE12 can be made so in two or three various ways. The lovely glass Lee, SE12 can work nicely with any kind of office dAcor and it may also be utilized as an accent on several different kinds of office desk materials. A wine glass Lee, SE12 consists of red wine. In this instance, the wood has to be pressure treated wood to steer clear of rot from the water it\u2019s going to be subjected to constantly. With the additional benefit of having the ability to angle light away from precious furniture to stop it fading. Whether you\u2019re thinking about redoing your bathroom, replacing old windows or doors throughout the home, or including a distinctive flare to a specific window in your house, taking the opportunity to check at your options is well worth the effort. Installing an"}, {"title": "pubmed", "text": "Through the glass lightly."}, {"title": "pubmed", "text": "Through the glass lightly."}, {"title": "pubmed", "text": "Through the glass lightly."}, {"title": "pubmed", "text": "Through the glass lightly."}, {"title": "pubmed", "text": "Through the glass lightly."}, {"title": "rpj-common-crawl-2021-04", "text": "one hand, you do business with them as artists. On the other hand, you discover that you really like each other and you become friends. And now we have this second opportunity to work with them. And what was happening there was when we went to tear the walls down, we would wind up with two caves basically, because the apartments were built that way. And the question was, how do you transmit light through the apartment- MRS. ANDERSON: Without it being a clear window, because you need to have privacy. MR. ANDERSON: And a lot of what they do, and you were talking before about Paul's lecture at the GAS [Glass Art Society] conference, a lot of what they do in the way they structure their castings has to do with moving light. And it's really quite unbelievable. Sometimes I'll get up in the morning in Florida, and I'll know that it's too early, not because I'm looking at the clock, but because one of their windows, an internal window, isn't glowing. When it starts to glow, I know it's time to get up. If it's not glowing, I know it's time to roll over. And they're fabulous. MS. OLDKNOW: That's great. MR. ANDERSON: And they're not only beautiful works of craftsmanship. They all have some thinking that goes into them. So they were concerned in Florida to do beach grass. They were taken by beach grass in South Florida, so each of the windows has that theme, and butterflies and things built in. And"}, {"title": "rpj-c4", "text": "The shadow box is constructed with a wood frame and two plates of coated glass. Light and illusion frame this creation and define the objective. Depending on the light source, various colors in the spectrum are visible."}, {"title": "rpj-common-crawl-2022-05", "text": "its original transparency. But the exchange is a thermal process, and the more heat the lens can transfer into the air, the faster it can change. By comparison, in hot environments, the glasses will take longer to release heat and lose their shading properties. There are two ways to apply this darkening material. In the beginning, manufacturers mixed the material in with the glass, so that it permeated the lenses. But the glass versions of photochromatic glasses were heavy and awkward, and as technology advanced, they were replaced with both plastic and polycarbonate materials. The silver halide substance was mixed in with these materials in the same way, but the glasses were much lighter and more flexible. Since the lens material darkened throughout with this permeation approach, how dark the lens become depended on how thick it was. Thin lenses did not provide as much shading protection, and thick lenses could become too dark for users. To solve this problem, manufactures began also applying the silver halide as a film over the top of lenses, allowing them to control the darkening qualities much more precisely."}, {"title": "rpj-common-crawl-2020-05", "text": "optical qualities of annealed glass. The induced stress condition sometimes produces a slight bow in tempered glass lights. Tempered glass that has been manufactured in a vertical tempering oven contains small surface depressions resembling dimples along one edge. These marks are caused by the pointed metal tongs which support the glass during its passage through the oven. Glass which is passed horizontally through an oven may contain a very slight surface wave caused by contact with the rollers. The waviness can sometimes be detected when viewing reflected images from a large distance. Finally, the air quench nozzles discharge air in a fixed, reciprocating or rotating motion. The area of air quench can be seen through polarized glass as arrays of irridescent spots or lines. Under some lighting conditions these patterns can be seen in ordinary light. Architectural: Myst\u2122 Acid-Etched Myst\u2122 Color Switchable Glass Anti-Reflective (Non-Glare) UV Blocking Elevator Interiors Glass Floor Panels Glass Stairs Partitions / Railings - About Us - Contact Us - Home - Copyright \u00a9 GrayGlass Company"}, {"title": "rpj-c4", "text": "can do when you thicken it up, or thin it down and how the light moves through it as different shapes and how drop-dead amazing that is from a phenomenological point and the capacity with which one, in mastering that material, can manipulate that phenomenon. That is a perfectly good subject to play with. It is what Rothko did with colour.\" Glass makes itself available to light, and light in interaction with glass can present to us as ambiguity. The ambiguity of glass and light emotively engages us as phenomenon and enables us to experience the transcendental. \"The intrinsic enigma of glass, as an extraordinarily chameleon-like substance created in fierce heat of the furnace from common and utterly unremarkable ingredients, accounts in part for the apparently universal obsession with glass metaphor and imagery. Glass has been employed, with no small degree of paradox, to signify transience as well as endurance, ambiguity and clarity, turmoil and tranquillity, purity and evil, deception and truthfulness, rarity and worthlessness. It may be that glass is the most universal of all \u2018material\u2019 sources of metaphor. \" I speak of the fecundity of glass and in great part this lies in the conceptual richness of its history, which in turn provides a prolific ground for allusion and metaphor. Metaphor can also come from the physicality of the glassmaking process. These metaphors can expose what lies at the centre of our existence. Conceiving the transience of physical expressions of our being, such as breath, artist/educator Gabriella Bisetto recreated these physical expressions as permanent"}, {"title": "rpj-book", "text": "reflected off the glazing. Note the long shadow of the pushpin and the reflections onto the ground below the window. Even complicated shading problems are easy to solve by physical modeling. For example, the analysis of a shading system for a complex building with odd angles and round features (Fig. 9.17g) is no more difficult than the analysis for a conventional building. Figure I.4g in Appendix I also shows how a sundial can be used with a heliodon to test models. See Appendix I, Section I.4, for an explanation of this alternate method of testing models. **Figure 9.17g** No matter how complicated the shading problem is, physical modeling can help the designer. Reflections from a pool are also simulated. Also note the sundial, which can be used as an alternative method to test models (see Appendix I). Since heliodons can also easily simulate the shading from trees, neighboring buildings, and landforms, their use is also very appropriate for site planning and landscape architecture (Chapter 11). ## 9.18 GLAZING AS THE SHADING ELEMENT Even the clearest and thinnest glass does not transmit 100 percent of the incident solar radiation. The radiation that is not transmitted is either absorbed or reflected off the surface (Figs. 9.18a\u2013d). The amount that is absorbed depends on the type of, additives to, and thickness of the glazing. The amount that is reflected depends on the nature of the surface and the angle of incidence of the radiation. Each of these factors will be explained below, starting with absorption. **Figure 9.18a** The total"}, {"title": "rpj-c4", "text": "of the glass."}, {"title": "rpj-common-crawl-2023-06", "text": "in those occurrences, the glass panel has to remain perceptible. We decided to gift it with some physical yet stylized properties of real glass: glare and reflection. The Importance of Light Just as for the \u201cspace haze\u201d, we relied on light to make our glass panel shine. First stop: the glare. Even if it serves as a display for our user interface, the glass panel is not a typical screen and, as light comes through, we could not produce a glare effect similar to the one you can experience with your own computer monitor. However, stars have an important place in our game and we ended up with a half-halo half-glare effect that helps grounding the glass panel and understanding the actual movement in space during interplanetary travels. The glare \u201cring\u201d can be seen during the travel phases as the screen-space position of the star changes This is basically a screen-space effect relative to the position of the current star. The further away from the screen-space position of the star (simulating a grazing light), the grayer the glass becomes. And as we only consider the center of the star, with its light radiating around it, the effect produces a round shape on the glass panel. The rest consists of a subtle mix of gradient interpolations and careful blending. A Reflection on Life To create a mirror, you need a sheet of glass and some reflecting coating (generally some kind of silver nitrate compound) on the back. But in the end, it is the combination of all"}, {"title": "rpj-common-crawl-2022-05", "text": "Shadows of stained glass: an analytical look at animated horror Posted byJGS editor July 19, 2020 October 31, 2020 Posted inAnime, Movies, Science Fiction Nalin Bhardwaj University of California, San Diego, CA, USA. Email: nalinbhardwaj (at) nibnalin (dot) me One of my favorite \u201cthings of beauty\u201d are stained glass windows. By themselves, they contain intricate works of art with vivid color palettes that overlay silhouettes of the outside world. They\u2019re like a dreamy, imaginative capture of the beauty of nature and of the precise capability of human to weave intricacy into the commonplace object. But what make stained glass an extremely unique medium is its shadow. The shadows stained glass windows cast serve a utilitarian architectural purpose (that of lighting insides of churches and other buildings) while being a deep expression of color and emotion (Figs. 1, 2). It is almost as if every stained-glass panel has the capability to tell a multifaceted story by itself. Figure 1: The north rose window of the Chartres Cathedral, France. Photograph by Eusebius (Guillaume Piolle), 2009; extracted from Wikimedia Commons. Figure 2: Nasir-ol-Molk Mosque, Shiraz, Iran. Unknown artist; extracted from Pinterest (imgfave). Films, as an art form, have the unique ability to fully engage our auditory and visual senses, just like the beautiful imagery of stained glass. Unfortunately, a side effect of the format of films is that our untrained brains are so engrossed in the momentary frames that they tend to miss the larger patterns of filmmaking. They neglect the \u201cshadows\u201d films cast. Most of us give very"}, {"title": "rpj-common-crawl-2021-04", "text": "on tiny model house with a transparent wood panel in the ceiling that the team built. The tests showed that the light was more evenly distributed around a space with a transparent wood roof than a glass roof. The channels in the wood direct visible light straight through the material, but the cell structure that still remains bounces the light around just a little bit, a property called haze. This means the light does not shine directly into your eyes, making it more comfortable to look at. The team photographed the transparent wood's cell structure in the University of Maryland's Advanced Imaging and Microscopy (AIM) Lab. Transparent wood still has all the cell structures that comprised the original piece of wood. The wood is cut against the grain, so that the channels that drew water and nutrients up from the roots lie along the shortest dimension of the window. The new transparent wood uses theses natural channels in wood to guide the sunlight through the wood. As the sun passes over a house with glass windows, the angle at which light shines through the glass changes as the sun moves. With windows or panels made of transparent wood instead of glass, as the sun moves across the sky, the channels in the wood direct the sunlight in the same way every time. \"This means your cat would not have to get up out of its nice patch of sunlight every few minutes and move over,\" Li said. \"The sunlight would stay in the same place. Also,"}, {"title": "rpj-common-crawl-2021-04", "text": "The Shape of Light Glassblower \u2013 Meticulously shapes glass using heat and air How do you lend form to light? With glass, as glassmakers and bespoke light fittings expert Lasvit demonstrates. Yuen Lin Koh investigates The gentle vibrancy of the day\u2019s first light, seen on the sparkle of a morning dew. The liveliness of sunrays scattered into a dance by the ripples of a stream. The calm of a shaft of luminosity, soundlessly pouring through the oculus of the Pantheon. For what is essentially electromagnetic radiation \u2014 if we are to break it down by physical science \u2014 light possesses magic. It\u2019s magic that can be seen, and certainly can be felt, yet has no form. Or does it have to be that way? Translating to \u201cLove and Light\u201d in Czech, Czech Republic-based glassmaker the Lasvit Group lends physical form to light with every piece created. The medium is perfect in the dualities it presents. Crystalline clear, it is visible \u2014 yet invisible in its see-through quality. An amorphous substance, its atomic structure resembles that of supercooled liquid, yet displays all the mechanical properties of a solid \u2014 like fluidity frozen in time. The company founded in 2007 might be young, but the craft is one that has been perfected through centuries. By combining the traditional artistry of North Bohemian glassmaking with the innovative creativity of world class designers, architects, engineers and lighting technology, Lasvit brings Bohemian glassmaking and designing to a new level. Well-known for its high profile collaborations with cutting-edge design leaders including the"}, {"title": "rpj-c4", "text": "will persist for a long time and it\u2019s safer than regular glass Sydenham, SE26. It\u2019s like seeing shapes in cumulus clouds on a reasonable moment. You can select from various patterns to fit your taste and to match your house decor. Many colors are available and a few manufacturers will also offer customized colours. The quantity of light that may pass through an object depends upon its density of molecules. A material through which it cannot pass at all. Also, starting and keeping a fire demands patience and savvy. The very best thing to say about aluminum is due to its strength the frames are inclined to be very narrow allowing more glass Sydenham, SE26. Obscure glass Sydenham, SE26 can be made so in two or three various ways. The lovely glass Sydenham, SE26 can work nicely with any kind of office dAcor and it may also be utilized as an accent on several different kinds of office desk materials. A wine glass Sydenham, SE26 consists of red wine. In this instance, the wood has to be pressure treated wood to steer clear of rot from the water it\u2019s going to be subjected to constantly. With the additional benefit of having the ability to angle light away from precious furniture to stop it fading. Whether you\u2019re thinking about redoing your bathroom, replacing old windows or doors throughout the home, or including a distinctive flare to a specific window in your house, taking the opportunity to check at your options is well worth the effort. Installing an"}, {"title": "rpj-common-crawl-2022-05", "text": "tree and beyond that a brick wall and beyond that my neighbour\u2019s window. There are security bars that cast shadows on the windowsill and wall. I first try to study the window\u2014the glass, which is dirty and smudged. The day begins. I get distracted. But when I look again sunlight is coming through, but not without a refractive change, as though this change is the cost of its passage through the glass (Baudelaire in The Painter of Modern Life: \u201c\u2026his eyes see the boisterous sun beating a tattoo upon his window-pane\u2026\u201d). I suspect the magic of glass has everything to do with this tattoo, this passage\u2014with light moving through atoms that are as rigid as crystal but as disorderly as liquid; the fastest thing in the universe entering my room where it has nothing much to do but reveal a dusty floor. The window allows light to enter so that it can loiter, hang about in my room with the dust that, now illuminated, is beginning to look like an array of miniature galaxies. It\u2019s easy to see why glass became a crucial material to places of worship, why it is heavy with the symbolism of creation, wisdom, knowledge, magic and so forth. Nothing remains mundane for long in its presence, entering from above, moving through an amorphous solid, wriggling all the way from the permanent storm of the sun into our interiors. Even the dust\u2014a collection of dirt, skin, hair, crumbs, fingernail clippings and who-knows-what\u2014hints at something superlunary in the light. Walter Benjamin, high on"}, {"title": "rpj-common-crawl-2021-04", "text": "on tiny model house with a transparent wood panel in the ceiling that the team built. The tests showed that the light was more evenly distributed around a space with a transparent wood roof than a glass roof. The channels in the wood direct visible light straight through the material, but the cell structure that still remains bounces the light around just a little bit, a property called haze. This means the light does not shine directly into your eyes, making it more comfortable to look at. The team photographed the transparent wood's cell structure in the University of Maryland's Advanced Imaging and Microscopy (AIM) Lab. Transparent wood still has all the cell structures that comprised the original piece of wood. The wood is cut against the grain, so that the channels that drew water and nutrients up from the roots lie along the shortest dimension of the window. The new transparent wood uses theses natural channels in wood to guide the sunlight through the wood. As the sun passes over a house with glass windows, the angle at which light shines through the glass changes as the sun moves. With windows or panels made of transparent wood instead of glass, as the sun moves across the sky, the channels in the wood direct the sunlight in the same way every time. \"This means your cat would not have to get up out of its nice patch of sunlight every few minutes and move over,\" Li said. \"The sunlight would stay in the same place. Also,"}, {"title": "rpj-common-crawl-2023-06", "text": "an indistinct countertop leaning against an indistinct wall. In each of its sixteen hollows a glint of refracted light hovers slightly off center like the highlights that radiate presence in the eyes of cartoons. From within these glints the tray feels surprised as if we snuck up on it, caught it doing something shameful. It\u2019s there, hiding something behind its back, utterly present and aware of us and in the same moment receding into its unknowability: into the soft focus and muted tones of the rendering and the perspectival instability of the tray\u2019s relationship to the surfaces that support it. Encountering residual fleck (ice tray) is akin to encountering an opossum in the dark, an effect that many of Getz\u2019 paintings achieve. As I approach Containers, I am surprised by a thin glass vessel sitting precariously near the edge of a surface, casting its shadow on the wall behind it. The flat light is coming from behind me as if I opened a pantry door onto this private scene and the shadow on the wall\u2015the shadow vessel behind (within) the glass\u2015is visible through the translucent container that\u2019s casting it. It\u2019s another species of image/after-image superimposition that sparks a recognition of presence in the painting. In this instance, seeing the shadow of the glass within the glass evokes an intense recognition of vulnerability and identification with the subject. Its shadow becomes something profoundly private, a self-image that it\u2019s attempting and failing to conceal. In that failure there\u2019s a twang, a reverberation between the volume of glass and"}, {"title": "rpj-c4", "text": "The shadow box is constructed with a wood frame and two plates of coated glass. Light and illusion frame this creation and define the objective. Depending on the light source, various colors in the spectrum are visible."}, {"title": "rpj-c4", "text": "The shadow box is constructed with a wood frame and two plates of coated glass. Light and illusion frame this creation and define the objective. Depending on the light source, various colors in the spectrum are visible."}, {"title": "rpj-common-crawl-2022-05", "text": "the curtain also makes a direct reference to photography and film that reveals these supposedly indexical mediums to be the magical and duplicitous agents of fictions. When the curtain is blown aside or slightly open, reality rushes in, but for Westman this is just another of the perceptual conceits that film and photography perform. In its essence every film is a special effect of still photography, animated by projection at 24 frames per second, which contains many other special effects. One of the partially revealed images to appear through separated curtains in for nights bathed in sodium vapour is a cuculoris. A simple device used in lighting for theatre, film and still photography, the cuculoris is basically a stencil that shapes light and shadow. The stencil is cut into a stiff material that simultaneously casts a shadow and allows light to pass through it in a pattern. Film noir cinematographers favoured the effect to create shadow silhouettes, venetian blind shadows and the effects of sunlight or moonlight passing through tree branches and windows. For the cuculorises she uses in the films Westman makes tracings of light, cast by sunlight or sodium vapour streetlamps, which she cuts out of plywood, zebrawood or cedar to create the natural effects of dappled light shining through leaves. Moving images of illumination found in the world, they parallel to the moving images made by light shining through projected celluloid film. One might say that for Westman the cuculoris and the curtain present the crux of the poetics of film, the projections"}, {"title": "rpj-c4", "text": "with a plan in mind next time lol!!! For a first attempt at glass, this came out great. The objects look like they are inside. Mine came out like they were pasted to the wall behind it. Greg...you're really putting the grins on my face today... quote Mine came out like they were pasted to the wall behind it. unquote LOL! All mine looked like that before AND they looked like they were made of an alien composition...a metal/wood/concrete/crap compostition LOL!!!! I'm with Greg, love glass but wouldn't know how to begin to do it, my one attempt looked like plastic. I too love the shadow. As I look at your picture I can just imagine the shadow moving across the wall. You have created a light dreamy feeling. I like it. Well, Mo...I wouldn't go to say it's spot on but there is some weird optical thing going on where it looks like it's tilting a touch at the top...in daylight part of the back part of the elipse shows but it didn't last night...not really trying to make excuses...can handblown glass be off a little??? :D ok...maybe a LITTLE excuse..but even straight on it looks odd...anyways...I adjusted that early today lol! At first I ran back and forth and then just settled for tweaks until I felt it looked better...oh...do you mean on the shadow??? because it does look like you're looking down on that...the whole thing was really strange...had two light sources and it just threw not what you'd expect as a shadow...see"}, {"title": "rpj-c4", "text": "Passing through the lens, light is partially reflected from glass surfaces, their faces, and inner parts of the lens housing. Part of the reflected light overlays image as scattered light distributed evenly over the whole frame area. The scattered light causes additional unwanted lighting of objects. If there is no scattered light, a lens would give an image with relative brightness of different areas matched with brightness of corresponding object areas. Brightness ranges of the object and its image could be same. But it is not so in real life. Light scattering in modern coated lenses is about 1-2%, sometimes 3% (non-coated lenses may have light scattering of 10-15%). But even this small value may affect image quality significantly in some cases. A scattered light overlay shadow parts of the image and makes them brighter that decreases overall image brightness range. Larger overall brightness range leads to higher effect of scattered light. Image contrast drops in bright and dark areas not evenly. Bright areas almost not affected. But in dark shadows scattered light produces noticeable effect. So, scattered light decreases overall image contrast and causes non-uniform rendering of brightness in shadows and at bright spots. On the color film, light scattering may cause unwanted toning of shadows with bright color of the object since such color will dominate in the scattered light spectrum. Taking into account large impact of the scattered light on the image quality, it is necessary to use lenses with as small light scattering ratio as possible, and protect lenses against side light"}, {"title": "rpj-c4", "text": "Special types of glass that rotate with different speeds cause a vivid play of light and lead to an alternating performance of the space and its environment. One\u2018s look at the glazed space is refracted in mirroring, transparency, change of colour and movement of the glasses. The fluctuating intensity of light and the changing light situation create new states of reflection. Lights and shadow migrate, fade, disappear and emerge elsewhere. Depending on the condition of light and air current as well as on the position of the recipient, the venue conveys an ever-changing variety of insights."}, {"title": "rpj-common-crawl-2019-30", "text": "of superstitious mumbo-jumbo about the mystical properties of silver. After all, you never see vampire hunters or the like cry 'Halt, vile spectre, for I wield the power of sacred aluminum!' Side note: Telescope and other special optical instrument mirrors place the reflective surface on the front, to prevent refraction as light passes through the glass. They are called 'first surface' mirrors for this reason. That science moment brought to you by the letter I (for incredulous). If you want to get really snippy with the whole ghost trap critique, wouldn't it be necessary for each and every interior seam to be perfectly reflective? Since that's impossible to achieve with flat mirrors cut and glued to plywood, wouldn't the 'ghost' (which hasn't been proven to exist anyway) simply slide out through any imperfect and therefore unreflective joining of walls? Okay. Forget all that. I'll give them a pass -- let's say some mystical property of mirrored surfaces does act to block the movement of spirits. You've caught a ghost, huzzahs and Miller Lites all around. That still doesn't explain what these ghost hunters did with the trap after confining their ghost. They took the trap outdoors, put dynamite around it, and blew it up. Eat C4, Casper. Okay, that's a first for a TV ghost hunting show. Dynamite, things blowing up? Not the usual visuals. But really? Let's say the mirrored cube did somehow trap a disembodied spirit. What possible good would blowing up the trap do? Wouldn't the spirit simply be freed? One second it's"}, {"title": "rpj-c4", "text": "Torn and rusted, a shelter for the lost, for the temporal. A shimmering world lays beyond this portal. It twists, turns and distorts to accommodate our gaze. An ephemeral glance. The last of Frank Gehry\u2019s IAC shots. These play on sunlight and reflection, a glimmer of another world beyond. Posted in Light, Reflection | Share & Bookmark | Your Thoughts? In which our protagonist sees the levels constructed of metal and glass, and thinks of ways to scale the mountain of steel. A glass arrangement reflects light through a window and mirror. Artificial elegance at its most transparent. A luxury indulgence of shattered illusion. Which one of these worlds would you rather inhabit? The one on the foreign side of the reflection seems like a lot more fun. In the second entry in this series, the shadow-crane makes its appearance. This is a nice effect: harsh light hits a jagged structure, but projects a soft abstraction onto the building surface. Bits of texture can be picked up among the different panels."}, {"title": "rpj-c4", "text": "Torn and rusted, a shelter for the lost, for the temporal. A shimmering world lays beyond this portal. It twists, turns and distorts to accommodate our gaze. An ephemeral glance. The last of Frank Gehry\u2019s IAC shots. These play on sunlight and reflection, a glimmer of another world beyond. Posted in Light, Reflection | Share & Bookmark | Your Thoughts? In which our protagonist sees the levels constructed of metal and glass, and thinks of ways to scale the mountain of steel. A glass arrangement reflects light through a window and mirror. Artificial elegance at its most transparent. A luxury indulgence of shattered illusion. Which one of these worlds would you rather inhabit? The one on the foreign side of the reflection seems like a lot more fun. In the second entry in this series, the shadow-crane makes its appearance. This is a nice effect: harsh light hits a jagged structure, but projects a soft abstraction onto the building surface. Bits of texture can be picked up among the different panels."}, {"title": "rpj-common-crawl-2022-05", "text": "that shines onto the opening of the tube. Greisen said: \u201cThe project team passed 5,000 light guides through all three sections of the first BrightWall to produce a facade that is fully insulating and that allows controlled daylight to pass through into the building.\u201d When placed within the concrete, the light guides transfer so much daylight into a room that the total window area needed is significantly reduced. The light guides and a slight modification of the concrete casting process have enabled researchers to create a building material that is really a wall and a window all in one. Let us know what you would like to enquire about\u2026"}, {"title": "rpj-common-crawl-2019-30", "text": "inside. \u201cBut the wall was so thick that the light from the window stayed near the window.\u201d That window was made of greased paper, not glass. Pioneers didn\u2019t put glass in their windows until they were sure they were going to stay a good long while; glass was expensive. It was an investment in longevity. A house with glass windows represented people who were there for the duration. Most pioneers started out with greased paper windows because they weren\u2019t sure how long they might be in that particular house. The window had to be covered so the insects and wild animals couldn\u2019t get in, but it also needed to let the light in. Whatever the window cover was, it had to be super cheap. Voila: greased paper. Now, you might be wondering how a window covered with paper could be of much use. How much light could get through paper? Not much. But GREASED paper, now, that was an entirely different thing. When you grease a piece of paper, the grease fills in all the fiber gaps, and any light that hits it doesn\u2019t scatter; it passes right through. Water doesn\u2019t do this; it dissolves the paper, whereas grease or oil just reinforces the paper and lets the light pass though. Not transparent, exactly, but certainly translucent. It let enough light through to be useful. Until someone accidently poked a hole in the paper, or a bear punched through, the family inside had enough light to get by until they could afford glass. Jane Goodwin is"}, {"title": "rpj-common-crawl-2023-06", "text": "see into the lighted room but not vice versa. The glass is coated with (or in some cases encases a layer of) a very thin almost transparent layer of metal (generally aluminum). The result is what appears to be a mirror from one side, and tinted glass from the other. A viewer in the brightly lit area has difficulty seeing into the darkened room, through what appears to be a mirror. To take full advantage of the partially mirrored surface, the target side should be brightly lit, to obscure any hint of light coming through the glass from the viewer\u2019s side. The darkened room is only completely obscured when it is in complete darkness. Sometimes a darkened curtain or a double door type vestibule is used to keep the viewer\u2019s side darkened. A flashlight held against the glass can be used to illuminate the darkened viewer\u2019s side, allowing someone on the lit side to see through. Two-way mirrors are used for: providing security, through covert viewing of public spaces for the protection of covert cameras for some police interrogation rooms\u201d Air's favorite bookseducationGulliver's TravelsHuckleberry FinnLegend of Sleepy Hollowone-way glass interrogation roomPeter Pan \"Matilda O'Donnell MacElroy\", \"past lives\", \"prison planet\", IS-BE, Is-Be Alliance, Top Secret A LETTER FROM NURSE MACELROY Image January 2, 2023 admin \u201c\u2026all IS-BEs could be helped to become more aware of the actual situation on Earth through the information in this envelope. This is why I sent these letters and transcripts to you. I want you to get these documents published. I want"}, {"title": "rpj-c4", "text": "This material must make OnoSendai cringe ;) However, it allows for modelling of glass windows as a single plane and always lets the sun shine through without long render times! Great for plane glass windows. Not recommended for glassware due to lack of fresnel effect."}, {"title": "rpj-common-crawl-2023-06", "text": "glass. Inboard of the glass is an opaque layer that is often formed by insulation or a metal panel mounted to the mullion frame. Monolithic glass is often provided in lieu of insulating glass because of the other curtain-wall insulation that is provided in these areas. Architects often like to include shadow boxes with dark backups into curtain-wall systems with non-reflective vision glass, rather than opaque spandrel glass, because shadow boxes can more closely mimic the appearance of the non-reflective vision glass, providing a more uniform appearance to the curtain wall. When used with lighter backups, shadow boxes add an element of depth to the curtain-wall design. The top, bottom, back and sides of the insulation or back pan are typically sealed to the surrounding framing to prevent the migration of warm moist air from within the building into the shadow box. Common shadow box problems include the following: Imperfect seals permit moist interior air to reach the shadow box area and condense on the inboard face of the spandrel glass. Such condensation can lead to staining of the spandrel glass and leakage to the interior surfaces below. It is almost inevitable that some imperfect workmanship, such as small air leaks into the shadow box, will occur because of the large number of joints in the framing, gaskets, insulation facers and other materials that must be sealed. In addition, the shadow box becomes hot from solar radiation, causing the organic seals to degrade and off-gas volatiles that stain the interior face of the glass. When combined"}, {"title": "rpj-common-crawl-2022-05", "text": "in the yard was oozing, the snow melted on the roofs of the buildings; she stood on the threshold, went to fetch her sunshade and opened it. The parasol, made of an iridescent silk that let sunlight sift through, colored the white skin of her face with shifting reflections. Beneath it, she smiled at the gentle warmth; drops of water fell one by one on the taut silk. This is how Gustave Flaubert describes Emma in Madame Bovary. Without the sifting sunlight, Charles couldn\u2019t catch her beauty. Perhaps that is why God created light on the first day. Ancient Chinese people contributed many inventions to human civilization, but we did not invent glass, nor did we use glass often (even though we did have it as early as the late Spring and Autumn period, i.e., early fifth century B.C.). It seems to me that the reason is more due to aesthetic considerations than practical ones. Glass lets in too much sunlight, rendering the space totally exposed. Ancient Chinese people frowned at the idea of a complete view of a place. How boring! How unromantic! They preferred shadows to light. In traditional East Asian architecture, we cover the window frames and door frames with paper. Paper softens the strong sunlight. The shapes of window frames and door frames\u2014flowery patterns, shapes of Chinese characters\u2014can cast their long mellow shadows to the inside of a house. Toilets become poetic, too! The fabulous Japanese writer Junichiro Tanizaki praised the Japanese toilet as \u201ca place of spiritual repose.\u201d Like Chinese ones,"}, {"title": "rpj-book", "text": "the room. You can buy prisms online from scientific supply stores or use old chandelier crystals, which can often be found in antique shops for a dollar or two. Ridged or etched glassware can have a similar effect, creating rainbows from a glass of water. Some architects have even used prismatic glass to create windows or skylights that bathe a space in rainbow reflections. Wind and sunlight are not the only ambient sources of magic. Depending on where you live, you might find specific conditions that give rise to unique effects. One dry night in February I climbed into bed in the darkness and saw flickers of yellow light in between the covers. It was the static electricity created by the friction between my pajamas and the sheets, but it felt as if I had discovered a hidden mystical power. Each night I rustled around to re-create the spectacle until the cold snap passed. If you live in a rainy area, you might find magic by installing a rain chain, an alternative to a typical downspout, which hangs from the edge of the roof and channels water to the ground through a series of metal cups or links. Rather than concealing the flow of rainwater inside an aluminum gutter, the chain celebrates it, turning a storm into a small waterfall. The extreme temperatures of the desert can produce magical mirages: illusory images that appear in the distance due to the bending of light as it passes through fields of hot and cold air. And of course,"}, {"title": "rpj-common-crawl-2022-05", "text": "one 'see through' the images. Glass can be a window or a doorway, can suggest isolation or entrapment, and can also reflect insight to inner life and thoughts. Glass and reflective metal are surreal materials - it is there and yet not there. You see the surface, but do you really see the surface? You see what is reflected in it, or what is beyond it. In painting these reflective elements, although the end product is a realistic looking piece, I find an exercise in abstract thinking. The process of creating the illusion of glass and metal involves breaking down the image into individual shapes and colors, and when viewed as a whole, creates a finished object. Similar to life, sometimes we only see bits and pieces of what is going on around us, but once we step back, we can get a clear perspective on the whole picture. CLICK HERE to View Amy's Virtual Gallery!"}, {"title": "rpj-common-crawl-2022-05", "text": "one 'see through' the images. Glass can be a window or a doorway, can suggest isolation or entrapment, and can also reflect insight to inner life and thoughts. Glass and reflective metal are surreal materials - it is there and yet not there. You see the surface, but do you really see the surface? You see what is reflected in it, or what is beyond it. In painting these reflective elements, although the end product is a realistic looking piece, I find an exercise in abstract thinking. The process of creating the illusion of glass and metal involves breaking down the image into individual shapes and colors, and when viewed as a whole, creates a finished object. Similar to life, sometimes we only see bits and pieces of what is going on around us, but once we step back, we can get a clear perspective on the whole picture. CLICK HERE to View Amy's Virtual Gallery!"}, {"title": "rpj-common-crawl-2022-05", "text": "If photography is the art of fixing a shadow, glass is the medium that transfers shadows onto film. For Joel-Peter Witkin, whose elaborate tableaux reverberate with the extreme conditions of life and death, glass holds powerful associations. \"Oldenberg,\" says Witkin, \"once described glass as 'lightning trapped in sand.' \" A day before the New York opening of Witkin's retrospective exhibition at the Guggenheim Museum, he spoke with Michael Sand about photography, morality, and human remains. My father had four brothers, all glaziers, and he would include me in their work. The first job we had was to take two-by-fours and break industrial glass, which he would replace. So my job was to break the glass. Of course, we had no goggles, no safety precautions. In the first two or three hours or so, I got a splinter in my eye. And he took it out. His hands were huge. He rolled my eyelash up with a wooden match--his hands smelled of putty, cigars, and dirt--and he took the splinter out. The splinter was in the white of my eye, and I was going crazy. Still, this was closest communication I had with my father, except when he would come over to the house and talk to my mother. They'd talk about money and things like that, because he had to pay alimony. He would visit later on, too, and show strange photographs. He took me aside and showed me some clips from Life magazine or Look magazine, the Daily Mirror, or the News (he wasn't a"}, {"title": "rpj-common-crawl-2022-05", "text": "understand something about the cultural system you are addressing, you might be able to pass right through its protective cell walls and get your message across. Reflecting on polarized light Imagine looking into a room where everything looks completely ordinary. But when you look into the mirrors, then all sorts of spooky things appear about the room \u2014 images, faces, writing. This could be an interesting way to tell an immersive ghost story. You could do such a thing using circularly polarized light. In ordinary linearly polarized light (as in many sunglasses and projectors), all the light waves vibrate at the same angle. But in circularly polarized light, the light waves spiral \u2014 either clockwise or counterclockwise. Most 3D movies are shown with linearly polarized light. When you wear those funny glasses, the filter over your left eye shows only polarized light slanting diagonally one way, and the other shows only polarized light slanting diagonally the other way. This works fine as long as you don\u2019t tilt your head to one side or the other. If you do that, then the angles don\u2019t line up anymore, and each eye ends up seeing both images, which ruins the effect. Some more expensive 3D projection works with circularly polarized light. The left eye filter sees only light waves that spiral one way (say, counterclockwise), and the right eye filter see only light waves that spiral the other way (say, clockwise). And the effect works just as well even if you tilt your head. In fact, you can rotate"}, {"title": "rpj-common-crawl-2020-05", "text": "within a glass tube, intended to prevent any escape of mercurial vapour\u2014a purpose hardly \u2018fulfilled in this case, as the apparatus had been fitted up hastily in an improvised sort of way, and was imperfect\u2014the condensation of vapour on the inside of the glass dimmed and somewhat obscured the light But it was nevertheless exceedingly vivid, and of a very decided bluish tinge\u2014so blue, indeed, that it was noticed that crystals of proto-sulphate of iron appeared quite colourless. It was also very steady, of great volume as compared with the spark produced by the usual carbon points, and, as the result showed, intensely actinic. Setting to work, I placed a piece of sculpture in bas-relief at a distance of about two feet from the lamp, at such an angle as to obtain the best effect, suspending a sheet of paper at one side to reflect light into the cast shadows, which were very black indeed. I used Ross\u2019s \u2018Orthographic lens (a favourite of mine at the time, as with it I had produced some of my best work), and worked with a large stop. I have, unfortunately, no note of the exposure, but it was just right, and the result all I could desire, no solarization of the lights (if I may use the term in this instance), and the shadows full of detail. I was much struck with the peculiarly penetrating power of the new light; so, when I returned the following evening to my improvised studio to print the negative I had taken, I"}, {"title": "rpj-common-crawl-2021-04", "text": "droplets, and the light scatters as it passes through. This results in the translucent, \"milky white\" appearance (OFF state). But when we apply the voltage, the LC droplets align, allowing the light to pass through. This results in a transparent state of the glass (ON state). The amount of light that passes through can be controlled by the value of applied voltage. If lower voltage is applied, there will be more LC droplets out of alignment, resulting in more light scattering and lower transparency. Conversely, as we increase the voltage, more droplets will align, thus resulting in less scattering and more transparency. An example can be seen below. The transparent state of \"smart\" window (left) and the opaque state (right) There are still several potential problems in the way of wide-spread use of \"smart\" glass: high level of haze in transparent state high driving voltage around 100 V short time of operation State-of-the-art \"smart\" glass State-of-the-art technology today is on the way to solve at least some of the problems described above [9]. One of the front-runners in this field is Scienstry, the company that developed the latest generation of \"smart\" glass - NPD-LCD Film. They utilized a novel non-linear polymer system that has been successfully used to solve all long lasting problems in switchable window industry, such as high haze in clear state,high driving voltage and short operational life time. The NPD-LCD technology has : theoretically and practically blocked all chemical factors that can cause the film to deteriorate. reduced haze in transparent state from"}, {"title": "rpj-common-crawl-2021-04", "text": "droplets, and the light scatters as it passes through. This results in the translucent, \"milky white\" appearance (OFF state). But when we apply the voltage, the LC droplets align, allowing the light to pass through. This results in a transparent state of the glass (ON state). The amount of light that passes through can be controlled by the value of applied voltage. If lower voltage is applied, there will be more LC droplets out of alignment, resulting in more light scattering and lower transparency. Conversely, as we increase the voltage, more droplets will align, thus resulting in less scattering and more transparency. An example can be seen below. The transparent state of \"smart\" window (left) and the opaque state (right) There are still several potential problems in the way of wide-spread use of \"smart\" glass: high level of haze in transparent state high driving voltage around 100 V short time of operation State-of-the-art \"smart\" glass State-of-the-art technology today is on the way to solve at least some of the problems described above [9]. One of the front-runners in this field is Scienstry, the company that developed the latest generation of \"smart\" glass - NPD-LCD Film. They utilized a novel non-linear polymer system that has been successfully used to solve all long lasting problems in switchable window industry, such as high haze in clear state,high driving voltage and short operational life time. The NPD-LCD technology has : theoretically and practically blocked all chemical factors that can cause the film to deteriorate. reduced haze in transparent state from"}, {"title": "rpj-c4", "text": "I'm having trouble figuring out how to correctly add a glass material to an object inside a building. Basically, I have this room (see image below), the left side of the room opens [with curtain wall] to the outside. Inside you have this \"mini town\" with all this storefronts. I hid most of the model so I can highlight the import area. My problem is with adding glass to an object. For some reason the material bypasses all my walls, specifically the exterior wall, and reflects the sky and horizon outside my scene. I only want the glass to reflect what's around it, like it should in a realistic setting. I can't seem to figure out why this is happening. I tested my scene further by putting a wall right outside my curtain wall so that no sunlight should be able to enter my scene. But for whatever reason, as soon as I designate a \"glass\" material to my glazing it ignores that wall and reflects the horizon. Update : Figured it out, you have to add \"Reflection Control\" object and...tada...everything is fixed. Good to hear that, amartindill, and thanks for sharing the solution too."}, {"title": "bm25", "text": "Live Glass interprets the colorful shadows produced by stained glass found in the Isabella Stewart Gardner museum and transforms them into a wearable piece that can be experienced by both the model and the audience. This wearable looks at color and light and the relationship between the two when water is added. The piece is made up of three parts: a central frame that holds the \u201cstained glass\u201d pieces, the \u201cstained glass\u201d made from heat-sealed vinyl pouches that hold dyed water inside, and a lighting system to cast shadows. Live Glass, inspired by the stain glass piece on display in the museum, is meant to challenge the way that art is typically viewed. In order to make the artwork feel more alive, the piece will be worn and shown off, casting ever-changing shadows. The user wears the piece around their waist and uses the attached lighting system to cast shadows onto themselves and the floor. The shadows produced by the piece are variegated which adds a new level of complexity and attraction to the piece. The variegated shadows are produced by shinning an led light through the pouches of dyed water. The effect that is created is similar to when sunlight reflects on a pool. Live Glass is to be worn in multiple fashion shows, including one at the Isabella Stewart Gardner Museum, and two for Boston fashion week. An educational exhibit that teaches people about binary communication, by providing a fun and accessible demonstration of how computers encode and send text data. For those who"}, {"title": "bm25", "text": "An ethereal brutalism. Bertrand Jayr This collection is like a tasting menu: each new bite is a surprise. Gourmets of design love to be surprised by details. Furniture of the Curb collection can\u2019t be taken in with just one glance. Each of their faces is unique and impacts differently the scenography of your interior. It is up to you to choose the orientation of these pieces of furniture accordingly. Matter, forms and light to cultivate shadows. Each side of the Curb collection is unique and has its own way of playing with light. The light is sometimes stopped by the concrete mass, sometimes filtered by the tinted glass.When it hits the bas-relief frieze, it casts bold shadows. The glass globe of the side table is mouth-blown. Its beautiful irregularities are revealed with the light that passes through it. When the light is low, the shadow cast by the table accentuates the contrast between the finesse of the legs and the slab of concrete. The tinted glass is a subtle homage to the late 1970s. The browns and greens that were so popular at that time have been replaced by a dark gray color that\u2019s both elegant and timeless. \u201cOrnamentation is an economic, moral and cultural crime.\u201d \u2013 Adolf Loos, 1908. \u201cOr not.\u201d \u2013 Lyon b\u00e9ton, 2021. Bas-relief, cornices, imposts, mantling, molding \u2026 At the beginning of the 20th century, the Modernist movement, under the influence of Alfred Loos (\u201cOrnament and Crime,\u201d 1908), set out to eliminate all ornamentation from buildings, furniture and other objects. Even Le"}, {"title": "bm25", "text": "bespoke glass shelves, you don\u2019t need to look any further than their transparent nature. Light is able to pass freely through the glass, giving the space a brighter and more airy feeling. If you\u2019ve got a lot of shelving in a room, it can easily become quite dark and oppressive as each one casts its own shadow. Bespoke glass shelves also work particularly well with LED lights which can provide a soft and subtle illumination. These can be positioned underneath, above or to the side of the shelf, depending on what look you\u2019re trying to achieve. LED lights are available in a variety of colours and so can easily be tied into your existing colour scheme. When it comes cleaning and ongoing maintenance, bespoke glass shelves are far easier to deal with than wooden ones. If something is split on them, the glass doesn\u2019t stain or start to warp. All you need to clean glass is a lint-free cloth and for more stubborn dirt, a glass cleaning spray. Over time, wood can begin to discolour and paint can start to chip, so you have to spend time and effort staining or painting it. Bespoke glass shelves don\u2019t have that problem. When we say bespoke glass shelves, we truly mean it. Glass can be cut to fit even the most awkward of angles and a number of different finishes can be applied, including colour tints, etching and frosting. If you\u2019re thinking about how to light up your home with bespoke glass shelves, get in touch with Glass"}, {"title": "bm25", "text": "particular light does justice to your work; but the artist in glass is always very much at the mercy of chance in this respect. He cannot choose the light in which his work shall be seen, and the painter of Chalons may have been more unfortunate than in any way to blame. There comes, however, a degree of heaviness in painted glass about which there can be no discussion. When the paint is laid on so thick that under ordinary conditions of light the glass is obscure, or when it is so heavy that the light necessary to illuminate it is more than is good for the rest of the window, the bounds of moderation have surely been passed. And in the latter half of the sixteenth century it was less and less the custom to take heed of considerations other than pictorial; so that by degrees the translucency of glass was sacrificed habitually to strength of effect depending not so much upon colour, which is the strength of glass, as upon the relief obtained by shadow, just the one quality not to be obtained in glass painting. For the quality of shadow depends upon its transparency; and shadow painted upon glass, through which the light is to come, must needs be obscure, must lack, in proportion as it is dark, the mysterious quality of light in darkness, which is the charm of shadow. The misuse of shading which eventually prevailed may best be explained by reference to its beginnings, already in the first half of"}, {"title": "bm25", "text": "Light, shadow and pattern are some of the themes I explore in my work. Glass is a material I use as a vehicle to capture light, energy, and fragility. There is a time in the day in my studio when the sun pours in and everything comes to life as sunlight slowly travels around my studio, casting beams of light through all of the glass sculptures, jewelry, lighting, and experiments. I often have to drop what I am doing and absorb this fleeting moment. Light vibrates through the skeletal facets, corners and open planes. The shadow cast on surfaces is this energy broken up into patterns, which can be used as a vehicle for meditation by the viewer. I view my jewelry and lighting work as functional art. A ring can function as a sculptural object sitting in your home, waiting to be worn and experienced in another way. I try to create calm, meditative artwork."}, {"title": "bm25", "text": "an indistinct countertop leaning against an indistinct wall. In each of its sixteen hollows a glint of refracted light hovers slightly off center like the highlights that radiate presence in the eyes of cartoons. From within these glints the tray feels surprised as if we snuck up on it, caught it doing something shameful. It\u2019s there, hiding something behind its back, utterly present and aware of us and in the same moment receding into its unknowability: into the soft focus and muted tones of the rendering and the perspectival instability of the tray\u2019s relationship to the surfaces that support it. Encountering residual fleck (ice tray) is akin to encountering an opossum in the dark, an effect that many of Getz\u2019 paintings achieve. As I approach Containers, I am surprised by a thin glass vessel sitting precariously near the edge of a surface, casting its shadow on the wall behind it. The flat light is coming from behind me as if I opened a pantry door onto this private scene and the shadow on the wall\u2015the shadow vessel behind (within) the glass\u2015is visible through the translucent container that\u2019s casting it. It\u2019s another species of image/after-image superimposition that sparks a recognition of presence in the painting. In this instance, seeing the shadow of the glass within the glass evokes an intense recognition of vulnerability and identification with the subject. Its shadow becomes something profoundly private, a self-image that it\u2019s attempting and failing to conceal. In that failure there\u2019s a twang, a reverberation between the volume of glass and"}, {"title": "bm25", "text": "performance as well. This type of coating is most appropriate for cooling-dominated climates and buildings with large internal loads, where the goal is primarily to stop the buildings from overheating. In a heating-dominated climate, the second type of low-e coating is more appropriate. This is Passive Low-E, where the goal is to retain heat inside the building. These coatings don't block as much of the short-wave infrared light from the sun, but do block any long-wave infrared light coming from the inside, functioning as somewhat of a greenhouse. These coatings are placed on the inner pane of glass, on the outer face if less solar heat gain is desired, and on the inner face if more solar heat gain is desired. Especially when combined with double-or-triple-paned windows, the R-values achieved with low-e coatings can be quite high, with a 3-paned window filled with argon with one low-e coating having an R-value of 5.4. One trade-off of low-e coatings is that while they are primarily aimed at reducing the amount of infrared light passing through the window, they do also somewhat reduce the amount of visible light passing through, and the building may incur higher lighting demand as a result. There are two methods of applying the Low-E coating to the glazing: Hard Coat and Soft Coat. Hard Coat is applied either in or directly after the tin bath in the float glass manufacturing process. This produces a coating which is very durable and inexpensive, as it is added during the existing production process. However, it is"}, {"title": "bm25", "text": "Think about where you are going to \u2018display\u2019 them. Mine are on a metal table by a window out to my garden on a sunny day. Gather more than you need so you can rearrange, change your mind, or be generally playful. I use my phone to take the photos. This is step one of an ongoing project that I hope to return to. This will form part of a Still Life project that includes Self Portrait. Move things around Move yourself around \u2013 look under, look from above, change the light, background, objects Try to surprise yourself with how things look, include shadows, reflections, colour Do not be afraid to edit the photos \u2013 change the size, colour, saturation, black and white, whatever you can do. We would love to see your work. If you use Instagram just add the hashtag: #hampshireartstudio Cornelia Parker\u2019s experiments in photography and printmaking are of twenty large-scale photogravures from three series: Thirty Pieces of Silver (exposed) (2015), One Day This Glass Will Break (2015) and Fox Talbot\u2019s Articles of Glass(2017). One Day This Glass Will Break arose from Cornelia Parker\u2019s investigations into the photogravure \u2013 a photomechanical process which produces images through the exposure of a photographic positive onto a copper printing plate. Although her principle interest appears to be the process the results show unexpected forms and unfamiliar viewpoints. The prints Parker produces capture the shadows cast by glass or melting ice, arranged informally on a photogravure plate. Where the surface of a light bulb or vase comes"}, {"title": "bm25", "text": "This is a beautiful, bright, handmade Fused Glass Rainbow wave curved panel. The glass is all transparent, meaning the light coming through is a beautiful rainbow shadow. Have it on your windowsill and you\u2019ll love the gorgeous colours coming through. Or you could put it on a table, fireplace or any surface with some tealights behind and it\u2019ll cast lovely, colourful shadows. Each strand of coloured glass is contoured, not flat, against the transparent clear, giving wonderful tactile properties. The wave measures approx 22cm wide and 20cm high."}, {"title": "bm25", "text": "\"cut\" the darkness of the dungeon. The contrast created by the narrow and bright \"plates\" of light and darkness, together with the rough texture of the walls, creates an atmosphere of tranquillity. The direction of light flows has a significant influence on the image of the interior. The directional light creates sharp light and shadow contrasts and makes the outlines clear. Diffuse lighting, on the other hand, causes objects to lose their volume, while shadows and outlines to become smoother. Six main types of light space based on the directions of light flows are formulated: directed contrast, directed, selectively directed, variable, reflected, diffuse. The use of light filters that change the spectral composition of the light flow opens up a wide range of possibilities for the architect. The use of chromatic light -a technique that has been widely used in Gothic cathedral stained-glass windows -has an incredibly powerful effect on human emotions. Mark Chagall, speaking about the power of the impression made by stained-glass window, calls it \"a transparent partition between his heart and the heart of the universe\" [5]. A striking example of lightspace, which is based on a change in the spectral composition of light -the \"Seashore chapel\", built by Vector Architects. Natural light penetrates the space through a narrow opening between two roof planes. Passing through coloured sheets of glass, the sun rays create a pattern on the white rough surface of the chapel wall, giving birth to a light and spiritually filled atmosphere of divine involvement. Techniques based on modelling the temporal"}, {"title": "bm25", "text": "the curtain also makes a direct reference to photography and film that reveals these supposedly indexical mediums to be the magical and duplicitous agents of fictions. When the curtain is blown aside or slightly open, reality rushes in, but for Westman this is just another of the perceptual conceits that film and photography perform. In its essence every film is a special effect of still photography, animated by projection at 24 frames per second, which contains many other special effects. One of the partially revealed images to appear through separated curtains in for nights bathed in sodium vapour is a cuculoris. A simple device used in lighting for theatre, film and still photography, the cuculoris is basically a stencil that shapes light and shadow. The stencil is cut into a stiff material that simultaneously casts a shadow and allows light to pass through it in a pattern. Film noir cinematographers favoured the effect to create shadow silhouettes, venetian blind shadows and the effects of sunlight or moonlight passing through tree branches and windows. For the cuculorises she uses in the films Westman makes tracings of light, cast by sunlight or sodium vapour streetlamps, which she cuts out of plywood, zebrawood or cedar to create the natural effects of dappled light shining through leaves. Moving images of illumination found in the world, they parallel to the moving images made by light shining through projected celluloid film. One might say that for Westman the cuculoris and the curtain present the crux of the poetics of film, the projections"}, {"title": "bm25", "text": "George Thiewes BIO / STATEMENT b. 1943, Waseca, MN In the fields of sculpture and drawing, George Thiewes creates sharp, angular work with a focus on the interaction of light and dark. That interest began in the 1990s while Thiewes was working on theatrical set designs, where he had to learn to create the illusion of space through lighting. Thiewes\u2019 sculptures are mounted on or in the wall and painted the same color as the gallery, making them hardly noticeable, except for their cast shadows. The sculptures exist autonomously, while also defining and interacting with the surrounding space through their placement and the use of shadow. Thiewes explores shadow as a sculptural medium; specifically how the work changes throughout the course of a day as both the natural and artificial light change in intensity, temperature, and direction. The angles created by light and shadow give the appearance of folds, an illusion that Thiewes also investigates in his drawings. George Thiewes attended several colleges in the Midwest before receiving his BFA from Mankato State College and his MFA from the School of the Art Institute in Chicago. After graduate school Thiewes had a successful career as a glass artist and was part of the studio glass movement of the 1960s and 1970s before turning to sculpture in the mid-1980s. His work is included in the permanent collections of the Art Institute of Chicago; Smithsonian Institution in Washington, DC; Philadelphia Museum of Art; Chrysler Museum in Norfolk, VA; Toledo Museum of Art; Arkansas Art Center; Rochester Institute of"}, {"title": "bm25", "text": "because track lights are an easy way to provide multiple ceiling light sources without using multiple electrical sources. Track lighting can provide multiple light sources while utilizing only a single outlet. Martini: Martini glass fixtures are one of the most popular style of pendant lighting. It includes any style of lamp that looks like an upside-down glass (whether or not it is actually a martini glass). The glass can be colored and can include decorations of various kinds. These lights are popular, since the light both goes downward onto a table or counter, and upward onto the ceiling, providing general ambient lighting. Be very careful with color on martini glass fixtures, as you can throw off the coloration of your entire room with colored ambient lighting. Lamp-style: Lamp-style fixtures have a translucent shade that diffuses the light that comes from the light, while still casting light downward. The quality of light isn\u2019t much different from martini pendants, but the style is quite different. The lamp itself is less bright to look at, and the color changes are less severe than with martini styles. Because the light is diffuse before it reaches the track, the track will cast a less strong shadow on your ceiling. Tube: Tube-style fixtures require a special mention. Unlike most fixtures, they do not diffuse the light that goes upward. This has two effects. First, you will have much brighter ambient lighting that reflects off the ceiling. Second, you will see the shadow of the track much more clearly, since there is nothing"}, {"title": "bm25", "text": "Whatever the style of your home, IDSystems can help you create new light and space with a unique, individual design to suit your home, your budget and your lifestyle. From the simplest project through to the most ambitious and dramatic extensions, at IDSystems they can help you develop your aspirations and make them real. They have market-leading expertise in bespoke architectural glazing, bi-fold doors and glazed roofing, open design and structural building work. Everything you need to create your perfect space. This month, they are featuring a contemporary kitchen extension, which was recently completed to a Regency terrace in Colchester. Their client was looking to use large amounts of glass with minimal framework to let as much light as possible into their new extension and their existing home. The clever flat roof design incorporates an overhang, which casts a shadow over the floor-to-ceiling bi-fold doors during the summer to prevent the room overheating. While casting a shadow at the peak of summer, the tall glass doors and windows allow light and heat to radiate in during the autumn, winter and spring months, allowing free energy from the sun to assist in heating the room during the day. They specified two sets of SF55 bi-fold doors because of their narrow frames and high quality German engineering. The systems come together at a steel corner post, which has been cloaked in an aluminium pressing to create a uniform appearance across the entire facade. The bi-fold doors feature a flush track design allowing a seamless transition between inside and"}, {"title": "bm25", "text": "it's directly above me when showering, my own head casts an enormous shadow on whatever it is I'm trying to see. And yes, I have an enormous head. A bobble head. Buying hats and helmets is a nightmare, because few manufacturers bother to make headgear for freaks. No, I don't wear hats in the shower. Or helmets. I haven't forgotten what I was talking about. Even with an overhead light in our shower, I still like to have substantial light coming in from the side. When we first moved in, the shower door in the master bathroom had the type of glass that Home Depot calls \"hammered.\" You know, the glass is all bumpy so that light gets through but you can't make out any details of what's on the other side. I never liked it, because I also like to see out through the shower door. We keep a clock in the bathroom, and if I'm running late, I like to be able to check on the time. (I don't shower with my glasses on, but I can read a clock -- or, for that matter, a book -- without them, when I have to.) If I'm running late, I don't, like, skip the rinse and towel off with the soap still on me. I do a complete shower -- I just spend the time composing my excuses. Or singing, \"I'm late, I'm late, for a very important date, no time to say hello, good-bye, I'm late I'm late I'm late I'm late,\" thus proving"}, {"title": "bm25", "text": "slightly different in terms of color and texture. These approximate similarities, though typical of her work, are particularly characteristic of her glass pieces. Replication, as she says, \u201cis a way to engage people\u2026an artist is always manipulating. That\u2019s the name of the game, really.\u201d Water Double, v. 3, 2013\u201315. Solid cast glass with as-cast surfaces with oculus, two parts, installation view. Photo: Ron Amstutz, \u00a9 Roni Horn, Courtesy the artist and Hauser & Wirth Through light reflection and cast shadows, Horn\u2019s glass objects implicate the viewer\u2019s body and reflect the mutability and inconstancy of light and shadow. Their crudely textured exteriors are attractive enough, but they fall short of actual beauty. The element of doubt is especially strong in these sculptures, not only in the perceived mutability of their physical state, but also in their predominantly saccharine, anti-romantic use of color, where Horn\u2019s conceptualism becomes overtly evident. The lure of the irrational lies in color, and Horn\u2019s colors are divorced from form, nothing if not arbitrary, and totally lacking in reference to the natural world. The industrial fabrication behind these works entails pouring molten glass into molds of various heights and widths, which results in unique objects that each take up to 10 months to cool and finish\u2014each pastel gumdrop block weighs up to 10,000 pounds. Horn\u2019s sculptures reveal the process of their making; seams from the molds punctuate the exteriors, creating individuation through slight but recognizable differences. The surfaces resemble hollow forms filled with water. From certain angles, the clear, fire-polished tops look like liquid,"}, {"title": "bm25", "text": "be contained in the living room or correct with you inside the bed room. Not only do these devices provide you with more gentle to read through and publish, nonetheless they can provide your home a conventional seem and go with a number of variations. Let you to Select restroom lighting effects cautiously. Within a toilet, just one business expense lighting will cast an undesirable shadow, Anderson Windows With Blinds Between The Glass making it tough to implement make-up or shave. A Anderson Windows With Blinds Between The Glass sconce on each side of your medication cupboard will offer a much level of light, great for proper grooming. Incandescent lights are better than fluorescent lighting fixtures, which can create a bluish strengthen of Anderson Windows With Blinds Between The Glass."}, {"title": "bm25", "text": "sales figures for the various stores, they discovered a statistically compelling connection between skylighting and retail sales performance, and found that stores with skylight systems had increased sales by 40%-even though the design and operation of all the stores were remarkably uniform, except for the presence of skylights in some. The study showed that, all other things being equal, an average non-skylit store in the chain would likely increase its sales by an average of about 40% just by adding skylights. Technology is moving at a rapid pace, and architects are now increasingly specifying high-performance glass with spectrally selective coatings that allow only visible light to pass through and keep out the infrared wavelength. This eliminates most infrared and ultraviolet radiation while allowing the majority of the visible light spectrum through the glass. But even with high-performance glass, much of the light can be converted to heat. Glass with high visible-light transmittance still allows light energy into a building, and when this light energy hits a solid surface, it is absorbed and reradiated into the space as heat. Combining daylighting with efficient electric lighting strategies can provide substantial energy savings. The building's planning module can often give indications on how best to organize the lighting. In any case, the lighting system must correlate to the various systems in place, including structural, curtain wall, ceiling, and furniture. Likewise, initial lighting costs may rise when designing for sustainability and implementing energy-efficient strategies. These energysaving designs may require items such as dimmable ballasts, photocells, and occupancy sensors, all of"}, {"title": "bm25", "text": "From Glass to Metal: J Liston Design 09.22.15 | By Jaime Derringer I can\u2019t quite recall when I first spotted the work of John Liston of J Liston Design\u2026 but it was a while back. So, being a fan for many years, I\u2019m excited to get the chance to see his work up close at this year\u2019s WestEdge Design Fair in LA at the end of October, where he\u2019ll be exhibiting in their new MADE:MODERN section, sponsored by Design Milk! I had a chat with him about his design style, process and what you can expect to see at this year\u2019s show: You work mostly with steel \u2013 what do you like about working with that specific material? I like working in metal because it is so versatile. You can cut it, bend it, weld it, cast it, texture it. There are many surface treatments you can do to metal from plating, patinas and paints. What other material is your favorite and why? Glass: the possibilities of translucency to opacity, the structural aspects and to be able to cast it, blow it, or work with sheet glass. It gives so many possibilities for lighting and furniture. What was the inspiration behind the ribbon product line? Where did the unique forms come from? I was inspired by the shadows coming off of buildings and how they take what ever form they fall on. How it transforms the shape of a park bench with the graphic lines of the balusters and handrails and the angle of the light."}, {"title": "bm25", "text": "Wood's glass is an optical filter glass invented in 1903 by American physicist Robert Williams Wood (1868\u20131955), which allows ultraviolet and infrared light to pass through, while blocking most visible light. History Wood's glass was developed as a light filter used in communications during World War I. The glass filter worked both in infrared daylight communication and ultraviolet night communications by removing the visible components of a light beam, leaving only the \"invisible radiation\" as a signal beam. Wood's glass was commonly used to form the envelope for fluorescent and incandescent ultraviolet bulbs (\"black lights\"). In recent years, due to its disadvantages, other filter materials have largely replaced it. Composition Wood's glass is special barium-sodium-silicate glass incorporating about 9% nickel oxide. It is a very deep violet-blue glass, opaque to all visible light rays except longest red and shortest violet. It is quite transparent in the violet/ultraviolet in a band between 320 and 400 nanometres with a peak at 365 nanometres, and a fairly broad range of infrared and the longest, least visible red wavelengths. Properties and uses Wood's glass has lower mechanical strength and higher thermal expansion than commonly used glasses, making it more vulnerable to thermal shocks and mechanical damage. The nickel and barium oxides are also chemically reactive, with tendency to slowly form a layer of hydroxides and carbonates in contact with atmospheric moisture and carbon dioxide. The susceptibility to thermal shock makes manufacture of hermetically sealed glass bulbs difficult and costly. Therefore, most contemporary \"black-light\" bulbs are made of structurally more suitable"}, {"title": "bm25", "text": "When photographing clear objects such as jellies and glass, the key is to show how transparent they are. To do so, take note of the direction of the light, and shoot using side lighting or backlight. Lighting: Use soft, natural light from the window as backlight to make the jelly glisten. You can also use a white reflector board to reflect light onto the subject from an oblique angle, so that more details can be captured. If it\u2019s a sunny day and the natural light is too strong, you can diffuse it with lace curtains or blinds to create softer lighting. B: Place a white reflector board across from the subject to reflect light onto it from an oblique angle, so that more details can be captured. 1. Intended look: Highlight the delightful colours of the jelly. 2. Styling: Choose a cloth with a lively design that matches the colours of the jelly. Lighting: Using side lighting from the window , it will cause the subject to cast a shadow, which makes the subject appear three-dimensional\u2014great for a natural-looking finish. Furthermore, the use of gentle, natural lighting also brings out the colours of your subject in a lovely manner. You can diffuse the natural light from your window with lace curtains or blinds. A: Diffused, soft-looking natural light from the window. A reflector board is used to reflect light on to the subject. By reflecting light, you can eliminate shadows cast by the subject and produce stronger or weaker light. Reflector boards come with either white"}, {"title": "bm25", "text": "Village. From Wright\u2019s perspective, it was shielding an interior environment created according to what he understood to be natural principles from an \u201cunnatural,\u201d inharmonious setting. The rigor of Unity Temple\u2019s massing, spaces and details, as well as the power of its concrete structure, was orchestrated to provide a place that was a welcoming sanctuary for members of its congregation. The light from the amber art-glass clerestory windows and skylights washes the interior, thus unifying the whole. Not only would shadowing affect the light through the art glass, but also if the shadows were to land on the exterior of the building, there would be a significant loss of the beauty and meaning created by the composition of planar masses. This play of light on surface and void is part of what makes the building come alive and what is so striking about it. Anything that affects these key attributes of the building would be a huge loss to the congregation and the world of architecture. The cultural world is watching what decisions will be made in Oak Park regarding any future developments on this site and the effects it will have on the experience of Unity Temple. A building that casts a shadow on Unity Temple would simply be unacceptable. Frank Lloyd Wright's Burnham Block in Milwaukee, Wisconsin A.D. German Warehouse in Richland Center, Wisconsin The David and Gladys Wright House in 2015 Photo courtesy of the David and Gladys Wright House Foundation Photo by Tom Rossiter Previous Post Back to All Posts Next Post"}], "hoverinfo": "text"}, {"x": [0.028506487607955933, -0.021851589903235435, 0.10599438846111298, 0.05137148126959801, 0.10552086681127548, -0.07401904463768005, 0.04820949211716652, -0.021754492074251175, 0.08657682687044144, -0.018378330394625664, 0.028506487607955933, 0.09151501953601837, 0.0023740027099847794, 0.03389662131667137, 0.08657719939947128, -0.07432153820991516, 0.006466806400567293, 0.006466806400567293, 0.0368734635412693, -0.08885026723146439, 0.062213435769081116, 0.09677332639694214, 0.038317546248435974, -0.0858268290758133, -0.08582624047994614, 0.06628343462944031, -0.018378209322690964, -0.012534712441265583, 0.15504877269268036, -0.0858268290758133, -0.11126095801591873, 0.0025458638556301594], "y": [-0.09713079780340195, -0.1285521537065506, -0.1415577232837677, -0.11286252737045288, -0.010427451692521572, -0.1383000910282135, -0.088917575776577, -0.06511473655700684, -0.04831284284591675, -0.12652947008609772, -0.09713079780340195, -0.1255461722612381, -0.16712230443954468, -0.08384377509355545, -0.04831312596797943, -0.14525587856769562, -0.1525755524635315, -0.1525755524635315, -0.14898373186588287, -0.11936351656913757, -0.12354733794927597, -0.009288282133638859, -0.11779304593801498, -0.12220128625631332, -0.1222013309597969, -0.005065161269158125, -0.12652885913848877, -0.034517139196395874, -0.05644049122929573, -0.12220128625631332, -0.12279374897480011, -0.13811995089054108], "mode": "markers", "name": "Cluster 4", "marker": {"size": 8, "color": "rgb(128,177,211)"}, "text": ["Document 94", "Document 130", "Document 138", "Document 142", "Document 203", "Document 332", "Document 339", "Document 415", "Document 490", "Document 508", "Document 515", "Document 517", "Document 538", "Document 566", "Document 608", "Document 620", "Document 639", "Document 640", "Document 686", "Document 698", "Document 728", "Document 748", "Document 774", "Document 825", "Document 826", "Document 1041", "Document 1059", "Document 1073", "Document 1102", "Document 1143", "Document 1232", "Document 1343"], "customdata": [{"title": "rpj-common-crawl-2023-06", "text": "looking through the windows in the picture? What causes the difference? The picture shows transperant, opaque, translucent window panes. Spot them. Through the first window we can see a clear picture of things outside. Second window gives a faint image. Through the third window, we can\u2019t see anything The difference in the image is due to the material of the window panes. The first window pane is transparent. The second window pane is translucent. The third window pane is opaque. Answer the following questions in brief. List factors on which shadow depends. Shadow depends on relative distance between the source of light, the object and the surface on which the shadow is formed. How we can see that light travels in straight line. In the morning or in the afternoon, rays of light enter a slit in a door, window or a small hole in the roof. As these rays of light from the slit or the hole move towards the floor, the dust particles in their way are clearly seen. Due to these particles, the path of light becomes visible to us. Thus we can see that their path is along straight lines. What is the difference between an object and its reflection? What causes the difference? Object and its reflection result in formation of images. Reflections taking place from highly polished metals, mirrors, still water etc, form clear images. Reflections taking place from wooden surface, flower, book form dull, blurred images. The difference in reflections is caused by the surface of the object. Regular"}, {"title": "rpj-common-crawl-2023-06", "text": "lamps Transparent Opaque Translucent Piece of glass Water White plastic Tea kettle cupboard Tinted glass Oil paper Sheet of notebook 4. Write the answers to the following. What things are necessary for the formation of a shadow? Things necessary for the formation of a shadow are: A source of light An object A surface or screen on which the shadow is formed When can an object be seen? We can see an object when reflected rays reach our eyes. What is a shadow? If an opaque object comes in the way of a light source, light does not pass through it. As a result the light does not reach a wall or any other surface on the other side of the object. That part remains dark. This dark part is called the shadow of the object. Prepare a Newton\u2019s disc. Find out how to save electricity with the help of the sunlight we receive during the day. Read a biography of Sir C. V. Raman and find out about the discoveries he made. Class 6 Science Chapter 14 Light and the Formation of Shadows Important Questions and Answers The \u2026\u2026\u2026\u2026\u2026. is the main natural source of light. The light emitted by an electric torch is more \u2026\u2026\u2026\u2026\u2026.. than that obtained from a candle. The left and right sides of the original object appear to be \u2026\u2026\u2026\u2026\u2026.. in the mirror. The image is as far behind the mirror as the object is in \u2026\u2026\u2026\u2026\u2026\u2026 of it. The \u2026\u2026\u2026\u2026\u2026.. of the image is the same as that of"}, {"title": "rpj-c4", "text": "bends when it passes through a certain object. Since light is able to pass through it completely, it allows a clear image formation of something that is on the other side. Translucent objects do not follow the law of refraction since light scatters when passing through it. As such, the light is diffused and images on the other side are only partially seen."}, {"title": "rpj-c4", "text": "screen that is sensitive to X-rays. However, your bones absorb the emitted X-ray light that is transmitted through your body. So what you see is the shadow casted by your bones onto the screen behind you. On this lightbulb, I'm shining a green laser through a white light bulb. The filament absorbs the green light and casts a shadow on the other side of the light bulb. Happens when light stays in a medium, and bounces off the surface of another medium back into the original medium. \u200bHappens when light transmits through one medium and into another medium and is bent. In this image, you can see a student with a laser. Notice how the laser is both reflecting and refracting at the same time. Notice in this image, the red laser is reflecting. But, if you look closely, you'll see the red light spread out on the other side of the box due to refraction and possibly some scattering. This is when light hits the medium and it goes in multiple directions. \u200bOne type of scattering is when the light goes through the material and scatters on the other side. (Examples include the laser light below and the blue and violet light rays when they hit our atmosphere - this is why the sky is blue). The other type of scattering is when the light does not go through the material, but reflects off the surface in all different directions. Snow both reflects, refracts & scatters light, which is why it appears white to our"}, {"title": "rpj-common-crawl-2023-06", "text": "that they are not visible to the naked eye. Similaryly sound and heat energy are invisible. While the idea of seeing invisible things can be very exciting, their visibility would create too many problems. For example, if we were able to see all the sound and view the magnetic force, around us, that would be irritating for us. 3: What makes glass or water transparent(what is the scientific explanation for this)? Do you think it would be scientifically possible for a man to become invisible, or transparent? (Keep in mind that writers of science fiction have often turned out to be prophetic in their imagination!) Ans: The fact that light can pass through glass or water makes them transparent. When light rays fall on an object, the reflected light from that object makes it visible to us. If some device can be made that can prevent reflection of light from the human body then the human body can also become invisible. The Poetry of Earth Question Answer [Short & Long] Jimmy Valentine Question Answer [Class 11-WB Board] Upon Westminster Bridge Question Answer [Class 11] Leela's Friend Question Answer [Class XI-WBCHSE, West\u2026 Natural Vegetation and Wildlife Class 9 Questions Answers\u2026 An Astrologer's Day Questions and Answers 12th [Maharashtra\u2026 Nine Gold Medals Questions and Answers [ICSE Class 10] Asleep in the Valley Questions and Answers [Class\u2026 Categories class 10, Question Answers Tags Footprints Without Feet Question Answer Model Activity Task Class 7 [2023]"}, {"title": "rpj-c4", "text": "When objects block light, shadows are made. What kind of objects can make shadows? Opaque or translucent objects can make shadows. Light passes straight through a transparent material. Therefore a transparent object does not make any shadow. We can clearly see through transparent materials, because light passes through transparent materials in straight lines. We cannot see clearly through translucent materials. Translucent materials let some light pass through them by scattering light in all directions. We cannot see anything through opaque materials, because they do not let light pass through them, instead they block the light. When an object blocks light, it makes a shadow. Where does the shadow appear? A shadow appears the side of the objects furthest from the light source. * An opaque material makes a dark shadow. * A translucent material makes a faint shadow. * A transparent material cannot make any shadow. How does a shadow get bigger? If an object is moved closer to the light source, its shadow gets bigger. How does a shadow get smaller? If an object is moved further away from the light source, its shadow gets smaller. Sun is a natural light source which is very bright. You may see it move across the sky during the day. But what actually happens is the Earth is spinning and it just looks like the Sun is moving across the sky. When the Sun is lowest in the sky, it makes the longest shadows. This happens at the beginning and end of the day. When the Sun is"}, {"title": "rpj-c4", "text": "The amount of light that can pass through an object depends on its density of molecules. Opaque objects are the most dense, thus, allowing no light to pass through. Translucent objects are less in density, whereas transparent ones are the least dense. The capacity of light penetration is what distinguishes objects or materials from each other. This factor reduces from transparent to translucent, while it is zero for opaque objects. The lesser the light-absorbing capacity, the more well-defined the shadow is. An example of this can be a tree near a street lamp. Its shadow is pronounced. Everything that we see or use has some degree of visibility or invisibility. Here, we give you an elaborate comparison between different materials, based on their ability to pass or not pass light through them. \u2517 A material through which light can pass partially. \u2517 We can partly see through these objects. They can also be called partially-see-through objects. \u2517 The color of this material depends on the amount of light absorbed, scattered, and reflected. \u2517 An object on the other side of this material is visible to some extent. \u2517 Consider the example of a frosted glass. We can barely see what's outside the window. This is because the partially-absorbed light scatters in different directions. The image above represents the concept of translucency. Light is focused onto a frosted glass having thickness. It allows the light to pass through it diffusely. \u2517 A material through which light can pass completely. \u2517 We can clearly see through these objects."}, {"title": "rpj-common-crawl-2022-05", "text": "burner, a sheet of cardboard, a lighted torch, a sheet of cellophane, a wire mesh, kerosene stove, sun, firefly, moon. Answer: Opaque: A piece of rock, a sheet of aluminium, a mirror, a wooden board, a CD, a piece of red hot iron, an umbrella, a lighted fluorescent tube, a wall, a sheet of carbon paper, the flame of a gas burner, a sheet of cardboard, a lighted torch, kerosene stove, sun, firefly, moon. Transparent: Air, water. Translucent: A sheet of polythene, smoke, a sheet of plane glass, fog, a sheet of cellophane, a wire mesh. Luminous: A piece of red hot iron, a lighted fluorescent tube, the flame of a gas burner, a lighted torch, sun, firefly. Non \u2013 luminous: Air, water, a piece of rock, a sheet of aluminium, a mirror, a wooden board, a sheet of polythene, a CD, smoke, a sheet of plane glass, fog, an umbrella, a wall, a sheet of carbon paper, a sheet of cardboard, a sheet of cellophane, a wire mesh, kerosene stove, moon. Question 3: Can you think of creating a shape that would give a circular shadow if held in one way and a rectangular shadow if held in another way? Answer: A cylinder object can cast shadows in two ways. When the top circular view faces the shining object, a circular shape shadow is formed. When its curved side faces the shining object, it casts a rectangular shadow. Question 4: In a completely dark room, if you hold up a mirror in front of you,"}, {"title": "rpj-c4", "text": "air, water, and clear glass are called transparent. When light encounters transparent materials, almost all of it passes directly through them. Glass, for example, is transparent to all visible light. With transparent materials, you can see both a light and an image, because the light is not scattered or absorbed. Translucent objects allow some light to travel through them. Materials like frosted glass and some plastics are called translucent. When light strikes translucent materials, only some of the light passes through them. The light does not pass directly through the materials. It changes direction many times and is scattered as it passes through. Therefore, we cannot see clearly through them and objects on the other side of a translucent object appear fuzzy and unclear. With translucent materials, you can see light, but you cannot see an image because the light is scattered. \u200bNotice with the image below that light is not able to transmit as a single line, but rather it spread out as the light exited the material? That's called scattering. Opaque objects block light from traveling through them. Most of the light is either reflected by the object or absorbed and converted to thermal energy. Materials such as wood, stone, and metals are opaque to visible light. With opaque materials, you can see neither light or an image. What you see here is very similar to how X-ray's work. X-ray's are a type of light that you and I cannot see. But how it works, X-ray's are transmitted through your body and onto a"}, {"title": "rpj-common-crawl-2023-06", "text": "an upside down image of the candle is seen on the diaphragm of the pinhole camera. What do you mean by transparent object? The objects / materials through which light passes are said to be transparent. What do you mean by opaque materials? The materials through which light does not pass are said to be opaque. What do you mean by translucent materials? The materials through which light passes partially are said to be translucent. How is the shadow in the morning, afternoon and evening? The shadows are long in the mornings and evenings and short in the afternoon. What is shade of a tree? The shade of a tree is its shadow. How many colours is sunlight made up of? Sunlight is made up of seven colours. Give reasons for the following. When we see in the mirror, we see our image in the mirror. When we see our face in the mirror, the light reflected from our face falls on the mirror and gets reflected back again. Hence, we see our image in the mirror. Opaque materials cast shadow. An opaque material does not allow light to pass. Hence, it casts a shadow. Transparent and translucent object do not cast a shadow. Translucent objects cast a faint shadow whereas transparent objects do not cast a shadow at all because they allow light to pass through them. Use your brain power! Why is the image on the diaphragm of the pinhole camera inverted? 1. The pinhole camera works on the principle of light travelling in"}, {"title": "rpj-common-crawl-2023-06", "text": "looking through the windows in the picture? What causes the difference? The picture shows transperant, opaque, translucent window panes. Spot them. Through the first window we can see a clear picture of things outside. Second window gives a faint image. Through the third window, we can\u2019t see anything The difference in the image is due to the material of the window panes. The first window pane is transparent. The second window pane is translucent. The third window pane is opaque. Answer the following questions in brief. List factors on which shadow depends. Shadow depends on relative distance between the source of light, the object and the surface on which the shadow is formed. How we can see that light travels in straight line. In the morning or in the afternoon, rays of light enter a slit in a door, window or a small hole in the roof. As these rays of light from the slit or the hole move towards the floor, the dust particles in their way are clearly seen. Due to these particles, the path of light becomes visible to us. Thus we can see that their path is along straight lines. What is the difference between an object and its reflection? What causes the difference? Object and its reflection result in formation of images. Reflections taking place from highly polished metals, mirrors, still water etc, form clear images. Reflections taking place from wooden surface, flower, book form dull, blurred images. The difference in reflections is caused by the surface of the object. Regular"}, {"title": "rpj-book", "text": "light passes through. Another complication is that the transparency of a substance varies depending on the wavelength of the light. The same object may be transparent to some wavelengths, and opaque to others. Ordinary glass, for example, is transparent to the visible wavelengths, but does a pretty lousy job of transmitting ultraviolet and infrared radiation. Adding certain materials or coatings to the glass can make it even more selective, resulting in filters that only transmit certain colors. Light that we perceive as white often really has equal amounts of all colors (or wavelengths) in the visible range of the spectrum, as discussed in the previous chapter. In the rest of this chapter, for the most part, we will ignore effects that depend on wavelength and concentrate on more general behaviors of visible light. For example, you are probably familiar with the phenomenon of shadows. If you have a single small source of light in a room, any opaque object will cast a sharp shadow on a wall or floor, and that shadow will have the shape of the outline of the object. This tells us that on normal human length scales, light travels in straight lines. This somewhat trivial observation turns out to be an important tool for understanding all of the principles of basic optics. Let's be a little more careful here. Light only travels in straight lines as long as the medium it is traveling in is transparent and uniform. As we have seen, light doesn't actually need any medium in which to move."}, {"title": "rpj-stackexchange", "text": "Q: Can air make shadows? I have read about schlieren photography, which uses the ability of non-uniform air to create shadows. Is it really possible that air makes shadows? A: In addition to V.Joe's excellent answer about refraction, I want to add that air does directly block (absorb, not refract) some infrared and ultra-violet light. If your eyes could see light in the infrared and UV spectrums, air would appear partially opaque in those wavelengths. The surface of the earth is in the infrared and UV 'shadow' of the atmosphere. A: Taken from this site: Yes, air can indeed make shadows. A shadow occurs when an object in a light beam prevents some of the light from continuing on in the forward direction. When the light beam hits a wall or the ground, a darker shape is visible where less light is hitting the surface. Both the light and the shadow, which is just the absence of light, travel to the surface at the speed of light. There are three ways that an object can prevent light from continuing on in the forward direction: Absorption: The light that hits the object is absorbed and converted to heat. A black table creates a shadow on the wall mostly by absorbing the light that hits it. Reflection: The light that hits the object is reflected off the front surface and redirected to another part of the room. A silvery bowl creates a shadow on the wall by reflecting away the light that hits its front surface. Refraction The"}, {"title": "rpj-book", "text": "take food or rest. Light performs the same distance in less time than is required for a single stroke of its wing.\" Dismissing for the present the theory of undulations, it will be necessary to examine the phenomena of light, regarding it as radiant matter, without reference to either of the contending theories. [Page 265] Light issues from the sun, passes through millions of miles to the earth, and as it falls upon different substances, a variety of effects are apparent. There is a certain class of bodies which obstruct the passage of the rays of light, and where light is not, a shadow is cast, and the substance producing the shadow is said to be opaque. Wood, stone, the metals, charcoal, are all examples of opacity; whilst glass, talc, and horn allow a certain number of the rays to travel through their particles, and are therefore called transparent. Nature, however, never indulges in sudden extremes, and as no substance is so opaque as not (when reduced in thickness) to allow a certain amount of light to pass through its substance, so, on the other hand, however transparent a body may be, a greater or lesser number of the rays are always stopped, and hence opacity and transparency are regarded as two extremes of a long chain; being connected together by numerous intermediate links, they pass by insensible gradations the one into the other. If a gold leaf, which is about the one two-hundredth part of an inch in thickness, is fixed on a glass plate"}, {"title": "rpj-c4", "text": "air, water, and clear glass are called transparent. When light encounters transparent materials, almost all of it passes directly through them. Glass, for example, is transparent to all visible light. With transparent materials, you can see both a light and an image, because the light is not scattered or absorbed. Translucent objects allow some light to travel through them. Materials like frosted glass and some plastics are called translucent. When light strikes translucent materials, only some of the light passes through them. The light does not pass directly through the materials. It changes direction many times and is scattered as it passes through. Therefore, we cannot see clearly through them and objects on the other side of a translucent object appear fuzzy and unclear. With translucent materials, you can see light, but you cannot see an image because the light is scattered. \u200bNotice with the image below that light is not able to transmit as a single line, but rather it spread out as the light exited the material? That's called scattering. Opaque objects block light from traveling through them. Most of the light is either reflected by the object or absorbed and converted to thermal energy. Materials such as wood, stone, and metals are opaque to visible light. With opaque materials, you can see neither light or an image. What you see here is very similar to how X-ray's work. X-ray's are a type of light that you and I cannot see. But how it works, X-ray's are transmitted through your body and onto a"}, {"title": "rpj-common-crawl-2022-05", "text": "light. Question 14. On what factor does the proportion of light that enters an object depend? Answer: Optical nature of the object. Question 15. What is an obstacle? Answer: An object which comes to the path of light is called an obstacle. Question 16. Give examples of two substances through which light does not pass? Answer: Wood and bricks are the substances through which light does not pass. Question 17. Whether a shadow is two-dimensional or three-dimensional? Answer: Shadow is not just the two-dimensional outline that you see on the ground. All the space behind the opaque object up to some distance behind it seems to be filled with the shadow Question 18. What do we need in order to see a shadow? Answer: We need the following in order to see a shadow a source of light, an opaque object in the way of light, and a screen; Question 19. Does the direction of shadow change during the day? Does the length of shadow also change from season to season? Answer: Yes, the direction of shadow changes as the sun changes its position during the day. The length of the shadow also changes from season to season. Question 20. Define screen. Answer: Screen is a surface on which images are formed. Question 21. What is umbra and penumbra? Answer: Umbra is the dark region behind the object facing light which does not receive light at all. Penumbra is the less dark part of a shadow. It is the outer part of a shadow. Question 22."}, {"title": "rpj-c4", "text": "Light is the important part of our life. Some objects produce light and are called luminous object, while some do not produce light and therefore are called non luminous object. The big source of light is the Sun. The other sources of light are, burning candles, torches, electric bulbs, etc. Light travels through vacuum and also through some mediums, for example, through air, glass and other transparent objects. The best example of traveling of light through vacuum is traveling of sun light from the Sun to the Earth. The objects that allow the passing of light through them are called transparent object, i.e. glass, water, air, etc. The objects that allow passing only of some portion of light through them, are called translucent objects. In the above picture, light from the candle is passing through the hole on the globe and shadow is formed on the opposite side of the light producing body.There are two parts of a shadow, umbra and penumbra. Umbra is the part of shadow, which is in complete darkness and does not receive light from the source. Penumbra is the part of shadow, which receives some part of light from the source. In the picture above, light from candle is passing through the hole of the three cardboards. A thin streak of light is appeared at the far end of the cardboard. This proves that the light travels in straight line. This property of light is called rectilinear propagation of light. Solar eclipse is the formation of shadow of Moon on the"}, {"title": "rpj-c4", "text": "Light is the important part of our life. Some objects produce light and are called luminous object, while some do not produce light and therefore are called non luminous object. The big source of light is the Sun. The other sources of light are, burning candles, torches, electric bulbs, etc. Light travels through vacuum and also through some mediums, for example, through air, glass and other transparent objects. The best example of traveling of light through vacuum is traveling of sun light from the Sun to the Earth. The objects that allow the passing of light through them are called transparent object, i.e. glass, water, air, etc. The objects that allow passing only of some portion of light through them, are called translucent objects. In the above picture, light from the candle is passing through the hole on the globe and shadow is formed on the opposite side of the light producing body.There are two parts of a shadow, umbra and penumbra. Umbra is the part of shadow, which is in complete darkness and does not receive light from the source. Penumbra is the part of shadow, which receives some part of light from the source. In the picture above, light from candle is passing through the hole of the three cardboards. A thin streak of light is appeared at the far end of the cardboard. This proves that the light travels in straight line. This property of light is called rectilinear propagation of light. Solar eclipse is the formation of shadow of Moon on the"}, {"title": "rpj-common-crawl-2022-05", "text": "will you see a reflection of yourself in the mirror? Answer: No, to see the reflection, source of light is required. We can see only in the presence of light. Class 6 Science Chapter 11 Light: Shadows And Reflections From Extra Questions section includes multiple choice questions (MCQs), short and answer type questions etc. All these questions are very important from examination point of view. Extra Questions (i) Light travels in (a) straight line (b) curved line (c) zig-zag line (d) randomly Answer: (a) straight line (ii) When an opaque object comes in the path of light it forms (a) an image with colours (b) shadow (c) black and white image (d) depends on the colour of the light Answer: (b) shadow (iii) Which types of objects do not allow light to pass through them? (a) Translucent (b) Opaque (c) Transparent (d) Penumbra Answer: (b) Opaque (iv) Which is an example of a translucent object? (a) A thin sheet of paper (b) A thin glass slab (c) A thin iron sheet Answer: (a) A thin sheet of paper (v) Bouncing back of light from shining surfaces is called (a) Reflection (b) Refraction (c) Bending (d) Dispersion Answer: (a) Reflection (vi) What is lateral inversion? (a) Image becomes inverted (b) Image bends laterally (c) Right of the object appears left of the image (d) All of these happen Answer: (c) Right of the object appears left of the image (vii) Which letters of English alphabet will not show lateral inversion? (a) I, O, U (b) N, Z,"}, {"title": "rpj-common-crawl-2023-06", "text": "passes through [semi] transparent bodies, as linen or paper or the like, but not transparent like glass, or crystal, or other diaphanous bodies, which produce the same effect as though nothing intervened between the shaded object and the light that falls upon it; and this we will discuss fully in our discourse. Definition of the nature of shadows (119\u2013122). WHAT LIGHT AND SHADOW ARE. Shadow is the absence of light, merely the obstruction of the luminous rays by an opaque body. Shadow is of the nature of darkness. Light [on an object] is of the nature of a luminous body; one conceals and the other reveals. They are always associated and inseparable from all objects. But shadow is a more powerful agent than light, for it can impede and entirely deprive bodies of their light, while light can never entirely expel shadow from a body, that is from an opaque body. Shadow is the diminution of light by the intervention of an opaque body. Shadow is the counterpart of the luminous rays which are cut off by an opaque body. This is proved because the shadow cast is the same in shape and size as the luminous rays were which are transformed into a shadow. Shadow is the diminution alike of light and of darkness, and stands between darkness and light. A shadow may be infinitely dark, and also of infinite degrees of absence of darkness. The beginnings and ends of shadow lie between the light and darkness and may be infinitely diminished and infinitely increased."}, {"title": "math", "text": "too.) This explanation explains why you can't see perfectly through a colored translucent object (because some of the light is being reflected rather than transmitted), and also why the shadow is the same color (because the same color is the one being transmitted.) Kosta Butbaia's answer is on the right track, but he missed the fact that quite of bit of the one color of light gets reflected as well as transmitted. His diagram suggests that if you and the light source were on the same side of the translucent object, it would appear completely black, which isn't the case for most colored transparent objects - they usually look more or less the same color on both sides, no matter where the light source is. \u2022 The key for me to understand this was: that they absorb all colors but one (just like a regular colored object), and that one color they partially transmit and partially reflect. As long as my eye gets colored light from different points within the object I will see through it and perceive it as transparent. Thanks. Sep 13, 2016 at 9:24 \u2022 I think I mentioned that in text under the diagrams, When I said \"Only red is able to go through it or get reflected\" Sep 13, 2016 at 11:53 \u2022 But diagrams were a bit misleading, Because it doesn't show that fact that red light also gets reflected. But that fact is mentioned in my answer. Sep 13, 2016 at 12:02 \u2022 @Matas There are many very transparent"}, {"title": "rpj-common-crawl-2021-04", "text": "things look larger. A magnifying glass contains a convex lens. Transparent, Translucent and Opaque Materials A transparent material allows light to pass through clearly without any effects, such as a window. A translucent material allows light to pass through it, but it is not clear. Wax paper is translucent. An opaque material does not allow any light to pass through at all, such as a brick wall. \u00a9 Copyright NewPath Learning. All Rights Reserved. Permission is granted for the purchaser to print copies for non-commercial educational purposes only. Visit us at www.NewPathLearning.com."}, {"title": "rpj-common-crawl-2019-30", "text": "travels in a straight line, and its rays represent the path of light. Opaque objects do not allow light to pass through them. Transparent objects allow light to pass through them and we can see through these objects clearly . Translucent objects allow light to pass through them partially. aven.amritalearning.com,. (2013). Types of Media. Retrieved 16 July 2019, from aven.amritalearning.com/index.php?sub=99&brch=290\u223c=1451&cnt=3304"}, {"title": "rpj-common-crawl-2022-05", "text": "opening. The third is Reflected light; and there is a 4th which is that which passes through [semi] transparent bodies, as linen or paper or the like, but not transparent like glass, or crystal, or other diaphanous bodies, which produce the same effect as though nothing intervened between the shaded object and the light that falls upon it; and this we will discuss fully in our discourse. Definition of the nature of shadows (119\u2013122). WHAT LIGHT AND SHADOW ARE. Shadow is the absence of light, merely the obstruction of the luminous rays by an opaque body. Shadow is of the nature of darkness. Light [on an object] is of the nature of a luminous body; one conceals and the other reveals. They are always associated and inseparable from all objects. But shadow is a more powerful agent than light, for it can impede and entirely deprive bodies of their light, while light can never entirely expel shadow from a body, that is from an opaque body. Shadow is the diminution of light by the intervention of an opaque body. Shadow is the counterpart of the luminous rays which are cut off by an opaque body. This is proved because the shadow cast is the same in shape and size as the luminous rays were which are transformed into a shadow. Shadow is the diminution alike of light and of darkness, and stands between darkness and light. A shadow may be infinitely dark, and also of infinite degrees of absence of darkness. The beginnings and ends of"}, {"title": "rpj-common-crawl-2022-05", "text": "opening. The third is Reflected light; and there is a 4th which is that which passes through [semi] transparent bodies, as linen or paper or the like, but not transparent like glass, or crystal, or other diaphanous bodies, which produce the same effect as though nothing intervened between the shaded object and the light that falls upon it; and this we will discuss fully in our discourse. Definition of the nature of shadows (119\u2013122). WHAT LIGHT AND SHADOW ARE. Shadow is the absence of light, merely the obstruction of the luminous rays by an opaque body. Shadow is of the nature of darkness. Light [on an object] is of the nature of a luminous body; one conceals and the other reveals. They are always associated and inseparable from all objects. But shadow is a more powerful agent than light, for it can impede and entirely deprive bodies of their light, while light can never entirely expel shadow from a body, that is from an opaque body. Shadow is the diminution of light by the intervention of an opaque body. Shadow is the counterpart of the luminous rays which are cut off by an opaque body. This is proved because the shadow cast is the same in shape and size as the luminous rays were which are transformed into a shadow. Shadow is the diminution alike of light and of darkness, and stands between darkness and light. A shadow may be infinitely dark, and also of infinite degrees of absence of darkness. The beginnings and ends of"}, {"title": "bm25", "text": "Translucent or Opaque. Here is the list of objects one more time: - Wood - Plastic Bag - Tissue Paper - Cardboard - Tin Foil or Aluminium Foil - Glass - SunGlasses - Paper Bag - Plastic Bag - Blue Plastic - Bubble Wrap `, hacks: { afterBody: { preface: 'Here is a response from another student who answered this quiz:', show: 'locked', fakePeerResponses: [ { studentName: 'Sid', imagePath: '/fake-responses/sid.png', response: dedent` - Wood: Opaque - Plastic Bag: Translucent - Tissue Paper: Translucent - Cardboard: Opaque - Tin Foil or Aluminium Foil: Opaque - Glass: Transparent - SunGlasses: Translucent - Paper Bag: Opaque - Plastic Bag: Translucent - Blue Plastic: Translucent - Bubble Wrap: Translucent ` } ] } } }, { id: 'why-is-glass-transparent', time: 3, kind: 'image', title: '(Optional) Why Is Glass Transparent?', presenterImagePath: '/instructors/kunal2.jpg', instructions: dedent` ![glass transparent](/learning-items/glass-transparent.jpeg) The answer to this question is really tough for me to describe. That is because this answer requires us to understand things like atoms, electrons, and the fact that electrons carry energy. Still interested in the answer? If yes, then watch this [YouTube Video](https://www.youtube.com/watch?v=Omr0JNyDBI0), which explains why glass is transparent. `, imagePath: '/learning-items/white-space-2.jpeg' }, { id: 'what-are-shadows', time: 2, kind: 'image', title: 'What Are Shadows?', presenterImagePath: '/instructors/kunal2.jpg', instructions: dedent` Shadows are a dark area or shape produced by an opaque body when it comes between rays of light and a surface. For instance here is an shadow of some people on a wall. ![shadow people](/learning-items/shadows-people.jpeg) And here is the shadow of the moon falling on earth."}, {"title": "bm25", "text": "an upside down image of the candle is seen on the diaphragm of the pinhole camera. What do you mean by transparent object? The objects / materials through which light passes are said to be transparent. What do you mean by opaque materials? The materials through which light does not pass are said to be opaque. What do you mean by translucent materials? The materials through which light passes partially are said to be translucent. How is the shadow in the morning, afternoon and evening? The shadows are long in the mornings and evenings and short in the afternoon. What is shade of a tree? The shade of a tree is its shadow. How many colours is sunlight made up of? Sunlight is made up of seven colours. Give reasons for the following. When we see in the mirror, we see our image in the mirror. When we see our face in the mirror, the light reflected from our face falls on the mirror and gets reflected back again. Hence, we see our image in the mirror. Opaque materials cast shadow. An opaque material does not allow light to pass. Hence, it casts a shadow. Transparent and translucent object do not cast a shadow. Translucent objects cast a faint shadow whereas transparent objects do not cast a shadow at all because they allow light to pass through them. Use your brain power! Why is the image on the diaphragm of the pinhole camera inverted? 1. The pinhole camera works on the principle of light travelling in"}, {"title": "bm25", "text": "translucent means shining through! Frosted glass allows some light to shine through but not always an image of the object. Transparent allows allows all light to pass through it. Because light passes through it, transparent objects will not make any shadows, as light will pass straight through it and you can see the image. Think about a cup of water in front of a picture. You will see the picture through the glass! And you thought you would never need Latin! If you teach PreK-K, here is a free lesson that will have your students understanding how the position of the light source can change a shadow. The lesson is called Where is Punxsutawney Phil\u2019s Shadow? I hope you enjoy it and I hope you have fun with your kids learning about shadows!"}, {"title": "bm25", "text": "Q: Is it possbile for photons to pass through a non transparent object/fabric Would it be possible for a light photon to be able to pass though a sort of fabric like it would through glass but the the fabric would not be transparent. So it would be like a window where only light comes through, but you wouldn't be able to see through it as if it was like a cement wall. A: At the quantum level it's not that simple. Opaque material is material dense enough to reflect most of the light back, there will invariably be some space where photons will squeeze through. Since it's such a small amount of photons our eyes can't detect them. With something like a cement wall, it's structure is so dense it becomes increasingly unlikely that a photon is able to get all the way through. With an opaque fabric photons will likely get through it just won't be noticeable. A: If you are restricting the photon to the visible spectrum, then no. However, if you refer to very low energy light such as radio, then it is possible for photons to pass through visibly opaque materials. This is due to a quantum phenomenon (called a band gap), and is somewhat explained here. A: Due to light's wave like properties it can move around opaque materials like the threads in material, so in that sense it came go through, actually around opaque materials."}, {"title": "bm25", "text": "opening. The third is Reflected light; and there is a 4th which is that which passes through [semi] transparent bodies, as linen or paper or the like, but not transparent like glass, or crystal, or other diaphanous bodies, which produce the same effect as though nothing intervened between the shaded object and the light that falls upon it; and this we will discuss fully in our discourse. Definition of the nature of shadows (119\u2013122). WHAT LIGHT AND SHADOW ARE. Shadow is the absence of light, merely the obstruction of the luminous rays by an opaque body. Shadow is of the nature of darkness. Light [on an object] is of the nature of a luminous body; one conceals and the other reveals. They are always associated and inseparable from all objects. But shadow is a more powerful agent than light, for it can impede and entirely deprive bodies of their light, while light can never entirely expel shadow from a body, that is from an opaque body. Shadow is the diminution of light by the intervention of an opaque body. Shadow is the counterpart of the luminous rays which are cut off by an opaque body. This is proved because the shadow cast is the same in shape and size as the luminous rays were which are transformed into a shadow. Shadow is the diminution alike of light and of darkness, and stands between darkness and light. A shadow may be infinitely dark, and also of infinite degrees of absence of darkness. The beginnings and ends of"}, {"title": "bm25", "text": "What creature does not cast a shadow? Do all objects cast shadows? Not every object is able to do that. Some materials will let the light pass through whereas others will only block some of it. Objects able to block all the light are called opaque and will form a shadow. ... The closer an object is to the light source, the larger the shadow it casts. Is it possible to not cast a shadow? No. A shadow is cast because the direct rays of light from a source are blocked by an intervening object. ... If you can see the Sun, it means there can't be a shadow. If you can't, then they aren't invisible. What would happen if you didn't have a shadow? Originally Answered: Would anything changed if we didn't have a shadow? ... If you are completely transparent, so the light went right through you, you wouldn't cast a shadow. Obviously if that was the case, you would not be human and a lot of things would be different. If there was no light, nothing would cast a shadow. Does fire have a shadow? Note that fire can have a shadow not because the incoming light beam scatters off the light in the flame. On the fundamental level, one beam of light cannot directly interact with another beam of light. ... Fires can have shadows because they contain hot air and soot, and not because they contain light. Does Dracula cast a shadow? Dracula has superhuman strength which, according to Van Helsing,"}, {"title": "bm25", "text": "Q: If we see only the reflected colour, how coloured shadows are of same colour? We know, for instance, if something is blue, it is because it is absorbing all other wavelengths of coloured light and reflecting the blue colour. But when we pass a white light through a coloured translucent object, the shadow it forms, contains the hue of the same colour. If the blue light has been reflected, and absorbed light is everything but blue. Why is it so? Also, is this phenomena related to some specific number of boundaries and mediums light has to go across? A: Short answer: the coloured light of the \"shadow\" is reflected. More detailed answer: if we have, say, a blue translucent object, the object only allows blue light to pass through (which is what makes it translucent in a blue colour). If shining a light onto it to create a \"shadow\", the \"shadow\" will be formed by an absence of all light except for blue light. The blue light is still free to be reflected off the floor or wall into our eyes, so it appears blue."}], "hoverinfo": "text"}, {"x": [0.15770255029201508, 0.16398830711841583, 0.0661890059709549, 0.1517907977104187, 0.13520269095897675, 0.1347103863954544, 0.08274693787097931, 0.15171368420124054, 0.12490129470825195, 0.12263211607933044, 0.08988124132156372, 0.14492571353912354, 0.1426866352558136, 0.11353683471679688, 0.13686713576316833, 0.13686713576316833, 0.11299920827150345, 0.14567886292934418, 0.14749222993850708, 0.05869757756590843, 0.13367067277431488, 0.13798116147518158, 0.1392325609922409, 0.15074759721755981, 0.17461895942687988, 0.14182555675506592, 0.162408709526062, 0.14258255064487457, 0.08310629427433014, 0.10560473054647446, 0.17893250286579132, 0.17476533353328705, 0.14323878288269043, 0.12754669785499573, 0.12676964700222015, 0.08694906532764435], "y": [0.07183581590652466, 0.1058211699128151, 0.16379885375499725, 0.1661434769630432, 0.15424832701683044, 0.13633054494857788, 0.19899500906467438, 0.052350420504808426, 0.1747920662164688, 0.1610981971025467, 0.17884288728237152, 0.16642522811889648, 0.16754156351089478, 0.15189622342586517, 0.14927121996879578, 0.14927121996879578, 0.11586463451385498, 0.12120578438043594, 0.15802788734436035, 0.10518950968980789, 0.06730832904577255, 0.0750257596373558, 0.10357237607240677, 0.15243160724639893, 0.11133754253387451, 0.18217387795448303, 0.08600454777479172, 0.15054456889629364, 0.1890108734369278, 0.17461654543876648, 0.08623386919498444, 0.081535704433918, 0.17620231211185455, 0.07994043081998825, 0.08064529299736023, 0.03216720372438431], "mode": "markers", "name": "Cluster 5", "marker": {"size": 8, "color": "rgb(253,180,98)"}, "text": ["Document 18", "Document 21", "Document 40", "Document 42", "Document 55", "Document 62", "Document 63", "Document 66", "Document 109", "Document 113", "Document 141", "Document 154", "Document 193", "Document 198", "Document 207", "Document 208", "Document 245", "Document 269", "Document 273", "Document 277", "Document 304", "Document 306", "Document 313", "Document 324", "Document 353", "Document 355", "Document 392", "Document 402", "Document 408", "Document 425", "Document 441", "Document 458", "Document 465", "Document 482", "Document 493", "Document 1209"], "customdata": [{"title": "rpj-common-crawl-2020-05", "text": "light, and so forth. Figure 6.2a -- Glass in the oven at Corning So-called lead crystal glass is extremely transparent. I don't know the exact amount of light it absorbs, but even in thick sections, it's certainly very little -- nearly all the light passes through. Consequently, as we've just seen, it must radiate far less than an ideal blackbody, at least in the visible spectrum. However, when glass is heated very hot in an oven, it certainly does radiate, and does so quite visibly. This isn't something one sees every day, but at Corning, New York, one can watch Steuben glass animals being worked, and the glass is heated red-hot to orange-hot when it's being formed -- and it glows orange. My recollection from a trip to Corning about 25 years ago was that the glass was actually glowing very brightly. What could we conclude from this? To the extent that the glass is glowing, it must not be transparent. Though the glow of hot glass may be dimmer than the glow of equally hot opaque material (such as steel) I none the less recalled it as being quite bright -- far brighter than one would expect if it were radiating only a tiny fraction as much light as hot metal. If my memory was correct, we would be forced to conclude that, according to the second law, glass, when heated very hot, must turn opaque, or at least it must turn semi-transparent. Figure 6.2b -- Hot glass The first question to ask, though, is"}, {"title": "rpj-c4", "text": "If glass is made from sand, why is it transparent? Hopefully our answer is crystal clear, all it requires is smoothing out those rough edges and trapping the electrons. To make glass, the sand \u2013 together with limestone and soda \u2013 is heated to 1400\u00b0C. Unlike opaque materials like metals, the electrons in the resulting compound don\u2019t have much freedom within its crystalline structure, and thus are not very effective at absorbing light energy. So light can pass through relatively unscathed. What\u2019s the sharpest knife in the world?"}, {"title": "rpj-c4", "text": "of glass and why? Feel free to comment at the bottom of the page by clicking here."}, {"title": "rpj-common-crawl-2019-30", "text": "greater the resistance.) As this happens, the molecules gradually move more and more slowly, until they are hardly moving at all. This indecisiveness on the part of glass -- choose a state of matter already! -- has led to the mistaken assumption that glass is actually a fluid. There is an enduring urban legend that the glass windows in medieval cathedrals are thicker at the bottom because over hundreds of years, the glass has \"flowed\" downward and pooled at the bottom. There is a tiny bit of truth to the legend. At the molecular level, glass does \"flow\", it just does so very verrry sloooowly. Yvonne Stokes, a mathematician at the University of Adelaide in Australia, has performed detailed calculations on old cathedral windows, and estimates that it would take at least 10 million years for the glass at the bottom to grow just 5% thicker. She emphasizes that this is a conservative estimate; it might take much longer. So there's frankly no way in hell that the irregularities in medieval cathedral windows are due to the flowing properties of glass. Instead, the observed anomalies are probably due to inherent flaws resulting from the manufacturing process. (For more detailed information on the molecular structure of glass, whether or not it can be said to truly \"flow,\" and some fascinating early history, see this excellent discussion.) In a 1999 article in Discover magazine on the physics of glass, Robert Kunzig discussed the possibility of an \"ideal glass\": \"what you would produce if you could cool a liquid"}, {"title": "rpj-common-crawl-2020-05", "text": "the glass in the windowpanes of some centuries-old buildings is thicker at the bottom because the glass flowed downward over time. \u201cThe real reason the bottom is thicker is because they hadn\u2019t yet learned how to make perfectly flat panes of glass,\u201d Weeks says. \u201cFor practical purposes, glass is a solid and it will not flow, even over centuries. But there is a kernel of truth in this urban legend: Glasses are different than other solid materials.\" Shattering myths: For all practical purposes, glass is a solid. But physicists are still struggling to explain how, and when, a liquid transitions into a glassy material. To explore what makes glasses different, the Weeks lab uses mixtures of water and tiny plastic balls, each about the size of the nucleus of a cell. This model system acts like a glass when the particle concentration is increased. A major drawback to this model system is that actual glass molecules are not spherical, but irregularly shaped. \u201cWhen the hot molten liquid that forms a glass cools down, it\u2019s not just that the viscosity becomes enormous, growing by a factor of a billion, there is something different about how the molecules are moving,\u201d Weeks says. \u201cWe wanted to set up an experiment that would allow us to see that movement, but spheres move differently than irregular shapes.\u201d In 2011, however, the physics lab of David Pine, at New York University, developed a way to join clusters of these tiny plastic balls together to form tetrahedrons. Kazem Edmond, while a graduate student"}, {"title": "rpj-common-crawl-2022-05", "text": "that were precision-ground centuries ago and found no changes in shape. And they\u2019ve studied arrowheads from prehistoric times made of obsidian (a naturally occurring glass) and found them to be symmetrical and razor-sharp\u0097something that presumably wouldn\u2019t be the case if glass could droop, seep, and weep over time. Okay, so how do they explain the bottom-heavy windows on ancient buildings? Simple. In the old days, glassmakers used a technique that all but guaranteed that each pane of glass would have a varying thickness (see below). If you were putting a fragile, heavy pane of glass into a window frame, would you place the thicker edge or the thinner edge at the bottom, where all the weight of the pane would be resting? Right, the thicker side. So rather than provide evidence of glass seepage, old windows merely prove that glassmakers (called glaziers) in the past weren\u2019t fools. We can see through glass because it\u2019s not a very dense solid. There\u2019s enough space between the molecules to let light shine through. Is Glass Really a Thick Liquid That Can Flow Under the Influence of Gravity? Why Are the Windows of Old Wooden Ships Square and Why Are the Windows of Modern Steel Hulled Ships Round? Why Do Airplanes Have Such Small Windows and Why Are the Tiny Windows On Airliners Positioned So Low? How do they make glass windows so flawlessly flat? Does the Earth's Rotation On its Axis Slow Down Because of Friction With the Atmosphere? Who Built the First Liquid Fueled Rocket In the World"}, {"title": "rpj-c4", "text": "to the way the glass will be made."}, {"title": "rpj-common-crawl-2019-30", "text": "glass is not 100% transparent to sunlight since sunlight carries a lot of infrared energy. Set a piece of glass up against a south-facing wall that 1) is protected from the wind and 2) receives direct sunlight at noon. By 1:00PM the glass will be too hot to touch due to the sunlight that it has absorbed. Then touch the wall behind the glass and you will discover that this clear plate of glass has been \u201cshading\u201d the wall, which will be significantly cooler than the glass. Thus, even the mental construct of the \u201cde-Saussure device\u201d that is the presumed bases of your thought experiment is out of sync with the thermodynamic properties of real things. \u201cShortwave radiation enters the device passing all layers unimpeded, and is absorbed only at the innermost surface as thermal energy. In between the layers is, ideally, vacuum. Subsequent long-wave radiation is absorbed by the layers. The layers act as a sort of one-way filter, allowing solar radiation to pass within the device while absorbing the long-wave radiation generated inside.\u201d This just happens to be the false mental construct of the atmosphere that is at the basis of the \u201cgreenhouse effect\u201d hypothesis in the first place. Why perpetuate it by making it the basis of yet another scientific paper? Pingback: The Radiative Greenhouse Effect & Ontological Mathematics | ajmarciniak Joseph E Postma says: Thanks John, Tom. Cat: Figure 1 is actually from the department of atmospheric sciences at Harvard University. I was taught the same thing in my own undergrad. It"}, {"title": "rpj-common-crawl-2023-06", "text": "I'll try a different tack. While I've been reading (a novel) in the interim of this last exchange, at some point or another thinking about this discussion something very similar came to mind, and I'm hoping that this comparable example will be illuminating. I trust that all of us here are aware that the \"glass flows in old windowpanes\" is untrue folklore of a sort. I used to be very active on alt.folklore.urban (for those not familiar with the newsgroup, it's where snopes came from) and the argument about glass keeps springing up like weeds no matter how many times it's cut back. I've discussed it there and elsewhere extensively. And I believe that the chief culprit of why this argument is so pernicious and persistant, aside from the most obvious reasons (someone's teacher told them this; it's a tasty bit of secret bit of supposed knowledge of a sort), is that it so often mutates to the semantic argument of whether or not glass is a liquid. You can say to someone that any checking with a real authority will reveal that the glass hasn't \"flowed\" in old cathedral windows; that until modern times glass was not cast at a uniform thickness, it was spun and thus varied in thickness (are you going to put the thick side at the top or bottom when you place the glass in the window?); that ancient glassware approaching 2000 years old is not uncommon and if cathedral glass would deform so much in 500 years how can a"}, {"title": "rpj-common-crawl-2022-05", "text": "One is that modern glass is often coated with another material, such as a polymer, that protects it from flaws. These are developed to have the same refractive index as glass, so they don\u2019t distort light rays passing through them and appear as a normal piece of glass. Many glass manufacturers can add laminates of flexible polymers between sheets of glass so that even if one layer does break the sheet stays intact. Bingham says the glass on the bridge was likely to have had such a coating and laminations, but it would also have been toughened. This has two benefits: it makes the glass stronger, and when it does break, it tends to form harmless chunks rather than sharp shards. Toughening essentially squashes the outer surfaces of the glass and stretches the interior. This can be done chemically, which involves dipping a sheet of glass in molten potassium nitrate, causing the sodium in the glass to migrate out into the molten material and the larger potassium atoms to migrate in. Or it can be done thermally, by rapidly cooling the surface of molten glass and allowing the inner section to cool more slowly. This compression effectively forces shut any tiny flaws and stops them propagating. \u201cIt\u2019s like trying to fill a washing machine with extra clothes when it\u2019s already full,\u201d says Bingham. \u201cYou can get them in but it creates a stress field. You\u2019ve got to bash it a lot harder to break it.\u201d The collapse of a glass-bottomed bridge could theoretically be down to"}, {"title": "pubmed", "text": "Structure of glass."}, {"title": "rpj-common-crawl-2023-06", "text": "above the pitiful, land-bound mortals on Earth. 7: Glass Is a Slow-moving Liquid You may have lived for field trips as a kid, looking forward to a whole day of out-of-school fun and exploring. That is, until you got started on a tour of some musty building that seemed, well, boring. Not even the tour guide's explanation of how the glass in the wavy, uneven windowpanes has slowly flowed downward over time could keep your attention. Liquid windowpanes? No. Rather than the (magical-sounding) slow drip of centuries, the reason old glass windows aren't perfectly even and clear is because of how they were made. Until the early-mid 1800s, most window glass was made using a process called the crown method. The glass was blown, flattened, heated and spun, yielding a sheet that was relatively cheap to produce. It was also rippled and thicker in some places than in others. In other words, the windows looked that way when they were installed, and they look that way now. No downhill liquid flow is involved. (And if you're really wondering: Glass is an amorphous solid. Learn more about it in \"What makes glass transparent?\") 6: Mother Birds Will Abandon Babies if You Touch Them You're out in the yard and you see a distressing sight \u2013 a baby bird is floundering around on the ground, looking like it's desperate to get in the air, but it can't despite all its efforts. Suddenly, out of your peripherals, you spot a cat readying for a pounce. Sacre bleu! You rush"}, {"title": "rpj-common-crawl-2021-04", "text": "mortals on Earth. 7: Glass Is a Slow-moving Liquid You may have lived for field trips as a kid, looking forward to a whole day of out-of-school fun and exploring. That is, until you got started on a tour of some musty building that seemed, well, boring. Not even the tour guide's explanation of how the glass in the wavy, uneven windowpanes has slowly flowed downward over time could keep your attention. Liquid windowpanes? No. Rather than the (magical-sounding) slow drip of centuries, the reason old glass windows aren't perfectly even and clear is because of how they were made. Until the early-mid 1800s, most window glass was made using a process called the crown method. The glass was blown, flattened, heated and spun, yielding a sheet that was relatively cheap to produce. It was also rippled and thicker in some places than in others. In other words, the windows looked that way when they were installed, and they look that way now. No downhill liquid flow is involved. (And if you're really wondering: Glass is an amorphous solid. Learn more about it in \"What makes glass transparent?\") 6: Mother Birds Will Abandon Babies if You Touch Them You're out in the yard and you see a distressing sight \u2013 a baby bird is floundering around on the ground, looking like it's desperate to get in the air, but it can't despite all its efforts. Suddenly, out of your peripherals, you spot a cat readying for a pounce. Sacre bleu! You rush over to scoop up"}, {"title": "rpj-c4", "text": "Without glass we would live in a world of blind darkness. Without glass we would have lost ships at sea; we would never have seen the wonders of space or the marvels of the microscopic. Without glass scientific instruments would be rudimentary at best, and no one would have ever had the opportunity to sip on a bottle of 1945 Ch\u00e2teau Mouton Rothschild (the Quill & Pad house wine, of course) with dinner. To put it bluntly, a world without glass would be a pretty boring place. Houses would be dark, the internet would be slow, and the stars would only be bright pin pricks in the sky. Glass has a long history and an enormous range of uses in the modern world. From everything to windows, lenses, fiber optic cables, cookware, containers, and structural fiberglass, glass has become a wonder material in its simplicity and abilities. It helps to make almost everything we do possible in one way or another. It facilitates communication around the world, visions of galaxies far, far away, and eating foods from distant lands, or at least somewhat distant farms. The origins of glass are unclear (see what I did there?), but we do know that the earliest true glass objects found were beads fashioned in the third millennium BCE, likely as an accident of a metalworking process or during the creation of a ceramic-like material called faience. As time progressed, glass-working slowly grew before being more or less halted by the fall of the Bronze Age. Evidence suggests it was"}, {"title": "rpj-common-crawl-2020-05", "text": "architecturally since Roman times. Writers as early as the fifth century mention coloured glass in windows. Around AD 1000 Europe became less war-like, and church building and stained glass production began to flourish. However, these churches were Romanesque in style with massive walls and pillars to bear their weight and so had only relatively small windows. But by the 12th century the pointed arch and flying buttresses of the Gothic style were allowing builders to insert \u201cwalls of light\u201d, giant windows that filled the church interior with the perfect light of God. Connelly also covers the chemistry, So what is a glass? Why can we see through it when other materials are opaque? Glasses exist in a poorly understood state somewhere between solids and liquids. [If I ever knew that interesting fact, I\u2019ve long since forgotten it.] In general, when a liquid is cooled there is a temperature at which it will \u201cfreeze\u201d, becoming a crystalline solid (eg. water into ice at 0C). Most solid inorganic materials are crystalline and are made up of many millions of crystals, each having an atomic structure which is highly ordered, with atomic units tessellating throughout. The shape of these units can be observed in the shape of single crystals (eg. hexagonal quartz crystals). Glass is different: it is not crystalline but made up of a continuous network of atoms that are not ordered but irregular and liquid-like. This difference in atomic structure occurs because the liquid glass is cooled so quickly that the atoms do not have time to"}, {"title": "rpj-common-crawl-2020-05", "text": "architecturally since Roman times. Writers as early as the fifth century mention coloured glass in windows. Around AD 1000 Europe became less war-like, and church building and stained glass production began to flourish. However, these churches were Romanesque in style with massive walls and pillars to bear their weight and so had only relatively small windows. But by the 12th century the pointed arch and flying buttresses of the Gothic style were allowing builders to insert \u201cwalls of light\u201d, giant windows that filled the church interior with the perfect light of God. Connelly also covers the chemistry, So what is a glass? Why can we see through it when other materials are opaque? Glasses exist in a poorly understood state somewhere between solids and liquids. [If I ever knew that interesting fact, I\u2019ve long since forgotten it.] In general, when a liquid is cooled there is a temperature at which it will \u201cfreeze\u201d, becoming a crystalline solid (eg. water into ice at 0C). Most solid inorganic materials are crystalline and are made up of many millions of crystals, each having an atomic structure which is highly ordered, with atomic units tessellating throughout. The shape of these units can be observed in the shape of single crystals (eg. hexagonal quartz crystals). Glass is different: it is not crystalline but made up of a continuous network of atoms that are not ordered but irregular and liquid-like. This difference in atomic structure occurs because the liquid glass is cooled so quickly that the atoms do not have time to"}, {"title": "rpj-common-crawl-2019-30", "text": "on the other, so Newton's third law has nothing to do with it. The air-pressure lifting the glass is the same phenomenon that keeps a suction cup stuck to the ceiling (until/unless enough air leaks in...), or which can hold an evacuated bronze sphere together against the best efforts of two teams of plough-horses - until the seal is broken, at which point the sphere falls apart on its own... AvatarIII Joined: Fri Apr 08, 2011 12:28 pm UTC Location: W.Sussex, UK Postby AvatarIII \u00bb Tue Aug 07, 2012 2:54 pm UTC davidhbrown wrote: Yeah, I'm not getting the lifting up from suction either. But I'll just have to trust Randall 'cause I haven't been able to cause a complete vacuum to spontaneously appear yet. I'll keep trying I buy that the glass will rise, what I don't buy is that the upper part of the glass will have enough energy to get to the ceiling. http://twitter.com/AvatarIII Water does indeed have an attractive force on glass, it forms a meniscus. But I'm unsure of its strength compared to the weights and forces involved in this discussion. Showsni Postby Showsni \u00bb Tue Aug 07, 2012 3:34 pm UTC You know, I've thought this for a long time, but surely it should be the pessimists who view the glass as half full, and the optimists as half empty. If you view a glass as half full, that means that you think of the natural state of glasses as being empty. \"Most glasses are empty, but this one happens"}, {"title": "rpj-c4", "text": "Watch: Is Glass a Liquid? At school, we're taught that there are three basic states of matter: solid, liquid, and gas. But out in the real world, it's often not as easy as you might think to work out which materials are in what state. Take glass, for example. It looks and feels solid, but on the atomic level, it kind of looks more like a liquid. So how do we classify it? Derek explains in the latest episode of Veritasium. You might have heard people talking about glass being a liquid before, as the idea is often used to explain why ancient stained glass windows are thicker at the bottom - over time, some people believe, the glass has very slowly been flowing downwards. It sounds like it could make sense, but as Derek explains, this just isn't true. In fact, we can still use telescopes from hundreds of years ago to accurately look at the stars, because glass holds its shape so incredibly well. So what is it about glass that makes people think it's a liquid? It all comes down to its atoms, which aren't arranged in a nice crystalline structure like they are in most solids. Instead, they're all jumbled up, which you'd usually see in the structure of a liquid. But glass is a special type of solid, called an amorphous solid, which means that it cools down so quickly from a liquid state that its molecules don't have time to arrange themselves properly. As Derek explains, it's not actually the"}, {"title": "rpj-common-crawl-2019-30", "text": "Glass Vs. Transparent Aluminum Glass has been around since 3500 BC, and since then, it has been one of the many everyday materials of choice. We pretty much see them everywhere nowadays--our windows, our windshields, our mirrors, our fancy wine bottles. But now, it seems, glass is going to suffer some stiff competition from something that, until quite recently, exists only in science fiction: transparent aluminum. But before finding out just how stiff the competition is going to be, let's look up the basic pros and cons of glass, in no particular order: Glass lets light through, so that our houses don't look like caves on the inside. Glass also focuses light, which makes for deadly heat-based weaponry. Glass is transparent, so that we can see how we look. Glass breaks easily, so unless you have a floor full of good, thick carpeting, you'd best find yourself another mirror. Glass can't react well to pressure, which is why deep-sea submariners like Alvin have only very small windows. So let us assume that in this alternate scenario, glass fell out of favor during the Industrial Revolution after an anonymous inventor accidentally discovered \"transparent aluminum\" (the name itself being a 20th-century last-minute addition). Would TA improve from the list above, or should we just stick with good ol' glass? JohnWDaileyJohnWDailey $\\begingroup$ So is this transparent aluminum exactly the same as aluminum except that it lets light through? Do all other physical properties carry over? $\\endgroup$ \u2013 Nex Terren Jul 10 '16 at 4:03 $\\begingroup$ Focusing light not just"}, {"title": "rpj-common-crawl-2019-30", "text": "and the falling from gravity is lost in the general collision-related mayhem. Also, I'm quite certain the physicists are going to be far too fascinated to duck, per XKCD 242. Postby Whizbang \u00bb Tue Aug 07, 2012 9:10 pm UTC I thought the same thing, Jamaican Castle, but if you look at the pictures, the water does move downward in each \"frame\". Like you said, though, there isn't enough time for it to fall far. Anyone else just love the exagerated oppomism of White Beret Guy? Postby \u0420\u043e\u0431\u0435\u0440\u0442 \u00bb Tue Aug 07, 2012 9:16 pm UTC Diadem wrote: Also, why don't the sides of the glass collapse inwards? Can the average glass withstand that much pressure? Are you familiar with how mercury barometers work? The Great Hippo wrote: [T]he way we treat suspected terrorists genuinely terrifies me. Ignitus Postby Ignitus \u00bb Tue Aug 07, 2012 9:42 pm UTC Half empty: 0%/2 = 0% content Half full: 100%/2 = 50% content I find this definition sound and hard to dispute. Dark Avorian Joined: Mon May 03, 2010 10:48 pm UTC Postby Dark Avorian \u00bb Tue Aug 07, 2012 10:01 pm UTC I was hoping he would talk about what would happen if you packed enough water into the glass that by some naive non quantum interpretation of subatomic particle dimensions the glass would actually be half full The 62-foot tall statue of Jesus constructed out of styrofoam, wood and fiberglass resin caught on fire after the right hand of the statue was struck by lightning. meatyochre wrote:"}, {"title": "rpj-book", "text": "thousands of transparent globules, imitating in miniature the nebul\u00e6 which we see figured in treatises on astronomy. By observing the largest particles we shall find them to be flattened on one side. Being very transparent, each of them acts the part of a little lens, and forms in its focus the image of a distant light, which can be perceived even in the smaller globules, until it vanishes from minuteness. If they are examined again after a certain number of hours, the smaller globules will generally be found to have retained their transparency, while the larger ones will have become opaque, in consequence of the sulphur having undergone some internal spontaneous change. But the most remarkable circumstance attending this experiment is that the globules are found adhering to the upper glass only; the reason of which is that the upper glass is somewhat cooler than the lower one, by which means we see that the vapor of sulphur is very powerfully repelled by heated glass. The flattened form of the particles is owing to the force with which they endeavor to recede from the lower glass, and their consequent pressure against the surface of the upper one. This experiment is considered by its originator, Mr. H. F. Talbot, to be a satisfactory argument in favor of the repulsive power of heat. Heat Passing Through Glass. Although glass is a bad conductor it yet allows heat to pass through it, and the purer the glass the more easy is this done. Heat a poker red hot, and"}, {"title": "rpj-common-crawl-2023-06", "text": "The glass of the greenhouse works the same way. In short, the gasses in the atmosphere let energy in and don\u2019t let all the energy back out. The University of Winnipeg As glass in a greenhouse traps heat inside, gases in the upper atmosphere trap some of the heat escaping the Earth, creating a greenhouse effect. The University of the Western Cape, South Africa A greenhouse is made entirely of glass. When sunlight (shortwave radiation) strikes the glass, most of it passes through and warms up the plants, soil and air inside the greenhouse. As these objects warm up they give off heat, but these heat waves have a much longer wavelength than the incoming rays from the sun. This longwave radiation cannot easily pass through glass, it is re-radiated into the greenhouse, causing everything in it to heat up. University of Cincinnati College of Engineering, Ohio Greenhouses are much warmer inside than the air is outside because the glass is transparent to light and allows short-wavelength light to pass through and heat the contents of the greenhouse. It also reflects back the longer wavelength heat radiating within the greenhouse, thus preventing if from passing back out. In a glass greenhouse, heat builds up and gets trapped due to presence of carbon dioxide and other heat trapping gases in the upper atmosphere. CO2 is analogous to glass. Miami-Dade Environmental Resources Department, Florida The phenomenon gets its name from the similarity to a garden greenhouse. Visible light passes through the glass ceiling and walls of a greenhouse."}, {"title": "rpj-common-crawl-2021-04", "text": "interior of the glass. Next, repeat the procedure but substitute sand for the water by using, say, a sandbox. Pushing the glass into the sand should be more difficult than into the water because the sand grains are obviously in the way and are somewhat locked in place because of the friction between adjacent grains. Besides, sand is obviously more solid than water. However, you will find that the glass enters the sand much easier than the water. As explained in a recent publication by Raphael Clement, Sylvain Courrech du Pont, Mehdi Ould-Hamouda, Donald Duveau, and Stephane Douady of the Universite Paris Diderot, the difference is that with the sand, the air inside the glass can escape by flowing down into the sand around the rim and then out into the atmosphere. This outflow of air is depicted in the figures published by the research group in Physical Review Letters: As you push down on the glass, you can see air escaping along the rim, with the sand level rising slightly on the outside of the rim and dropping slightly on the inside. You are fluidizing the sand, and the sand is undergoing liquefaction. \u00b7\u00b7\u00b7 Clement, R., S. C. du Pont, M. Ould-Hamouda, D. Duveau, and S. Douady, \u201cPenetration and blown air effect in granular media,\u201d Physical Review Letters, 106, article # 098001 (4 March 2011)"}, {"title": "rpj-common-crawl-2023-06", "text": "So what is this product everyone uses, but few people know much about? It weighs two and a half times more than water, is about half the hardness of a diamond, lets about 85 per cent of visible light through, absorbs (stops) most infra-red and ultra-violet light, resists most acids, is weak in tension and can last as long as the universe exists. It would take a few billion years for just a few atoms in a pane of glass to move at all. All this means that you should not get sunburnt sitting behind a window and your very expensive, photochromic or equivalent glasses don\u2019t work in the car. The word glass is comes from the Germanic Latin word \u201cglasum\u201d, for transparent and lustrous. Scientists describe glass as an amorphous solid at normal temperature. It does not have a crystalline structure as most solids do. As liquids do not have a crystalline structure either, it is also described as a supercooled liquid. Something that is hard and brittle is still called a liquid. This is what gives it the lustrous transparent qualities, because there are no crystal boundaries to muck up the light. Silica, the main ingredient to form glass, melts (vitrifies or fuses) in the region of 1700 degrees Celsius. The flux soda is added to lower this temperature. Unfortunately, soda makes the glass water soluble, not a good thing in a South Gippsland storm. So the stabilisers limestone and dolomite are added to make the glass durable and long lasting. A batch of"}, {"title": "rpj-c4", "text": "I still haven't found anyone who knows how to calculate heat transfer. I want to see the numbers. I tend to agree with Tom on this one. Glass and most polymers are good absorbers in the IR region and thus are likely to absorb almost all of the IR light incident upon them. This creates a powerful greenhouse effect (No surprise, eh?). While the glass can re-radiate, the glass needed to maintain pressures within is likely to be quite thick and therefore well-insulating. No more guessing. This chart gives you numbers. As you can see, glass blocks UV-B and UV-C, but performance vs UV-A tapers from 88% to 90% at the boundary with blue visible light, down to less than 2.5% at 0.3 micrometres (300 nanometres). Most importantly, transmitance of uncoated glass to IR is rather high: 75%-85% throughout the spectrum. Ps: The spectrally selective coating that I want for a greenhouse on Mars is #5. How do you explain the increase in temperature in a car or, again, a greenhouse with closed windows other than infrared absorption by window glass? IR pass through glass. It's absorbed by something dark inside. That warm thing emits some IR, but unless it's red-hot, most heat will be transfered through conduction/convection rather than radiation (radiant). Besides, cars have two types of glass: dark, and \"soft ray\". Neither is simple glass. In fact, windshields are \"safety glass\", which is two layers of glass with a plastic film of polyvinyl butyral between. If a windshield shatters, the glass fragments will be"}, {"title": "rpj-common-crawl-2019-30", "text": "of glass stronger than another, or why certain mixtures produce their unique optical or structural properties. Add to this the nearly infinite varieties of glass\u2014one database lists over 350,000 types of currently known glass, though in principle the number of mixtures is limitless\u2014and you get a surprisingly large and active field of research that regularly produces astounding new products. Glass has shaped the world more than any other substance, and in many sneaky ways, it\u2019s the defining material of the human era. \u201cWe\u2019ve been making glass for thousands of years, and we still don\u2019t have a good idea of what it is,\u201d says Mathieu Bauchy, a glass expert and materials researcher at UCLA. Most glasses are made by heating and then quickly cooling a mixture of ingredients. In the case of flat glass, which makes up windows, that mixture may include sand (silicon dioxide), lime, and soda. Silicon provides the transparency, calcium provides the strength, and soda reduces the melting point. The swift cooling process doesn\u2019t allow for atoms to form a regular pattern, explains Steve Martin, a glass scientist at Iowa State University. That helps explain why glass is neither a crystalline solid nor a liquid, but rather an atomically disordered (or amorphous) solid. The atoms within want to reassume a crystal structure, but typically cannot because they are essentially frozen in place. You might have heard that cathedral windows flow over long periods of time, hence why some are thicker at the bottom. That\u2019s false: Such windows were made that way, due to a"}, {"title": "rpj-common-crawl-2020-05", "text": "on each other without reaching a point of no return, as long as the combined reinforcing factor is less than 1. \u201c\u201d\u201d Dave Springer says: It\u2019s not that bad of misnomer. Glass lets shortwave pass through and blocks longwave just like atmospheric gases. It\u2019s true that the major effect of the glass in warming the greenhouse is convective cooling but that doesn\u2019t mean it has no other effect at all. In fact it has quite an effect and you can see it all around where I live. Naive people build some grand houses with magnificent south facing views here in the Texas hill country and before the second summer passes by you\u2019ll see sunscreens blocking the view out those windows. The sunscreen isn\u2019t blocking convection it\u2019s blocking light because that light is being absorbed inside the house and re-reradiated in longwave which doesn\u2019t make it back out through the window. The house is being made warmer in exactly the same way that greenhouse gases do it. \u201c\u201d\u201d Well Dave, I wish it was all that simple; the glass blocking the thermal radiation. Of course it isn\u2019t and the glass doesn\u2019t. It is true that the glass does absorb the LWIR that is generated inside the \u201cgreenhouse\u201d; it does not reflect it (much). In fact the glass absorbs that LWIR energy; and that is why the glass gets hot; very hot in fact if it is a good enough absorber. And then of course the heated glass itself radiaties LWIR thermal radiation correcposnding to its Temeprature; and"}, {"title": "rpj-c4", "text": "As a liquid changes to a solid, its molecules go from a state of turmoil and chaos to a state of order. As these molecules slow down to form a solid, they arrange themselves into a crystalline pattern. But glass is a unique substance, for unlike all other solids, its molecules remain disordered. This has led some to speculate that glass is really a liquid that never quite settled into being a solid. Their evidence comes from the condition of very old glass panes, which may be thicker at the top or bottom, or cloudy, or have swirls. They theorize that these variations are the result of very slow movement of the not-quite-solid substance. But is this correct? In the process of changing from a liquid to a solid, a substance becomes more viscous, which means it becomes thicker. Think of the difference between pouring water and pouring maple syrup. As glass cools, it becomes much more viscous than other liquids, to the point where crystals cannot form. Nonetheless as it cools further, it becomes hard and inflexible like any other solid. So what about the evidence of those old window panes? Actually glass-making was less sophisticated centuries ago. It is much more likely that the cause of the misshapen glass was the glass-making process rather than a tendency for glass to keep moving once it is cooled. Next time the neighborhood kids hit a baseball through your front window and it shatters, keep that in mind."}, {"title": "rpj-common-crawl-2021-04", "text": "if any castles in the US built in medieval times. If only we had an oppressive tyrant to create a caste system forcing the ill bred into a feudal system, and structures of defense that also served to reinforce the idea of unchallengeable power. \u2013 Chad Jan 12 '12 at 16:33 @Brightblades I am fairly sure of my statement. If a castle nowadays has glass on the windows, it's either not a castle (a villa or a church) or the glasses are modern. Most medieval castles did not have windows has they became common only late in the game (XIV century). In any case, if you go to visit a castle today and you see a glass window it's quite likely that it's modern. \u2013 Sklivvz Jan 12 '12 at 19:56 @Sklivvz we may be talking past each other. :-) To us uncouth Americans, some of those giant residential villas are also castles. Not only the military fortifications. Maybe that's the source of my confusion. (And yes, I realize that uncouth American is redundant!) \u2013 JasonR Jan 12 '12 at 20:31 A lot of people hear that glass is a liquid when they hear about this particular misconception. Actually it is probably better to describe glass as an amorphous solid. Any variation in thickness comes strictly from manufacturing processes. Molten glass is gathered on a blowpipe, and blown to an elongated balloon shape . The ends are cut off and the resulting cylinder is split with shears while still hot, then flattened on an iron plate."}, {"title": "rpj-common-crawl-2021-04", "text": "of to achieve each imaginable color in laminated glass. Bent architectural glass Architects and designers love to interrupt straightness, corners and curves with soft curves. In the applications of the building envelope, glass is generally bent through a thermal gravity process. A glass pane is laid over a bending form and in the bending oven heated up to 550 - 620\u2103. After having reached the softening point the pane descends (through gravity) slowly into the bending mould and adopts its shape. The following cooling down defines the shape of the glass. Slow cooling, free from residual stress, produces a glass which can be further processed, whereas fast cooling creates a partial or fully tempered glass which is not applicable for further processing. This is just a beginning Want to learn more about the glass industry? Explore our other resources, or reach out to us with questions about your next project. Float glass Acid etched Glass Anti condensation glass Low e glass Glass Functions Curtains walls ShowerGuard Warranty Guardian Glass Brexit position - Q&A COPYRIGHT \u00a92020 GUARDIAN GLASS. ALL RIGHTS RESERVED"}, {"title": "rpj-common-crawl-2019-30", "text": "That itch to explain the world around us is just human nature. And even when we solve one question, a few more pop up. While scientific discovery will always be the product of close observation and testing, researchers today have incredibly sophisticated tools at their fingertips. They\u2019re answering questions through advanced underground laboratories, massive telescopes, and 192-beam lasers, each of which is aided by a crucial piece of glass. In fact, from test tubes to sight glasses, glass plays a significant role in research and scientific advancement. Here are five examples of glass playing a critical role in scientific discoveries that help shape our understanding of some of the largest forces on Earth and in the universe. What Newton wanted to know: Isaac Newton was so fascinated yet perplexed by light, he spent years studying it. Otto Schott, Carl Zeiss, and Ernst Abbe (the grandfathers of SCHOTT) owe a lot to Newton\u2019s famous work Opticks, but the trio pushed the field forward by refining optical glass. Zeiss ran an optical and precision machining workshop, and his silent partner, Abbe, was a trained physicist working on the theoretical principles of optical imaging. But Zeiss needed a better quality glass for his microscopes and lenses, so he turned to Schott, an expert in glass melting and the chemistry of glass. Buoyed by Abbe\u2019s physics principles, Schott developed specialized glass for Zeiss\u2019s microscopes, and these glass lenses gave the world a better understanding of the refractive and dispersion properties of light. Scientists got a better look at the world"}, {"title": "rpj-stackexchange", "text": "Q: Why does aluminium-on-glass mirror work without distortion? I have read an article about glass (zerodur) with low thermal expansion coefficient. It is mentioned that large casts of such glass are covered with reflective layer of Aluminium and used as mirrors in space observatories. Low CTE is so important in this glass, because changes in size of it would distort the picture taken with the telescope. But what about said layer of aluminium? It is metal and it's CTE is much larger than the one of the glass. So how does it happen that the thin layer of aluminium doesn't distort the picture? Doesn't it expand/shrink? A: Let us take the example of the Hubble primary mirror. It has a diameter of 2.4 m and a mass of 828 kg. It is actually made in a sandwich structure - glass-honeycomb-glass - making it about 30 cm thick (for stiffness) but light. The mirror is coated with an aluminum coating of thickness t = 65 nm, with a 25 nm MgF2 protective coating on top. Coefficient of thermal expansion of aluminum is $2.2 \\cdot 10^{-5} \\mathrm{m/m\\cdot K}$ and the Young's modulus is 69 GPa. If you constrain the coating to be of constant size, then you increase the strain by $2.2 \\cdot 10^{-5}$ per \u00b0C, and for a square sheet of aluminum with sides $L$ and thickness $t$, the force this creates would be $$F = \\sigma E A = 2.2\\cdot 10^{-5} \\cdot 69 \\cdot 10^9 \\cdot 2.4 \\cdot 10^{-9} \\approx 0.4 N $$ A force of"}, {"title": "rpj-common-crawl-2019-30", "text": "produce their unique optical or structural properties. Add to this the nearly infinite varieties of glass\u2014one database lists over 350,000 types of currently known glass, though in principle the number of mixtures is limitless\u2014and you get a surprisingly large and active field of research that regularly produces astounding new products. Glass has shaped the world more than any other substance, and in many sneaky ways, it\u2019s the defining material of the human era. \u201cWe\u2019ve been making glass for thousands of years, and we still don\u2019t have a good idea of what it is,\u201d says Mathieu Bauchy, a glass expert and materials researcher at UCLA. Most glasses are made by heating and then quickly cooling a mixture of ingredients. In the case of flat glass, which makes up windows, that mixture may include sand (silicon dioxide), lime, and soda. Silicon provides the transparency, calcium provides the strength, and soda reduces the melting point. The swift cooling process doesn\u2019t allow for atoms to form a regular pattern, explains Steve Martin, a glass scientist at Iowa State University. That helps explain why glass is neither a crystalline solid nor a liquid, but rather an atomically disordered (or amorphous) solid. The atoms within want to reassume a crystal structure, but typically cannot because they are essentially frozen in place. You might have heard that cathedral windows flow over long periods of time, hence why some are thicker at the bottom. That\u2019s false: Such windows were made that way, due to a manufacturing technique that involved spinning molten glass that created"}, {"title": "rpj-common-crawl-2023-06", "text": "glass, and when it is full it can not take care of more water, and it must therefore get rid of everything that is supplied, but if it is blocked, then must the protection be stronger, otherwise the object destroyed! And if it overflows are less than what is provided, water is press more and more together, and then it also increases the internal pressure on the glass, and resist the pressure increases must be equivalent to a thicker glass! And it\u2019s the same situation is in q\u2019il cord or wire! If the cord is thin, less able to sustain the supply of energy before it burns and destroys itself as a string, and getting rid of the supply of energy without being damaged, it must be thicker like the glass! If we get a wire or cable, (representing a full glass) and move in a magnetic field, (we move the glass), it is electricity in the cable! Science has taught us that if you break a line of magnetic force, it is producing power! But I will draw the similarities between the cable and the full glass, by imagine that the wire is too \u00abfully\u00bb or \u00abfully charged\u00bb, like the cup? The wire material that is normal, I think that dark matter is impacted on the wire, and fill, or load it (or fill the glass), and the movement of the magnetic field is analogous to the elimination of glass running water, and that the wire is \u00abfully\u00bb, saturated or \u00abfully load\u00bb of dark matter,"}, {"title": "rpj-common-crawl-2022-05", "text": "by glass, and when it is full it can not take care of more water, and it must therefore get rid of everything that is supplied, but if it is blocked, then must the protection be stronger, otherwise the object destroyed! And if it overflows are less than what is provided, water is press more and more together, and then it also increases the internal pressure on the glass, and resist the pressure increases must be equivalent to a thicker glass! And it\u2019s the same situation is in q\u2019il cord or wire! If the cord is thin, less able to sustain the supply of energy before it burns and destroys itself as a string, and getting rid of the supply of energy without being damaged, it must be thicker like the glass! If we get a wire or cable, (representing a full glass) and move in a magnetic field, (we move the glass), it is electricity in the cable! Science has taught us that if you break a line of magnetic force, it is producing power! But I will draw the similarities between the cable and the full glass, by imagine that the wire is too \u00abfully\u00bb or \u00abfully charged\u00bb, like the cup? The wire material that is normal, I think that dark matter is impacted on the wire, and fill, or load it (or fill the glass), and the movement of the magnetic field is analogous to the elimination of glass running water, and that the wire is \u00abfully\u00bb, saturated or \u00abfully load\u00bb of dark"}, {"title": "bm25", "text": "Q: Dependance of temperature on color of metals I asked this question because I supposedly did last year, Stanfor Klein which belongs to the Solar Energy Laboratory of the University of Wisconsin says that \"the color of a car does not affect its internal temperature\". I wonder why Metals with different colors perhaps do not absorb different doses of temperatures? and as a consequence, when different metals of different colors are exposed to strong radiation it is not so differently warmed? A: Klein's point was that the heating of cars in sunlight is dominated by their glass windows. This is exactly the same mechanism as in a greenhouse. The glass allows visible light to pass through. The visible light is absorbed by the interior and heats it up, but the glass blocks infra-red light so the heat can't escape. The colour metal is painted will affect how much radiation it absorbs and therefore how fast it heats up. It's just that this is a small part of heating up a car so the colour the car is painted makes only a tiny difference."}], "hoverinfo": "text"}, {"x": [-0.09182421118021011, -0.11118179559707642, -0.07046467810869217, -0.06894629448652267, -0.09938889741897583, -0.14804525673389435, -0.07904762774705887, -0.08375297486782074, 0.01925019547343254, -0.18018609285354614, -0.03707320988178253, -0.1318758875131607, -0.007445158902555704, -0.1341618150472641, -0.04716069623827934, -0.1312440037727356, -0.14251722395420074, -0.06244618073105812, -0.06158248707652092, -0.10177921503782272, -0.11425725370645523, -0.10290461778640747, -0.16011078655719757, -0.1234530359506607, -0.08029283583164215, -0.1635221540927887, -0.07366858422756195, -0.13743504881858826, -0.06764992326498032, -0.08105994015932083, -0.11926085501909256, -0.12497113645076752, -0.1004442572593689, -0.11651010811328888, -0.1610475480556488, -0.10844461619853973, -0.09864235669374466, -0.14394323527812958, -0.15153507888317108, -0.07375847548246384, -0.08324623852968216, -0.12520137429237366, -0.03444936126470566, -0.14544032514095306, -0.10746915638446808, -0.08863184601068497], "y": [0.04546751081943512, 0.07067076116800308, 0.1403927505016327, 0.15006014704704285, 0.13820746541023254, 0.002131879795342684, 0.08086392283439636, 0.04437524452805519, 0.052037112414836884, 0.059151966124773026, -0.031232208013534546, 0.0323009192943573, 0.023352306336164474, 0.05159076675772667, 0.07514504343271255, 0.0616910457611084, 0.0803445354104042, 0.1669544279575348, 0.15635405480861664, 0.10346987843513489, 0.1549897938966751, 0.14624805748462677, 0.09613769501447678, 0.10670223832130432, 0.14284415543079376, 0.0517607256770134, 0.1296289712190628, 0.11209607869386673, 0.16285677254199982, 0.1559387743473053, 0.10929787904024124, 0.13985002040863037, 0.12776561081409454, 0.12427819520235062, 0.09098277240991592, 0.02443062514066696, 0.16561953723430634, 0.08130010217428207, 0.07309079170227051, 0.11536438018083572, 0.10529456287622452, 0.14090649783611298, 0.0875433087348938, 0.06594555079936981, 0.10283176600933075, 0.09585390985012054], "mode": "markers", "name": "Cluster 6", "marker": {"size": 8, "color": "rgb(179,222,105)"}, "text": ["Document 524", "Document 559", "Document 610", "Document 618", "Document 648", "Document 696", "Document 742", "Document 744", "Document 756", "Document 759", "Document 780", "Document 787", "Document 855", "Document 877", "Document 912", "Document 946", "Document 976", "Document 1044", "Document 1087", "Document 1093", "Document 1094", "Document 1132", "Document 1149", "Document 1164", "Document 1173", "Document 1193", "Document 1198", "Document 1214", "Document 1235", "Document 1255", "Document 1270", "Document 1272", "Document 1274", "Document 1277", "Document 1279", "Document 1286", "Document 1291", "Document 1309", "Document 1310", "Document 1321", "Document 1381", "Document 1424", "Document 1428", "Document 1435", "Document 1439", "Document 1443"], "customdata": [{"title": "rpj-c4", "text": "some story. But my shadow never told me any story. And I wondered why not. I wondered why shadows don\u2019t tell stories. I could see the night jasmines wet with morning dew, lit with fresh sunshine, trying to form a story in white with their jasmine-petal smell. I would see the story spread in the air. Then I would put my hands above it, so that my hands cast a shadow on the flowers. I would see that the moment I put my shadow above the flowers, the story would immediately stop forming. \u2026so I would move my hands away from them and the story would begin to form. \u2026to see if an incident really happened. 17% \u201cDoes he flap his hands all the time?\u201d the clinical psychologist in a Calcutta hospital asked Mother. I chose to stand in the corner (of his office) between two glass doors, so that I could see as many reflections of my flapping hands as possible through the glass. My son acts as if he wants to become one with the reflection, or get on the other side of it. He really makes us crazy in the jewelry section of a department store. Those display cases have bright lights, mirrors and glass. Ohhhh\u2026the \u2018trifecta\u2019 of stimuli. To say nothing of the reflection of light on the gold, silver, and diamonds in the jewelry itself. 18% I stood in the corner between two glass doors so that I could see many reflections of my flapping hands as possible through the glass."}, {"title": "rpj-common-crawl-2019-30", "text": "clouds could pass over the sun. The shafts of light would move. My eye traced the path, memory informed me about general directions involved. As the sun rose, I\u2019d lose ground. It wouldn\u2019t be soon, but given time, the lights would no longer intersect. The diagram would come apart. My heart was going crazy as I moved the blade, turning it to pass the light steadily over the surroundings. Ur was smart enough to anticipate the movement of the light, to predict where I would move it and move out of the way before the light touched it. Here and there, Ur had covered up windows, or covered up parts of windows. Where Ur scraped against the edges of windows and sections of wall, falling debris clouded the light. My eye fell on one window \u2013 there wasn\u2019t much glass, largely covered, but it was close. The only things of substance on the floor between Ur and me were chunks of rock and scattered pieces of glass from the window, ranging from a foot across to mere dust. The little shards caught the light, scintillating in rainbow hues. It was very possible my foot could slip. Another section, further away, suggested a path to the window. The same window I\u2019d been running for when I\u2019d fallen into the Drains. Broken window or run for the intact window, further away? Broken window. I bent down, and I placed the Hyena on its side, blade facing the window, catching the light from the window so a shaft of"}, {"title": "rpj-common-crawl-2019-30", "text": "day, like the cabin of a ship on a curving course. Found in Couples, authored by John Updike. The light on the wall was as warped as the window pane. Over the centuries the glass had become thicker at the bottom and developed the waves that were now projected onto the cold stone wall. Although it was clean, barely enough light made it through to illuminate the room giving it a dingy, almost dungeon-like feel. By Angela Abraham, @daisydescriptionari, November 16, 2014. The frosted window cast an array of diffuse swirls onto the blue vinyl, giving it the impression of being a small sea shimmering in the early summer light. A beacon of light pierced through the mullioned panes of glass, bathing the black and white tile floor in a crisscross of iridescent colour; illuminating the darkened room. Two young children fascinated by the great shafts of light, ran towards the beams and tried to touch the solid luminous checkerboard. Just like the dust particles in the sunlight, they flitted between the beams, playfully bounding to avoid the dark. By beth, January 13, 2015. Even the light connived to imprison her with it's shadowy bars slanting across the cell, casting it's striped shadow over the wreck of a mattress and thin wool blanket. At night they would disappear into the blackness but she was trapped nonetheless. Trapped with the rats at her toes and the ever-present draught under the thick oak door. A high lozenge of light told Medlar's one cracked and sleep-blurred eye that dawn"}, {"title": "rpj-common-crawl-2021-04", "text": "scarlet through the occasional window, only to be blotted by my circle of light as I ascended. (You do see? That\u2019s exactly what must be done\u2014you must see! To see as I have!) As always there was the sharp feeling of vulnerability when I reached the top\u2014for here the wind invariably batters at the windows, threatening that this night, this time, it will at last shake the glass from its frames . . . I was well aware that one of these panes of glass was new, having been replaced after Hendershaw fell through it to his death. I knew which pane it was too\u2014a cheaper glass than the others, blurred by poor glazing so it distorted the moon, making it into a bent countenance, a leering yellow face, like a figure of wax in the heat. I set about lighting the lanterns before the reflector, and this time tried to keep myself from looking into the curved mirror\u2014to prevent its practicing upon my imagination\u2014 My task done, I stood . . . and heard a rattling from the back of the mirror. I had only once looked behind the mirror\u2014there was only dust there, cobwebs, the curved inner wall of the light-house. But beyond that formidable stone wall was the windy air above the rocky verge of the island, and beyond that verge the sea\u2014and beyond that curving stretch of sea, the shore, a little distance beyond which stood the village. That dusty dim place\u2014barely room for a man to pass\u2014had seemed repugnant to me,"}, {"title": "rpj-book", "text": "snow and began making a circuit of the building, pressing my forehead against every pane of icy glass and squinting to see what I could. Most of the windows had curtains to prevent a burglar from doing exactly what I was doing, but there were slits between some of the drapes that afforded a glimpse inside. The interior of the house hid itself in shadows. I could make out the bulked silhouettes of furniture and floating gray rectangles demarcating windows on the far side of the home. \"We should probably get back to the ladies,\" called Charley. The night before, I'd left the scene of an accident without quieting my doubts. I wouldn't make the same mistake again. A long porch stretched along the ocean side of the house, suspended on steel pilings driven into the ledge. Below me, waves splashed against the rocks, turning from ink black to foaming white as they exploded against the shore. I mounted the steep ice-coated steps and climbed carefully up to the porch. The doors were all of glass. Like dark mirrors, they reflected the harbor behind me: a phantom seascape lit by watery stars. Again, I peered inside. Heavy drapes barred my view. I moved to the last window and found the curtains parted. Inside, all was blackness. Nothing to be seen. I switched on my flashlight and, shielding my eyes with my hand, began moving the beam around the inside of the room. On the other side of the window, at the level of my feet, there"}, {"title": "rpj-common-crawl-2020-05", "text": "had died about five years ago. There was now no successor who had claimed it as their own, though two or three possible apparent heirs might eventually be found in old papers stored in an old box. Enver liked to explore houses of a time gone by like this one. He thought that such places were a gift handed down from the old times in their country, and that a full survey of it was needed, in order to complete his book about photos from old buildings and manors in that area. However, as an experienced photographer, the man had immediately noticed after a few shots that shadows inside the house didn\u2019t behave as they should, according to the rules of beacons and lights. How was that possible? Shadows were simply dark areas where light from a light source was blocked by an opaque object. The cross section of a shadow looked like a two-dimensional silhouette, or a reverse projection of the object blocking the light. This was science, and this was how things should always be, here and everywhere. But that wasn\u2019t how shadows behaved inside this house. Their silhouettes seemed to follow different paths, or were changed from one point to another, very strangely, without any possible explanation. Certainly, no light source could cast the strange shadows he had witnessed many times in various areas of the house. It wasn\u2019t due to the wind that moved objects like papers or curtains and blocked the light source differently, and apparently there was no way to"}, {"title": "rpj-common-crawl-2023-06", "text": "became glass. In one calculated movement, the shadow turned as if to test its power. It lifted both hands and screamed a word. A pulse came out of its body and the whole ocean froze. Looking at its hands it turned back and started walking and in a cloud of dark smoke, it disappeared. Luck on the road. It was the worst blizzard he had seen in years. At a stop sign, there was a car parked with A philosopher king. He signaled the waiter to bring two more with his fingers, the bar was loud and busy that night. \u2013dude Lighter than a Feather. She spread her wings in one movement and light left them as the trees around her moved. In one movement \" When did we stop creating and looking for what could be a better system?\" Asked Caph \" What do you mean? The Backalley. He knocked at the door twice, the small metal trapdoor opened to show just a pair of eyes \"passcode?\" The"}, {"title": "rpj-common-crawl-2022-05", "text": "be Craigs shadow, but he, who doesn\u2019t believe in any paranormal activity couldn\u2019t explain it. I\u2019m reflected in the glass in front of me, so if Craig was to my side he would also have a coloured but translucent reflection like mine in the glass. But instead it\u2019s a shadow, but mines not? And it\u2019s also got the brick print through it like its a see-through shadow. When I zoomed in I noticed three distinctively pointed fingers. If that was Craigs hand they wouldn\u2019t be pointed but either rounded or just a blob where his hand was. If I really use my imagination I can see what looks like a girls face with hollowed out eyes. Can you explain the photo? architecturehauntedhumorlunatic asylumparanormalRoadtripTravelUSAwest virginia Previous Post Life inside one of Americas most notorious prisons Next Post Exploring the Appalachian Mountains 4wd campervan rental says: There\u2019s certainly a lot to know about this subject. Yes! It\u2019s a subject that scares me yet fascinates me! Glad you enjoyed the read \ud83d\ude42"}, {"title": "rpj-common-crawl-2019-30", "text": "pondering its lack of a reflection and wondering why it can traverse space and time but can't pass through an eighth of an inch of cheap mirror glass. Then some guy presses a button, and BOOM the mirrors are rapidly-expanding clouds of dust and the plywood cube is a million windborne splinters. Wouldn't the ghost simply float away, possibly to return to its home and resume bedeviling the unfortunate homeowners? Not according to some. Trap the ghost, detonate the trap, problem solved. Roll credits and previews for next week's show. Sorry, I cannot complete the mental gyrations required for that to make sense. If a being is immaterial, neither mirrors nor dynamite can interact with it. If a being is NOT immaterial then it can be seen, photographed, and probably even heard screaming to be let out of the bloody box. Now, I'll be the first to admit the mirrored ghost trap has a certain dramatic appeal. I plan to steal the concept and use it as soon as I can in a book or story, simply because A) it's cool and B) it has a certain intuitive logic about it. Mirrors creep people out, always have -- so naturally they would affect ghosts in some way as well. That's how our brains work. We're always making sense of out a nonsensical world. But that doesn't make any of it real. So I'm pretty much giving up on ghost hunting shows. Not ghost hunting, mind you -- just the TV depictions of it. I do wonder"}, {"title": "rpj-c4", "text": "as a small boy chopping kindling wood for my Grandmother in her cavernous vaulted cellar, illuminated by a single naked light bulb. Here, I would while away endless moments making shadows with my hands and profile on the walls, enlarging and distorting them by moving closer or shuffling further away. This was the precursor of much experimental work with shadows to come. I bought this obscure photograph of an alleyway recently, intrigued by its abstract qualities of light and shade, forming a strong diagonal. All I know about it is that it was taken mid- century (1930\u2019s) in the city of Bristol. The scene was taken during an afternoon, evinced by the lengthening shadows, which partially reveal the surface of a cobbled street, an iron drain cover, coal hole, and paving stones. The buildings in the background look industrial, with their grilles and neatly pointed brickwork. In the centre, is a Victorian gas lamp, mounted on a wall. In the foreground, one can see the entrance to a passageway or tunnel, painted white. Here the shadow grows darker and high up on the right hand side is an aperture, a vent, or recess. The photograph is a study in chiaroscuro, perfectly framed to balance the creeping approach of night and the dwindling light of the afternoon, in this deserted urban space. In many such places, I have played as a child, and continue to explore as an adult in my performances \u2013 an extended form of metaphysical play. There is also the phenomenon of wrapping up"}, {"title": "rpj-book", "text": "up into the sky and in the distance seeing a single star, but visually you must remember that you are looking through a tunnel, and this light would fill the end of the tunnel. You concentrate on this speck of light because as you are propelled forward you anticipate reaching this light._ _Gradually, as you travel towards it at an extreme speed it gets larger and larger. The whole process on reflection only seems to take about one minute. As you gradually draw nearer to this extremely brilliant light there is no sensation of an abrupt end of the tunnel, but rather more of a merging into the light. By now, the tunnel is behind you and before you is this magnificent, beautiful blue-white light. The brilliance is so bright, brighter than a light that would immediately blind you, but absolutely does not hurt your eyes at all._ 7 Many near-death experiencers describe the light itself: _My description of the light was\u2014well, it was not a light, but the absence of darkness, total and complete . . . Well, you think of lightas a big light shining on things making shadows and so forth. This light was really the absence of darkness. We're not used to that concept because we always get a shadow from the light unless the light is all around us. But this light was so total and complete that you didn't look at the light, you were in the light._ One person told Kenneth Ring, \"It was not bright. It was like"}, {"title": "rpj-common-crawl-2023-06", "text": "feeding, warmth and rest. But in summer, when we came back to the house, the sun would not have set; and while we were upstairs paying our visit to aunt L\u00e9onie its rays, sinking until they lay along her window-sill, would be caught and held by the large inner curtains and the loops which tied them back to the wall, and then, split and ramified and filtered, encrusting with tiny flakes of gold the citron-wood of the chest of drawers, would illuminate the room with a delicate, slanting, woodland glow. But on some days, though very rarely, the chest of drawers would long since have shed its momentary incrustations, there would no longer, as we turned into the Rue du Saint-Esprit, be any reflection from the western sky lighting up the window-panes, and the pond beneath the Calvary would have lost its fiery glow, sometimes indeed had changed already to an opalescent pallor, while a long ribbon of moonlight, gradually broadening and splintered by every ripple upon the water\u2019s surface, would stretch across it from end to end.\u201d (ibid.) Proust writes about light and shadow: \u201cIt was on the M\u00e9s\u00e9glise way that I first noticed the circular shadow which apple-trees cast upon the sunlit ground, and also those impalpable threads of golden silk which the setting sun weaves slantingly downwards from beneath their leaves, and which I used to see my father slash through with his stick without ever making them deviate.\u201d (ibid.) That\u2019s shadow from sunlight. This is shadow from moonlight: \u201cOutside, things too seemed"}, {"title": "rpj-book", "text": "does that work?\" Antonia replied. \"Well, I'm glad you asked that,\" the detective said, obviously pleased to be \"the expert\" on the matter. \"Here's how: A so-called one-way mirror has a very thin reflective coating applied to one side, about half as much coating as would be on there if you wanted to make the mirror truly opaque. In this case, the 'mirror' surface reflects about half the light that strikes it, and that's what the men in the lineup see. The rest of the light goes through so that someone on this side sees what is going on in that other room. But the real secret is how the two rooms are lit. In the stand-in room, you probably noticed that the lights are very bright and we see in there quite clearly; in the viewing room, it's dark, so very little light passes through to the stand-in room\u2014too little to see anything. Put another way, I'm sure you've stood outside a dark office building at night and all of the windows look like mirrors. However, if a light is on in an office, you can see inside just fine because the light is escaping. Does that all make sense?\" Antonia smiled. \"Yes, much more sense now,\" she said. \"Thank you for explaining.\" As the detective blushed and stepped back, Karp said, \"Are you ready to proceed?\" \"Yes,\" she replied. \"As ready as I'll ever be.\" \"Okay then, Detective,\" Karp said to McNeely, \"let's get cooking.\" Once they entered the viewing room, Karp explained what"}, {"title": "rpj-common-crawl-2021-04", "text": "I\u2019ve been most engaged in academic work. I\u2019m looking forward to pursuing both.\u201d At this hour the world is washed in the same darkness, shadow of unlit candles in a stone room where a woman passes her prayer to another and God sees no difference. But let there be a darkness underneath, where the sky outside those stones, the sky inside these hands, would open for us to see each stretch of skin as the grayest window. Slowly I see that blackness is a bird, that what appears as a circle exists as feathers and eyes glossing black, that there must be bones below. But what evidence can there be for your eyes? They cast no shadow but the shadow of my darkness, as reddening breath passes within us and opens every window to light. \u2014 Emily Vasiliauskas"}, {"title": "rpj-common-crawl-2021-04", "text": "the front of the mirror, with that diagram still fixed in my mind. I gazed into the mirror behind the lanterns, then, forgetting my earlier resolve, and the diagram seemed to float before my eyes, like the image haunting the vision when one has stared into the sun, and some incomprehensible completion took place then: I felt it like a key turning in a lock. So it was that the mirror became a great eye. For me, staring into it, at just that instant, the light-house mirror did not reflect; it showed nothing of me, as it usually did, it gathered light but seemed to push it all to the sides so that I could see the window it had become . . . Was it indeed like a window? Nay, a telescope lens, looking out the back of the light-house, right through the stone wall, through the intervening sky, across the arm of sea, across the strand and into the village . . . I could see into the village, exactly as if I was staring into the eyepiece of a giant telescope, though nothing so powerful and precise in its magnification exists. I talk as if I\u2019m trying to find some rational description of what I experienced\u2014but I was looking not only through the solid mirror, but through a stone wall!\u2014and oh! I could see every house in the village clearly and distinctly. If I looked at any one house, in particular, the house would swell to fill the mirror . . . My"}, {"title": "rpj-common-crawl-2021-04", "text": "love you. Haha. Thanks. Let me know if it works out and stuff. :) @Squize: I tried the game on internet explorer and although it's normally a slower browser, it worked and I was able to play level 4. It looks great! I love it! I barely made it through the level alive. >.< I had almost no ammo left at the end. That SMG came in really handy when my assault rifle ran out of ammo. I'm glad I finally actually ran out of keys for the doors so that I was forced to shoot them open for once. It made me take up more ammo but it just added more to the thrill of the action. I think it's just me but I could have sworn I was attacked by an invisible alien and all you could see where it's eyes. There was only one, and then I saw eyes in two other places that vanished when I searched there. You're really showing good creativity, keep it up Squize! So, this may be a more difficult thing, but it's just another idea, I think there should be like complete darkness everywhere until you are in that area. It's a little difficult to describe but something like a shadow cast when walking near the walls since you have a light it should like cast a shadow at an angle from the light source that you are. Still a bit difficult to completely explain. Lets say you're standing near a doorway but you are at about"}, {"title": "rpj-common-crawl-2023-06", "text": "rear of the mill, he shone his light into the water and discovered the net of which Elisha had spoken. A thick, curved mesh that blocked the entire stream, the net offered an excellent trap for fish. The strength of the current would tend to bring fish through the channel beneath the mill. Once in the net, they would be apt to stay there. Moving further back, The Shadow encountered a solid wall that stopped just above the surface of the water. He could feel the rumble of surging current underneath the planks on which he stood. This indicated that the main inlet was but one feeder through which water came. In fact, there was something placid about the flow of the central channel. The water seemed to increase in power and volume as it reached the net. As The Shadow studied this fact, he caught a sound from above. It sounded like the closing of a door. Placing his hand against the low ceiling, The Shadow sensed a creaking. Moving forward, he followed it. for half a dozen paces. His light was no longer blinking. Someone had entered the mill from the door which Zegler and Elisha had used as exit. PICKING his way through darkness, The Shadow gained the stairway. He ascended and stopped when he arrived at the closed door. Carefully, he turned the latch. He opened the door a fraction of an inch. Light gleamed through the opening. The Shadow saw a man moving away from a table upon which stood a"}, {"title": "bm25", "text": "a great white mare frolicking in the surf, another girl transfixed as the camera focuses on a wall of graffiti behind her, ghosts of cars passing the burned out shell of another, a goods train which goes on for miles and miles--all are hard to forget.

One cannot, however, divorce the visual material, impressive as it is, from the music. It is as if they are one; inseparable. Philip Glass's work has matured significantly since his last collaboration with Reggio, yet it still bears his inimitable trademark. It is not as atonal or minimalistic as his score for KOYANNISQATSI . Instead, it borrows heavily from the music and rhythms of the cultures and sub-cultures represented. Highly percussive in nature, Glass uses native as well as traditional instruments, accented by an Hispanic children's choir.

But man's endurance comes through in the end, how he overcomes sometimes major obstacles in order to further his own creations, extend life, maybe even cheat death. For this is the meaning of POWAQQATSI--an entity, a spirit which consumes life in order to further its own. Not a spirit in the traditional sense, but a life force equal to those of nature, of light and dark, land and sea, sound and image.

-- David N. Butterworth

The review above was posted to the rec.arts.movies.reviews newsgroup (de.rec.film.kritiken for German reviews).
The Internet Movie Database accepts no responsibility for the contents of the review and has no editorial control. Unless stated otherwise, the copyright belongs to the author.
Please direct comments/criticisms of"}, {"title": "bm25", "text": "Diana works in the front of her mind on craftsmanship and balance, moving words and clauses to and fro. It\u2019s very mechanical work and all the while the back of her mind is murmuring questions. This is all going on together, all of the time. On a cold day with no ideas, she goes to her stacks of historical material looking for a good \u201ckernel.\u201d The kernel gets her into the page but it\u2019s not necessarily having to do with the scene. She picks up a catalog of 18 century Scottish silver and crystal. Her mind\u2019s eye picks up a beautiful goblet incised with thistles on the side: \u201cThe crystal goblet is made of glass\u2026well everybody knows that, crystal is made of glass. The crystal goblet\u2026light from the side\u2026passing through\u2026how is the light passing through? The light is coming in low and the color is blue\u2026why is the color blue? The color is blue because it\u2019s snowy outside and it\u2019s a late winter afternoon\u2026so the cold blue light of the late winter afternoon fell through the crystal glass\u2026no, no, no goblet. How did it fall through? Did it go splat? There\u2019s something in it refracting light. The cold blue light of the late afternoon fell through the crystal goblet casting a pool of glowing amber\u2026why is it amber? Because there\u2019s something in the glass casting amber light on the polished wood of the table top\u2014now I know where I am. I\u2019m in Jocasta Cameron\u2019s parlor because she\u2019s the only one that would have a glass window,"}, {"title": "bm25", "text": "the reader, through Satterthwaite's almost subconscious thoughts, of the connection between the appearance of Quin and the traditional costume of Harlequin, the latter being a dark mask and clothing composed of multi-coloured diamond-shapes, as featured on the cover of the UK first edition of the book (see image above). In The Coming of Mr Quin, Quin is first described in the following passage: \"Framed in the doorway stood a man's figure, tall and slender. To Mr Satterthwaite, watching, he appeared by some curious effect of the stained glass above the door, to be dressed in every colour of the rainbow. Then, as he stepped forward, he showed himself to be a thin dark man dressed in motoring clothes.\" Later in the same story, the mask effect is described thus: \"Mr Quin acknowledged the introductions, and dropped into the chair that Evesham had hospitably pulled forward. As he sat, some effect of the firelight threw a bar of shadow across his face which gave almost the impression of a mask.\" In The Shadow on the Glass, the literary effect is repeated as follows: \"Mr Quin sat down. The red\u2010shaded lamp threw a broad band of coloured light over the checked pattern of his overcoat, and left his face in shadow almost as though he wore a mask.\" In The Sign in the Sky, the description is: \"[The table] was already occupied by a tall dark man who sat with his face in shadow, and with a play of colour from a stained window turning his sober garb"}, {"title": "bm25", "text": "over the general mass of the house unifying all its separate parts. Waterhouse wrote: 'The cast shadow on rough cast or brick broken by the light on glass and shutter is most beautiful, and the unifying value of the shadow is very great Balconies and verandahs should either be absorbed within the structural bounding lines of the mass, or be large enough to avoid that meagre and disjointed appearance so detrimental to the design, and should provide sufficient space for living or sleeping and out accommodation now so customary.' The principal wall material unlike many of Waterhouse's contemporary designs is a dark mahogany/brown brick combined with beautiful red/brown plane tiles and gables which are heavily half-timbered and pargetted with rough cast. Interestingly, Waterhouse was to choose a similar brick when he built his own house \"The Gables\" in Neutral Bay - between 1920 and 1923. The tall chimneys have their own gabled roofs and are almost a trademark of a Waterhouse design from this period. The large semi-circular arch which defined the front verandah of Tulkiyan echoes a favourite architectural motif of the great American architect, Henry Hobson Richardson. All the outdoor spaces are nicely \"absorbed\" into the mass. Each room has an adjacent outdoor space with the necessary requisite for \"sleeping out\". The house is approached from a side entrance porch into a large entry and stair hall around which radiate the principal ground floor rooms. To the right through sliding doors is the morning room with a small ingle and a picturesque window seat"}, {"title": "bm25", "text": "the night before. A good walk and a friendly chat would be welcome to his jangled nerves.

Bellingham's door was shut as he passed, but glancing back when he was some distance from the turret, he saw his neighbour's head at the window outlined against the lamp-light, his face pressed apparently against the glass as he gazed out into the darkness. It was a blessing to be away from all contact with him, but if for a few hours, and Smith stepped out briskly, and breathed the soft spring air into his lungs. The half-moon lay in the west between two Gothic pinnacles, and threw upon the silvered street a dark tracery from the stone-work above. There was a brisk breeze, and light, fleecy clouds drifted swiftly across the sky. Old's was on the very border of the town, and in five minutes Smith found himself beyond the houses and between the hedges of a May-scented Oxfordshire lane.

It was a lonely and little frequented road which led to his friend's house. Early as it was, Smith did not meet a single soul upon his way. He walked briskly along until he came to the avenue gate, which opened into the long gravel drive leading up to Farlingford. In front of him he could see the cosy red light of the windows glimmering through the foliage. He stood with his hand upon the iron latch of the swinging gate, and he glanced back at the road along which he had come. Something was coming"}, {"title": "bm25", "text": "his wife about how messed up his life was. Pissed off from the fight, he goes for a drive. When trying to light a cigarette in his car, without having the seatbelt on, his phone rings \u2014 it is his mother. Then the cigarette falls from his mouth in the desperate attempt to grab his mobile phone on the seat next to him, burning him on the arm. Now he loses control over the car, but meanwhile a woman is crossing the road. Lazar's attempt to avoid hitting her is fatal. His car flips, and crashes until he is found hanging off the car's window whose glass had broken in the crash. The slow movement on the car resting off a building's wall is threatening to crush his dangling head. As all of the people on the streets watch in despair, something moves him away from the car. Cast Production The film was written and directed by Milcho Manchevski, and produced by Mariela Besuievsky, Nermin Gladers, Dimitar Gochev, Gerardo Herrero, and Martin Husmann, Milcho Manchevski, Robert Jazadziski, Corinna Meaner, Elena Melamed, Amedeo Pagani, and Thomas Woodrow. Fabio Cianchetti was the director of photography, David Munns was the production designer, Marty Levenstein and David Ray edited the film, and the music was composed by Ryan Shore and Kiril D\u017eajkovski. Principal photography took place in Ohrid, Saramzalino and Skopje, Macedonia. Awards Macedonian Academy Award Submission, 2008: Best Foreign-Language Film Golden Ladybug, 2008: Best Actress (Vesna Stanojevska in Shadows) Golden Ladybug, 2008: Best Music Video (Jungle Shadow in Shadows)"}, {"title": "bm25", "text": "ground. Sam quickly squirmed out of his brother\u2019s grasp and looked around for anyone that might have been watching. There was little chance of that. Their window faced the back of the Pastor\u2019s wooden three floor house. The creaky old place sat at the edge of farm land as far as the eye could see. In front of it, an unpaved road lead down the hill to the small stone church the Pastor presided over. Rounding the house\u2019s corner, they crouched down in the overgrown weeds. \u201cWhoa.\u201d Was all Sam could say. Sam stared down at the dark steeple rising from the building that sat down below them. He could just make out the black figure of Pastor Jim\u2019s shadow as he walked down towards the place. \u201cIt\u2019s worse now.\u201d Dean whispered. \u201cWhen I saw it, it was just a small light.\u201d It wasn\u2019t a small light now. All of the church\u2019s tall windows were vibrant and glowing right in the middle of the night. They silently flared and roiled, the colors muted and changed through the stains of glass, but unmistakably fire red and dull orange. The light flickered and flashed, cast out on the grounds outside the church, catching the Pastor\u2019s silhouette as he passed by under one of the windows. \u201cWh-what is it?\u201d Sam asked in a small voice. \u201cI don\u2019t know.\u201d Dean answered honestly. \u201cCome on.\u201d It was weird when they slipped through the heavy wooden doors and the lights just stopped. It was as if they could only be seen from"}, {"title": "bm25", "text": "to the exercise if you fall asleep just as the killer picks her up.' He took a look through the car window. \"Where is she?' With a start of panic Collier snatched up the night glasses and scoured the area near the phone box. Polly wasn't there! He'd missed the pick-up, he'd bloody missed it! Then he saw her, leaning against the railings in the shadow. 'There, sir!' He passed the night glasses to Frost, trying to sound as if he knew all the time. Sensing she was being watched, Polly moved forward to the light-splash from the lamp post and gave her bottom a little wiggle for Collier's benefit. He blushed, but Frost gawped with delight. 'Cor, I couldn't half give her one.' He turned to the PC. 'Shouldn't there be two of you? Where's Jordan?' Before Collier could think of an excuse, Jordan appeared clutching two yellow polystyrene containers. His dismay showed when he saw Frost. 'Just popped out for some refreshment, Inspector.' Frost took one of the boxes and looked inside. A beefburger, oozing fat and reeking of fried onion. 'You should have got one for Collier as well,' he said, sinking his teeth into it. His head jerked up. 'What's this?' A flare of headlights as a beige minicab marked 'Dave's Taxis' drew up by the phone box and honked its horn. Collier consulted his list. 'The right cab, sir.' He focused the night glasses. 'And the right driver. He's picked Polly up a couple of times before.' 'OK, son. Follow it,"}, {"title": "bm25", "text": "courage to navigate by his own compass, and even write the items on the agenda. A bright spot Yes, Charly Phoenix probably is a street boy in trainers that swears on Funen, but he is also a nerd who gets lost in detail and almost turns into a educated academy professor, when the conversation falls on good and bad Black and Grey Tattoos. The vital part is exactly, the light. Just as it was, for the nineteenth century artists from Jutland\u2019s northernmost point, or the old Renaissance painters, for that matter. Although he can catch himself in, moving a glass at a family dinner, just to see how the shadows falls and how they are changing a surface. Light, shadows, shades and transformation. For many years, Black and Grey have been characterized, by the fact that there was a solid outline, where you put the shade from the edge and into to middle, which present a uniform and flat design, but according to Charly Phoenix, this has changed, also in time with the genre has become much more realistic embossed. \u201cThat point, where a good tattoo have developed today, is often about, whether the artist has thought about having a light source, and where the light source is coming from. It creates dimension and depth, and is crucial for a realistic portrait to show if its is successful or not, \u201che explains, and talk about what kind of shadows a nose can throw and how the eyelashes can cast shadows on the cheek, if you can"}, {"title": "bm25", "text": "been realized. This sign, its letters burning scarlet against a whitewashed background, its stars, rifle, canteen and wheat emblazoned in red and yellow, had come home one day with the Division Commander. He had gazed solemnly at Wu Dawang as he laid it on the table. \"Do you know what this sign means?\" he asked, while his General Orderly set down dishes of food before him. After a long, hard look, Wu Dawang produced a careful critique. \"Good,\" declared the Commander, his face brightening slowly into a smile. \"Very good, in fact\u2014much better than them.\" Though Wu Dawang didn't know who the Division Commander meant by \"them,\" he did know, and better than most, the People's Liberation Army's three rules of thumb: Don't Say What You Shouldn't Say, Don't Ask What You Shouldn't Ask, Don't Do What You Shouldn't Do. He therefore went back to the kitchen to prepare soup for the Commander and his wife. And from that moment on, the sign became the most distinguished, most illustrious resident of the dining table, casting its mighty symbolic shadow over the lowly bottles of vinegar, chili sauce and sesame oil. The days passed, one after another, as time trickled peacefully, indeterminately through the barracks. Every day at dawn, before reveille, the Commander would come downstairs, immaculately uniformed, and set out for the parade ground\u2014for his daily round of drills, and yet more drills. Every night, long after lights-out, he would return home exhausted, take off his uniform, wash his face, brush his teeth, and climb upstairs"}, {"title": "bm25", "text": "Working our way towards the edge of the escarpment and the jumble of fanciful peaks of the \u201cBerg.\u201d The days that followed put to rest any notion that the escarpment was flat-topped as we climbed up snow covered ridges and then down steep humpy inclines, careful not to twist an ankle. The only moments we could get close to the edge were when a pass would open up leading down into what appeared to be a city of oddly shaped spires. Ifidi Pass was one such place followed quickly by the equally breath-taking Icidi Pass and Crushsite. In these areas, Bushmen or the San painted exquisite paintings inside caves, living here in a last stand against the encroaching foreigners. Our campsite that night was near water just on the open expanse of the escarpment; wild and lonely, but with a feeling of comfort from the light show in the heavens. The following morning broke clear and sunny, and I was charmed by my long shadow cast to the north with the sun leaning opposite of home as it made its arc through the sky. The days were brisk, but long sleeves and long pants sufficed \u2013 as did glasses, hat and wind stopping gloves. Far more austere than the Sierras, it was coming upon dried flowers that caught my fancy, dimmed, but still colorful against the monochromatic landscape. No cities, no lights, no flight paths \u2013 the Drakensberg is the quietest place I have ever been. As we approached a hanging valley, we came upon a"}, {"title": "bm25", "text": "authored by Anthony Horowitz. He loved how this house welcomed into itself in every season lemony flecked rhomboids of sun whose slow sliding revolved it with the day, like the cabin of a ship on a curving course. Found in Couples, authored by John Updike. The light on the wall was as warped as the window pane. Over the centuries the glass had become thicker at the bottom and developed the waves that were now projected onto the cold stone wall. Although it was clean, barely enough light made it through to illuminate the room giving it a dingy, almost dungeon-like feel. By Angela Abraham, @daisydescriptionari, November 16, 2014. The frosted window cast an array of diffuse swirls onto the blue vinyl, giving it the impression of being a small sea shimmering in the early summer light. A beacon of light pierced through the mullioned panes of glass, bathing the black and white tile floor in a crisscross of iridescent colour; illuminating the darkened room. Two young children fascinated by the great shafts of light, ran towards the beams and tried to touch the solid luminous checkerboard. Just like the dust particles in the sunlight, they flitted between the beams, playfully bounding to avoid the dark. By beth, January 13, 2015. Even the light connived to imprison her with it's shadowy bars slanting across the cell, casting it's striped shadow over the wreck of a mattress and thin wool blanket. At night they would disappear into the blackness but she was trapped nonetheless. Trapped with the"}, {"title": "bm25", "text": "straight, That it may show me what a face I have, Since it is bankrupt of his majesty. HENRY BOLINGBROKE Go some of you and fetch a looking-glass. Exit an attendant NORTHUMBERLAND Read o'er this paper while the glass doth come. KING RICHARD II Fiend, thou torment'st me ere I come to hell! HENRY BOLINGBROKE Urge it no more, my Lord Northumberland. NORTHUMBERLAND The commons will not then be satisfied. KING RICHARD II They shall be satisfied: I'll read enough, When I do see the very book indeed Where all my sins are writ, and that's myself. Re-enter Attendant, with a glass Give me the glass, and therein will I read. No deeper wrinkles yet? hath sorrow struck So many blows upon this face of mine, And made no deeper wounds? O flattering glass, Like to my followers in prosperity, Thou dost beguile me! Was this face the face That every day under his household roof Did keep ten thousand men? was this the face That, like the sun, did make beholders wink? Was this the face that faced so many follies, And was at last out-faced by Bolingbroke? A brittle glory shineth in this face: As brittle as the glory is the face; Dashes the glass against the ground For there it is, crack'd in a hundred shivers. Mark, silent king, the moral of this sport, How soon my sorrow hath destroy'd my face. HENRY BOLINGBROKE The shadow of your sorrow"}, {"title": "bm25", "text": "friends\". We know then for sure that they are after him and he's been trying to figure out how to evade them. An interesting shot happens as the landlady pulls down the blind casting a deep shadow over Mr. Spencer's face. After the landlady leaves Mr. Spencer gets angry and throws the glass. It seemed to me that he feels the trap closing around him, but takes up the challenge, and says as he raises the blind and looks out at the men on the street corner, \"What do you know. You're bluffing. You've nothing on me.\" Then he gathers his things and goes out to the street passing extremely close to the men. He's challenging them to follow. From this opening, we know that Mr. Spencer must have committed some terrible crime, but we don't know what just yet. In what ways does this opening remind you of watching a film noir? If it doesn't remind you of a film noir, what makes the opening here different from the opening of a noir film like Siodmak's The Killers? (Note: If you haven't seen The Killers, it is fine to answer this question in general terms about your own personal expectations) First of all the music has a dark tone. Then there are the light shining through the windows in contrast with the shadows in the room. When the landlady pulls down the blind, there is a deep shadow that progresses down Mr. Spencer's face. I've seen The Killers only once, but in that film Burt"}, {"title": "bm25", "text": "National President Andre DiMino prior to the series debut. FoxNews.com reported that the MTV building in Times Square received threatening emails, abusive phone calls, and hurtful Facebook messages, mainly directed at staff members involved with the press for the show, and were hiring more security as a result. A spokesperson for MTV responded to the rumors saying that everything was fine at their headquarters and MTV \"has not received any death threats.\" Cast response Various members of the cast defended the show prior to airing saying to give the show a chance, with Mike Sorrentino saying, \"it's not necessarily a stereotype; it's just how it is ... in New York and New Jersey, that just happens to be the style.\" Sammi \"Sweetheart\" Giancola said prior to the shows debut: It's just people living life on the show ... that's it ... We shouldn't judge, because everybody's their own person. I feel, as an Italian-American, I understand their ways. People are what they are ... and that's the way it is. When Nicole \"Snooki\" Polizzi was on The Wendy Williams Show she responded to the criticism saying: The Italian, whatever, national, whatever their organization is, they don't understand that 'guidos' and 'guidettes' are good-looking people that, you know, like to make a scene and be center of attention and just take care of themselves ... They are old-fashioned. They don't know that; they think it's offensive, because maybe in their time it was offensive, but now it's kind of a compliment. So they don't understand that and"}, {"title": "bm25", "text": "\"I know that I am in disgrace.\"

\"Be good enough not to forget it and look as if you had come into a fortune. It is an impertinence. And remember you are to have no food today.\"

\"Yes, Miss Minchin,\" Sara answered; but as she turned away her heart leaped with the memory of what yesterday had been. \"If the Magic had not saved me just in time,\" she thought, \"how horrible it would have been!\"

\"She can't be very hungry,\" whispered Lavinia. \"Just look at her. Perhaps she is pretending she has had a good breakfast\"—with a spiteful laugh.

\"She's different from other people,\" said Jessie, watching Sara with her class. \"Sometimes I'm a bit frightened of her.\"

\"Ridiculous thing!\" ejaculated Lavinia.

All through the day the light was in Sara's face, and the color in her cheek. The servants cast puzzled glances at her, and whispered to each other, and Miss Amelia's small blue eyes wore an expression of bewilderment. What such an audacious look of well-being, under august displeasure could mean she could not understand. It was, however, just like Sara's singular obstinate way. She was probably determined to brave the matter out.

One thing Sara had resolved upon, as she thought things over. The wonders which had happened must be kept a secret, if such a thing were possible. If Miss Minchin should choose to mount to the attic again, of course all would be discovered. But it did not seem likely that she would do so for some time"}, {"title": "bm25", "text": "she never saw it, but her hands stayed locked on each cover until the blood hit the edge of the first sigil. The moment it entered the circle, it sluiced counter-clockwise around the ink, zipping across the straight tangents and shadowing the arcane letters in a halo of red. As the last line filled, a rumble passed through Emmeline\u2019s hands. The book shook until she could scarcely hold it and her bed\u2019s iron frame bounced against the wall. The red shadow of her blood burned black before flashing white-hot and finally fading to a burnished gold. Light gathered in the center of the sigil, casting a hot glow against her cheeks as it grew to the size of a grapefruit. The saliva evaporated from her mouth as the ball of light lifted from the page and hovered only inches before her nose. The pop of shattering glass resounded from the sconce near the door. She wanted to scream as the lights on either side of the fireplace blew out in a hail of glass, but the ball of light held her wholly. The world slowed to nearly a halt as glass hurtled past her and scattered across the coverlet, the book and its ball of energy deflecting the blows. Gas hissed in the empty sconces but was overtaken by the sound of faint whispers. Words rose and fell from the orb, all incomprehensible, but in her mind, she knew it was speaking about her. She stared into its depths. A maelstrom of faces and voices rose"}, {"title": "bm25", "text": "of the Dragoncillo Puppet Troupe. Live audiences, primarily consisting of elementary and middle school-aged students, learn about an understudied time, place, and art form. They come away from the experience with a heightened appreciation for the arts and greater esteem for the Spanish language and the diverse cultures across the globe that claim it as their native tongue. Professors looking for experiential learning opportunities for their students will discover that outreach through shadow puppets is an excellent way to connect their students to Spanish-speaking communities. This includes training students to become performers themselves. 8 In just a few hours, an inexperienced cast of would-be puppeteers can learn how to perform with shadow puppets. In May 2019, Dragoncillo visited Buena Vista University and briefly rehearsed Second Hands and the Ladies' Man with university students, preparing them to perform at elementary schools in Storm Lake, Iowa, and the surrounding areas. The contagious laughter, thoughtful questions, and generous praise from the audience created a unique and beneficial experience for the performers and audience members alike. Each performer had the opportunity to practice using a shadow puppet, impart dialogue, and teach about a critical period of Hispanic theater history. Each audience member was able to experience a shadowpuppet performance, ask pertinent questions, and learn about Golden Age Spain. Dragoncillo's bilingual approach to outreach ensures that students of all backgrounds recognize the rich cultural history and artistic inheritance of the Spanish language. By highlighting Spanish and Spanish speakers, the troupe aims to center the lives and experiences of students who may"}, {"title": "bm25", "text": "\\section{Introduction} Categorification, as envisioned by Crane and Frenkel in \\cite{crane1994four}, can be thought of as the process of interpreting a set theoretic or algebraic structure as a `shadow' of a category theoretic analogue. A categorification can endow familiar mathematical objects with richer structure, and can shed light on the structure by providing new tools to study it which were unavailable in the original setting. Categorification can be thought of as something like a mathematician's version of Plato's allegory of the cave. In Plato's allegory, a group of prisoners are confined in a cave facing a blank wall their entire lives. Outside the cave, there is a fire which casts shadows on the cave wall as objects pass in front of it. The prisoners have no concept of what the objects are and are aware only of the motions of the shadows on the wall. Plato's idea of a philosopher is one who escapes the cave and learns the true nature of these objects. Inspired by the ideas of Crane and Frenkel, we now attempt to ``escape the cave\". Linear algebra has proven to be an indispensable tool, having influence throughout mathematics and science. Therefore, one might expect that categorifying concepts in linear algebra would be of comparable importance. For instance, Elias and Hogancamp categorify the concepts of eigenvalues, eigenvectors, and diagonalization in \\cite{elias2017categorical}. Just as diagonalization has various uses in representation theory, categorical diagonalization has proven useful in categorical representation theory. In \\cite{elias2017categorical}, Elias and Hogancamp diagonalize the full twist Rouquier complex, and as an application"}, {"title": "bm25", "text": "the alley, however they could just make out the frosted glass windows. They stretched up, and peered through the glass. The room was cast in shadow, they could see assorted figures and forms moving about, but then they looked toward the door. Rather than being cloaked in the gloom that enveloped the room, he stood glowing violet. He stood not moving, just breathing in and out, the glow surrounding him intensifying with each breath. Finally, he turned and began to hum. The women could hear the song through the glass. As the lights came on, they watched as the people in the pub bowed before their master. This wasn\u2019t good. At the back of their mind, they had thought they might call on the assistance of the bar patrons in their struggle. This tavern was known to be frequented by loyal members of the resistance. But, clearly these people had fallen under the man\u2019s thrall. Melusina reached out with her hand and put a finger to the glass. She let out a gasp, a zap of electricity sending out a spark. She fell backwards, landing on the collection of rubbish bins that were suddenly visible thanks to the light coming from the window. The noise caused by her fall seemed to be the loudest sound the women had ever heard. They held their breath. Waiting, not daring to move. In the bar, Alistair was looking around trying to spot where the girl might have gone to hide, when he heard a gasp, a zap and a"}, {"title": "bm25", "text": "glee of a sorority cheer; the reverential military tribute that was done for the multiple Air Force members and veterans present; the goofy, golden wayfarer glasses provided for all the guests\u2014it all made for an incredibly fun evening. I wondered if, in some way, our music was the light of my headlamps, the farmhouse bedroom was the wedding reception, and the shadows being cast were the memories the bride and groom will keep with them for all the years to come. They\u2019ll build their lives together, start a family, and experience the constant craziness of that life that I wouldn\u2019t trade for a billion dollars, and neither will they. Maybe one night, many years from now, they\u2019ll retire to their bedroom, exhausted from a full day of work and an evening of fun with their children. Just as they doze off, lights from a distant, passing car will heave shadows across the room, and they\u2019ll wonder who is in that car, and where are they going at such a late hour? Maybe they\u2019ll remember that warm summer afternoon giving way to that cool autumn night in September of 2016, and they\u2019ll realize that even though old memories begin to become shadowy and lurch from one side of the room to the other, they will be right back where they started when the next car drives by\u2014happy thoughts enough to last a lifetime."}, {"title": "bm25", "text": "title: Moon Shadow date: 2015-09-28 00:00:00 Z categories: - writing image: \"/uploads/screen-shot-2016-12-13-at-5-04-47-am.png\" description: I am a Pisces, I need to evolve, I need to change, I need to live free, I need to live a purposeful life. video: layout: post --- I entered the shadows the best way I know how through the invocation of water. I drew myself a hot bath, it was time to go deep, I could feel the waning and waxing of my yin and yang. I have lived as my shadow self for years, hiding behind the light, a magicians wand. I do my breath work as I enter the purifying water, I think of all that hold me back, keep breathing. I submerge my body and feel the weight come off my shoulders. I know these do not truly hold me back, so what do I fear? I go through them in my head, keep breathing, I can feel the warm liquid womb tell me it's okay to feel, it's okay to think, it's okay to be; it doesn't mean you are - always. The music reverberates everywhere shaking things loose, widening the grip of angst on me. I am a Pisces, I need to evolve, I need to change, I need to live free, I need to live a purposeful life. When I feel unable to swim as I choose to, I swim in circles, festering on my own demise. This is okay. I now really do live as my light and when I am my shadow, it is"}, {"title": "bm25", "text": "Hopper Analysis The colour are mostly dark, the only light apparent is the rtificial diner light, which passes through the light window casting shadows all around. The artificial light also makes us look towards a lonely cash register which is typical for an American shop to have, yet it\u2019s the only visible item. The cash register may also indicate business, yet because it\u2019s shadowed it may suggest that there is not a lot of business going around. The composition of the painting is also slightly angled which makes us feel uncomfortable. The empty stools also makes the situation more gloomy and sad. The empty glass on the table that\u2019s left alone may indicate someone has been there and gone away. From the cup shape itself we can probably guess that the drinker doesn\u2019t drink coffee as that person uses glass instead of a mug (which is normally used for coffees). This may be a way of Hopper saying that people have died in the war, and we don t know who they are. Yet they still leave a piece of identity behind them like the up being left behind. Despite being in a room with other people, loneliness still can be felt. As if here is a wall between people. Because Hopper created this in 1942 which was the height of world war and a year after the pearl harbour bombing in December 7th 1941. The theme of loneliness is also highlighted with the fact that there are no doors visible in the diner. There are"}, {"title": "bm25", "text": "for me - take back your Cloak -\" \"Be silent, fool,\" hissed an angry voice. \"When I decide to sacrifice you I will tell you so.\" She's got a valid point, said Slytherin. You shouldn't risk yourself for her, there's no way her life is as valuable as yours. For an instant Harry considered sacrificing Bellatrix to save himself - And in that moment, some of the dim orange gas-light seemed to flee the corridor, a touch of cold crept over Harry's fingertips. And he knew, then, that to think of leaving Bellatrix to the shadows of Death, would make him vulnerable once more. Even in the moment of making the decision, he might become unable to cast the Patronus Charm, for he would have given up the thought that had saved him before. It occurred to Harry that he could still take the Cloak from Bellatrix afterward, even if he couldn't cast the Patronus Charm; and then he had to wrench his thoughts away from that option, focus firmly on his decision not to do it, or he might have just fallen over where he stood. For the whirlpool of emptiness swirling around him was now deadly strong; there were screams coming from above, and the screams below had stopped. This is ridiculous, said his logical side. Rational agents shouldn't have to put up with this sort of censored reasoning process, all the theorems assume that how you think doesn't affect reality apart from your actual actions, which is why you're free to choose an"}, {"title": "bm25", "text": "and gore formula behind in favor of actual horror. Doors open on their own, there\u2019s mysterious murmuring on the baby monitor, the burglar alarm goes off with no one around, and the frazzled mom sees shadow people lurking outside the window. But each decent directorial decision (a haunting use of \u201cTiptoe Through the Tulips\u201d) is counterbalanced by a poor one (no explanation for how the family affords a four-bedroom country estate and round-the-clock medical care on a high school teacher\u2019s salary). The lighting drapes the spooky figures in just the right amount of obscuring shadow, and the other technical elements are professional. But the casting is ho-hum: Patrick Wilson is blah; Rose Byrne is fine, but doesn\u2019t look much like a mom of three; Barbara Hershey is indisputably in the movie; Lin Shaye makes for an OK psychic exorcist, but her character inevitably invites unfavorable comparisons to Poltergeist\u2018s Zelda Rubinstein (an obvious inspiration.) On the other hand, her two nerdy, squabbling comic-relief assistants worked well (and could have supported their own spin-off comedy film). As far as weirdness goes, the case for Insidious is slim at best. It\u2019s no stranger than any other ghost movie you\u2019ve seen, and comes complete with the usual deflating supernatural explanations for everything that happens. The trip through the looking glass into the spirit realm (here called \u201cthe Further\u201d) is well done and eerie, with damned souls endlessly re-enacting ancient tragedies, deaf and blind to the living walking among them. The big bad boss demon (also the film\u2019s Tiny Tim fan)"}, {"title": "bm25", "text": "

As another example, our notes include a glossary (as every good set of notes should). This is stored in gloss.md in the repository's root directory, and lessons (both notebooks and Markdown files) link to glossary entries like this:

 ...tell Git to make it a [repository](../../gloss.html#repository), which is... 

which refers to an anchor in gloss.md that looks like this:

 **repository**:  A storage area where a [version control](#version-control) system... 

These links are retained correctly in the generated HTML, but are translated into hyperlinks in the LaTeX rather than intra-document references.

We know how to fix these problems, and all the others I haven't bothered to enumerate, but we shouldn't have to. Nothing we're doing is particularly strange—we're hardly the first people in science to want to create a glossary—but we now have to spend several hours (at least) to do something that \"ought\" to work out of the box.

I can rhyme off half a dozen reasons why what we're trying to do is the \"right\" way, but most scientists would (quite rightly) respond, \"Yeah, but it doesn't actually work.\" It comes back once again to Glass's Law and the initial productivity dip that comes with any new way of doing things:

If you'd like to help us solve this particular problem, we would appreciate your assistance. If there's a simpler way to accomplish what we want, we'd appreciate a pointer even"}, {"title": "bm25", "text": "by how such habits (of these people) fabricated life in Dublin at the time. \"One by one they were all becoming shades. Better pass boldly into that other world, in the full glory of some passion, than fade and wither dismally with age.\" This quote is arguably, and in ones own personal opinion, one of Joyces most masterful sentences throughout the entire book. For not only does it sum up the books attempt to depict the fall of Dublin, but it does so in a way that we see such through Joyces very eyes. For we see just how strongly Joyce felt, that had he remained in Dublin forever, it wouldve have fully consumed him into what can be described as a kind of black hole. A darkness representative of a depression that would have turned Joyce into a shade as he believed it did to many that remained. And when one says shade one means a shadow. However, the meaning of shadow, in this case, is twofold depending on how strong the readers link to Irish culture is. For example, to someone that has no relations whatsoever with Ireland and at its history, a shadow may simply be interpreted as a dark figure cast on the ground or some surface by a body intercepting light. On the other hand though, to someone like Joyce, that body intercepting the light was Dublin itself. Thus one must understand that from Joyces eyes that dark figure cast onto his homelands ground was done so by the very Dublin"}, {"title": "bm25", "text": "have been so much simpler. The direction this is headed next is going to be \"well, my eye color / hair style / height isn't represented, we must fix that!\" They weren't supposed to be portraiture, they were supposed to be indicators of emotions. Sigh. Coleman2010 ... but is this really genuinely needed or something thats been demanded? Are users with needs for accessibility wanting emojis related to them? I'm curious, not just asking rhetorically. JohnApples Oh great. Another emoji article, which means another round of complaining and *hilarious* sarcastic jokes. keysofanxiety \u201cConsortium.\u201d I don\u2019t know why that makes me laugh so much. I guess it\u2019s because I imagine some strange cathedral surrounded by magnificent gates, glorious and older than time itself. You enter the hall with trepidation and penitence, footsteps echoing and bouncing off the great pillars. In the distance on the farthest wall looms a large circular mosaic-glass, dingy from eons of neglect, casting a muddied veneer on the floor of the hallowed hall. What little light there is scarcely reveals the shadow of twelve large oaken chairs, arranged in a half-moon around the presentation altar. In each chair sits an imposing cloaked figure, the Emoji Elder, one more ancient than the other, who cast their unwavering judgement on which Emoji shall come to pass and which shall be cast into the smouldering pit of fire. ...but maybe that\u2019s just me. The thing of it is, many people know of the Unicode Consortium only in relation to Emoji's, but, while highly visible, that's pretty"}, {"title": "bm25", "text": "Directed by: Steven Spielberg Starring: Alfred Molina, Denholm Elliott, Harrison Ford, John Rhys-Davies, Karen Allen, Paul Freeman Genres: Action, Adventure All mistakes 9 audio problems2 character mistakes111 continuity mistakes19 factual errors6 other mistakes2 plot holes23 revealing mistakes6 visible crew/equipment mistakes Order by popularity Order chronologically Suggested corrections Significant dates Titles starting with R Visible crew/equipment: As soon as Marion gets locked in the cockpit of the Nazi plane, you can see a crew, a blue van, a ladder, and a man with a white sleeveless shirt and a big brimmed hat all in the reflection of the glass. (01:18:20) Visible crew/equipment: When Indy and Sallah are deciphering the head piece there is a shot over Indy's shoulder. As he turns you can see the reflection of a fluorescent light in his glasses. (00:48:40) Visible crew/equipment: When Indiana is chasing the Nazis in the truck, look closely at the convertible, you can see the camera on the windshield. (01:23:25) Visible crew/equipment: When Indiana is thrown through the windshield of the truck during the truck chase scene, there is another man in the driver's seat leaning toward the door, driving the truck with dark hair. This is noticeable just as the glass is broken. TD9898 Visible crew/equipment: As the bad guys are leaving the dig site for Cairo, there is a shot of the black vehicle (lead car) looking right at the driver. On the bottom of the shot is a shadow of film equipment that shouldn't be there. The shot lingers, so the shadow is very visible."}], "hoverinfo": "text"}, {"x": [-0.045332688838243484, -0.13059289753437042, -0.12875530123710632, -0.08319832384586334, -0.07960773259401321, -0.07960773259401321, -0.13693232834339142, -0.16406847536563873, -0.17098063230514526, -0.17098064720630646, -0.12174493074417114, -0.18070760369300842, -0.18070760369300842, -0.15306352078914642, -0.07550652325153351, -0.11200212687253952, -0.11206318438053131, -0.0666486993432045, -0.17389477789402008, -0.14376597106456757, -0.11371593177318573, -0.1922990381717682, -0.13693834841251373, -0.18914659321308136, -0.18914614617824554, -0.17139405012130737, -0.17139437794685364, -0.13521499931812286, -0.14968347549438477, -0.11734507232904434, -0.16286592185497284, -0.0801248550415039, -0.14612999558448792, -0.10564078390598297, -0.14707529544830322, -0.09609653055667877, -0.1587631106376648, -0.17152740061283112, -0.20725062489509583, -0.14864230155944824, -0.17429867386817932, -0.1578473001718521, -0.1971147060394287, -0.17098063230514526, -0.12301114201545715, -0.20604351162910461, -0.20779304206371307], "y": [-0.1610240787267685, -0.09160345792770386, -0.11847196519374847, -0.013120544143021107, -0.03201252967119217, -0.03201252967119217, 0.021264132112264633, 0.024133794009685516, -0.09004274755716324, -0.09004268795251846, -0.10830360651016235, -0.008671391755342484, -0.008671391755342484, -0.010632538236677647, -5.039706593379378e-05, 0.013422463089227676, -0.014192351140081882, -0.1391734480857849, -0.017669541761279106, -0.024292582646012306, 0.03680732473731041, -0.03727511689066887, -0.08227843791246414, -0.07033268362283707, -0.07033303380012512, 0.027641160413622856, 0.02764129638671875, -0.10027265548706055, 0.04279789328575134, -0.06088673695921898, -0.08306699246168137, 0.008512233383953571, -0.02671055868268013, -0.010798638686537743, 0.0043979608453810215, -0.0749470591545105, -0.08947573602199554, -0.06702184677124023, -0.07046125829219818, -0.07948408275842667, -0.013858238235116005, 0.00968909077346325, -0.0845385491847992, -0.09004274755716324, 0.030974803492426872, -0.03638298436999321, -0.10183406621217728], "mode": "markers", "name": "Cluster 7", "marker": {"size": 8, "color": "rgb(252,205,229)"}, "text": ["Document 237", "Document 281", "Document 381", "Document 390", "Document 552", "Document 553", "Document 567", "Document 630", "Document 652", "Document 653", "Document 682", "Document 700", "Document 701", "Document 724", "Document 751", "Document 792", "Document 840", "Document 842", "Document 850", "Document 858", "Document 897", "Document 929", "Document 932", "Document 950", "Document 951", "Document 1027", "Document 1029", "Document 1082", "Document 1104", "Document 1108", "Document 1110", "Document 1144", "Document 1152", "Document 1154", "Document 1161", "Document 1226", "Document 1245", "Document 1327", "Document 1329", "Document 1380", "Document 1414", "Document 1431", "Document 1432", "Document 1452", "Document 1458", "Document 1474", "Document 1479"], "customdata": [{"title": "rpj-c4", "text": "In this short lesson we will look at how light effects the way objects look when interacting with it. It sounds obvious to say, without light we can not see anything, but equally true is that the kinds of light influences how much we can or can\u2019t see. In the illustration below you will see that we have the light source entering from the left. This causes the light to create a highlight or point of bright intensity on our object. As the surface of the object turns away from the light, less light reaches this side and creates a shadow or areas of less intensity. Thus the less light that reach these areas the darker it get. You will see on the very edge of the object, on the shaded side, it starts to get slightly lighter again. This effect is called reflected or bounce light. This is caused by light bouncing or reflecting off the surface on which our object rests. If the surface were darker, it would cause less or no reflected light, depending on how dark it is. Because our object is solid, it will prevent the light from reaching the surface on which it rests. This causes the object to cast a shadow on the surface. I spoke about the kinds of light in the first paragraph. To simplify and explain the way light travel through air, let\u2019s think of it like a little ball for each ray of light. Our atmosphere is saturated with dust and water particles. As light"}, {"title": "rpj-book", "text": "; consequently, we hardly ever understand what is the form of an object by the form of its cast shadow ; but as the shadow naturally follows the undulations and irregularities of the surface on which it falls, it thus assists to put us in complete possession of what we should otherwise see imperfectly. Hence, then, we look to cast shadows as a main auxiliary to express completely the character of the various surfaces on which they fall ; bearing in mind, also, that these cast shadows have invariably sharp and well-defined edges, whether the object casting them be round or angular. Apart from the assistance which we derive from these cast shadows, we should have a very feeble idea of the nature of any surface\u2014often none at all. Any object in sunshine would be a sufficient proof of the universality and power of this law ; but I will suggest one. When we see a horse and cart in sunshine, we shall find that the shadows thrown on his body by the saddle, bridle, and various parts of the harness, shafts, &c., by no means explain what are the forms of the objects casting those shadows ; but they make us distinctly aware of the precise curvature of every part of the body on which they fall. Let us now look at the shadow of the horse and cart on an even turnpike-road. Here the surface receiving it is flat, and we consequently see at once that it is the shadow of a horse and"}, {"title": "rpj-common-crawl-2022-05", "text": "luminous body which causes it. A simple shadow begins within the line which starts from the edge of the luminous body _a b_. A simple shadow is one where no light at all interferes with it. A compound shadow is one which is somewhat illuminated by one or more lights. WHAT IS THE DIFFERENCE BETWEEN A SHADOW THAT IS INSEPARABLE FROM A BODY AND A CAST SHADOW? An inseparable shadow is that which is never absent from the illuminated body. As, for instance a ball, which so long as it is in the light always has one side in shadow which never leaves it for any movement or change of position in the ball. A separate shadow may be and may not be produced by the body itself. Suppose the ball to be one braccia distant from a wall with a light on the opposite side of it; this light will throw upon the wall exactly as broad a shadow as is to be seen on the side of the ball that is turned towards the wall. That portion of the cast shadow will not be visible when the light is below the ball and the shadow is thrown up towards the sky and finding no obstruction on its way is lost. HOW THERE ARE 2 KINDS OF LIGHT, ONE SEPARABLE FROM, AND THE OTHER INSEPARABLE FROM BODIES. Of the various kinds of light (126, 127). Separate light is that which falls upon the body. Inseparable light is the side of the body that is illuminated"}, {"title": "rpj-book", "text": "blue-gray or lavender-gray. In these cases, mix your easy gray with French Ultramarine blue and Burnt Sienna, emphasizing the blue. ### Two Exceptions to the Rule There are two exceptions to this rule. The first deals with transparency and translucency. In a transparent or translucent object, both the body shadow and the cast shadow are affected by the fact that light passes through the object rather than being blocked. There is no shadow side on an object when light passes through it; a translucent object, such as a flower petal, will actually be brighter on that side. Light passing through transparent color will also throw both color and light into the cast shadow. (See Still Life with Peaches.) The second exception has to do with the tendency of nearby colors to reflect into each other in very strong light. In the study of the blue mug below you will notice that some of the pink of the cloth is reflected into the mug. In the painting of the orange in the page following, the shiny orange is picking up a strong reflected light from the napkin underneath it and bouncing it back down into the cast shadow. Study the shadows of a blue mug on a pink cloth. Notice how the pink cloth reflects back into the mug. Notice how the intense orange reflects down into the cast shadow on the white cloth. ### An Addition to the Rule The sun imparts a hint of yellow to every sunlit color because our sun is yellow. Indoor"}, {"title": "rpj-c4", "text": "table. The thing is with glass, it is transparent so in order to show it, shade it lightly acqua and generate some bright reflections as if coming from a window above. Translucent plastic cover. This bike tail light makes a complex subject to render a coloured see through plastic cover. Go around your house and choose objects bearing of each of the surfaces in this section then make a surface sampler page like the one here. Try them all, you can never be sure which ones you will be required to show in your exam. Try making one of these sampler pages before you go into an exam. This is your best training. No seriously, take a look at this group by student Alana Lacy. Did you really think colour pencils can work like this? Try it for yourself. Before we begin rendering shadows cast from object we must be aware of the location and direction of the light source. It is customary to work with a light source positioned above an object. However, in addition, the light source may be in front of the object (our side of the object) or behind. This position will greatly effect the way it is shaded. Before you render, make sure you have a clear idea about where the light source is. Look carefully at the images below. Look carefully also, at the way the light source symbol is shown. The difference in this section is that the cast shadow will be shown. Create shade to emphasise the form"}, {"title": "rpj-c4", "text": "table. The thing is with glass, it is transparent so in order to show it, shade it lightly acqua and generate some bright reflections as if coming from a window above. Translucent plastic cover. This bike tail light makes a complex subject to render a coloured see through plastic cover. Go around your house and choose objects bearing of each of the surfaces in this section then make a surface sampler page like the one here. Try them all, you can never be sure which ones you will be required to show in your exam. Try making one of these sampler pages before you go into an exam. This is your best training. No seriously, take a look at this group by student Alana Lacy. Did you really think colour pencils can work like this? Try it for yourself. Before we begin rendering shadows cast from object we must be aware of the location and direction of the light source. It is customary to work with a light source positioned above an object. However, in addition, the light source may be in front of the object (our side of the object) or behind. This position will greatly effect the way it is shaded. Before you render, make sure you have a clear idea about where the light source is. Look carefully at the images below. Look carefully also, at the way the light source symbol is shown. The difference in this section is that the cast shadow will be shown. Create shade to emphasise the form"}, {"title": "rpj-common-crawl-2019-30", "text": "technique could be described as sculpting light. Drawing in shadow Name: Pilgrimage Chapel of Notre Dame at Ronchamp Location: France Date: 1954 Designer: Le Corbusier In 1933 the Japanese novelist Junichiro Tanizaki wrote an essay on aesthetics called In Praise of Shadows. Widely read, the essay describes the difference between the shadowy world of traditional Japanese interiors and the dazzling light of the modern age, arguing that darkness is a difficult subject for architecture and design and its benefits are often unfairly stigmatised. Shadow makes light visible and many architects and designers have used this to great effect in interiors where it is possible to control the amount of light and shadow. A beautiful example might be Le Corbusiers Pilgrimage Chapel at Ronchamp. Light passing through the coloured glass windowpanes pours colour on to the rough concrete wall openings. In drawings of the south wall from the exterior the windows are shown as dark holes in a white surface. In the drawing of the interior elevation of the south wall, the white surface of the openings is literally painted on to a dark outline elevation. The window openings themselves have been cut out of the paper and the location of the small coloured pieces of glass are marked with pencil on transparent tracing paper that is placed behind the window holes. It has been suggested as if the drawing could be held up to the light to test the effect of the design. Far left and left: Light detail Pink and blue light is emitted into"}, {"title": "rpj-common-crawl-2021-04", "text": "titled A1, A2 and A3, the changes in light and shadow within the room are subtle, the variations only visible to those who spend time considering each image in turn. But in A4, a darker shadow, cast by a tree branch unseen enters the void carved out by the sunlight on the wall, and slowly begins its transition across the room, with each subsequent photograph revealing a little more of its form as it passes across the room ever closer to the aperture through which the light itself enters. Before in A10, the strength of the shadow begins to fade, only to reveal itself once more in A12. In the next image in the sequence (A13), Guidi changes his composition, (rotating his viewpoint 45 degrees to the right) so he is now facing the window that was only just visible in the earlier photographs square on. Whilst the hues of the rooms interior are now darker intone with less of the modelling that we experience in the earlier part of the sequence, the window glows bright with, pulling the viewer towards it and the world beyond, where we encounter our first real glimpse of the tree that was only visible by the shadow it cast earlier. In the next frame, Guidi once again changes his position (rotating through a further 45 degrees), this time presenting the back wall of the room, before changing again one frame on to show us the final side of the room, before in image A16 he returns to the wall and"}, {"title": "rpj-common-crawl-2023-06", "text": "45 degree depicting! Blocked to create dramatic interior paintings using a contrast of light casts only a simple shadow, called ``..., promotions and special newsfrom our partners the viewer would see is the area s... The cast shadow: shadow which is left by the object but usually lighter than the on. These shadows are used ( along with highlights ) to define the 'form ' of the object )! Results when the sun is close to the horizon is the portion of an object that blocking. Locations of darker value that result on surrounding objects and surfaces because of blocked light cast by object. Assuredly be as well cast a shadow where it is closest to form. The Siggraph logo body intercepting light or an area of shadow two kinds of shadows occur! On the subject where light is bouncing around in several directions of shadow close! 'S board `` cast shadows are not usually the focal point of.... A chin or area this area because direct light show where an and... Seemingly random voxel soup embedded into a glass cube creates three distinct shadow, that falls on the on! Less defined becomes its edges are clearly delineated where it is closest to viewer... - the core shadow mostly the same surface the direct light refers to the form that receives!, as one sheltered from the object itself ) interception or screening of rays of light, it causes cast... Vase, created by the blocking of a light is bouncing around in directions. Blocks the light source,"}, {"title": "rpj-common-crawl-2023-06", "text": "45 degree depicting! Blocked to create dramatic interior paintings using a contrast of light casts only a simple shadow, called ``..., promotions and special newsfrom our partners the viewer would see is the area s... The cast shadow: shadow which is left by the object but usually lighter than the on. These shadows are used ( along with highlights ) to define the 'form ' of the object )! Results when the sun is close to the horizon is the portion of an object that blocking. Locations of darker value that result on surrounding objects and surfaces because of blocked light cast by object. Assuredly be as well cast a shadow where it is closest to form. The Siggraph logo body intercepting light or an area of shadow two kinds of shadows occur! On the subject where light is bouncing around in several directions of shadow close! 'S board `` cast shadows are not usually the focal point of.... A chin or area this area because direct light show where an and... Seemingly random voxel soup embedded into a glass cube creates three distinct shadow, that falls on the on! Less defined becomes its edges are clearly delineated where it is closest to viewer... - the core shadow mostly the same surface the direct light refers to the form that receives!, as one sheltered from the object itself ) interception or screening of rays of light, it causes cast... Vase, created by the blocking of a light is bouncing around in directions. Blocks the light source,"}, {"title": "rpj-common-crawl-2020-05", "text": "country - taiwan [Lesson 14] Knowing Your Light Rays By Ryosuke Takahashi- 2015-04-02 2017-01-04 11.29 k Photos are works of art that combine light and shadow. Every photo appears different depending on how light strikes the subject. Let's start with the basics on the direction of light and how it can affect a photo.(Reported by: Ryosuke Takahashi) Relationship between the light direction and the resultant shadow on the subject Control the light and shadow to match the image of the photo you want to take The shadow appearing on a subject is directly related to the direction of the light striking the subject. If the light strikes the subject directly from the front, no shadows will appear as they will be cast behind the subject. However, as the light is moved sidewaysa strong shadow will be cast in the direction opposite to the direction of the light. Shadows are necessary to impart a sense of solidity to the subject and its effects are used in actual photography as well. If you can understand the relationship between the direction of the light and the finishing, your photography skills will definitely improve. Semi-front light Semi-backlight Backlight compensation You will find that the shadow appears on the side opposite to the direction of the light. Understanding this phenomenon will be very useful in actual photography, as the kind of light used is dependent on the photographer\u2019s preference. Differences between front light and backlight in portrait photography The way the shadow is cast can change the vibe and appearance of"}, {"title": "rpj-c4", "text": "Light is at its best in the presence of darkness. Light is inseparable from the notion of form and space and so is shadow from light. Does shadow have the power to give form to architecture? Throughout the world architects and designers have always explored natural light as a design element, but seldom do they consider the shadowed areas caused due to that light. As an architect I not only have great respect for light and how it behaves, but darkness as well.The ambience of a space is affected by the quality of light and shadows. Shadows are everywhere but we tend to ignore them. We rarely notice them, only when we go looking for shadows on a particularly hot day. But in general, we aren\u2019t programmed to notice shadows in our daily life and this is a factor that extends into design too. While shadows remind us that the world is filled with light, they also tell their own story, independent of the light that creates them. The beauty of a shadow is found all around us. It is contained in the shadow that a small flower casts onto the grass, or in the skyscrapers and buildings that take over our landscapes. Light is difficult to draw. In the introductory sketching class, I always ask students to replicate the given photo from a magazine. The students always manage to copy the design, but what they lack is real depth. Then they are asked to lay a piece of trace paper over the photo and shade"}, {"title": "rpj-c4", "text": "Light is at its best in the presence of darkness. Light is inseparable from the notion of form and space and so is shadow from light. Does shadow have the power to give form to architecture? Throughout the world architects and designers have always explored natural light as a design element, but seldom do they consider the shadowed areas caused due to that light. As an architect I not only have great respect for light and how it behaves, but darkness as well.The ambience of a space is affected by the quality of light and shadows. Shadows are everywhere but we tend to ignore them. We rarely notice them, only when we go looking for shadows on a particularly hot day. But in general, we aren\u2019t programmed to notice shadows in our daily life and this is a factor that extends into design too. While shadows remind us that the world is filled with light, they also tell their own story, independent of the light that creates them. The beauty of a shadow is found all around us. It is contained in the shadow that a small flower casts onto the grass, or in the skyscrapers and buildings that take over our landscapes. Light is difficult to draw. In the introductory sketching class, I always ask students to replicate the given photo from a magazine. The students always manage to copy the design, but what they lack is real depth. Then they are asked to lay a piece of trace paper over the photo and shade"}, {"title": "rpj-common-crawl-2023-06", "text": "you approach all things in life -- with care, precision, thought, and artistic excellence. If only it were as simple as donning a pair of glasses. The Making of an Architect - 6 Shades and Shadows on Folsom Street Folsom Street Shadows Down, back, right, forty-five degrees was the mantra. That was the angle of the sun we used to cast shadows in architecture school. At that angle, the length of a object's shadow would be the same length as the object itself. The shadow would be at a forty-five degree angle on the adjacent surface (if the surface is flat and perpendicular to the object). If the surfaces receiving the shadow were on varying planes, then the shadow shifts and modulates defining its features. Light and shadow define how we see form and therefore how we see architecture. See an example below of how we cast shadows by hand did it by hand. Beaux Arts Shades and shadow I was among the very last generation of students who received formal training in the Beaux Arts technique of casting and rendering shades and shadows. Considered quaint and outdated, it was soon cast aside in favor of more relevant coursework. This illustration is from a 1896 translation by Julian Millard from a Beaux Arts text, \"Shades and Shadows\". See an on-line version here. Quaint yes, but at Mock/Wallace, when I use free software like Google Sketchup to cast shadows, I still use the classic down, back, right forty-five degrees. San Francisco Civic Center Lantern Postscript: I'm glad"}, {"title": "rpj-book", "text": "should be avoided if surface imperfections are to be hidden. **Figure 12.13e** Texture is most visible under glancing light. Note the long shadow of the pushpin in the upper right corner. **Figure 12.13f** The same texture seen under straight-on or diffused light. Note the lack of a shadow from the pushpin. 5. _Looking at paintings_. When one highlights paintings, glossy artwork, or art behind glass, the challenge is to prevent specular reflections of the light sources into the viewers' eyes. Many a fine print protected by glass has become invisible because of veiling reflections (Fig. 12.13g). The accent light must be placed in front of the offending zone so that people of various heights and at different locations will not see the specular reflection of the light source (Fig. 12.13h). However, if the light is too close to the wall above the painting, the top of the picture frame will cast a shadow and the texture of the painting will be overemphasized. In most cases, a 60\u00b0 aiming angle will be a good compromise (Fig. 12.13i). When the artwork is covered with glass, special antireflectivity glass, which makes the lighting much less critical, can be specified (Fig. 12.13j). **Figure 12.13g** It is impossible to appreciate this glass-covered work of art in a famous museum because of the reflected glare caused by a circular downlight (top center of picture) and because of the veiling reflections caused by bright surfaces behind the viewer. **Figure 12.13h** Accent lighting must be placed in front of the offending zone. **Figure 12.13i**"}, {"title": "rpj-common-crawl-2023-06", "text": "ceiling then most of the fill light would come from above, and the talent\u2019s face would be beautifully lit on the camera left side but obnoxiously top lit on the fill side. By blacking out the brighter surfaces on the fill side I can then add the perfect amount of fill light from a more flattering direction. We pretended that the food light was sunlight, and added a window pattern to break it up on the flat cooking surface. Nature abhors evenness, as do our brains, so breaking up the light with a couple of shadows made it look much more interesting and \u201crandom,\u201d as if sunlight was actually coming through a window. We added two more Source 4\u2019s to create window patterns on the back wall to make them more interesting. I find that most patterns look fake when they\u2019re fully sharp so I like to fuzz them out a bit, as if the glass was a bit dirty or the sun was partially obscured by haze. \u201cSloppy\u201d light often looks more real than \u201cperfect\u201d light does. Above: Land of three suns. The empty C-stand knuckes are serving a purpose: we\u2019re using them to further \u201cdodge\u201d areas of the set where we need to take some light off white or bright objects. Dots and fingers are fun and convenient but sometimes a big, soft and round C-stand knuckle shadow does just as well. The double net reduces exposure on the near side of the cooking area to make it appear to be lit evenly. The"}, {"title": "rpj-common-crawl-2022-05", "text": "a mild transition, the light is softer.) The fourth component is the shadow that the object casts on another surface. Finally, there is the specular or incident highlight, a spot of reflected light within the lit region. A specular highlight is a cue for texture as well as shape and light source. As Steven spoke, I kept thinking about Hollis Frampton\u2019s Lemon (1969), a masterfully simple demonstration of many of these principles: slightly changing light reveals a prototypical shape (what other things have the outline of a lemon?) and a surface that is both shiny and bumpy. By varying the type of light (direct or indirect) and the angle and distance of the source, Steven showed how these five components can be manipulated to bring out expressive qualities of the object. The cube, for example, can gain sharper contours through sidelong lighting, and illuminating the background can bring out its volume. Likewise, an object\u2019s shadow area can be controlled through fill light\u2014though Steven warned about over-filling, which can work against the precision provided by the key light. Another example is the way in which shooting glass or metal with pinpoint sources yields a scatter of specular reflections. If those aren\u2019t wanted, as in some car commercials, the DP can use broad, diffuse illumination. This \u201cliquid light\u201d brings out contours through a softer gleam. Of course a shot typically combines many objects, so the task of controlling how light hits them, and how they are arranged in relation to each other, becomes much more complicated. The shapes,"}, {"title": "rpj-book", "text": "we can't see the highlight against the general white of the sphere, so simply make a dotted line from the arrow (showing the source of light) to a spot just inside the sphere and label it \"H/L.\" REFLECTED LIGHT Reflected light is the only light that appears on the shadow side of an object. It is light that reflects into a shadow from surrounding lights. In the image on the facing page you can see that the shadow on the sphere is not solid, but gets lighter near the bottom edge. That is because light is bouncing off the tabletop and reflecting into the sphere. Reflected light may come from many sources\u2014another wall or ceiling, or perhaps (in an outdoor setting) the sky. These lights bounce into the shadow side of the object most strongly in places where the reflecting surface is either very close, as in the tabletop in our drawing, or very strong, as from a bright sky. The only time you will not see reflected light is if the object is completely surrounded with black. Add and label the light areas. Too many reflected lights can break up the shadow patterns that give strength to a design, so sometimes they should be ignored or downplayed. When the background is light, don't put the reflected light on your object right at the edge or you won't be able to see that edge. Instead, bring it slightly inside and darken the edge enough so that it shows up against the background. As the reflected light"}, {"title": "rpj-c4", "text": "Light impacts what we see and how we see it. it is the fundamental thing that brings photography to life. In a lot of photographs it is the lighting that makes or doesn\u2019t make an image work. Knowing how to work with the light will help enormously in capturing photographs that come alive. The absence of light, darkness, is often overlooked by a lot of photographers because they are too busy concentrating on the light. Shadows play an important role in bringing images to life. Helping to direct light to a specific point in a composition, shadows can hide and reveal features that you may prefer to be hidden. Shadows also add drama, mood and emotion to the image. My own style of working with shadows is usually shot during the night or winter mornings when I haven\u2019t the time to photograph on the streets. Below is a few images of my shadow work."}, {"title": "math", "text": "piece of metal can cast this sentence as a shadow, wouldn\u2019t it be possible to produce another piece of metal that can produce two different sentences, when illuminated from different directions\u201d Together with the announcement of the upcoming TU Night I thought if one could even produce an exhibit like this. Since I am by no means an artists, I looked around at my university and found that there is a Department of Architecture. Since architects are much closer to being artist than I am, I contacted the department and proposed a collaboration and well, Henri Greil proposed to have a joint seminar on this topic. Hence, this summer term I made the experience and worked with students of architecture. In the end, the student produced very nice pieces of shadow art: Although the exhibits produced interesting and unexpected shadows, no group of students could make it and produce two different shadows out of the same object. However, some nice effects can be produced pretty easy: The basic idea is that moving one object around will move around both shadows rather independently. Well this is not totally true but what you can do is to \u201czoom\u201d one shadow while moving the other sideways (just move the object straight towards one light source). See this movie for a small illustration: I also did my best to produce a more complex object. While it is theoretically not very difficult to see that some given shadows are possible in some given projection geometry, it is not at all straight"}, {"title": "rpj-common-crawl-2021-04", "text": "equal to the great majesty of nature but, at least, perhaps, through its dynamic composition of planes and forms reveals the light as the light changes, stands up, accounts for itself, and brings man closer to the elemental forces. We love skylights to the south because they bring in direct sunlight, which expresses the light as it occurs outdoors, and the elements that we place in front of the light interrupt that light and cast the shadows \u2014 shadows, though temporary, become more enduring than the element that cast the shadows because they speak of a greater power. The simplest kind of artificial light is to place the lights in the skylight and window openings, light that follows the way daylight comes into the building. This would be the moonlight effect. We have used different devices. In the Leichter House, we have a hole on the outside of a deep overhang, which brings light into a box and the light box pulls it into the room. In the Joseph Wohl art gallery, we brought light through a skylight into a painted, reflecting horizontal tray, which then reflected the light onto the paintings. Color is hard for me to separate from texture. Revealing the integral color of the material itself is revealing its texture. If we paint a handrail or trim that is adjacent to a natural material, we paint it to reveal the natural material. I think of color, first, in terms of value. Is it dark or light? If it is dark, it will not"}, {"title": "rpj-common-crawl-2019-30", "text": "the table, I not only get the sense that the objects are back lit by the direction of their shadows, but I also have this kind of beautiful intensity to the table itself. The table itself has a real light spot here but as you look across the table, it gradates to something darker. So that kind of gradation, where you're managing your light, so even on the surface your objects are lying on itself, there's like a subtle gradation can really make the drawing dramatic and it can also create a sense of space. So we'll work with that. So I'm playing around with this a bit. If you light from directly above, the shadows are just pooled around the objects and that's sort of interesting but I love the abstract shapes that shadows cast, just inherent to the way that you light them. Particularly from an angle. So I'm playing here, I'm trying to find my perfect angle. This light is great, just a regular desk lamp that has the ability to move back and forth is really nice. I always feel like shadows reinforce the reality of the object, right, because the object is there, the light's falling on it, the shadow's raking across the table. It kind of gives some solidity and weight to the objects, so we want to work with that idea here. So I'm starting to arrive at a moment here that I'm kind of enjoying. What I love about what's happening here right now, is that the light"}, {"title": "rpj-c4", "text": "We know that values create the illusion of mass and volume on a two-dimensional surface. Also, it creates an illusion of depth called \u2018intuitive space\u2019. It is an artistic method to trick the viewer into seeing depth. Imagine illuminating an object from several directions all at once. The sources could be from windows or largely separated lamps. We call this diffused illumination. As easy as it sounds, front lighting is easily explained. For instance, imagine a source of light in front of an object. That is to say, the nearer surface receives more light than the rearer which is in shade. This illumination is front lighting. The light rays illuminate the rear side of an object as they move towards an observer. Thus, the frontal surface falls in shade and casts distinct shadows towards the observer. Imagine an object resting on a white table. The light from the table reflects back to the object, making the shadow side lighter. Similarly, if an object rests on a black or dark table, the middle tones become a dark reflection. This is widely used to formulate theories of light, shade and shadow casting. Here, we light the object in such a way that the casted shadow is about the same length as the height of the object casting it. Besides, the contrast of light and shades are clearer over any condition of lighting. I bring this blog to an end. Above all, I hope this post has been of little help in understanding the skeleton of light. However, we"}, {"title": "rpj-common-crawl-2023-06", "text": "the shadow becomes or screening of rays light. Shadow touch, then they both rest upon the same shade value as the penumbra sculpture casts... Are used to create a shadow art tribute to Andy Warhol value that result on surrounding objects surfaces. Without reflected light: light bouncing back into the umbra, penumbra and antumbra words of the shown... Sidewalk on a sunny day have three dimensions the surface where the from! ( along with highlights ) to define the 'form ' of the table that considers your time and security a... Or photograph top priority test which areas are in light and shade web browser that considers time! Intents and Purposes ', promotions and special newsfrom our partners illuminated by reflected light from the form results the! Is often most true in this area because direct light the core shadow is on object... Shadow all day long where you read or heard it ( including the quote, if artist! Geometric qualities by using a strong spot light that casts a distinct shadow and its shadow. Softer as it stretches away from the light source see also: cast long. The object to test which areas are in shadow all day long is blocking the light,. The war still cast a long shadow over almost every family in the most comprehensive dictionary definitions resource the! 'S board `` cast shadows '', followed by 367 people on Pinterest,. Highlights are usually small and intense spots of near-white shadow all day long '' source of casts! Over life in England"}, {"title": "rpj-common-crawl-2023-06", "text": "the shadow becomes or screening of rays light. Shadow touch, then they both rest upon the same shade value as the penumbra sculpture casts... Are used to create a shadow art tribute to Andy Warhol value that result on surrounding objects surfaces. Without reflected light: light bouncing back into the umbra, penumbra and antumbra words of the shown... Sidewalk on a sunny day have three dimensions the surface where the from! ( along with highlights ) to define the 'form ' of the table that considers your time and security a... Or photograph top priority test which areas are in light and shade web browser that considers time! Intents and Purposes ', promotions and special newsfrom our partners illuminated by reflected light from the form results the! Is often most true in this area because direct light the core shadow is on object... Shadow all day long where you read or heard it ( including the quote, if artist! Geometric qualities by using a strong spot light that casts a distinct shadow and its shadow. Softer as it stretches away from the light source see also: cast long. The object to test which areas are in shadow all day long is blocking the light,. The war still cast a long shadow over almost every family in the most comprehensive dictionary definitions resource the! 'S board `` cast shadows '', followed by 367 people on Pinterest,. Highlights are usually small and intense spots of near-white shadow all day long '' source of casts! Over life in England"}, {"title": "bm25", "text": "and place,\u201d says photographer Ren Fuller. \u201cThey also help develop the story. A strong, harsh shadow will tell a different story than a soft, dim one.\u201d Play up the drama by using the crisp diagonal lines cast by the architecture in a cityscape, or create a moodier atmosphere with the long, soft shadows around sunset. Transform everyday scenes. Part of the power of shadows is how they can cast ordinary objects in a new light. \u201cI do a lot of food photography and I love to use glassware, because it casts such pretty, unique shadows,\u201d says Fuller. \u201cThe light is passing through the glass, so it makes a really beautiful, shimmering shadow.\u201d Shadow play is also popular in minimalist photography, where spare black-and-white compositions that use shadow as negative space are common. Architecture photography, street photography, and fine art photography also make frequent use of shadows to create geometric or abstract shapes. How to take captivating shadow photos. Know your light source. Whether you\u2019re in the studio or on the streets, pay attention to the direction of the light, as it will have the most effect on how your shadows turn out. Early in the morning or in the evening during golden hour are the perfect times to capture long shadows. Around midday, shadows will be almost nonexistent, although the hard light will make for sharp, crisp shapes. Shoot on a sunny day for the most defined shadows, and look for side-lit situations, where you shoot perpendicular to the sun. \u201cI started by getting comfortable with"}, {"title": "bm25", "text": "and place,\u201d says photographer Ren Fuller. \u201cThey also help develop the story. A strong, harsh shadow will tell a different story than a soft, dim one.\u201d Play up the drama by using the crisp diagonal lines cast by the architecture in a cityscape, or create a moodier atmosphere with the long, soft shadows around sunset. Transform everyday scenes. Part of the power of shadows is how they can cast ordinary objects in a new light. \u201cI do a lot of food photography and I love to use glassware, because it casts such pretty, unique shadows,\u201d says Fuller. \u201cThe light is passing through the glass, so it makes a really beautiful, shimmering shadow.\u201d Shadow play is also popular in minimalist photography, where spare black-and-white compositions that use shadow as negative space are common. Architecture photography, street photography, and fine art photography also make frequent use of shadows to create geometric or abstract shapes. How to take captivating shadow photos. Know your light source. Whether you\u2019re in the studio or on the streets, pay attention to the direction of the light, as it will have the most effect on how your shadows turn out. Early in the morning or in the evening during golden hour are the perfect times to capture long shadows. Around midday, shadows will be almost nonexistent, although the hard light will make for sharp, crisp shapes. Shoot on a sunny day for the most defined shadows, and look for side-lit situations, where you shoot perpendicular to the sun. \u201cI started by getting comfortable with"}, {"title": "bm25", "text": "Q: In the Statement, \"The average size of the shadow cast by any 3D convex shape is $1/4$ times its surface area,\" how is 'shadow' defined? I saw this statement the other day in reference to the surface area of a sphere in a 3b1b video, and I have way too much time on my hands so I tried to create a MATLAB program that does a Monte Carlo simulation of a square pyramid (base length = 1, height = 1) and the shadow it would cast if it were randomly rotated. Just from the math, the surface area $= \\sqrt{5} + 1 \\approx 3.236$, so $\\frac{1}{4}$ of that $\\approx 0.809$. However, when I run my program the average area of the shadow always comes out to $\\approx 0.77$. I did run it a number of times with large sample sizes, so I don't think it's just the case that I have too few samples, and it always comes out to 0.76 or 0.77 (almost always (0.77) I'm thinking that I'm just using the wrong definition of a shadow. I'm imagining a faraway light shining straight down on the pyramid (so parallel rays), so the shadow is just the cross-sectional area of the rotated pyramid in the x-y plane. Here's the program run twice, where I then find the area of the light blue shaded region. The green shape is three dimensional, but the camera is directly above it, looking directly down and the blue figure is that 2-d cross-section: (Sorry I don't know how to"}, {"title": "bm25", "text": "putting the pictures together. For example, she took a few mirrors propped up against one another and then uses a strobe light that has a red gel on the light. The shadows moving in her images is actually a shadow from her moving the lights around the space. When she shoots she spends a lot of time arranging objects, looking back at the lens to see how the composition is coming together. Once she finds an interesting composition she is content with and wants to continue working with it she locks down the camera to not move the setup. Then she plays around with the lighting. Looking through the lens is no longer important, but rather the lighting around the space. This allows her to get an idea of where the shadows are falling. In studio lighting there's a light to see where the arrangements are but the strobe light itself fires off lighting in a different manner really quickly, so she is somewhat aware of what she will get but not entirely. This allows her to work with dramatic shadows and get a sense of light. Notable exhibitions Group exhibitions 2017, Viva Arte Viva, 57th Venice Biennale, Venice 2014, A Moveable Feast - Part XI, with Cheyney Thompson, Campoli Presti, Paris 2014, Technokinesis, Blum & Poe, New York & Los Angeles 2014, Rites of Spring, Contemporary Arts Museum Houston, Houston, TX 2014, What Is a Photograph?, Organized by Carol Squiers, International Center of Photography, New York 2014, L'\u00e9preuve de l'abstraction, FRAC Poitou-Charentes 2009, Slow Movement"}, {"title": "bm25", "text": "with a convexity bias and almost ignored the cast shadow position in Experiment C. General Discussion We performed three experiments. Experiment A showed that the light-from-above assumption was used in interpreting cast shadows, and that shading information influenced the interpretation of cast shadows. Experiment B showed that the lighting direction was judged depending both on the position of the cast shadow and on the direction of the lighter part of the disk. Experiment C showed that the disk surface was mainly perceived as a plane shape in the gray conditions, and as a convex shape in the gradation conditions, irrespective of the shadow position. In this article, we have referred to some assumptions in perceiving shape from shading, for example, the light-from-above or single-light-source assumption (e.g., Ramachandran, 1988aRamachandran, , 1988b. In addition, we have also referred to a preference, that is, the convexity preference (e.g., Hill & Bruce, 1994). Assumption and preference are similar here in the point that both make a bias in perceptual interpretation, apart from their concepts. Although the light-from-above assumption has been well established in previous studies, the assumption was totally overturned by the convexity preference in Experiment C. As a result, lighting direction information from shading was incidentally determined; that is, the light may come from the bright side of the shading. The lighting direction suggested by shading also affected cast shadow interpretation, as shown in the shaded disk conditions in Experiment A. We saw another effect of the light-from-above assumption in determining shape from shading in the right panel of"}, {"title": "bm25", "text": "Directional Bias in the Perception of Cast Shadows Previous studies have demonstrated that the perception of shading is based upon assumptions about lighting direction, for example, light from above. However, it is not clear whether these assumptions are used in the perception of cast shadows. Moreover, it is unclear whether a perceptual interaction exists between shading and cast shadows because until now they have been studied separately. In this study, we investigated through three experiments whether the light-from-above (or another direction) assumption is used in interpreting ambiguous cast shadows, and whether shading information influences the interpretation of cast shadows. Our results indicate the existence of the light-from-above assumption in interpreting cast shadows. Consistent shading information enhanced the interpretation, and judgments of lighting direction were also based on both cast shadow and shading information. However, the perceptual determination of shape from shading was relatively independent of the cast shadow interpretation or the lighting direction judgments of the scene. Introduction Humans receive spatial information from shading and shadows as depth cues. Shading is defined as ''the variation of reflected light on a surface patch which faces directly the light source' ' (p. 289;Mamassian, Knill, & Kersten, 1998). Conversely, shadows can be classified as either attached or cast. When a part of the object surface is darker because the object itself occludes the light, this is called an attached shadow. When a shadow is produced on a distant surface, this is called a cast shadow. However, there is no reason to discriminate between shading and attached shadow for images"}, {"title": "bm25", "text": "A gobo is an object placed inside or in front of a light source to control the shape of the emitted light and its shadow. For studio photography purposes, the term \"gobo\" has come to refer to any device that casts a shadow, and various pieces of equipment that go in front of a light (such as a gobo arm or gobo head). In theatrical lighting, however, the term more specifically refers to a device placed in \"the gate\" or at the \"point of focus\" between the light source, called a lamp, and the lenses (or other optics). Derivation The Oxford Dictionary gives three definitions (and others concur): \"A dark plate or screen used to shield a lens from light; (in a theatre) a partial screen used in front of a spotlight to project a shape; shield used to mask a microphone from extraneous noise.\" Though the Oxford provides a possible \"1930s ... unknown origin, perhaps from go between\", the exact derivation of gobo is unclear. It may be an American slang abbreviation of \"go-between\", or \"go-before\" (just as New York's \"SoHo\" signifies the area \"South of Houston Street\"). The term can be traced back to the cinema studios of the 1930s. Some lighting professionals believe that it is an acronym for \"goes before optics\" or, less often, \"goes between optics\". An alternative abbreviation might be \"graphical optical black-out\". The treatment of the word as an acronym is recent, as alternative to applications in optics, \"gobo\" may refer to a screen or sheet of sound-absorbent material"}, {"title": "bm25", "text": "How do you uncover a shadow yourself? The creation of a safe space where we can talk to someone who isn\u2019t personally invested in our life means we find ourselves saying things we didn\u2019t even know we think and felt. Other ways to access your shadow include journalling and working with your dreams and the archetypes you find in them. What is a human archetype? Archetypes are universal, inborn models of people, behaviors, or personalities that play a role in influencing human behavior. They were introduced by the Swiss psychiatrist Carl Jung, who suggested that these archetypes were archaic forms of innate human knowledge passed down from our ancestors. What are the 2 types of shadow? 2 Shadows Types: Self and Cast (Umbra and Penumbra). What is the difference between a symbol and an archetype? Archetype\u2014instinctive patterns in the collective unconscious of humankind. Symbol\u2014An object that stands for something more abstract or general. The cross, for example is a symbol in Christianity representing Christ\u2019s suffering and death. What is the Colour of Shadow? What is the path of light? The path of light is straight and the velocity of light is constant in uniform composition material such as glass. The path and the velocity of light changes when light enters another material such as air or water. The path and velocity of light changes at the boundary, or interface, between two materials. What are the types of shadow? A point source of light casts only a simple shadow, called an \u201cumbra\u201d. For a non-point or \u201cextended\u201d"}, {"title": "bm25", "text": "and the second more cool and blue-green because what is called the \u201ccolor temperature\u201d of the two sources of light is different. Newer LED lightbulbs are often labeled with how \u201cwarm\u201d or \u201ccool\u201d (yellow-orange or blue-green) the light is, but this is not a novel technological phenomenon. The color temperature of light coming from the sun changes constantly during the day, in different seasons, and in different weather conditions, because of the angle of the sun and the amount and quality of atmosphere that the light is passing through. The effect of lighting on the color of objects is sometimes very counter-intuitive. We would expect the shadow cast on a white object to be rendered in a shade of gray, since gray is a darker tone of the local color white. Renoir adheres to this expectation in rendering the shadows in the folds and pleats of the woman\u2019s dress in his earlier painting. But in fact shadows cast on white objects are frequently blue. This effect is particularly noticeable when we observe fresh snow on a sunny day, but it is also clearly evident in Renoir\u2019s The Swing (1876). Not only are the shadows on the woman\u2019s white dress distinctly bluish in hue, but the path behind her in the dappled sunlight is rendered in hues of blue and orange so intense that you wouldn\u2019t believe they could work. But they do because, in fact, our eyes are used to perceiving such odd effects: it is just that our brains typically ignore them. Once such variations"}, {"title": "bm25", "text": "real challenge, make an allusion to the old tv show, Space 1999, if anyone remembers that!) Fluorescent Lights as Thieves; or Me & My Bones; or In the Event of Light, the Only Safe Place is Under the Desk Where I work is good place. Good, creative people making a fine product. But I noticed something most odd the other day when I was turning the corner. You see, when I turn corners, I listen to hear if anyone is coming, I try to look through the corners (which can be done if you know how) to see if anyone is coming, & I look to the floor for shadows to see if anyone is approaching, for I don\u2019t want to have a collision at the corner. And then I realized, after never seeing a shadow approach a corner despite hearing a person & seeing a person through corner walls that people at work don\u2019t cast shadows. It\u2019s strange. Some of the cubicle walls cast shadows, & there is always a shadow under my desk (or is it just dark?). But people here have no shadows. To which my friend responded, \u201cWe are the shadows.\u201d I think it\u2019s just the fluorescent lights . . . not the people. I mean, I\u2019ve seen their shadows on the sidewalk outside. I\u2019ve seen the shadows get into their owner\u2019s (or does the shadow own the person) car. But anyhow. Here is the assignment. Imagine a world where only inanimate objects cast shadows. Imagine how your unconscious would be symbolized."}, {"title": "bm25", "text": "inaccurate light calibration (Qu\u00e9au et al. 2017) or bypass calibration altogether [uncalibrated photometric stereo (Alldrin et al. 2007;Matsushita et al. 2010;Chen et al. 2019)], they do not make highly accurate calibration obsolete. Uncalibrated photometric stereo cannot overcome the generalized bas-relief ambiguity for Lambertian materials and even in favorable settings they do not reach the accuracy of accurate calibration. Despite the importance of accurate light calibration, it remains laborious as researchers have not yet come up with accurate and easy to use techniques. This paper proposes a method for calibrating both distant and near point lights. We introduce a calibration target, shown in Fig. 2, that can be made within 1-2 min from off-the-shelf items for less than five dollars. Instead of specular highlights on spheres, we use a planar board (shadow receiver) and pins (shadow casters) that cast small point shadows on the board. Moving the board around in front of a static camera and light source and observing the pin head shadows under various board poses lets us determine the light position/direction. The reasons why we operate with shadows on a planar target rather than with specular highlights or spherical targets are the following: A key factor in the overall calibration accuracy is the accuracy with which one can localize a calibration method's points of interest in the captured images. With the off-the-shelf pins that we use, we can automatically localize shadow centers with an accuracy of \u223c 1-2 px (Fig. 3, left), which is in marked contrast to how accurately we can detect specular"}, {"title": "bm25", "text": "seeming to float more ideas about,. Reflection that occurs where the direct light how light might interact with \u2026 Definition of shadow. The crest of the shadow becomes dictionary definitions resource on the shadow area outside seems,!, place, or area America 's largest dictionary and get thousands definitions! Twice... test your Knowledge - and learn some interesting things along the way which areas are in shadow only! Light, the horizon, the interplay between object and its cast shadow there 's new. The quote, if possible ) is illuminated by reflected light from sun! And the war still cast a shadow object or figure in a picture or photograph information and of. Quite a sharp or more definite edge to it be as well voxel soup embedded into a glass creates. Color of the shadow is darkest where it is closest to the form object is most... More definite edge to it art tribute to Andy Warhol defined becomes its edges are clearly delineated it... About the light directly hits the form that directly receives light from the light source tells where. For beginners to understand the nature of shadows that occur when one light on... Light bouncing back into the umbra, penumbra and antumbra point on drawing... Jun 13, 2020 - Explore Malcolm Coils 's board `` cast shadows have sharp edges and explain a... Definitions.Net dictionary more than cast shadow art definition words that are n't in our free dictionary, Expanded definitions, etymologies, softer! The core shadow - cast shadows contain the following three separate"}, {"title": "bm25", "text": "Detection and Tracking of Moving Cast Shadows I Introduction This paper presents a method for detection and tracking of moving cast shadows on a dominating scene background in a monocular video sequence. The method assumes moving shadows on a dominant smooth shaped background. The shadow causing light sources are assumed to be strong enough to cause visible temporal frame diierences by moving cast shadows. These diierences are detected and classiied into regions covered and regions uncovered by moving shadows. Entire moving cast shadows are detected and tracked by temporal integration of the covered background regions while subtracting the uncovered background regions. Results obtained with various test sequences show that those shadows are detected and tracked successfully that are also easily visible to a human observer. A moving cast shadow in a video sequence is generated by an object occluding a light source with respect to another object. It's generation depends on the scene geometry. This includes position and shape of the objects but also position and kind of light sources. The light sources, the objects and the generated cast shadows in a scene are linked by light rays. If knowledge on the objects is available, these light rays can be used to detect cast shadows in video images 7]]1]. If cast shadows can be detected by other methods, the light rays can be used to determine the 3D object shape 3]. Furthermore, cast shadows play a role in object segmentation. For video editing, surveillance, remote data bases and other typical MPEG-4 applications 2], moving objects need"}, {"title": "bm25", "text": "you very much for your continued interest. Greetings, this week we will be continuing our discussion of Andrew Loomis\u2019 book Successful Drawing, and considering types of light and how to represent shadow. Loomis emphasizes that the decision to treat a scene or subject which an artist is attempting to represent, begins with choosing one or the other of these 2 types. It is important to choose only one of these types, and to stick to it because the treatment of light in a drawing is what gives the art an impression of consistency. The absence of light could technically also be a 3rd category, but Loomis doesn\u2019t even mention it because the drawing would be pure black. Any small amount of a subject matter, regardless of shadow depth around it, is an effect of Indirect Light treatment. With the casting of light, comes the Cast Shadow. Cast shadows are the areas of a drawing where your subject matter interferes with the direction of light, and that interruption shows on another plane in the form of a shadow. The shadow you see of yourself on the ground on a bright day is a Cast Shadow. This is different than the type of shadow called Shading; ie. how lights and darks fall on an object, as discussed previously. Although one could consider the Shading on the dark side of the moon, to be a shadow which is cast by its lit side, such reasoning only confuses the issue. It is better to think of Cast Shadows as those"}, {"title": "bm25", "text": "image is rotated 180 in the image plane, only a disk that is lighter on top in the observer's head coordinates looks convex. as a position of the cast shadow; that is, the upper left is the favored light source position producing the cast shadow. One of the two purposes of this study was to investigate whether there was an assumption of light from above or from another orientation in the perception of cast shadows. If the assumption of light from above is adopted, a cast shadow may be preferred below the object. The other purpose was to confirm the perceptual interaction between shading and cast shadows (Casati, 2014). As the perception of shading and cast shadows has often been studied separately, it is unclear whether one actually affects the other. In this study, we investigated whether shading affected the perception of ambiguous cast shadows from the viewpoint of matching direction. If shading has an influence on the perception of cast shadows, the directional preference of a cast shadow should be enhanced or degraded by adding matched or unmatched shading information, respectively. To test these hypotheses, we performed three experiments in a random order for each participant. The first one was the main experiment of the present article (Experiment A). The aims of this experiment were to examine the existence of a light-from-above (or fromanother-orientation) assumption in the perception of cast shadows and to investigate the effect of shading on the perceived correspondence between the disk and cast shadows, for example, whether they were mutually independent,"}, {"title": "bm25", "text": "and Cast Shadow Learn how artists draw cast shadows from their imaginations. Start with shadows thrown by blocks and curvilinear solids, in one- and two-point perspective. Consider the expressive value of shadows, and progress to compound surfaces receiving shadows. Finally, learn to draw cast shadows of inclined planes. x Value: Oblique Light and Cast Shadow To complete your study of cast shadows, learn to draw shadows produced by oblique light coming from both the front and rear of objects. Then investigate artificial light as it affects shadows projected by objects within interiors. Practice these principles by drawing a complex interior and an invented still life from your imagination. x Texture: Mark Making and Optical Value Investigate the use of mark making, such as hatching and other related techniques, as a means of creating visual texture and tonal value. Experiment with hatching and how to use it compositionally. Practice inventing your own marks, explore the huge range of possibilities, and apply them in your drawings. x Texture: How Artists Use Texture Take a comprehensive look at texture, beginning with five master drawings that exhibit contrasting textural personalities and moods. Study the primary factors that affect texture, from the drawing surface to the material\u2019s application method and modification through blending, smudging, or erasing. Learn to draw simulated textures such as wood grain and reflective metallic surfaces. x Color: Color Theory and Color and Light Delve into color theory, beginning with the organization of primary and secondary colors on the color wheel. Learn about analogous and complementary colors, as"}, {"title": "bm25", "text": "shadow. But the fact that I had created the shadow by blocking the light taught me a powerful lesson\u2014a truth that became a turning point for me. Shadows are created all around us whenever something blocks the light. And so it is with the shadow of doubt. When we focus on how inadequate we feel, or what others are thinking about us, we cast a shadow of doubt in our minds by blocking the light of God\u2019s truth in our hearts. Yet we were not designed to block the light or to be the light. We were created to live in the light, by finding our confidence in what God thinks about us. Before that day in my bathroom with God and my shadow, I saw doubt as an annoying weakness, a lapse of faith, a dip in my self-confidence. And I just wanted God to take it away. But through my doubt, God led me to dependence on Him and taught me a powerful lesson that became a turning point in my life. A shadow of self-doubt had been cast over my thoughts and emotions when I turned my attention away from God\u2019s perspective and promises. By taking my eyes off the light of God\u2019s truth, I ended up paralyzed by the darkness of defeat. How about you? How often do you agree with the whispers of doubt and find yourself living in discouragement and uncertainty? That day in my bathroom was a turning point where God equipped me with a powerful way to process"}, {"title": "bm25", "text": "is the shadowed area on adjacent surfaces where the direct light is blocked by the form. Stay up to date with the latest content, educational resources, promotions and special newsfrom our partners. cast shadow cast shadow A cast shadow is the darker type of shadow, because it\u2019s created by the light source being blocked. 'All Intensive Purposes' or 'All Intents and Purposes'? Art Term: Cast shadow The dark area that results when the source of light has been intercepted by an object. If two penumbras overlap, the \u2026 A seemingly random voxel soup embedded into a glass cube creates three distinct shadow images. In works like this, the interplay between object and shadow adds complexity to the object and depth to the meaning of the work. hbspt.forms.create({portalId: \"6817144\",formId: \"a36f91dc-2cbf-4f96-9d1a-bf390cb71586\" The Core Shadow is darker than the mid-tones on the object but usually lighter than the cast shadow. It is this type of shadow that I want to explore in today\u2019s tutorial. Cast shadow: The dark area on an adjacent surface where the light is blocked by the solid object. For example, the shadow side of a sphere is slightly illuminated by light bouncing off the floor and onto this side of the object. }); Artist Network is with you every step of your art journey. To calculate length and direction of a cast shadow, first locate the light source, and then locate the point directly beneath the light on the surface (plane) receiving the cast shadow.Make a mark ot the imagined point of contact. Every object"}, {"title": "bm25", "text": "45 degree depicting! Blocked to create dramatic interior paintings using a contrast of light casts only a simple shadow, called ``..., promotions and special newsfrom our partners the viewer would see is the area s... The cast shadow: shadow which is left by the object but usually lighter than the on. These shadows are used ( along with highlights ) to define the 'form ' of the object )! Results when the sun is close to the horizon is the portion of an object that blocking. Locations of darker value that result on surrounding objects and surfaces because of blocked light cast by object. Assuredly be as well cast a shadow where it is closest to form. The Siggraph logo body intercepting light or an area of shadow two kinds of shadows occur! On the subject where light is bouncing around in several directions of shadow close! 'S board `` cast shadows are not usually the focal point of.... A chin or area this area because direct light show where an and... Seemingly random voxel soup embedded into a glass cube creates three distinct shadow, that falls on the on! Less defined becomes its edges are clearly delineated where it is closest to viewer... - the core shadow mostly the same surface the direct light refers to the form that receives!, as one sheltered from the object itself ) interception or screening of rays of light, it causes cast... Vase, created by the blocking of a light is bouncing around in directions. Blocks the light source,"}, {"title": "bm25", "text": "or dew on the grass.\u201d If you\u2019re in a city, Kus also adds that you can capture some really interesting shots just by looking up between the buildings or dipping low in the streets to capture buses passing by. Moving around and experimenting with different vantage points can create a completely different photo. 3. Getting the right light \u201cOne of the first things I think about is lighting. For starters, it helps if you\u2019re taking a photo at the right time of day; in the mornings and evenings when the sun is coming up or when the light\u2019s low, it casts more shadows and might be a little bit hazy. In general, it's much nicer than midday light where it just shines straight down and floods everything and nothing looks that interesting.\u201d Kus does note there are exceptions to this rule, for example, if you\u2019re in a city, \u201clight pouring down between buildings in alleyways casts interesting shadows\u2026 But in general, the light during evenings and mornings is a game-changer.\u201d Understanding light, how to work it, and the best times of day to shoot are essential elements to a great photograph. 4. Take advantage of the changing of the seasons \u201cI\u2019m always taking loads of pictures in the autumn, for example, because everything changes color creating opportunities for some beautiful shots.\u201d For bright bursts of color, make the most of natural autumnal scenes. 5. Play around with reflections \u201cRegardless of where you are, using reflections is a really easy way to get a really interesting photograph"}, {"title": "bm25", "text": "the shadows that are coming off the objects, that are raking across the ground plane and in some cases they're hitting other objects. So I'm gonna very lightly, just go in and actually map my cast shadows. Now I'm not going in to map the cast shadows with a line like this, like super dark because I could never really make that go away. So notice how lightly, sort of with light pressure, I'm pressing on my pencil. I'm noticing that there's a diagonal shadow coming off of this block, coming across, slipping behind the light corner of this block. So it's slipping this way, the light's coming this way and then, the other side of that shadow actually slips behind this taller block. So I've got this shadow zone here now and in addition to that, what I think is really beautiful, is that the cast shadow from this block here, comes across the ground plane and then it hits the block next to it. So they're having some communication, they're having interaction. There's the reality of this block based on the fact that it's actually casting it's shadow on the block next to it. So I'm very lightly making that shape to keep its place and then I'm also mapping the shadow off on a diagonal from this block here and then off on a diagonal on this block here and I'm noticing where these shadows intersect the blocks to help me place them high and low. And then, the other thing that I"}, {"title": "bm25", "text": "in several directions the comparative darkness caused by the form surfaces in a painting art! Umbra, penumbra and antumbra falls opposite the light, all the viewer will assuredly be as.. Post the Definition of cast shadow the meaning of the object which is space... Objects or surfaces models are used ( along with highlights ) to define the 'form ' of shadow! From hitting, producing an area of shadow art in the butt ' or 'all Intents and Purposes ' 'all. Is usually in an environment in which light is blocked by the an artificial light source and where... Top priority area of shadow quiz, and checking it twice... test your Knowledge and... Often most true in this area because direct light can wash out local color, a cast shadow the. Shadow, the shadow is the darkest point on your drawing shadow produced is called a cast shadow source... The year for example, the viewer would see is the core shadow blocking light falling onto another object the. When the sun, reflects light in turn upon any object beneath it terms!, which is reflected light: light bouncing back into the form, and checking it twice... your! Art, means objects that have three dimensions shadow over the lit side of form which! Bouncing back into the form soup embedded into a glass cube creates three distinct shadow longer the cast shadow the! Focal point of a lip falling on a chin 's Guide, \u00a9 Copyright 2020 Peak! Of a cast shadow art definition, but they convey important"}], "hoverinfo": "text"}, {"x": [0.01374359056353569, 0.03644300252199173, -0.013628428801894188, -0.1751209795475006, 0.06345218420028687, -0.11049774289131165, -0.07823387533426285, -0.049141474068164825, -0.020806480199098587, -0.15955999493598938, 0.03327849134802818, 0.0006946802604943514, 0.0006946802604943514, -0.17730550467967987, -0.17730483412742615, -0.2125570923089981, -0.03761010989546776, -0.1344785988330841, -0.12980706989765167, -0.0978771448135376, -0.173598051071167, -0.17139320075511932, -0.06286560744047165, -0.12384484708309174, -0.14930087327957153, -0.13198892772197723, -0.15732121467590332, -0.19193591177463531, -0.17754386365413666, -0.15115705132484436, -0.19315922260284424, -0.17399388551712036, -0.0875842273235321, -0.14631541073322296, -0.1735638827085495, -0.16464217007160187, -0.19499807059764862, -0.1421130746603012, -0.20364892482757568, -0.1547137349843979, -0.1665319949388504, -0.1304471343755722], "y": [-0.030950861051678658, 0.010027472861111164, -0.06969960778951645, -0.10631038248538971, 0.06719572842121124, -0.007747940719127655, -0.11295613646507263, -0.12146592885255814, -0.0850277915596962, -0.07679883390665054, -0.028061101213097572, 0.029997438192367554, 0.029997438192367554, -0.05957064405083656, -0.0595708005130291, 0.04369478300213814, -0.05680239573121071, -0.02062169648706913, -0.12621267139911652, 0.009226985275745392, -0.021716656163334846, -0.07731834053993225, -0.053930651396512985, -0.06858516484498978, -0.091229647397995, -0.021448638290166855, -0.06966380029916763, -0.04773886874318123, -0.017389953136444092, -0.027561740949749947, -0.0389518067240715, 0.00582067109644413, -0.03520406782627106, 0.002542134840041399, -0.11262083798646927, 0.054016388952732086, 0.02477957494556904, -0.06527236849069595, 0.10781987011432648, -0.023906540125608444, 0.029288729652762413, -0.041653506457805634], "mode": "markers", "name": "Cluster 8", "marker": {"size": 8, "color": "rgb(217,217,217)"}, "text": ["Document 23", "Document 35", "Document 184", "Document 575", "Document 596", "Document 615", "Document 627", "Document 656", "Document 758", "Document 779", "Document 812", "Document 864", "Document 865", "Document 985", "Document 986", "Document 1019", "Document 1034", "Document 1053", "Document 1055", "Document 1079", "Document 1090", "Document 1131", "Document 1141", "Document 1151", "Document 1171", "Document 1189", "Document 1191", "Document 1219", "Document 1225", "Document 1250", "Document 1267", "Document 1271", "Document 1289", "Document 1295", "Document 1306", "Document 1350", "Document 1382", "Document 1447", "Document 1451", "Document 1454", "Document 1460", "Document 1463"], "customdata": [{"title": "math", "text": "# How to illuminate the darkness inside glass objects in Cycles? My model has a clear plastic (or glass) dome with objects inside. The objects appear dark. I've tried the glass shader with color 100% RGB, with very small IOR, and using just a refraction shader. I know Cycles has problems with caustics, but I just want broad illumination to fall clean through the glass. The light-to-column path can ignore refraction, but is blocked or tremendously attenuated. The camera-column path needs refraction, and seems to work fine anyway. This demo image offers all optical paths of interest: \u2022 light upon object, seen directly \u2022 light upon object, seen through glass (looks okay) \u2022 light through glass onto object, seen directly. This is the shadow on the lit side of the column just below the glass tubing. I expect full illumination, but there is shadow. There is some light, but it's diffuse light from the floor. \u2022 light through glass onto object, seen through glass. This I did at one point try non-progressive rendering, and find extremely coarse light where there shouldn't be shadow, but this is not a practical way to make nice images. I've even tried cranking up certain sampling settings to many thousands, but still get bad noise though less, at the cost of long render times. I would like to finish my creations sometime before \"Star Trek, the Generation After the Next\" becomes real life, if you know what I mean. The next image is an example. I think Transmission in Sampling was"}, {"title": "math", "text": "iris and darkening it. Its a good technique because in real life there is no space between the surface and the eyeball but it tends to be modelled that way. \u2013 beiller Jul 26 '14 at 23:04 \u2022 How do I change the appearence of my nodegroups to the appearence you show there? \u2013 Teck-freak Jan 10 '17 at 18:08 Another aspect to consider is the environment in which the glass is in. A perfectly black sky (as seen in your screenshots) is not very good for the glass to reflect/refract with. If you want realistic looking light interaction, consider adding mesh light emitters to mimic real light sources. Consider setting up a studio-like lightbox, or use an HDR image to act as the sky. Increase the bounces in your render settings light paths. Basically each face is a bounce, the outside edge of the glass, the inside edge(if it has thickness), the pole, the ground. The bounces tell cycles when to stop following the ray. \u2022 I've cranked up bounces to 20. No difference. \u2013 DarenW Aug 25 '13 at 16:12 \u2022 @DarenW I struggled with this too for hours. it wasn't the bounces. I found that when the glass was solidified with the solidify modifier, it had \"fill rim\" checked. This changed the problem instantly for me. \u2013 chase Nov 18 '15 at 4:16 Your glass is dark, or the space behind is dark due to your render settings. You need to make sure caustics is turned on or the glass will be dark"}, {"title": "rpj-common-crawl-2023-06", "text": "basketballs of an identical shade of orange won\u2019t look the same if one is made of leather and the other is made of rubber, because light will interact with them very differently. Anything that\u2019s more shiny, like metal or hard plastic, will produce reflections and illuminate nearby items with indirect light. Objects sitting in the path of any light rays will cast shadows. And a transparent or translucent substance such as glass or water will refract (bend) light \u2014 think of the way a straw appears to break if it\u2019s sitting in a glass of water. A diagram of ray tracing. Henrik/Wikimedia Commons Because ray tracing is based on simulating the way that light moves in real life and how it behaves when it interacts with physical substances and materials \u2014 i.e., it\u2019s governed by the laws of physics \u2014 CGI produced via ray tracing can truly be photorealistic. That\u2019s why the technique has become the norm in filmmaking. But the downside of ray tracing is that it is so computationally intensive as to be impractical for the needs of real-time video game graphics (or rather, it had been until recently). To explain why, let\u2019s dive further into the details of how ray tracing actually works. In the diagram above, think of the grid as a computer monitor. To render a scene from a modern video game, the computer maps the 3D virtual world of the game to the 2D viewing plane that is the monitor. In doing so, the computer must determine the color for"}, {"title": "math", "text": "principle behind shadows is simple (and also trivial in raytracing): when light rays are blocked (occluded) by an object, they do not reach other objects which are behind the occluder! Unfortunately, our lighting equations would become horribly complex if we had to do collision checks along the incident light ray to figure out if a light should influence a fragment or not\u2014so we have to do more hacks. The simplest hack for shadows is to assume that light comes only from one direction and goes from somewhere mostly above the object towards the ground. We project a ray from the character's feet in the direction of the light source (usually, straight down) and, wherever it hits, place a small dark (sometimes translucent) circle or oval oriented along the normal to the surface. For greater realism in case the shadow should be cast on a couple of different surfaces, we might project rays from multiple points and deploy several shadow bits. When combined with statically baked shadows, this can be fairly convincing. A more realistic way to achieve \"I'm on the ground now\" shadowing and more is screen space ambient occlusion, which I recommend looking up and reading about! We might discuss it in a couple of weeks. If we want to get more realistic shadows that take the object's shape into account, we need to do some more sophisticated tricks. Shadow mapping is an old technique that's still used today for forward rendering pipelines, and it works on the observation that if we couldn't \"see\" a"}, {"title": "rpj-c4", "text": "I'd also like to know what is glass2? Also, can we have option for materials to pass through photons/diffuse in general? Using archglass is a terrible idea, it never looks good (aside flat panels like in a windows in distance). It would be much better to have an option for object to let gi go through. Very interesting.. So I've figured there was a shading issue, autosmooth + bevel modifier changed shading and that resulted in the error."}, {"title": "rpj-common-crawl-2020-05", "text": "off light. And look at this cool sort of shadowing it's doing behind there. So yes, we have pre-saved it for you with a higher quality render, and just take a look at that nice shadowing it's doing, and there's a cylinder. So if we compare that with a sphere and the area light, we just get those cool different shapes. And as you can see, for different kind of scenes, you can get really creative with your area lights. It's just so cool that they have a shape and of course, if you make these bigger and smaller, it's going to significantly affect the lighting in your scene. So as a little bonus, we've taken the sphere area light and we've put one inside behind the glass here in the window. Let's take a look at what that looks like. Look at that, isn't that beautiful? Nice little red light. I like how you can see, if you compare it with this one, so we'll just kind of go back and forth and all we're doing is adding that light on the inside, you can see through the glass. You can see this is emissive. You can see through the glass again, and there's another glass there. So we're getting some really cool little lights going through glass and emissive. So in this particular render, we've got how many different light sources going on? We've got our environment light. That's our cool, night, full moon HDR. It's giving us a nice ambient look, but also"}, {"title": "rpj-stackexchange", "text": "Q: Three js Light through transparent plane .. Shadow Is ist possible to have three js send light through a transparent object? I have a plane with a cloud. The Light (sun) is above the cloud and below the cloud plane a shadow is hitting another (terrain) plane. But sadly the shape is the one of the Mesh (rectangle) not the one of the cloud. I understand why the shadow is rectangular but is there any way to create the wanted effect? you can see the example here"}, {"title": "rpj-common-crawl-2023-06", "text": "rays from the intersection point to all lights. If the shadow ray intersects an object before reaching the light, that intersection will be shadowed by that particular light. Whitted ray tracing mainly solves the problem that there is no indirect light in the scene, but the performance is not very good, because all the indirect light generated only comes from perfect specular reflection or refraction. This material is not commonly seen in the real world; therefore, it is basically impossible to simulate most indirect light, and another reason is that it only emits one Reflected ray and one Refracted ray for each EyeRay intersection. This problem will be better solved in distributed ray tracing. 3.1 Types of Ray Tracing 3.1.1 Forward Ray Tracing Forward ray tracing follows photons from light sources to objects. While the forward ray can most accurately determine the color of each object, it is very inefficient. This is because many rays from the light source never pass through the image plane and enter the eye. Tracing every ray from the light source means that many rays will be wasted because they are never seen by the eye. 3.1.2 Backward Ray Tracing To make ray tracing more efficient, the backward ray tracing method was introduced. In a backward ray, an eye ray is created at the eye; it passes through the image plane and into the world. The first object the ray hits is the one visible from that point in the view plane. The downside of Backward Ray is that it assumes"}, {"title": "rpj-common-crawl-2019-30", "text": "would start again with each 'hit' contributing to the final pixel colour. If the surface was refractive, then another ray would be needed as it entered, again considering the material properties and potentially changing its direction. It is the directional change of the ray through the object that gives rise to the distortion effects we see when looking at things submerged through water or glass. Of course, materials like glass have reflective and refractive properties hence additional rays would need to be created to take this into account. There is also a need to determine whether the current position is being lit or in shadow. To determine the point of origin, these shadow rays are cast from that current hit point (the point of intersection) towards each light source in the scene. If it hits another entity, then the point of intersection is in shadow. This process is often referred to as direct lighting. It is this recurrent nature that affords greater realism albeit at the expense of significant computational cost. What does this mean for games? Ray tracing provides the basis for realistic simulation of light transport through a 3D scene. With traditional real-time rendering methods, it is difficult to generate realistic shadows and reflections without resorting to various techniques that approximate, at best. The beauty of ray tracing is that it mimics natural phenomena. The algorithm also allows pixel colour/ray computation to have a high degree of independence - thus lending itself well to running in parallel on suitable architectures, i.e. modern-day GPUs. The"}, {"title": "rpj-common-crawl-2021-04", "text": "the shadow that's cast over the IRS. And so you considered the shadows actually on being cast on this flat liar here, which is underneath the reflective like a here, the cornea. So I let's just give the example here where Shadow is actually being cast onto the once the cornea like Sai and you can see you can say you the shadow. And although it's not directly under loaders, shadow here is not in exactly the same space places where I've drawn this reflected light. If I was to view this angle if I was to do this are from a different angle, like if I was standing here looking at the eyeball that reflected Part of lot is gonna look like it's right on top of this shadow that's cast over the IRS, and that's why you end up when you're drawing or rendering. And I That's why you end up with this effect. He when you have this, what sport of lot reflecting off the I in the same spot where you have shadow cast over the are. And it's a pretty sure fire way Teoh to render eyeballs and make it look realistic. And or even if you don't want them to look completely realistic, it does make the eyes more powerful and engaging. So that pretty much covers how to render rivals. Obviously, with individual spaces, you're gonna get different shed pupils as we've covered with cats. For example, when I have the elliptical people or this huge an eagle's eye,"}, {"title": "rpj-c4", "text": "glass surface. The diagram below explains how each segment of the path may look. You'll notice in the animation that the glass becomes truly transparent at depth four. If you look at the above illustration you'll notice the cross section of the correctly modeled glass has 4 surfaces to pass through before exiting. Since the first intersection is handled by the camera ray (corresponds to the 1 on the illustration) you would need 4 more to pass through 2, 3, and 4 and still have depth to exit the glass. This is what makes the glass transparent where we can see the ground on the other side. Let's add some diffuse bounces now. Using the PxrVCM integrator and Trace Light Paths in the PxrDomeLight, you'd expect to see caustic light patterns off of and through the glass. But with the Max Diffuse Depth at zero, there's no collection of diffuse lighting from the glass at all. Below the diffuse depth is increased for each render by one and you can see quite a dramatic difference in the amount of light collected. You may also notice that this is an artificial way to limit caustics in your scene if they become time-consuming or distracting visually. It might be useful to clamp the number of bounces allowed in the scene. Typically scenes have scattered specular and diffuse objects. Rarely do they all line up where you need to see clearly through many objects. As such you can still specify large trace depths but also define a maximum combination"}, {"title": "rpj-c4", "text": "I have the following scenario in an animation project: I'm standing inside a room looking out through a window. To the ground outside I applied a ShadowCatcher Material, so I can later compose everything correctly (the background will be replaced by real footage an there are animated objects on the ground happening). This works fine as long as I disable the window glass. When I turn it on, the shadowcatcher doesn't work anymore (same with the alpha - the ground plane becomes visible). I thought I could simply disable \"visible in masks\" in the glass material, but this doesn't change anything. Or do I simply have to render twice. Does it work if you change the refraction mode of your window glass to \"thin\"? It would have no refraction then. Generally, at this time it's a limitation of Corona (rendering masks in refraction/reflections). It will be improved in the future. Thanks for your reply, changing the refraction to thin did the trick."}, {"title": "rpj-c4", "text": "I have the following scenario in an animation project: I'm standing inside a room looking out through a window. To the ground outside I applied a ShadowCatcher Material, so I can later compose everything correctly (the background will be replaced by real footage an there are animated objects on the ground happening). This works fine as long as I disable the window glass. When I turn it on, the shadowcatcher doesn't work anymore (same with the alpha - the ground plane becomes visible). I thought I could simply disable \"visible in masks\" in the glass material, but this doesn't change anything. Or do I simply have to render twice. Does it work if you change the refraction mode of your window glass to \"thin\"? It would have no refraction then. Generally, at this time it's a limitation of Corona (rendering masks in refraction/reflections). It will be improved in the future. Thanks for your reply, changing the refraction to thin did the trick."}, {"title": "rpj-common-crawl-2022-05", "text": "cloud shadows: In a way, I appreciate the conceptual simplicity of deferred rendering where this can simply be done in pixel postprocessing. If it would just run faster... but anyway, now I got buildings to go out of light properly. nd the cloud shadows now project. Well - sort of - not exactly following terrain and season, just based on mean, but it's good enough if you don't go looking for deviations. For those interested, here's some details to the technique and why it's implemented the way it is: I've read up a bit on shadow generation techniques in the literature, and clouds appear to be tricky. Shadow volume techniques are out because they don't work for semi-transparent texture stacks, so it's got to be shadow maps. Generating a shadow map on the fly requires a shadow camera pass over clouds. I know from prior experience optimizing cloud rendering performance by means of a z-buffer filling first pass that any second pass over clouds is prohibitively expensive - any attempt to pass over clouds a second time drove me below 10 fps for even moderately clouded scenes. If I were to speculate, I'd say that this is the reason clouds in Rembrandt don't cast any shadows in spite of Rembrandt being easily able to include clouds in the shadow camera pass. There are other disadvantages to this approach, for instance a cloud texture could be fairly opaque (i.e. zero alpha) but we still might not want to render a shadow since the cloud is too high"}, {"title": "rpj-common-crawl-2022-05", "text": "cloud shadows: In a way, I appreciate the conceptual simplicity of deferred rendering where this can simply be done in pixel postprocessing. If it would just run faster... but anyway, now I got buildings to go out of light properly. nd the cloud shadows now project. Well - sort of - not exactly following terrain and season, just based on mean, but it's good enough if you don't go looking for deviations. For those interested, here's some details to the technique and why it's implemented the way it is: I've read up a bit on shadow generation techniques in the literature, and clouds appear to be tricky. Shadow volume techniques are out because they don't work for semi-transparent texture stacks, so it's got to be shadow maps. Generating a shadow map on the fly requires a shadow camera pass over clouds. I know from prior experience optimizing cloud rendering performance by means of a z-buffer filling first pass that any second pass over clouds is prohibitively expensive - any attempt to pass over clouds a second time drove me below 10 fps for even moderately clouded scenes. If I were to speculate, I'd say that this is the reason clouds in Rembrandt don't cast any shadows in spite of Rembrandt being easily able to include clouds in the shadow camera pass. There are other disadvantages to this approach, for instance a cloud texture could be fairly opaque (i.e. zero alpha) but we still might not want to render a shadow since the cloud is too high"}, {"title": "bm25", "text": "the cleaner, high-reflective sheen that was running on the machines at E3. There is, however, one slight upgrade noticeable in the change and it's that the texture resolution on the normal mapping has been slightly increased to make up for the lack of dark shadows around various areas of the character. Although, technically, under those lighting conditions it would seem like the shadows should be as dark as the \"old\" version given that it's quite dark outside and there's no source casting a light to brighten up the characters where they're standing. Other than the straps that are now obviously missing in the new version of the game for the character on the right, notice how the shadows change with the character on the left... there's a huge, huge thing that changes on his armor... did you spot it? I'll give you a hint: pre-baked shadows. It's tough to tell if they're just textured onto his armor or if there's a condition to add or remove them under certain lighting environments, but in the new image at the bottom, the scaled plates have an obvious gradient shadow casting that shouldn't be there. They're quite dark and it looks like it could be textured onto his armor, as opposed to actually casting and reflecting compared to the old build where you can see that each reflective light pass is being rendered. Now some of you might say \u201cBut, but, but it's the teh new shaders!\u201d no, it's not the new shaders. The new shaders are lighter, and"}, {"title": "bm25", "text": "new raytracing features of Universe. You can set reflections and/or transparency to be calculated via raytracing. When it comes to raytracing reflections, Universe's occlusion function is noteworthy. With occlusion, you can essentially set a \"one-bounce\" raytrace for calculating reflections. This greatly improves the speed of raytracing, and yields the look you need at a fraction of the typical render time. Another welcome aspect of raytracing is refraction. Refraction allows a transparent object to correctly distort the image seen through it-just as a clear drinking glass bends light passing through it. EI has always had strong lighting capabilities. Universe gives you many types of lights, from spot and radial to parallel (simulates a distant light source) and tube (much like a neon tube light). Master Lights have been added, so if you have 20 lights on a building, you can link them to the same master light and adjust all of them simultaneously. Further, you can set which aspects of the Master Light each specific light will inherit. For example, you can simultaneously adjust the intensity of a group of lights that have their own individual colors. Master Materials work in much the same fashion for textures. Lights can now cast raytraced shadows. You can set drop-off, and specify the edge softness and number of samples used to calculate the shadow. Each light can be set to cast either a buffered or raytraced shadow so you can mix and match, taking the raytracing render hit only when necessary. Lights haven't been drastically improved, but that's because they"}, {"title": "bm25", "text": "Multipass Rendering and Management So far, we have focused on purely local illumination computation. However, global effects such as shadowing and translucency must also be reproduced. We first show how they can be included in our approach using multipass rendering and discuss both the necessary preprocessing and real-time components. We then address critical software architecture issues in making the development of our system tractable. The complex dependences between multipass effects, the indirect framebuffer, and progressive refinement made it important to develop an abstraction to facilitate the inclusion of new effects and manage dependences, as well as abstract key low-level aspects such as data-flow and bindings on the GPU. Fig. 11 summarizes the data-flow for our final real-time computation including shadow mapping, translucency, and indirect framebuffer effects. Figure 11: Data-flow dependencies in multipass rendering with progressive refinement. We abstract and manage dependencies using a computation graph automatically generated for the features of a specific scene during preprocessing. Shadow Mapping Shadow mapping illustrates how multipass effects from the final rendering pipeline can be included in our architecture. Shadow maps necessitate one extra pass per light and require auxiliary data from the preprocessor (scene geometry). For real-time preview, the shadow map pass communicates with the main pass through a texture and our graph interface (presented below) manages communication and dependences when parameters are edited. During caching, we run RenderMan a second time over the scene to extract micropolygons after all transforms and displacements are applied. We store object IDs to support selective shadow casting and receiving per-object. For specialization,"}, {"title": "bm25", "text": " [page:Object3D] → [page:Light] →

[name]

A light that gets emitted in a specific direction. This light will behave as though it is infinitely far away and the rays produced from it are all parallel. The common use case for this is to simulate daylight; the sun is far enough away that its position can be considered to be infinite, and all light rays coming from it are parallel.

This light can cast shadows - see the [page:DirectionalLightShadow] page for details.

A Note about Position, Target and rotation

A common point of confusion for directional lights is that setting the rotation has no effect. This is because three.js's DirectionalLight is the equivalent to what is often called a 'Target Direct Light' in other applications.

This means that its direction is calculated as pointing from the light's [page:Object3D.position position] to the [page:.target target]'s position (as opposed to a 'Free Direct Light' that just has a rotation component).

The reason for this is to allow the light to cast shadows - the [page:.shadow shadow] camera needs a position to calculate shadows from.

See the [page:.target target] property below for details on updating the target.

Example

[example:misc_controls_fly controls / fly ]
[example:misc_lights_test lights / test ]
[example:webvr_cubes cubes ]
[example:webgl_effects_parallaxbarrier effects / parallaxbarrier ]
[example:webgl_effects_stereo effects / stereo ]
"}, {"title": "bm25", "text": "authors and they will help you out when you ask questions. The most effective way is learning a bit of Lua and trying to understand what the scripts does but we understand that not everybody is willing to do that. Don't let my write-up mislead you. You don't need Lua scripting to make use of the compositing features in Octane. You might as well put a wood grain texture on the ground plane and catch nice reflections in the wine glass. If I get my hands on Photoshop, I will post an example file. Of course you need to tweak it afterwards because the shadow as they are capture in Octane likely don't match the ones in your picture (The shadows in Octane are cast onto a white diffuse material regardless of your real material set-up). That shouldn't be a problem. You can still catch the reflections but you will have to make the shadows less strong in post. Thank you. It seems the \"theory\" behind the steps without lua are now clear. I made some in between shots between the different layers to get a better understanding how each pass adds to the final result. The glass and table example seem like a good and simple setup for some further testing. At the moment I am under the impression that the Black Shadows on top of the Layer Reflections causes the caustics to disappear into the shadows."}, {"title": "bm25", "text": "name=\"zScale\">Scale value for Z axis. The scaling as an output parameter.

Creates a new scaling . representing x,y and z scale values. The scaling . Creates a new scaling . representing x,y and z scale values. The scaling as an output parameter. Creates a new that flattens geometry into a specified as if casting a shadow from a specified light source. A vector specifying the direction from which the light that will cast the shadow is coming. The plane onto which the new matrix should flatten geometry so as to cast a shadow. A that can be used to flatten geometry onto the specified plane from the specified direction. Creates a new that flattens geometry into a specified as if casting a shadow from a specified light source. A vector specifying the direction from which the light that will cast the shadow is coming. The plane onto which the new matrix should flatten geometry so as to cast a shadow. A that can be used to flatten geometry onto the specified plane from the specified direction as an output parameter. Creates a new translation"}, {"title": "bm25", "text": "They\u2019re expensive, must be split into several shadow maps/levels, and they involve multiple passes. It\u2019s something we take for granted every day \u2013 shadows are just kind of there. It\u2019s a part of lighting. But when we simulate lighting mathematically, the lighting model (regardless of it\u2019s complexity) is simply unable to cover shadow casting within the environment. Shadow mapping has proven to scale well, but it\u2019s not without it\u2019s problems. In this article we will discuss an approximation shadow mapping technique known as Exponential Shadow Mapping \u2013 and see the role it plays in modern shadow algorithms. Before we can discussing Exponential Shadow Maps, it\u2019s imperative that you understand traditional shadow mapping. The traditional shadow map is basically the scene rendered from the perspective of the light (as if we could see everything the light touches), and depth information is captured for later calculations. After we generate a shadow map, we then render the light volume from the point of view of the camera (how we did traditional lighting in my last post, Deferred Rendering Pipeline). The big difference when shadowing is involved \u2013 is that we reference the shadow map by translating our point to the light\u2019s perspective-space, and access the depth value stored. Given that we have the depth from the light\u2019s perspective, and the calculated depth from the fragment, we can see whether or not a point is in shadow. The scene rendered with traditional shadow mapping. At the top-left we can see what the light sees. To recap, the main workflow is"}, {"title": "bm25", "text": "rays take before reaching the viewport (viewing region in computer graphics). It works backwards and casts rays \u2013 one for every pixel on your display in a straight line from the viewport. At the same time, it captures the point at which the rays meet a digital surface. The physical attributes of the object\u2019s surface, like opacity and reflectivity, determine its colour and how it will interact with existing rays of light. Since these rays propagate from the viewport, you can change the viewing angle, and the shadows and lighting will interact naturally. This rendering process calculates the angles at which light rays bounce off different surfaces. It also determines the exact positions of shadows and whether another source of light would illuminate that area. In this case, ray-traced graphics produce smooth-edged shadows, particularly in scenes with multiple sources of light. Also, ray tracing can simulate transparent objects, like water and glass, and it simulates how light behaves as it passes through these types of objects. Ray Tracing in NVidia GeForce RTX Despite the massive improvement in graphics technology over the recent past. Nvidia\u2019s latest RTX 2000 series graphics cards are the pioneers in including hardware dedicated for ray tracing. The manufacturer ensured that the RTX 2000 had the right architecture to facilitate ray tracing in real-time. To show its capabilities, Nvidia recently had several demos in a press conference showing what the latest graphics card can do, including ray tracing. The demos include Metro Exodus, Shadow of the Tomb Raider and Battlefield 5. In these"}, {"title": "bm25", "text": "dirt actually looks like on point lights. It sounds like the light actually casts shadow at its outer reaches, but that doesn't make sense. I'm not at my PC or I'd make a little test. #686 posted by Kinn on 2017/01/29 23:02:39 I'm still trying to visualize what the dirt actually looks like on point lights. It sounds like the light actually casts shadow at its outer reaches, but that doesn't make sense. I'm not at my PC or I'd make a little test. Point lights don't \"cast\" dirt, so to speak. Imagine lighting a level with no dirt, then dirt is applied afterwards as a second pass. This dirt is applied over the existing light, so those lights are said to have \"dirt on them\". For lights that have no dirt (dirt -1), I assume those lights are applied after the dirt pass, not before it, so the light can illuminate the dirty creases. Caveat: the above is a guess, only ericw can confirm whether that's actually how it's done, but I'd be surprised if it's not the case. Kinn #687 posted by sevin on 2017/01/29 23:14:48 That makes more sense, thanks. Hmmm #688 posted by Kinn on 2017/01/29 23:21:06 ericw - is my assumption correct re: 3 passes (1: dirty lights, 2: dirt pass, 3: non-dirty lights)? If so, where does bounce lighting fit into this? I assume bounce must be subject to dirt. @kinn + Sevin #689 posted by ericw on 2017/01/30 04:43:59 Yep, the 3 passes explanation is correct. It's implemented slightly"}, {"title": "bm25", "text": "} public set orthoBottom(bottom: number) { this._orthoBottom = bottom; } /** * Creates a DirectionalLight object in the scene, oriented towards the passed direction (Vector3). * The directional light is emitted from everywhere in the given direction. * It can cast shadows. * Documentation : https://doc.babylonjs.com/features/featuresDeepDive/lights/lights_introduction * @param name The friendly name of the light * @param direction The direction of the light * @param scene The scene the light belongs to */ constructor(name: string, direction: Vector3, scene: Scene) { super(name, scene); this.position = direction.scale(-1.0); this.direction = direction; } /** * Returns the string \"DirectionalLight\". * @returns The class name */ public getClassName(): string { return \"DirectionalLight\"; } /** * Returns the integer 1. * @returns The light Type id as a constant defines in Light.LIGHTTYPEID_x */ public getTypeID(): number { return Light.LIGHTTYPEID_DIRECTIONALLIGHT; } /** * Sets the passed matrix \"matrix\" as projection matrix for the shadows cast by the light according to the passed view matrix. * Returns the DirectionalLight Shadow projection matrix. * @param matrix * @param viewMatrix * @param renderList */ protected _setDefaultShadowProjectionMatrix(matrix: Matrix, viewMatrix: Matrix, renderList: Array): void { if (this.shadowFrustumSize > 0) { this._setDefaultFixedFrustumShadowProjectionMatrix(matrix); } else { this._setDefaultAutoExtendShadowProjectionMatrix(matrix, viewMatrix, renderList); } } /** * Sets the passed matrix \"matrix\" as fixed frustum projection matrix for the shadows cast by the light according to the passed view matrix. * Returns the DirectionalLight Shadow projection matrix. * @param matrix */ protected _setDefaultFixedFrustumShadowProjectionMatrix(matrix: Matrix): void { const activeCamera = this.getScene().activeCamera; if (!activeCamera) { return; } Matrix.OrthoLHToRef( this.shadowFrustumSize, this.shadowFrustumSize, this.shadowMinZ !== undefined ? this.shadowMinZ :"}, {"title": "bm25", "text": "seeds and moving the slider slowly from round 0 to see what JFA does at each step. I find it really interesting how it all comes together in the last two steps \u2013 before that it doesn\u2019t look much like a Voronoi diagram at all. # Distance fields JFA gives us two things for every pixel: the color of the closest seed (which we used above to draw Voronoi diagrams) and the location of the closest seed. To demonstrate the latter, here\u2019s the same \u2018fish\u2019 simulation as above except we\u2019re coloring pixels by how close they are to their closest seed. Light pixels are close to a seed and dark pixels are far from one. Evan Wallace gave me the idea to use this to render 2D drop shadows on the GPU. One of the tricky parts of rendering CSS drop shadows is that they have a \u2018spread\u2019 value. The bigger the spread, the farther the shadow reaches before fading out. This means that you can\u2019t implement a drop shadow just by blurring the shape casting the shadow. So how does it work? We render the shape that we want to cast a shadow (in the example below its the text \u2018Voronoi\u2019) and we treat each rendered pixel as a seed for JFA. Then we run JFA, which gives us the distance from every pixel in the image to some pixel in the shape. This is exactly what we need to render a drop shadow with spread: pixels close to the shape are in shadow and"}, {"title": "bm25", "text": "/** Hook to allow the listener to override the ordering of lights for the entire frustum. @remarks Whilst ordinarily lights are sorted per rendered object (@see MovableObject::queryLights), texture shadows adds another issue in that, given there is a finite number of shadow textures, we must choose which lights to render texture shadows from based on the entire frustum. These lights should always be listed first in every objects own list, followed by any other lights which will not cast texture shadows (either because they have shadow casting off, or there aren't enough shadow textures to service them). @par This hook allows you to override the detailed ordering of the lights per frustum. The default ordering is shadow casters first (which you must also respect if you override this method), and ordered by distance from the camera within those 2 groups. Obviously the closest lights with shadow casting enabled will be listed first. Only lights within the range of the frustum will be in the list. @param lightList The list of lights within range of the frustum which you may sort. @return true if you sorted the list, false otherwise. */ virtual bool sortLightsAffectingFrustum(LightList& lightList) { (void)lightList; return false; } /** Event notifying the listener of the SceneManager's destruction. */ virtual void sceneManagerDestroyed(SceneManager* source) { (void)source; } }; /** Inner helper class to implement the visitor pattern for rendering objects in a queue. */ class _OgreExport SceneMgrQueuedRenderableVisitor : public QueuedRenderableVisitor { protected: /// Pass that was actually used at the grouping level const Pass* mUsedPass; public: SceneMgrQueuedRenderableVisitor()"}, {"title": "bm25", "text": "mesh, for the specified light. * By using this method, you can control which lights cast shadows for each mesh node in your scene. * * A shadow volume is a special child mesh node added to each descendant mesh node. The effect * is to have each descendant mesh cast a shadow from the specified light. Invoking this method * on the CC3Scene will cause all meshes in the scene to cast shadows from the specified light. * * These shadow volume meshes are invisible, but are used to populate a stencil buffer that keeps * track of where a shadow volume mesh intersects a visible object mesh. This stencil is used to * paint the shadows onto the scene. * * The shadow volume created by this method will only have effect if the visible property of both * the node and the light are set to YES (ie- turning off a light also turns off any shadows it * is casting). * * Shadow volumes use a stencil buffer to determine the areas that require shading. The stencil * buffer must be allocated within the EAGLView when the view is created and initialized. * On the iOS, the sencil buffer is combined with the depth buffer. You create a stencil buffer by * passing the value GL_DEPTH24_STENCIL8 as the depth format argument in the CC3GLView method * viewWithFrame:pixelFormat:depthFormat:preserveBackbuffer:sharegroup:multiSampling:numberOfSamples:. * * It is safe to invoke this method more than once with the same, or a different light. Only one * shadow volume will"}, {"title": "bm25", "text": "@param renderable The renderable the material will be used on. @param movableObject The MovableObject the material will be used on (usually the parent of renderable) @return A hash. This hash references property parameters that are already cached. */ virtual void calculateHashFor( Renderable *renderable, const HlmsParamVec ¶ms, uint32 &outHash, uint32 &outCasterHash ); /** Called every frame by the Render Queue to cache the properties needed by this pass. i.e. Number of PSSM splits, number of shadow casting lights, etc @param shadowNode The shadow node currently in effect. Can be null. @return A hash and cached property parameters. Unlike @calculateHashFor, the cache must be kept by the caller and not by us (because it may change every frame and is one for the whole pass, but Mesh' properties usually stay consistent through its lifetime but may differ per mesh) */ virtual HlmsCache preparePassHash( const Ogre::CompositorShadowNode *shadowNode, bool casterPass, bool dualParaboloid, SceneManager *sceneManager ); /** Retrieves an HlmsCache filled with the GPU programs to be used by the given renderable. If the shaders have already been created (i.e. whether for this renderable, or another one) it gets them from a cache. Otherwise we create it. It assumes that renderable->setHlms( this, parameters ) has already called. @param passCache The cache returned by @preparePassHash. @param renderable The renderable the caller wants us to give the shaders. @param movableObject The MovableObject owner of the renderable (we need it to know if renderable should cast shadows) @param casterPass True if this pass is the shadow mapping caster pass, false otherwise @return Structure containing"}, {"title": "bm25", "text": "{@link ElementComponent#layers} instead of names. * Can be used in {@link LayerComposition#getLayerById}. * @param options - Object for passing optional arguments. These arguments are the same as properties of the Layer. */ export class Layer { constructor(options: any); /** * Adds an array of mesh instances to this layer. * @param meshInstances - Array of {@link MeshInstance}. * @param [skipShadowCasters] - Set it to true if you don't want these mesh instances to cast shadows in this layer. */ addMeshInstances(meshInstances: MeshInstance[], skipShadowCasters?: boolean): void; /** * Removes multiple mesh instances from this layer. * @param meshInstances - Array of {@link MeshInstance}. If they were added to this layer, they will be removed. * @param [skipShadowCasters] - Set it to true if you want to still cast shadows from removed mesh instances or if they never did cast shadows before. */ removeMeshInstances(meshInstances: MeshInstance[], skipShadowCasters?: boolean): void; /** * Removes all mesh instances from this layer. * @param [skipShadowCasters] - Set it to true if you want to still cast shadows from removed mesh instances or if they never did cast shadows before. */ clearMeshInstances(skipShadowCasters?: boolean): void; /** * Adds a light to this layer. * @param light - A {@link LightComponent}. */ addLight(light: LightComponent): void; /** * Removes a light from this layer. * @param light - A {@link LightComponent}. */ removeLight(light: LightComponent): void; /** * Removes all lights from this layer. */ clearLights(): void; /** * Adds an array of mesh instances to this layer, but only as shadow casters (they will not be rendered anywhere,"}, {"title": "bm25", "text": "level, so they meet the caps perfectly (again, as shown in fig.3). When you've completed, don't forget to naturalise the texture. In several places around the level you may have noticed sharp, dramatic shadows being cast upon the surrounding geometry. Unlike newer games, Q3 has a static lightmap. Shadows are not cast in real time, they are pre-calculated during the compile of the level. If you run a level in devmap mode (type /devmap mymapname) then type /r_lightmap 1 at the console, you will see the level's lightmap. The geometry, apart from non-lightmapped shaders, will be white, with the shadows, light and colour burnt into it clearly visible. /r_lightmap 0 returns the map to normal. This lightmap is rendered onto the textures you apply to your geometry, so in a way, all textures in Q3 are blended shaders. Just because Q3 doesn't have dynamic (real time) lighting (how to fake dynamic lighting is covered later in this tutorial), doesn't mean that it can not rival the newest games in terms of realism and beauty. So how can sharp shadows be cast? The key is the use and positioning of your light sources, whether that be, shader or entity in origin. Try to shine light through interestingly shaped geometry, where it can be cast on to an appropriate surface. In fig.5 the area under the central archway is shown. I have placed a light ent inside the little lamp brush model I made, so that light is cast through the lamp, falling onto the curved arch ceiling."}, {"title": "bm25", "text": "groups \u2013 by about 50%, rewriting the rules that control how these shapes blend, and increasing the intensity of many of our existing shapes.\" A new dynamic lighting and shadow mapping system was released for Source, replacing the somewhat limp existing system. It launched with the various other new Source features with Half-Life 2: Episode Two. Dynamic shadows in a map always come from the same predetermined direction. Dynamic shadows in a map always react dynamically to every light source. Models do not self-shadow or cast shadows onto other objects. Models can self-shadow and cast shadows onto the world and other objects. Dynamic shadows do not blend with lightmapped shadows and cast through all objects except world geometry. Dynamic shadows are more unified with static shadows and don't cast through models. Every object is allowed only one dynamic shadow. Any object can cast multiple dynamic soft shadows. The player's flashlight merely illuminates an area. The player's flashlight casts shadows from models and world geometry. An upgraded rendering path is in development for future Source engine games on PC, Xbox 360, and presumably PlayStation 3. For PC, the new renderer has been confirmed to support DirectX 10. Large, open natural environments with heavy foliage, traditionally a weakness for the Source engine, have been supported as of Half-Life 2: Episode Two. The updates were also made available for MOD teams to use shortly after the release. During the July 2006 Electronic Arts Summer Showcase press conference, Gabe Newell mentioned that a new soft-particle system would be introduced into"}, {"title": "bm25", "text": "soft shadows cast by area light sources remains a difficult problem. Ray tracing based approaches are subject to noise or banding, and most other accurate methods either scale poorly with scene geometry or place restrictions on geometry and/or light source size and shape. Beam tracing is one solution which has historically been considered too slow and complicated for most practical rendering applications. Beam tracing\\'s performance has been hindered by complex geometry intersection tests, and a lack of good acceleration structures with efficient algorithms to traverse them. We introduce fast new algorithms for beam tracing, specifically for beam--triangle intersection and beam--kd-tree traversal. The result is a beam tracer capable of calculating precise primary visibility and point light shadows in real-time. Moreover, beam tracing provides full area elements instead of point samples, which allows us to maintain coherence through to secondary effects and utilize the GPU for high quality antialiasing and shading with minimal extra cost. More importantly, our analysis shows that beam tracing is particularly well suited to soft shadows from area lights, and we generate essentially exact noise-free soft shadows for complex scenes in seconds rather than minutes or hours. @InProceedings{CG_0133, author = {Ryan Overbeck and Ravi Ramamoorthi and William R. Mark}, title = {{A} {R}eal-time {B}eam {T}racer with {A}pplication to {E}xact {S}oft {S}hadows}, booktitle = {Eurographics Symposium on Rendering}, month = {Jun}, year = {2007} } #### Dirty Glass: Rendering Contamination on Transparent Surfaces, Jinwei Gu, Ravi Ramamoorthi, Peter Belhumeur, Shree Nayar, EuroGraphics Symposium on Rendering, Jun, 2007. Rendering of clean transparent objects has been"}, {"title": "bm25", "text": "games use to get that? Like I said, I've been living under a rock for almost a year, so I might missed some \"hot new technologies\" :) Greetings, Rick ##### Share on other sites From what I've seen of BioShock, the shadows are shadowmaps with some nice filtering to give a softer feel along with some low-res static lightmaps for general background/ambient lighting. Quite how they manage to do all that plus their insane amount of post processing amazes me though. ##### Share on other sites Ok, but how do games like these perform normalMapping? The same way like HL2, or something else? Or would they use both, something like: - basic lightMapping / decal texture pass - normal / specular mapping pass for nearby light 1 - normal / specular mapping pass for nearby light 2 - normal / specular mapping pass for nearby light n ? I don't know if its a good idea to mix realtime lighting with pre-calculated lighting though... But the normalMapping effect is obviosly there. In HL2 you see much less of it, because its \"fake\". As far as I know you need to do realtime lighting for the normalMapping effect, since you need to know light positions/colors/ranges. http://www.sme.sk/cdata/1780250/bioshock_02_s_b.jpg Maybe its me, but I can't get these detailed shadows in a lightMap. Or would all objects (like that glass tube) use shadow maps like you mentioned? -edit It seems Bioshock is using the Unreal 3 engine: http://www.unrealtechnology.com/html/technology/ue30.shtml What exactly does this means: Ultra high quality and high performance pre-computed shadow"}, {"title": "bm25", "text": "Currently we are able to represent how light affects the objects in a 3D scene. Objects that get more light are shown brighter than objects that do not receive light. However we are still not able to cast shadows. Shadows will increase the degree of realism of a 3D scene. This is what we will do in this chapter. You can find the complete source code for this chapter here. We will use a technique named Shadow mapping which is widely used in games and does not severely affect the engine performance. Shadow mapping may seem simple to understand but it\u2019s somehow difficult to implement correctly. Or, to be more precise, it\u2019s very difficult to implement it in a general way that covers all the potential cases and produces consistent results. So let\u2019s start by thinking how we could check if a specific area (indeed a fragment) is in shadow or not. While drawing that area if we can cast rays to the light source and reach the light source without any collision then that pixel is in light. If not, the pixel is in shadow. The following picture shows the case for a point light: point PA can reach the source light, but points PB and PC can\u2019t so they are in shadow. How we can check in an efficient manner if we can cast that ray without collisions? A light source can theoretically cast infinitely ray lights, so how do we check if a ray light is blocked or not? What we can do"}, {"title": "bm25", "text": "And I\u2019d say KOTOR looks WORSE than Unreal in terms of lighting model. KOTOR level geometry doesn\u2019t seem to cast any shadows at all, not even the baked-in shadows of late 90\u2019s shooters. Lights come from nowhere in particular and pass through walls. Also, it looks like all light sources are white. (But maybe that\u2019s just on Taris.) Although characters do cast shadow maps, not just the \u201cblob shadow directly under your feet\u201d thing they did in the 90\u2019s. Still, I stand by the idea that these visuals are not cutting edge for 2003. Alexander The 1st says: There\u2019s also other games like Final Fantasy: Crystal Chronicles (Linking a YouTube LP of one level in particular for its use of the game\u2019s water effects) from the same year \u2013 and while its camera is locked top-down for the most part and scaled even further back than KOTOR, but to me it always felt better. Now I did grow up with Final Fantasy: Crystal Chronicles, so I might have a bit of nostalgia for it, but whenever I get shown KOTOR or play it, people often say \u201cWell, it was impressive for the time.\u201d; and it always makes me double take, because for me, the time it came out at it was already supremely out-classed from a technology standpoint, short of extra NPCs and animations \u2013 FF:CC\u2019s a bit of a Gauntlet clone, so it has a lot less quests to take. I was thinking of Unreal when I wrote that. I'd say in terms of texture"}, {"title": "bm25", "text": "I liked it, just wish there was more with the assistant, the looks in her eyes were priceless. Ha ha ha that's brilliant. By the way I've been meaning to ask, what lights do you use, I've been trying to create soft shadows instead of dark ones, but have had not luck. It's kind of complicated but all my scenes have 2 spot lights with shadows enabled and the shadow softness around 20-50%. But the trick is to select the walls/ceiling of the room in your scene and turn cast shadows: off. That way your spotlights don't actually have to be INSIDE the room, if that makes any sense? Yeah tried that, but then the light doesn't go through the wall, so what other setting have you changed? It doesn't? After setting cast shadows: Off, try looking THROUGH your lights. The object with shadows disabled should be invisible when viewing through your light source. It's still coming up as a solid wall unless I turn it off. Sounds like your walls might have two surfaces; one inner and one outer. If nothing else works, you can go to the surfaces tab, select a wall or ceiling and turn the opacity down to zero. Hope that helps. Thanks I'll give it a try next time, I hope you like the new set."}, {"title": "bm25", "text": "approach but using homogeneous reflectance for each object mesh. In both cases the ground-truth is just given by the object area. However, our proposal, also based on Shapenet, uses a single reflectance per mesh like in [6], but substituting environmental maps by multiple elements in the scene surrounding the object that inserts a diversified background, extends the training area to the full image, and adds realism to light effects thanks to shadows and to the physical consistency on rendered light effects. This dataset is presented here as a tunable baseline to easily generate a high diversity of ligthing conditions, that can be adapted depending on the task at hand. We explain all the details on how this dataset is built in the next section. At the bottom of table 1 we have grouped 3 recent datasets that increase the complexity of the scenes, extend the ground-truth to larger areas that can contain cast shadows, but keeping environmental maps in some other parts, which can not be included in the ground-truth and provoke some lack of coherence in the global lighting of the scene. These datasets can be used for more generic applications where a high accuracy in the estimation of light conditions is not required. Our dataset Here we propose a dataset that can be as large as needed, presents realistic light conditions and which can be easily adapted to different tasks addressed to the estimation of light components. It is based on Shapenet objects [9] without textures like in [6], although they could be added."}, {"title": "bm25", "text": "also about properly blending everything together. I rarely recommend it to anyone who's looking to branch out in style unless you have years upon years of walling experience, or have a good plethora of artist/graphic design experience. Sadly, one of the biggest problems this piece suffers from is how out of place the characters look in comparison to the background. The biggest problem itself comes from the shadowing. Or rather the significant lack of. With scenic pieces, it's so important to follow the rules of lighting and while you've got lighting on both the statues and the servants themselves, nothing in this wallpaper casts a shadow. The end result is the servants look like they've been placed on the background as oppose to blending in with this piece. To be honest, I find it surprising that with how good you did with the lighting itself that you didn't fully follow through with the shadowing. Secondly, I'd actually recommend removing the characters. Mainly because in comparison to the rest of the piece they just completely do not match. Mixing 3D with 2D is always a huge obstacle. You went through great, painstaking lengths to create this visual treat of a background, and sadly my eye is immediately drawn to how poorly the servants fit with the rest of the background. I don't mean to come across as harsh but you put so much work into this that I want to be as honest as possible. Another big problem is the statues. Generally speaking, they look like an"}, {"title": "bm25", "text": "away? Normaly in Unity or AAA games you see that shadows are getting more detailed and sharper with close dinstance. Far away you don't see them or you will have pop up effects. How do you handle this situation? Are you using the Unity distance shadow settings? Do you also have the typical pop up effect or do you have something like a cross fade effect? What I am missing seeing all your Youtube videos is a comparisation video like your Shadows Vs. the normal Unity shadows. As long as you own the old v1.9 you will get the discount forever. NGSS uses Unity default renderer, so it behaves exactly the same as Unity default shadows and is compatible with any asset in the Asset Store. The only difference is visual quality. NGSS shadows looks smoother, better and provides many options to tweak shadows for your project needs. ftejada and ceebeee like this. That looks amazing. I am just curious though, does it still basically generate 6 shadow maps like regular point lights do? No, it either blends if there's any shadowmaps or apply it's own frustum traced shadows. Its directly being called into the lighting pass, no extra blit (currently the case for ContactShadows). We also get an extra bilinear sampling in that process for free. - and soon Primitive Shadows. I'm doing more experiments with primitive shadows which can come to rescue to frustum shadows to fill in invisible parts casting shadows. ftejada, ceebeee and hopeful like this. We purchased NGSS2 two days ago"}, {"title": "bm25", "text": "motion file, which I got free from a site. Those frames are nearly motionless. I think, but don't quote me on it, that it took me 160 hours of actual rendering time to do the frames that I did. What I have to do now is find something that will compress it but keep it looking good. Some of the programs I tried actually warped the width and height ratio, which to me is just pathetic programming. Scale, don't compress, if you must butcher! Anyway, the animation is everything I had hoped it would be. There are multiple shadows. Aiko passes by three lights, each casting their own shadow. The shadows march after each other and disappear as she escapes each light's influence. Meanwhile a light outside of the tunnel she's in casts another shadow for two that can be seen at the same time as she kneels down in front of the bars and lowers her head in defeat. Tags: Aiko, animation, codecs, compression, Daz3D, frames, lights, render, shadows, video. I uploaded two images of my first fairly good-looking results of adding the streaming light to the glowing ball. I'm at a real loss to understand what it is the noise displacement is supposed to doing. This is mostly because I haven't put too much effort into trying many compositions of noise. I don't know how thick to make it, or if it should be predominantly white noise on black background or vice versa. I used four different noise images. One with tight and heavy"}, {"title": "bm25", "text": "with a single, off-the-shelf $360^\\circ$ camera that is moved around the scene. Although \\cite{rawnerf,hdrnerf} have demonstrated recovery of HDR intensties of forward facing scenes, they require multiple sets of LDR images at various exposures. Recovering HDR intensities for large indoor scenes using these methods requires an elaborate setup which is tedious and cumbersome. PanoHDR-NeRF\\xspace can render novel $360^\\circ$ views from any point within an unbounded indoor scene in high dynamic range from a casually captured scene. We show their use for the realistic relighting of virtual objects in real scenes, hopefully getting one step closer to democratizing augmented reality. \\noindent\\textbf{Limitations and future work} \\quad Blurriness of the NeRF results is a big limitation of this work, despite using cone-casting from Mip-NeRF. We believe further improvements such as \\cite{barron2022mipnerf360} can help in reconstructing sharper estimates. Another limitation is that the photographer capturing the scene ends up modifying the light field ever so slightly by casting shadows, creating reflections off of shiny surfaces, etc. Unfortunately, the intensity changes this creates are too soft for existing shadow detectors~\\cite{shadow}. Methods modeling transient changes~\\cite{nerfw} could potentially be of help. The finetuning for each camera introduces additional effort though only once per camera. Future research can improve generalization across cameras, perhaps using multiple cameras for training, or through other data augmentation techniques. Our approach learns radiance and view synthesis in two independent steps by specialized networks. Exploring how both can be done simultaneously, potentially in conjunction with geometry and material estimation~\\cite{nerd,nerfactor}, is an exciting direction for future work. Finally, recent efforts have"}], "hoverinfo": "text"}, {"x": [-0.024132413789629936, -0.02946530096232891, -0.011913809925317764, -0.11641307175159454, -0.033371247351169586, 0.022053133696317673, 0.10816296190023422, 0.037143319845199585, -0.03744710609316826, 0.0015964797930791974, -0.08970227837562561, -0.026274116709828377, 0.05030439794063568, -0.060313936322927475, -0.02331138588488102, 0.05413813143968582, -0.06753133237361908, -0.08970226347446442, -0.013498159125447273, -0.09826088696718216, -0.011913809925317764, 0.0954279825091362, -0.04431726038455963, -0.006026897579431534, -0.027861377224326134, 0.017270613461732864, -0.03850927576422691, -0.0007952689193189144, -0.11191121488809586, 0.039025966078042984, 0.07205550372600555, 0.007191901095211506, -0.08500821888446808, 0.037143319845199585, -0.02632135897874832, 0.009949477389454842, 0.008754951879382133, 0.01714414544403553, 0.016324853524565697, -0.0329727865755558, 0.049415457993745804, 0.04892382770776749, 0.02154858037829399, 0.024562546983361244, -0.018642587587237358, -0.013959906063973904, -0.034879885613918304, 0.03129680082201958, -0.04138416424393654, -0.024987859651446342, 0.05449327081441879, -0.015008842572569847, -0.02331138588488102, 0.011060456745326519, -0.10561840981245041, 0.03990001603960991], "y": [-0.10503286123275757, -0.1508299708366394, -0.13173353672027588, -0.09182938933372498, -0.11121033877134323, -0.1013065055012703, 0.008282403461635113, -7.696265129197855e-06, -0.16571234166622162, -0.14976604282855988, -0.13696056604385376, -0.16510513424873352, -0.07549264281988144, -0.040670450776815414, -0.14977002143859863, -0.06200246885418892, -0.05727241933345795, -0.13696056604385376, -0.09443031996488571, -0.11941489577293396, -0.13173353672027588, 0.03378679230809212, -0.020679732784628868, -0.06818705797195435, -0.1265949308872223, -0.01776137575507164, -0.07422322779893875, -0.07920145988464355, -0.09611698985099792, -0.10347463190555573, -0.1304420381784439, -0.11508181691169739, -0.06696952134370804, -7.696265129197855e-06, -0.10354749858379364, -0.050714749842882156, -0.05205525830388069, 0.019614828750491142, -0.022147510200738907, -0.0353902205824852, -0.013827040791511536, -0.028241179883480072, -0.021152254194021225, -0.00266489596106112, -0.04117066413164139, 0.0019720327109098434, -0.04376281052827835, -0.11806002259254456, -0.04645812511444092, -0.1667035073041916, -0.06732774525880814, -0.06924878805875778, -0.14977002143859863, -0.05627463757991791, -0.11266248673200607, -0.037417080253362656], "mode": "markers", "name": "Cluster 9", "marker": {"size": 8, "color": "rgb(188,128,189)"}, "text": ["Document 5", "Document 50", "Document 54", "Document 71", "Document 110", "Document 135", "Document 167", "Document 243", "Document 323", "Document 364", "Document 472", "Document 527", "Document 534", "Document 577", "Document 580", "Document 591", "Document 592", "Document 602", "Document 624", "Document 626", "Document 711", "Document 740", "Document 746", "Document 789", "Document 816", "Document 823", "Document 834", "Document 852", "Document 893", "Document 906", "Document 968", "Document 989", "Document 997", "Document 1025", "Document 1030", "Document 1039", "Document 1068", "Document 1086", "Document 1162", "Document 1175", "Document 1188", "Document 1196", "Document 1237", "Document 1253", "Document 1278", "Document 1283", "Document 1300", "Document 1345", "Document 1361", "Document 1370", "Document 1375", "Document 1399", "Document 1404", "Document 1468", "Document 1485", "Document 1495"], "customdata": [{"title": "rpj-stackexchange", "text": "Q: Why doesn't a lighter flame cast a shadow? Light has always been a mystery for me. When we do a simple experiment of holding a lighter in one hand and a light source behind it, it shows no shadow on the wall at all. Why is this happening? Is it because the flame is pure energy and doesn't have matter in it, or is it due to light passing through the flame and not getting reflected? If it is, why isn't the light getting reflected or retracted? A: Imagine that you have a titanium screen. It's thin, so it's difficult to see. You can use a torch to heat some areas to incandescence. These areas become easily visible. Now if we take a very bright light source and shine them at these lit areas, we won't see a shadow that gives us any information about the pattern of the light. Both the cool and hot areas interact with the bright light beam in the same way. The grid itself may be visible, but the pattern won't reflect anything about the relationship between the dark and light regions. The flame is the same thing. It contains matter (such as fuel or soot particles), but similar matter is also present outside the flame. The imaging light may be slightly attenuated by these particles, but there is no sharp division in their location that corresponds to the shape of the flame. This lack of sharp division will prevent imaging. A: There is nothing in the flame to absorb"}, {"title": "rpj-stackexchange", "text": "the creation of the shadow relies on the lack of light, and to \"see\" the shadow, light has to shine before and after, and that can only arrive at the velocity of light on the inclined plane no matter the speed of the shadow itself."}, {"title": "rpj-stackexchange", "text": "or reflect light (except a very slight amount of smoke). There is some slight refraction--but you'll only notice it when the shadow is far from the flame and the light source is very intense (a point source). When you look at the flame, you don't see through it because the flame is so bright that your eyes only notice the flame. If your eyes and brain had a wide enough dynamic range then you could see both the flame and the things behind it. A: The flame has to have matter in it, because it is producing light itself. According to EM theory the resulting field observed (at a wall, for example) is sum of the field due to primary source and the flame. Some scattering and absorption does happen in the flame and this should lead to decrease of intensity in the region shadow would be expected. If you can't see this decreased intensity, the simplest explanation is that it is too small a difference to be detected by your eye. A: Everyone's trying to be all complicated, but it's an extremely simple answer. A shadow is nothing more than the result of light being blocked by something or another. But a flame is a light source itself. If you take a lamp bulb and a flashlight, and shine the flashlight on the lit lightbulb, the lightbulb won't produce a shadow, either. A: I think the conundrum comes from the mistaken idea that every \"thing\" that is visible is a \"material\" whose solidity is proportional"}, {"title": "rpj-common-crawl-2022-05", "text": "_v_ which only faces part of it. In consequence of the conclusion [shown] in the above diagram, _t_ will be less darkened than _v_, because the base of the _t_ is part of the base of the _v_; and in the same way it follows that _p_ is less in shadow than _t_, because the base of the _p_ is part of the base of the _t_. And _c_ is the terminal point of the derived shadow and the chief beginning of the highest light. [Footnote: The diagram on Pl. IV, No. 5 belongs to this passage; but it must be noted that the text explains only the figure on the right-hand side.] FOURTH BOOK ON LIGHT AND SHADE. On the shape of the cast shadows (188-191). The form of the shadow cast by any body of uniform density can never be the same as that of the body producing it. [Footnote: Comp. the drawing on PI. XXVIII, No. 5.] No cast shadow can produce the true image of the body which casts it on a vertical plane unless the centre of the light is equally distant from all the edges of that body. If a window _a b_ admits the sunlight into a room, the sunlight will magnify the size of the window and diminish the shadow of a man in such a way as that when the man makes that dim shadow of himself, approach to that which defines the real size of the window, he will see the shadows where they come into"}, {"title": "rpj-common-crawl-2021-04", "text": "doctor on. So why do we get the reflection? He that little reflected bit of a lot over the top of the shadow. You would think that if shadows being cast over the I that you wouldn't have any reflected light them, not the lightest part of the arbol there that we've grown in. So why is that? And that has to do with the structure of the horrible. So I've got he 3/4 view. It's actually human eyeball that I've drawn here. But the principles of the sign, whether you drawing a nagel or a cat or a bear or whatever the structure, If the Aibel is the raisin, waking at the reflection in the shadow in the same place and what you've got here, I'm actually cut out 1/4 of the eyeballs. You can see a bit of a cross section, this liar here on the outside of the eyeball known as the cornea. He is transparent, but it's also highly reflective. So when you get light reflecting off the Aibel, it's it's the cornea that it's actually reflecting off. So I'm not droll. Little a round circle there, Watch sport. Way lot has actually hit the eyeball band stove. That's what we're saying. There is that block of light reflecting off the oddball. The next liar on June 8th have you here. That is the IRS, and that tends to be the college part of the arm. And when when a shadow was cast over the all the shadow. That way, see, is"}, {"title": "rpj-stackexchange", "text": "when different regions of air have different indices of refraction, the air can indeed bend light away from the forward direction and create a shadow. The most common way to get a changing index of refraction in different regions of air is to heat the air. As air heats up, it expands and its index of refraction changes. A pocket of warm air sitting next to a pocket of cold air will therefore constitute regions with different indices of refraction. The interface between the cold air and the warm air will therefore bend light and cause shadows. This effect is most visible when strong direct sunlight is coming in sideways through a window, passes through cold ambient air and then passes through the hot air above a heater. The shadow that this air system creates on the far wall consists of waving, rolling lines mimicking the turbulent motion of the hot air as it rises. The index of refraction of air also changes as the pressure and composition changes, therefore these effects can also lead to air shadows. For instance, the pressure variations caused by a plane plowing through the air can cause shadows. Also, gases being vented into ambient air creates spatial variations in the air, and therefore shadow-causing variations in the index of refraction. The ability of non-uniform air to create shadows is used to great advantage in the imaging technique known as schlieren photography. In schlieren photography, the shadows are used to accurately map out the variations in the air. A: If air"}, {"title": "rpj-book", "text": "form or other of radiant energy. Glass, for example, is transparent to light, but much less so to heat, so that it is useful as a fire-screen; and alum is transparent to light, but blocks heat completely. A solution of iodine in carbon bisulphide, on the other hand, completely blocks light, but is quite transparent to heat. It will hide a fire from you, but permit all its warmth to reach you. Metals are not only opaque to light and heat, but also to electrical energy, which passes through both iodine solution and glass almost as though they were not interposed. And so on. Now all known substances are \u201ctransparent\u201d to gravitation. You can use screens of various sorts to cut off the light or heat, or electrical influence of the sun, or the warmth of the earth from anything; you can screen things by sheets of metal from Marconi\u2019s rays, but nothing will cut off the gravitational attraction of the sun or the gravitational attraction of the earth. Yet why there should be nothing is hard to say. Cavor did not see why such a substance should not exist, and certainly I could not tell him. I had never thought of such a possibility before. He showed me by calculations on paper, which Lord Kelvin, no doubt, or Professor Lodge, or Professor Karl Pearson, or any of those great scientific people might have understood, but which simply reduced me to a hopeless muddle, that not only was such a substance possible, but that it must"}, {"title": "rpj-common-crawl-2023-06", "text": "caused the heat that started to melt the bottle. (ii) Visible-wavelength light. It would have been blinding. (iii) Ultraviolet light. Like the first two, its intensity would also have been blinding. (iv) Alpha rays. The water in this bottle\u2014if it had water\u2014would have stopped the \u03b1 rays, casting a shadow. (v) Beta rays. The \u03b2 rays would also have been stopped by liquid in this bottle, casting a shadow. (vi) Gamma rays, would have passed right through the bottle, casting no shadow. (vii) X-rays. The higher energy x-rays would have passed through the bottle; the lower energy x-rays would have been partly absorbed, possibly casting a shadow like the one in the image. (viii) Neutrons, produced by the fission of uranium and plutonium. They would have passed through the bottle without interacting with it. But that is not elin\u2019s subject. The object in this case is only glass. I have already made several errors. I should not have said that the visible-wavelength light and ultraviolet light would have been blinding, because a person near that bottle would have been instantly incinerated. I should not have said that the \u03b1 rays and \u03b2 rays cast shadows, because they are not visible to the human eye, and because any eye in the area of the bottle would have been incinerated. This bottle probably did not cast a \u201cdeath shadow,\u201d and if it did, there is no record of it. And at the time, there were no eyes to see the other kinds of shadows this bottle may have"}, {"title": "rpj-common-crawl-2022-05", "text": "the hole through which it falls. FIFTH BOOK ON LIGHT AND SHADE. Principles of reflection (203. 204). OF THE WAY IN WHICH THE SHADOWS CAST BY OBJECTS OUGHT TO BE DEFINED. If the object is the mountain here figured, and the light is at the point _a_, I say that from _b d_ and also from _c f_ there will be no light but from reflected rays. And this results from the fact that rays of light can only act in straight lines; and the same is the case with the secondary or reflected rays. The edges of the derived shadow are defined by the hues of the illuminated objects surrounding the luminous body which produces the shadow. On reverberation. OF REVERBERATION. Reverberation is caused by bodies of a bright nature with a flat and semi opaque surface which, when the light strikes upon them, throw it back again, like the rebound of a ball, to the former object. WHERE THERE CAN BE NO REFLECTED LIGHTS. All dense bodies have their surfaces occupied by various degrees of light and shade. The lights are of two kinds, one called original, the other borrowed. Original light is that which is inherent in the flame of fire or the light of the sun or of the atmosphere. Borrowed light will be reflected light; but to return to the promised definition: I say that this luminous reverberation is not produced by those portions of a body which are turned towards darkened objects, such as shaded spots, fields with grass of"}, {"title": "rpj-common-crawl-2021-04", "text": "reflecting off objects, and travelled in straight lines. Modern science proves this, and gives us a better understanding of al-Haytham's theories. Basically, we can see an object when light reflects off it. Light travels in straight lines, and shadows are caused by an object blocking the rays of light, making them cut-outs on a surface with light. Imagine a black wall. If you shine a torch on the wall, it will make a circle of yellow light on the wall. However, if you put an object between the light source (the torch) and the receiving object (the wall), this will make the light shine on the object in-between, and since light travels in straight lines, it will block the rays that reach the object between from reaching the wall. This creates a black cut-out among the yellow light. Rays of light alone cannot normally be seen. Try this. shine a torch onto a wall, and you can only see faint light in the path of it, but there is a circle of light on the wall. The visible ray of light is because the dust and small particles in the air are reflecting the light, making it visible. However very powerful beams can be seen, creating a beautiful display. So how are they attempting to achieve this great feat of invisibility? They intend to bend light around an object. Logically, if the light never reflects off the object, it will never be seen. but since light travels straight and cannot turn without reflecting, scientists think that"}, {"title": "rpj-common-crawl-2019-30", "text": "light are projected in straight lines, when they meet with an opaque body through which they are unable to pass, they are stopped short in their course; for they cannot move in a curve line round the body. _Caroline._ No, certainly; for it would require some other force besides that of projection, to produce motion in a curve line. _Mrs. B._ The interruption of the rays of light, by the opaque body, produces, therefore, darkness on the opposite side of it: and if this darkness fall upon a wall, a sheet of paper, or any object whatever, it forms a shadow. _Emily._ A shadow, then, is nothing more than darkness produced by the intervention of an opaque body, which prevents the rays of light from reaching an object behind it. _Caroline._ Why then are shadows of different degrees of darkness; for I should have supposed, from your definition of a shadow, that it would have been perfectly black? _Mrs. B._ It frequently happens that a shadow is produced by an opaque body, interrupting the course of the rays from one luminous body, while light from another, reaches the space where the shadow is formed; in which case, the shadow is proportionally fainter. This happens when the opaque body is lighted by two candles: if you extinguish one of them, the shadow will be both deeper, and more distinct. _Caroline._ But yet it will not be perfectly dark. _Mrs. B._ Because it is still slightly illuminated by light reflected from the walls of the room, and other"}, {"title": "rpj-stackexchange", "text": "particles are dense enough and or clustered together then yes. Shadows are not created so much as cast, kind of like looking in a mirror. The reflection is exactly that a reflection, if light can't penetrate an object it therefor casts around it. To the observer it looks like a shadow or a reflection. Simplified version: When does this happen with air? When the particles in air have a greater concentration than light particles."}, {"title": "rpj-common-crawl-2023-06", "text": "traveled outward from your flashlight, bounced off the bear, and traveled back to your retina. What you \u201csaw\u201d was a reflection of the bear. This is seeing by illumination. You use it all the time. It\u2019s how you see your coffee mug on the desk. It\u2019s how you see a tree during the day or a highway exit at night. Without some external light source, be it a desk lamp, the sun, or your headlights, you can\u2019t see any of these things. So, how would this work if you wanted to see through a wall? First you would need to send light through the wall. Unless the wall is paper thin (and I mean thin paper), that\u2019s not going to work. Even if some light did pass through, it would have to reflect off the person on the other side and pass through again for you to see anything. The WIRED Guide to Star Wars That\u2019s just not going to work for your typical wall; in the Mandalorian scene on the planet Tatooine, the wall looks like it\u2019s made of thick adobe. Forget that. Of course there are materials that allow light to pass through\u2014we call these windows. If the Imperial remnants are hiding behind a window, they deserve what\u2019s coming to them. But wait! We\u2019re thinking in terms of visible light, which is only one kind of electromagnetic radiation. In general, electromagnetic waves are produced when an oscillating electric field creates an oscillating magnetic field, which creates an oscillating electric field. These waves travel at"}, {"title": "rpj-common-crawl-2022-05", "text": "instead of the periscope's mirrors, which reflect a sharp image, there's a wall that scatters light, which usually produces a diffuse glow. Ideally, you would take that scattered light, figure out where each beam came from, and reconstruct the reflected image. But like Humpty Dumpty, it's nearly impossible to put such a scattered image back together again. One trick, it turns out, is to examine the shadows the hidden object might cast. \"We see shadows around us all the time,\" Goyal said. \"But we don't think about how we can extract information from those shadows.\" Goyal, and engineers Charles Saunders and John Murray-Bruce, also at Boston University, used an LCD screen to display several illuminated cartoon images. They then placed a small rectangular sheet in front of the screen, casting a shadow onto a matte white wall. Off to the side was a digital camera, which couldn't see the LCD screen but could take pictures of the shadow on the wall. \"The coolest thing is a wall really can be used as a mirror,\" Goyal said. What's crucial is that the shadow isn't a complete shadow. It's a partial shadow, called a penumbra, in which some of the light from the screen reaches the wall while the rest is blocked by the rectangle. Every spot on the penumbra contains light that originated from a different part of the image. For example, one of the images in the experiment was of a cartoon face wearing a baseball cap. On one part of the penumbra, the light may"}, {"title": "rpj-common-crawl-2022-05", "text": "parts. MEMORANDUM OF THINGS I REQUIRE TO HAVE GRANTED [AS AXIOMS] IN MY EXPLANATION OF PERSPECTIVE. I ask to have this much granted me\u2013to assert that every ray passing through air of equal density throughout, travels in a straight line from its cause to the object or place it falls upon. FIRST BOOK ON LIGHT AND SHADE. On the nature of light (130. 131). The reason by which we know that a light radiates from a single centre is this: We plainly see that a large light is often much broader than some small object which nevertheless\u2013and although the rays [of the large light] are much more than twice the extent [of the small body]\u2013always has its shadow cast on the nearest surface very visibly. Let _c f_ be a broad light and _n_ be the object in front of it, casting a shadow on the plane, and let _a b_ be the plane. It is clear that it is not the broad light that will cast the shadow _n_ on the plane, but that the light has within it a centre is shown by this experiment. The shadow falls on the plane as is shown at _m o t r_. [Footnote 13: In the original MS. no explanatory text is placed after this title-line; but a space is left for it and the text beginning at line 15 comes next.] Why, to two [eyes] or in front of two eyes do 3 objects appear as two? Why, when you estimate the direction of an object"}, {"title": "rpj-common-crawl-2021-04", "text": "This is more obvious when you hold a flashlight to your hand in the dark. Where you can see the light shining through, this is an example of scattered light. An illustration of how the device \u201csees\u201d around corners. Katz explains: \u201cLight is a sort of radiation. The general public doesn\u2019t see it that way; they see it as just regular light. We used regular light from a halogen lamp to be able to see through most of the materials that we encounter today. Most of them are not transparent when we look at them, like our skin or an eggshell. \u201cThe problem is that they are absorbing light, and then the light is scattered. Just like when you look at fog. Microscopically, fog is transparent but the movement [of the fog] prevents you from seeing through it,\u201d he explains. Until recently scientists did not fully understand the way the light is absorbed by these objects and then scattered away. But new technologies allow physicists to amplify what they are seeing to find patterns. They reasoned that if light is scattered in wave patterns when it passes through \u201cturbid\u201d materials (which absorb light but let light pass through, like frosted glass), it should scatter according to the material\u2019s shape and size. Applied in reverse, one could image the object\u2019s appearance by re-creating the original pattern. This is the basis of a new field called \u201cwave front shaping.\u201d \u201cOnce we\u2019ve learned the patterns \u2014 the way a material or object scatters the light \u2014 we can apply"}, {"title": "rpj-common-crawl-2022-05", "text": "to a certain distance, the wall _a d_ will grow lighter for the reasons here given, until the darkness of the room overpowers the light from the window. When the light of the atmosphere is restricted [by an opening] and illuminates bodies which cast shadows, these bodies being equally distant from the centre of the window, that which is most obliquely placed will cast the largest shadow beyond it. These bodies standing apart in a room lighted by a single window will have derivative shadows more or less short according as they are more or less opposite to the window. Among the shadows cast by bodies of equal mass but at unequal distances from the opening by which they are illuminated, that shadow will be the longest of the body which is least in the light. And in proportion as one body is better illuminated than another its shadow will be shorter than another. The proportion _n m_ and _e v k_ bear to _r t_ and _v x_ corresponds with that of the shadow _x_ to 4 and _y_. The reason why those bodies which are placed most in front of the middle of the window throw shorter shadows than those obliquely situated is:\u2013That the window appears in its proper form and to the obliquely placed ones it appears foreshortened; to those in the middle, the window shows its full size, to the oblique ones it appears smaller; the one in the middle faces the whole hemisphere that is _e f_ and those on the"}, {"title": "rpj-common-crawl-2019-30", "text": "light are projected in straight lines, when they meet with an opaque body through which they are unable to pass, they are stopped short in their course; for they cannot move in a curve line round the body. _Caroline._ No, certainly; for it would require some other force besides that of projection, to produce motion in a curve line. _Mrs. B._ The interruption of the rays of light, by the opaque body, produces, therefore, darkness on the opposite side of it: and if this darkness fall upon a wall, a sheet of paper, or any object whatever, it forms a shadow. _Emily._ A shadow, then, is nothing more than darkness produced by the intervention of an opaque body, which prevents the rays of light from reaching an object behind it. _Caroline._ Why then are shadows of different degrees of darkness; for I should have supposed, from your definition of a shadow, that it would have been perfectly black? _Mrs. B._ It frequently happens that a shadow is produced by an opaque body, interrupting the course of the rays from one luminous body, while light from another, reaches the space where the shadow is formed; in which case, the shadow is proportionally fainter. This happens when the opaque body is lighted by two candles: if you extinguish one of them, the shadow will be both deeper, and more distinct. _Caroline._ But yet it will not be perfectly dark. _Mrs. B._ Because it is still slightly illuminated by light reflected from the walls of the room, and other"}, {"title": "rpj-common-crawl-2020-05", "text": "light strikes the retina, so blue light must be absent to get the sensation of orange. Blue light is mostly absorbed by orange things. 6. What light would you get on an overhead projector screen if you overlapped red and blue filters on it? The red filter would block the blue and green light. The blue would block the red and green light so no light would get through. The screen would be black if the filters were perfect. 7. What are the three primary colours of light? Red, blue and green are the primary colours of light. 8. Describe the ways in which you might show children that light travels in straight lines. Light from a projector in a darkened room. Sunlight shines through clouds or tree tops. Shadows often have sharp edges. Laser beam seen as a thin straight line. Look through a thin straight tube. A light source can be viewed through holes made in three cards. 9. Draw a picture to show the kind of shadow formed by a person standing between a neon striplight and a wall. How would this shadow be different if the light was a small point source like the Sun? The neon striplight will give a fuzzy-edged shadow (with a penumbra). The point source (such as the Sun) will give a sharp-edged shadow. 10. Explain why a blue ball looks blue. The ball will absorb most of the red and green light from the white light falling on it and reflect or scatter most of the blue"}, {"title": "rpj-common-crawl-2023-06", "text": "the solar rays to pass; the effect of the shadow of the man cast by this contact will be exactly that figured above. [Footnote: It is scarcely possible to render the meaning of this sentence with strict accuracy; mainly because the grammatical construction is defective in the most important part\u2013line 4. In the very slight original sketch the shadow touches the upper arch of the window and the correction, here given is perhaps not justified.] A shadow is never seen as of uniform depth on the surface which intercepts it unless every portion of that surface is equidistant from the luminous body. This is proved by the 7th which says:\u2013The shadow will appear lighter or stronger as it is surrounded by a darker or a lighter background. And by the 8th of this:\u2013The background will be in parts darker or lighter, in proportion as it is farther from or nearer to the luminous body. And:\u2013Of various spots equally distant from the luminous body those will always be in the highest light on which the rays fall at the smallest angles: The outline of the shadow as it falls on inequalities in the surface will be seen with all the contours similar to those of the body that casts it, if the eye is placed just where the centre of the light was. The shadow will look darkest where it is farthest from the body that casts it. The shadow _c d_, cast by the body in shadow _a b_ which is equally distant in all parts,"}, {"title": "rpj-stackexchange", "text": "or reflect light (except a very slight amount of smoke). There is some slight refraction--but you'll only notice it when the shadow is far from the flame and the light source is very intense (a point source). When you look at the flame, you don't see through it because the flame is so bright that your eyes only notice the flame. If your eyes and brain had a wide enough dynamic range then you could see both the flame and the things behind it. A: The flame has to have matter in it, because it is producing light itself. According to EM theory the resulting field observed (at a wall, for example) is sum of the field due to primary source and the flame. Some scattering and absorption does happen in the flame and this should lead to decrease of intensity in the region shadow would be expected. If you can't see this decreased intensity, the simplest explanation is that it is too small a difference to be detected by your eye. A: Everyone's trying to be all complicated, but it's an extremely simple answer. A shadow is nothing more than the result of light being blocked by something or another. But a flame is a light source itself. If you take a lamp bulb and a flashlight, and shine the flashlight on the lit lightbulb, the lightbulb won't produce a shadow, either. A: I think the conundrum comes from the mistaken idea that every \"thing\" that is visible is a \"material\" whose solidity is proportional"}, {"title": "rpj-book", "text": "could not bring proof of their separate existence to his senses. That portion of a pane of glass or other substance, even steel or adamant, which should cross its track now would simply melt away, the portion excised and carried out of that pathway neither showing itself as scintillations, nor as fragments of matter. The solid would instantly liquefy, and would spread itself as a thin film over the surface of each ball of that white, hot mass of fleeing metal, now to all essential conditions as uniform as a bar of iron. Madly increase the velocity to millions upon millions of miles per second, and the heat will disappear gradually as did the sound, while the bright light will pass backward successively through the primary shades of color that are now known to man, beginning with violet, and ending with red, and as the red fades away the train of bullets will disappear to the sense of man. Neither light nor sound now accompanies the volley, neither the human eye nor the human ear can perceive its presence. Drop a pane of glass or any other object edgewise through it, and it gives to the sense of man no evidence; the molecules of the glass separate from in front to close in from behind, and the moving train passes through it as freely as light, leaving the surface of the glass unaffected.\" [10] A scientific critic seems to think that the shrill cry would cease instantly and not gradually. However, science has been at fault"}, {"title": "rpj-common-crawl-2020-05", "text": "The New Science of Seeing Around Corners Computer vision researchers have uncovered a world of visual signals hiding in our midst, including subtle motions that betray what\u2019s being said and faint images of what\u2019s around a corner. A shadow\u2019s edge can reveal hidden objects. Rune Fisker for Quanta Magazine algorithmscomputer scienceopticsphysicspodcast While vacationing on the coast of Spain in 2012, the computer vision scientist Antonio Torralba noticed stray shadows on the wall of his hotel room that didn\u2019t seem to have been cast by anything. Torralba eventually realized that the discolored patches of wall weren\u2019t shadows at all, but rather a faint, upside-down image of the patio outside his window. The window was acting as a pinhole camera \u2014 the simplest kind of camera, in which light rays pass through a small opening and form an inverted image on the other side. The resulting image was barely perceptible on the light-drenched wall. But it struck Torralba that the world is suffused with visual information that our eyes fail to see. \u201cThese images are hidden to us,\u201d he said, \u201cbut they are all around us, all the time.\u201d The experience alerted him and his colleague, Bill Freeman, both professors at the Massachusetts Institute of Technology, to the ubiquity of \u201caccidental cameras,\u201d as they call them: windows, corners, houseplants and other common objects that create subtle images of their surroundings. These images, as much as 1,000 times dimmer than everything else, are typically invisible to the naked eye. \u201cWe figured out ways to pull out those images and"}, {"title": "rpj-common-crawl-2022-05", "text": "The intersection of the rays (76-82). The inversion of the images. All the images of objects which pass through a window [glass pane] from the free outer air to the air confined within walls, are seen on the opposite side; and an object which moves in the outer air from east to west will seem in its shadow, on the wall which is lighted by this confined air, to have an opposite motion. THE PRINCIPLE ON WHICH THE IMAGES OF BODIES PASS IN BETWEEN THE MARGINS OF THE OPENINGS BY WHICH THEY ENTER. What difference is there in the way in which images pass through narrow openings and through large openings, or in those which pass by the sides of shaded bodies? By moving the edges of the opening through which the images are admitted, the images of immovable objects are made to move. And this happens, as is shown in the 9th which demonstrates: [Footnote 11: _per la 9a che dicie_. When Leonardo refers thus to a number it serves to indicate marginal diagrams; this can in some instances be distinctly proved. The ninth sketch on the page W. L. 145 b corresponds to the middle sketch of the three reproduced.] the images of any object are all everywhere, and all in each part of the surrounding air. It follows that if one of the edges of the hole by which the images are admitted to a dark chamber is moved it cuts off those rays of the image that were in contact with it"}, {"title": "rpj-common-crawl-2023-06", "text": "number of lines which mingle or join those reaching it which come to it from the object looked at. And it is only the central and sensible line that can discern and discriminate colours and objects; all the others are false and illusory. And if you place 2 objects at half an arm\u2019s length apart if the nearer of the two is close to the eye its form will remain far more confused than that of the second; the reason is that the first is overcome by a greater number of false lines than the second and so is rendered vague. Light acts in the same manner, for in the effects of its lines (=rays), and particularly in perspective, it much resembles the eye; and its central rays are what cast the true shadow. When the object in front of it is too quickly overcome with dim rays it will cast a broad and disproportionate shadow, ill defined; but when the object which is to cast the shadow and cuts off the rays near to the place where the shadow falls, then the shadow is distinct; and the more so in proportion as the light is far off, because at a long distance the central ray is less overcome by false rays; because the lines from the eye and the solar and other luminous rays passing through the atmosphere are obliged to travel in straight lines. Unless they are deflected by a denser or rarer air, when they will be bent at some point, but so"}, {"title": "rpj-book", "text": "important as the glasses that are employed, and the most experienced microscopists have never done learning in this matter. Most microscopes are furnished with two mirrors beneath the stage, one plane and one concave. The first will throw a few parallel rays through any transparent object properly placed, and the latter causes a number of rays to converge, producing a more powerful effect. The first is usually used in daylight, when the instrument is near a window (one with a north aspect, out of direct sunlight, being the best); and the second is often useful when the source of illumination is a candle or a lamp. By varying the angle of the mirror the light is thrown through the object more or less obliquely, and its quantity should never be sufficient to pain the eye. Few objects are seen to the best advantage with a _large_ pencil of perfectly direct light, and the beginner should practise till the amount of inclination is obtained which produces the best effect. It is advisable that the hole in the stage of the microscope should be large--at least an inch and a half each way--so that the entrance of oblique rays is not obstructed, and it is desirable that the mirror, in addition to sliding up and down, should have an arm by which it can be thrown completely out of the perpendicular plane of the body of the instrument. This enables such oblique rays to be employed as to give a dark field, all the light which reaches the"}, {"title": "rpj-c4", "text": "bright background. Light streaming through the pin-hole into the eye casts an erect shadow of the pin-head upon the retina, and this erect image is projected into space and inverted in the process by the effect of the lens. The latter is not operative during the casting of the shadow because the pin-head is too close to the lens, as already stated. It is further proved to be outward projection of the retinal image (the shadow) because by multiplying the number of pin-holes (the light-sources) there are also a corresponding number of shadows. The foregoing not only illustrates the inversion of the image but again emphasizes the fact that we do not see retinal images. Even the \"stars\" which we see on pressing the eye-lid or on receiving a blow on the eye are projected into space. The \"motes\" which we see in the visual field while gazing at the sky are defects in the eye-media, and these images are projected into space. We do not see anything in the eye. The retinal image impresses the retina in some definite manner and the impression is carried to the brain by the optic nerve. The intellect then refers or projects this impression outward into space as an external image. The latter would be a facsimile of the physical object if there were no optical illusions but the fact that there are optical illusions indicates that errors are introduced somewhere along the path from and to the object. It is interesting to speculate whether the first visual impression"}, {"title": "rpj-common-crawl-2019-30", "text": "a small aperture, and cross each other, as they do at the orifice of a camera obscura, or the pupil of the eye. When you view yourself in a mirror, the rays from your eyes fall perpendicularly upon it, and are reflected in the same line; the image is, therefore, described behind the glass, and is situated in the same manner as the object before it. _Emily._ Yes, I see that it is; but the looking-glass is not nearly so tall as I am, how is it, therefore, that I can see the whole of my figure in it? _Mrs. B._ It is not necessary that the mirror should be more than half your height, in order that you may see the whole of your person in it, (fig. 3.) The ray of light A B, from your eye, which falls perpendicularly on the mirror B D, will be reflected back, in the same line; but the ray from your feet, will fall obliquely on the mirror, for it must ascend in order to reach it; it will, therefore, be reflected in the line A D: and since we view objects in the direction of the reflected rays, which reach the eye, and since the image appears at the same distance, behind the mirror, that the object is before it, we must continue the line A D to E, and the line C D to F, at the termination of which, the image will be represented. [Illustration: PLATE XVIII.] _Emily._ Then I do not understand why"}, {"title": "rpj-common-crawl-2022-05", "text": "contact, dim and confused from the strength of the light, shutting off and not allowing the solar rays to pass; the effect of the shadow of the man cast by this contact will be exactly that figured above. [Footnote: It is scarcely possible to render the meaning of this sentence with strict accuracy; mainly because the grammatical construction is defective in the most important part\u2013line 4. In the very slight original sketch the shadow touches the upper arch of the window and the correction, here given is perhaps not justified.] A shadow is never seen as of uniform depth on the surface which intercepts it unless every portion of that surface is equidistant from the luminous body. This is proved by the 7th which says:\u2013The shadow will appear lighter or stronger as it is surrounded by a darker or a lighter background. And by the 8th of this:\u2013The background will be in parts darker or lighter, in proportion as it is farther from or nearer to the luminous body. And:\u2013Of various spots equally distant from the luminous body those will always be in the highest light on which the rays fall at the smallest angles: The outline of the shadow as it falls on inequalities in the surface will be seen with all the contours similar to those of the body that casts it, if the eye is placed just where the centre of the light was. The shadow will look darkest where it is farthest from the body that casts it. The shadow _c d_,"}, {"title": "rpj-stackexchange", "text": "point on the paper is coming only from one point on the pen. A torch will send directed light, thus light from one point on the torch only hits one part of the paper. Since the light is a lot brighter than the light coming from the environment, the light that hits your eye, will come from only the one point on the torch, thus recreating the round circle of the torch. Here are som drawings to illustrate. Blue are the rays that hits the eye, while red misses the eye. Pen to paper: (light from one point is illuminating all parts of the paper) Pen to mirror: (light from one point is reflected in only one direction for each incidence angle) Pen through lens: (the lens bends the incoming light so that for a given distance ratio between the pen and paper, each point illuminates only one point on the paper) Torch: (directional light illuminates only one point on the paper for each point on the torch) A: There are several things going on that make a mirror and paper reflect light differently. First, if you examine the surface of the paper under a microscope you will see a very rough surface. This roughness has the effect of scattering the light. Imagine trying to play ping pong on a table covered with rocks of all sizes. The ping pong ball would bounce unpredictably. The mirror, in contrast, is very smooth to light and so light can bounce off in a predictable direction. Another difference is"}, {"title": "rpj-common-crawl-2020-05", "text": "the same way! Furthermore, even many high-power telescopes see distant stars as pointy objects. This strange phenomenon is due to the inherent nature of light. Light behaves in a way that establishes itself as both a wave and a particle. Sometimes, it behaves like a particle (known as a photon) and is thus able to travel in straight paths, but at other times, it travels like a wave. Although it doesn\u2019t make much sense to us intuitively, there is conclusive evidence for light\u2019s duality, named the wave-particle duality of light by scientists. Notice how the interference pattern that\u2019s formed on the screen (on the left) when light is passed through a narrow slit Thanks to these wave-like characteristics, when light emitted from a distant object reaches another object or opening, its waves are bounced or bent slightly around the object and interfere with each other to produce various patterns on whatever they ultimately fall on. For example, light passing through a slab with a tiny slit leaves its imprint in the form of a perpendicular series of dashes. This is the reason why any light source appears to sparkle with pointed corners when you squint your eyes. Notice how the light from a street lamp shines like a star (Photo Credit : Pixabay.com) Suture Lines in Eyes Now we know that since light acts like a wave, it gets diffracted around openings and objects to create imprints. However, this only covers one part of the explanation. The other part has to do with our eyes, or"}, {"title": "rpj-common-crawl-2021-04", "text": "or reflect light into the eye explain that we see things because light travels from light sources to our eyes or from light sources to objects and then to our eyes use the idea that light travels in straight lines to explain why shadows have the same shape as the objects that cast them associate the brightness of a lamp or the volume of a buzzer with the number and voltage of cells used in the circuit compare and give reasons for variations in how components function, including the brightness of bulbs, the loudness of buzzers and the on/off position of switches use recognised symbols when representing a simple circuit in a diagram National Curriculum Science Programmes of Study Coverage of science"}, {"title": "rpj-common-crawl-2023-06", "text": "that most 10th-grade students, before formal instruction, drew light rays that rarely extended as far as the shadow. The authors argued that this indicated that students failed to understand the relationship between light propagation and shadow formation. It is likely that children will more easily come to understand that a shadow is not an entity itself, if teachers, already in preschool, associate shadows with the absence of light rather than the presence of some definite thing. It might help to provide explanations such as this: \u201cYou see all around the area of shadow there is light. In the shadow area there is no light (or less light in the case of several light sources)\u201d. But since, as we mentioned above, these ideas about shadows may derive from the language used to describe them (Eshach, 2003), teachers can take advantage of language in playful ways to challenge children\u2019s ideas: besides phrases such as \u201ca shadow follows me\u201d they can say, for example, \u201ca spot of \u2018no-light\u2019 follows me.\u201d Archimedes\u2019 Law of Buoyancy The usual answer as to why certain objects float is that they are lighter than the water. Most of students do not grasp that it is the relationship between the relative densities of the object and the water that determines whether or not the object will float, and not their relative weights. Density is considered a difficult concept for children. Yet, teachers can demonstrate the idea of density for kindergarten children, in such a way as: the teacher fills a container with water and asks"}, {"title": "bm25", "text": "caused the heat that started to melt the bottle. (ii) Visible-wavelength light. It would have been blinding. (iii) Ultraviolet light. Like the first two, its intensity would also have been blinding. (iv) Alpha rays. The water in this bottle\u2014if it had water\u2014would have stopped the \u03b1 rays, casting a shadow. (v) Beta rays. The \u03b2 rays would also have been stopped by liquid in this bottle, casting a shadow. (vi) Gamma rays, would have passed right through the bottle, casting no shadow. (vii) X-rays. The higher energy x-rays would have passed through the bottle; the lower energy x-rays would have been partly absorbed, possibly casting a shadow like the one in the image. (viii) Neutrons, produced by the fission of uranium and plutonium. They would have passed through the bottle without interacting with it. But that is not elin\u2019s subject. The object in this case is only glass. I have already made several errors. I should not have said that the visible-wavelength light and ultraviolet light would have been blinding, because a person near that bottle would have been instantly incinerated. I should not have said that the \u03b1 rays and \u03b2 rays cast shadows, because they are not visible to the human eye, and because any eye in the area of the bottle would have been incinerated. This bottle probably did not cast a \u201cdeath shadow,\u201d and if it did, there is no record of it. And at the time, there were no eyes to see the other kinds of shadows this bottle may have"}, {"title": "bm25", "text": "Q: Exceeding the speed of light by means of a shadow, will we ever be able to transmit information faster than light? I bumped into this: Can a shadow move faster than the speed of light? while trying to see if I could find out anything about what I'd been thinking for 2 years now. Bear with me here, cause I'm only gonna copy-paste what I'd written at another location where no one bothered to answer because... Well... I guess no one's a science amateur there. So here it goes: There are so many who, having answered this question, they either started to unsuccessfully compare light with shadow, or for ex. saying that shadow is not information. For starters, shadow does indeed happen to be information aswell, if you're willing to take into account that one may use light to transmit the info through Morse code. So, in other words, it is the second part of the light-shadow information transmitting method, if you will. And then, to answer the actual question, one might still be able to really speed up the information through this light-shadow process. I'm using \u201cmight\u201d, not \u201cmay\u201d. And that's because, while at this time we don't have the means to do what I'm about to explain, and not being doable at this point in history shouldn't be considered a disproof, still there might come a time when we'll start thinking about those means. And just think about holo-images, just to give one example. A whole lotta phrases there coming from me! But"}, {"title": "bm25", "text": "(e.g. a phonon flux in liquid helium) is not a new idea (NAL was first alerted to this fact by A F G Wyatt, FRS, circa 1973), but the foregoing analysis shows that this is formally true also for a shadow detector, with the marginal 'depth of shadow' being the salient parameter. Moreover, equation (3) shows that whereas the height h of the PD sensor enters directly into the calculation of raw responsivity to shadow displacement, its lateral width w does not. Clearly, for the highest displacement responsivity, and given a certain semiconductor technology (e.g. silicon PDs, with r = 0.6 A W \u22121 , say), the height h of, as well as the irradiance I 0 at, the PD should be maximized. Furthermore, equation (3) shows that the difference in shadow depth at the element's edges, and so the sensitivity to displacement, can be maximized by arranging for the shadow to fall over only one edge of the detector-and there along the line of greatest shadow depth. In the case of an illuminated silica glass fibre, the shadow it casts arises from strong refraction (as through a cylindrical lens), and a small amount of reflection, at its cylindrical surface. A well-collimated illuminating beam, from a source of small angular divergence, decreases the otherwise unavoidable region of penumbra behind such a fibre: the incident light cannot pass around the fibre into the region of shadow behind it. Thus, a well-collimated source increases the shadow's depth in the plane of the detector. From equation (3), this improves"}, {"title": "bm25", "text": "hand. Directly above you a small black cross is painted on the glass roof. The carriage is parked immediately under a tape measure stretching along the track (ie with the tape almost brushing against the upper surface of the glass). You are directly under the point '1' on the tape measure, so that if you flash the laser vertically upwards at the black cross, the shadow of the cross appears at the point '1' on the tape measure. Now suppose you repeat the process but with the train moving: just as you pass under the point '1' on the tape measure, you again flash the laser vertically upwards. By the time the light from the laser has reached the ceiling, the carriage will have moved down the track somewhat, so instead of the shadow of the cross hitting the point '1' on the tape, it hits a point further down the length of the tape. If you repeat the experiment at successively higher speeds, each time flashing the laser vertically upwards on the carriage as you pass under the point '1' on the tape, the shadow will appear progressively further down the tape. In the frame of the platform, the light takes an angled path, staring directly below the point '1' on the tape and ending at some point further down the tape. In the frame of the carriage, the end point of the trajectory, ie the point upon the tape where the light impinges upon it, is also the position of the black cross, so"}, {"title": "bm25", "text": "determine the depth of cut for a given number of laser passes. All lines were micromachined through the IR microscope lens with the green laser at 2.7 mJ with an X-Y aperture area of 50 \u00b5m 2 . The number of laser passes was varied from 5 to 40 passes. In this mode of operation, the laser beam is continuously scanned across the surface of the material in the desired pattern. The process flow for the shadow mask fabrication and subsequent patterning of organic and inorganic layers is depicted in Figure 6. Patterning of Organic and Inorganic Layers In order to access the accuracy of low power, multimodal laser micromachining, material patterning through multimodal laser micromachined shadow masks was performed. Metal Patterning The Kapton \u00ae , SS, aluminum, and PET multimodal laser micromachined shadow masks were affixed onto glass microscope slides (Fisher Scientific, Hampton, NH) with Kapton \u00ae tape (DuPont, Wilmington, DE, USA). Titanium-Gold (Ted Pella, Redding, CA, USA) electrodes, traces, and contact pads of 5nm-30 nm thickness respectively were subsequently deposited (Deposition rate: 1 \u00c5/s at 1 \u00d7 10 \u22126 Torr) through these shadow masks onto glass microscope slides via electron beam evaporation (Thermionics, Port Townsend, WA, USA). After metal patterning, the shadow masks were removed by carefully detaching the Kapton \u00ae tape from the glass slide with tweezers. Transmitted light microscopy (TS2 Inverted Microscope, Nikon, Tokyo, Japan) was used to image the patterned metal structures. ImageJ (NIH, Bethesda, MD) was used for further optical analysis of the captured images and measurement of the electrode"}, {"title": "bm25", "text": "The inner most bright blue ring in Supplementary Fig. \\ref{sf:exp-caustic-image} corresponds to the blue caustic pattern in Supplementary Fig. \\ref{sf:ray-tracing}. The ring-like shape of the caustic patterns is a consequence of edge and three dimensional effects which cannot be described by our two dimensional model. Supplementary Fig. \\ref{sf:four-patterns} shows representative observations of the dark shadow cast by a sulcus in another sample during a loading cycle. In frame (1), the cylindrical curvature of the bent PDMS strip broadened the laser sheet passing through the sample; the unrefracted sheet can be seen as the bright band at the top of each frame, and the dark gap immediately below this band is an artifact of the sample's edge. When the system achieved the critical strain for sulcification, a system spanning sulcus appeared and cast the almond shape shadow seen in frame (2). The shape of the shadow reflects that the sulcus tapered at its upper and lower extrema. Frame (3) shows the shadow pattern shrank in width and depth during unloading and suggests that the sulcus retracted along its length while simultaneously becoming more shallow. Frame (4) shows the initial configuration for the second compression cycle. The clearly visible dark line running down the center of the image suggests that self-adhesion may have prevented the sulcus from completely unfolding; this line is also partially visible in frame (3). We observed that the line gradually filled in over a period hours to days. When the line was present in the refracted light pattern, we also saw a faint line"}, {"title": "bm25", "text": "and somewhat lesser the green and blue micro-filters). Uses of full spectrum photography are for fine art photography, geology, forensics and law enforcement. ### \"Light field photography\" Digital methods of image capture and display processing have enabled the new technology of \"light field photography\" (also known as synthetic aperture photography). This process allows focusing at various depths of field to be selected after the photograph has been captured.[32] As explained by Michael Faraday in 1846, the \"light field\" is understood as 5-dimensional, with each point in 3-d space having attributes of two more angles that define the direction of each ray passing through that point. These additional vector attributes can be captured optically through the use of microlenses at each pixel-point within the 2-dimensional image sensor. Every pixel of the final image is actually a selection from each sub-array located under each microlens, as identified by a post-image capture focus algorithm. ### Other image forming techniques Besides the camera, other methods of forming images with light are available. For instance, a photocopy or xerography machine forms permanent images but uses the transfer of static electrical charges rather than photographic film, hence the term electrophotography. Photograms are images produced by the shadows of objects cast on the photographic paper, without the use of a camera. Objects can also be placed directly on the glass of an image scanner to produce digital pictures. ## Future of film photography Digital point-and-shoot cameras have become widespread consumer products, outselling film cameras, and including new features such as video and audio"}, {"title": "bm25", "text": "electrons, a technique called LEED, and by reflecting electrons off surfaces, a technique called RHEED. Historical Background The historical background to electron diffraction involves several interweaving threads which sometimes merged, but also diverged. The first is the general background to electrons in vacuum and the technological developments that led to cathode-ray tubes as well as vacuum tubes that dominated early television and electronics; the second is how these led to the development of electron microscopes; the last is work on the nature of electron beams and the fundamentals of how electrons behave, a key component of quantum mechanics and the explanation of electron diffraction. Electrons in Vacuum Experiments involving electron beams occurred long before the discovery of the electron; indeed, the name \u0113lektron comes from the Greek word for amber, which in turn is connected to the recording of electrostatic charging by Thales of Miletus around 585 BCE, and possibly others even earlier. In 1650, Otto von Guericke invented the vacuum pump allowing for study of the effects of high voltage electricity passing through rarefied air. In 1838, Michael Faraday applied a high voltage between two metal electrodes at either end of a glass tube that had been partially evacuated of air, and noticed a strange light arc with its beginning at the cathode (negative electrode) and its end at the anode (positive electrode). Building on this In the 1850's, Heinrich Geissler was able to achieve a pressure of around 10\u22123 atmospheres, inventing what became known as Geissler tubes. Using these tubes, while studying electrical conductivity"}, {"title": "bm25", "text": "fast that many flew past the anode and hit the glass wall. The electrons themselves were invisible, but when they hit the glass walls of the tube they excited the atoms in the glass, making them give off light or fluoresce, usually yellow-green. Later experimenters painted the back wall of Crookes tubes with fluorescent paint, to make the beams more visible. This accidental fluorescence allowed researchers to notice that objects in the tube, such as the anode, cast a sharp-edged shadow on the tube wall. Johann Hittorf was first to recognise in 1869 that something must be travelling in straight lines from the cathode to cast the shadow. In 1876, Eugen Goldstein proved that they came from the cathode, and named them cathode rays (Kathodenstrahlen). At the time, atoms were the smallest particles known and were believed to be indivisible, the electron was unknown, and what carried electric currents was a mystery. During the last quarter of the 19th century, many ingenious types of Crookes tubes were invented and used in historic experiments to determine what cathode rays were (see below). There were two theories: Crookes believed they were 'radiant matter'; that is, electrically charged atoms, while German scientists Hertz and Goldstein believed they were 'aether vibrations'; some new form of electromagnetic waves. The debate was resolved in 1897 when J. J. Thomson measured the mass of cathode rays, showing they were made of particles, but were around 1800 times lighter than the lightest atom, hydrogen. Therefore, they were not atoms, but a new particle, the"}, {"title": "bm25", "text": "through hydrogen gas are the exact same wavelengths emitted by hydrogen gas when stimulated by an electric spark in a glass tube: The dark lines found in the absorption spectrum constitute a distinctive \u201cfingerprint\u201d for the element hydrogen aligned with the colored lines in hydrogen\u2019s emission spectrum, and likewise may be used to detect the presence of hydrogen in gas samples through which white light is passed. These dark spots in the spectrum are akin to \u201cshadows\u201d cast by molecules of hydrogen distributed throughout the sample gas. A solid object casts a shadow whose outline represents the object\u2019s shape. Chemical compounds thoroughly dissolved in a solution, whether liquid or gas, casts a shadow whose attenuated wavelengths represent the compound\u2019s identity. Usually, in the industrial analysis, we are more concerned with the quantifiable presence of certain compounds in a process sample than we are in the presence of certain elements. Fortunately, molecules also have their own distinctive interactions with light. Sometimes, these interactions take the form of molecular electrons being boosted into higher energy levels, much the same as with individual atoms. Other molecular-optical interactions take the form of vibrations and rotations set up between the atoms of a molecule, usually with photons in the infrared range. As an infrared photon of the correct wavelength (energy value) strikes an appropriate molecule, its frequency resonates with the bonded atoms, almost as if they acted as miniscule masses connected together by coil springs. This causes a transfer of energy from the photon to the molecule, where the vibration eventually"}, {"title": "bm25", "text": "1895 by Wilhelm Conrad Roentgen (1845-1923) who was a Professor at Wuerzburg University in Germany. Working with a cathode-ray tube in his laboratory, Roentgen observed a fluorescent glow of crystals on a table near his tube. The tube that Roentgen was working with consisted of a glass envelope (bulb) with positive and negative electrodes encapsulated in it. The air in the tube was evacuated, and when a high voltage was applied, the tube produced a fluorescent glow. Roentgen shielded the tube with heavy black paper and discovered a green coloured fluorescent light generated by a material located a few feet away from the tube. He concluded that a new type of ray was being emitted from the tube. This ray was capable of passing through the heavy paper covering and exciting the phosphorescent materials in the room. He found that the new ray could pass through most substances casting shadows of solid objects. Roentgen also discovered that the ray could pass through the tissue of humans, but not bones and metal objects. One of Roentgen's first experiments late in 1895 was a film of the hand of his wife, Bertha. That is how the first x-ray was created. Benjamin Franklin had one of the greatest scientific minds of his time. He was interested in many areas of science, made many discoveries, and invented many things, including bifocal glasses. In the mid-1700s, he became interested in electricity. Up until that time, scientists had mainly known about and experimented with static electricity. Benjamin Franklin took things a big"}, {"title": "bm25", "text": "one of the coded-mask instruments on board the spacecraft. Image courtesy of ESA / AOES If focusing X-rays is challenging, focusing gamma rays \u2013 the most energetic form of light \u2013 is almost impossible. To produce images of cosmic sources in this portion of the EM spectrum, therefore, astronomers had to find alternative methods. Many instruments for gamma-ray astronomy, including those on board ESA\u2019s INTEGRAL space observatory, rely on a technique called coded-mask imaging. This works similarly to a pinhole camera, which has no lens, just a tiny hole through which light rays pass, projecting an inverted image on the opposite wall of the camera. Figure 8b) How the coded- mask camera works: gamma- rays from two different astronomical sources pass through the mask\u2019s holes. Some of the incident gamma -rays can pass through the mask and illuminate pixels on the detector below (shown in blue and red, depending on the source), while others are blocked by the mask\u2019s opaque spots, casting shadows on the detector (shown in white). In place of the pinhole camera\u2019s single hole, a coded-mask camera has a mask with a special pattern of holes and opaque spots in front of a detector. Gamma rays that pass through the holes illuminate some pixels on the detector, while others are blocked by the mask\u2019s opaque spots and cast shadows on the detector. The pattern of bright and dark pixels contains information about the location of gamma-ray sources in the sky, and the intensity of the illuminated pixels gives information about their brightnessw7. Albeit"}, {"title": "bm25", "text": "Roentgen was a professor of Physics in Wurzburg, Germany, and accidentally discovered X-rays in 1895 while testing whether cathode rays could pass through glass. (A cathode ray is a beam of electrons emitted from the cathode of a high-vacuum tube.) His cathode tube was covered in black paper, so he was surprised to find that when a fluorescent green light passed through the paper and projected onto a nearby fluorescent screen. Through numerous experiments, he found that the \u2018mysterious light\u2019 would pass through most substances but leave shadows of solid objects. Because he did not know what these rays were, he called them \u2018X,\u2019 indicating \u2018unknown\u2019 rays. Roentgen quickly found that X-rays would pass through human tissue too, making the bones and tissue underneath visible. Word on his discovery spread rapidly worldwide, with doctors in Europe and the United States using X-rays to locate bone fractures, gunshots and kidney. He began to receive numerous awards for his discovery including the first Nobel Prize in physics in 1901. Today, X-rays help doctors see inside our bodies. An x-ray image shows shades of grey, which is just how much of the x-ray beam manages to get through your body. If the area of the body is very dense (like bone) it will come up white, if it is less dense, like organ tissue, it will come up as a dark shade of grey. Radiographers, those who work the x-ray, can control the amount and strength of the x-ray beam so that the body parts they want to see"}, {"title": "bm25", "text": "Stereoscopic shadow microscopy We present the development of stereoscopic shadow microscopy, which is arguably the most simple 3D microscopy because it is lens-free and it only needs a pair of coloured shadow images. Two spectrally-modulated light sources illuminate the object and cast two sets of coloured shadow images directly on an array of digital pixel sensors. The magnified 3D image of the object can be stereoscopically visualized simply by using a digital screen and a pair of spectrally-modulated glasses. Our analytical model shows that the optimal position of the object is governed by both the positions and the dimensions of the light sources."}, {"title": "bm25", "text": "through the edge of the object casting the shadow. Young convinced the other scientists of his day that light traveled as a wave by using a clever setup to show a surprising result. He set up a series of screens as shown in the diagram below. Light was shined through slits in the first two screens to cast a pattern on the third screen. If light was carried by particles that moved in straight lines, what light pattern would you expect to see on the last screen? # EM Basics If light was carried by particles moving in straight lines, we\u2019d expect a simple screen pattern with two bright lines. Light would only be able to reach the final screen if it traveled in a straight line from the light source, through the slit in the first screen, and through one of the slits in the second screen. Since there are two slits in the second screen, this gives two possible paths for light to reach the last screen. Surprisingly, this was not what Young observed from his experiment. The result of Young\u2019s experiment was a pattern of alternating bright and dark stripes: This result can be explained if we think of light as being carried by waves rather than particles. Light shining through the first screen creates a point source of waves. When these waves reach the second screen, they can only pass through at the two slits, creating two point sources of waves. These two wave sources interact to create the pattern on the"}, {"title": "bm25", "text": "discovery of this fact would, by the lights of the principle, lead one to renounce real status for the vector potential in favour of only the electric and magnetic field strengths. It would not, however, justify a blanket rejection of \\emph{any} form of microscopic reality. As another example, consider the prisoners in Plato's cave who live out their lives seeing objects only through the shadows they cast. Suppose one of the prisoners strikes upon the idea that there is a third dimension, that objects have a three-dimensional shape, and that the patterns they see are just two-dimensional projections of this shape. She has constructed a hidden variable model for the phenomena. Suppose a second prisoner suggests a different hidden variable model, where in addition to the shape, each object has a property called colour which is completely irrelevant to the shadow that it casts. The methodological principle dictates that because the colour property can be varied without empirical consequence, it must be rejected as unphysical. The shape, on the other hand, has explanatory power and the principle finds no fault with it. Operationalism, of course, would not even entertain the possibility of such hidden variables. The principle tells us to constrain our model-building in such a way that every aspect of the posited reality has some explanatory function. If one takes the view that part of achieving an adequate explanation of a phenomenon is being able to make predictions about the outcomes of interventions and the truths of counterfactuals, then what one is seeking is a"}, {"title": "bm25", "text": "PERSPECTIVE. I ask to have this much granted me\u2013to assert that every ray passing through air of equal density throughout, travels in a straight line from its cause to the object or place it falls upon. FIRST BOOK ON LIGHT AND SHADE. On the nature of light (130. 131). The reason by which we know that a light radiates from a single centre is this: We plainly see that a large light is often much broader than some small object which nevertheless\u2013and although the rays [of the large light] are much more than twice the extent [of the small body]\u2013always has its shadow cast on the nearest surface very visibly. Let _c f_ be a broad light and _n_ be the object in front of it, casting a shadow on the plane, and let _a b_ be the plane. It is clear that it is not the broad light that will cast the shadow _n_ on the plane, but that the light has within it a centre is shown by this experiment. The shadow falls on the plane as is shown at _m o t r_. [Footnote 13: In the original MS. no explanatory text is placed after this title-line; but a space is left for it and the text beginning at line 15 comes next.] Why, to two [eyes] or in front of two eyes do 3 objects appear as two? Why, when you estimate the direction of an object with two sights the nearer appears confused. I say that the eye projects an infinite"}, {"title": "bm25", "text": "## Does light behave like particles or waves? Believe me or not this very question, is the reason which keeps most of the physicists baffled about the strange nature of the particles in the world of quantum mechanics. When I was in school, about an age of 11 or 12, when my elder brother showed me a video of a famous experiment called Double Slit Experiment. That video ignited a new spark of curiosity within me, seriously just think about this, we have been to moon and back, carried out successful missions to Mars and achieved so much advancements in the field of science and technology yet there are areas like these where we are still struggling to find the absolute answers about the nature of the world we live in. Alright, I think you must be eager to know about that video now and what it portrays, in short, it\u2019s about an experiment conducted by Thomas Young in 1801 and is known as Young\u2019s Double Slit Experiment. This famous experiment is actually a simplification of a series of experiments on light conducted by Young. In a completely darkened room, Young allowed a thin beam of sunlight to pass through an aperture on his window and onto two narrow, closely spaced openings (the double slit). This sunlight then cast a shadow on the wall behind the apparatus. Young found that the light diffracted as it passed through the slits and then interfered with itself created a series of light and dark spots. Since the sunlight consists"}, {"title": "bm25", "text": "in figure 1. Sx0 and Sy0 are light sources. X-axis and Y-axis are two measuring channels perpendicular to each other, Bx0 \u0438 By0 are initial coordinates. When the cable moves in the measurement area, its size starts changing, respectively, and the size of the cast shadow along the X and Y axes changes. These changes are recorded by the microcontroller, and on the basis of these data, the actual cable diameter is calculated [2]. Radiation power measurement method The description of this method is as follows. The cable is placed into the operating area between the photodetector and the emitter. A parallel light beam emitted by the emitter passes through the operating area. The radiation power becomes lower passing through the cable. The difference between the initial and final flow is recorded by the receiver. After that, the change in power is converted into the cable diameter [4]. It is necessary to have a transmitter to obtain accurate data with this method whose power does not change over time. Also, it is necessary to have a receiver whose sensitivity is constant. It is very difficult to comply with these factors in real conditions, Therefore, in this case a rather large error is obtained [6]. Scanning method of measurement The light source is laser; a hexagonal mirror is installed in front it. Such a construction creates a thin beam rotating at a speed V in the operating area of length W. The beam is broken passing through the cable placed in the working area. The moving time"}, {"title": "bm25", "text": "parts. MEMORANDUM OF THINGS I REQUIRE TO HAVE GRANTED [AS AXIOMS] IN MY EXPLANATION OF PERSPECTIVE. I ask to have this much granted me\u2013to assert that every ray passing through air of equal density throughout, travels in a straight line from its cause to the object or place it falls upon. FIRST BOOK ON LIGHT AND SHADE. On the nature of light (130. 131). The reason by which we know that a light radiates from a single centre is this: We plainly see that a large light is often much broader than some small object which nevertheless\u2013and although the rays [of the large light] are much more than twice the extent [of the small body]\u2013always has its shadow cast on the nearest surface very visibly. Let _c f_ be a broad light and _n_ be the object in front of it, casting a shadow on the plane, and let _a b_ be the plane. It is clear that it is not the broad light that will cast the shadow _n_ on the plane, but that the light has within it a centre is shown by this experiment. The shadow falls on the plane as is shown at _m o t r_. [Footnote 13: In the original MS. no explanatory text is placed after this title-line; but a space is left for it and the text beginning at line 15 comes next.] Why, to two [eyes] or in front of two eyes do 3 objects appear as two? Why, when you estimate the direction of an object"}, {"title": "bm25", "text": "explained University of Pennsylvania electrical engineer Nader Engheta, who published his own invisibility recipe last year. \"Metamaterials are very interesting products.\" The latest research papers describe how metamaterial could be fabricated to bend light in carefully curved paths around the object to be hidden, so that an observer would see right through it \u2014 or more accurately, right around it \u2014 to the other side. This diagram shows how light rays could theoretically be bent around a concealed object, making it seem as if an observer were looking straight through the object. \"The cloak would act like you've opened up a hole in space,\" Duke University's David Smith, one of Pendry's co-authors, explained in a news release. \"All light or other electromagnetic waves are swept around the area, guided by the metamaterial to emerge on the other side as if they had passed through an empty volume of space.\" Pendry told MSNBC.com that the cloak wouldn't reflect any light, and wouldn't cast a shadow either. \"It would be like Peter Pan had lost his shadow,\" he said, referring to the fictional character who had to have his shadow stitched back on. Dreams come true, with a few catches Theoretically at least, the metamaterial could work like the helmet of invisibility celebrated in Greek myth, or the cloaking device that hid Romulan and Klingon vessels in the \"Star Trek\" series, or the invisibility cloak that came in so handy for Harry Potter in J.K. Rowlings' novels. \"Fiction has predicted the course of science for some time. ..."}, {"title": "bm25", "text": "BOOK ON LIGHT AND SHADE.--Definition of derived shadow (158--159).--Different sorts of derived shadows (160--162).--On the relation of derived and primary shadow (163--165).--On the shape of derived shadows (166--174).--On the relative intensity of derived shadows (175--179).--Shadow as produced by two lights of different size (180--181).--The effect of light at different distances (182).--Further complications in the derived shadows (183--187).--FOURTH BOOK ON LIGHT AND SHADE.--On the shape of cast shadows (188--191).--On the outlines of cast shadows (192--195).--On the relative size of cast shadows (196. 197).--Effects on cast shadows by the tone of the back ground (198).--A disputed proposition (199).--On the relative depth of cast shadows (200--202).--FIFTH BOOK ON LIGHT AND SHADE.--Principles of reflection (203. 204).--On reverberation (205).--Reflection on water (206. 207).--Experiments with the mirror (208--210).--Appendix:--On shadows in movement (211--212).--SIXTH BOOK ON LIGHT AND SHADE.--The effect of rays passing through holes (213. 214).--On gradation of shadows (215. 216).--On relative proportion of light and shadows (216--221). PERSPECTIVE OF DISAPPEARANCE Definition (222. 223).--An illustration by experiment (224).--A guiding rule (225).---An experiment (226).--On indistinctness at short distances (227--231).--On indistinctness at great distances (232--234).--The importance of light and shade in the Prospettiva de' perdimenti (235--239).--The effect of light or dark backgrounds on the apparent size of objects (240--250).--Propositions on Prospettiva de' perdimenti from MS. C. (250--262). THEORY OF COLOURS The reciprocal effects of colours on objects placed opposite each other (263--271).--Combination of different colours in cast shadows (272).--The effect of colours in the camera obscura (273. 274).--On the colours of derived shadows (275. 276).--On the nature of colours (277. 278).--On gradations in the depth"}, {"title": "bm25", "text": "in rarefied gases in 1859 Julius Pl\u00fccker observed that the radiation emitted from the negatively charged cathode caused phosphorescent light to appear on the tube wall near it, and the region of the phosphorescent light could be moved by application of a magnetic field. In 1869, Pl\u00fccker's student Johann Wilhelm Hittorf found that a solid body placed between the cathode and the phosphorescence would cast a shadow on the tube, e,g, Figure 3. Hittorf inferred that there are straight rays emitted from the cathode and that the phosphorescence was caused by the rays striking the tube walls. In 1876, the German physicist Eugen Goldstein showed that the rays were emitted perpendicular to the cathode surface, which distinguished them from the incandescent light. Eugen Goldstein dubbed them cathode rays. By the 1870s William Crookes and others were able to evacuate glass tubes below 10\u22126 atmospheres, and observed that the glow in the whole tube disappeared when the pressure was reduced but the glass behind the anode began to glow. Crookes was also able to show that the particles in the cathode rays were negatively charged and could be deflected by an electromagnetic field. In 1897, Joseph Thomson measured the mass of these cathode rays, proving they were made of particles. These particles, however, were 1800 times lighter than the lightest particle known at that time \u2013 a hydrogen atom. These were originally called corpuscle and later named the electron by George Johnstone Stoney. The control of electron beams that this work led to resulted in significant technology"}], "hoverinfo": "text"}, {"x": [-0.12784790992736816, -0.06086415797472, 0.1311381310224533, -0.011393757537007332, 0.02426021173596382, 0.12825098633766174, -0.1049920916557312, -0.14115269482135773, -0.10147954523563385, -0.005926214158535004], "y": [-0.021044772118330002, -0.015318933874368668, -0.045672718435525894, 0.10573489964008331, -0.10220833122730255, 0.1349463015794754, 0.0965532660484314, -0.04470900073647499, -0.03820885345339775, -0.08542560040950775], "mode": "markers", "name": "Centroids", "marker": {"size": 12, "symbol": "star", "color": "black"}, "text": ["Centroid 0", "Centroid 1", "Centroid 2", "Centroid 3", "Centroid 4", "Centroid 5", "Centroid 6", "Centroid 7", "Centroid 8", "Centroid 9"], "hoverinfo": "text"}], [{"x": [-0.02476179413497448, 0.02257964387536049, 0.10976747423410416, 0.029915645718574524, 0.07706091552972794, 0.06992741674184799, 0.09829850494861603, -0.022184178233146667, 0.08714799582958221, 0.022339671850204468, 0.052431371062994, 0.08766884356737137, 0.003142615081742406, 0.05540222302079201, 0.0958467647433281, -0.003571197623386979, 0.07735396176576614, 0.04987633600831032, -0.03183012828230858, -0.0034024911001324654, 0.026196960359811783, 0.010071986354887486, -0.017906781286001205, -0.01790681481361389, 0.008840639144182205, 0.03573758155107498, 0.01706913486123085, 0.021352268755435944, -0.03455233946442604, 0.0383782684803009, 0.0328652523458004, 0.045238204300403595, 0.07426492124795914, 0.0022240756079554558, 0.057892315089702606, -0.0020427946001291275, 0.009066957980394363, 0.0016424653586000204, -0.011355671100318432, 0.08298014849424362, 0.040006525814533234, 0.0460720919072628, 0.08092696219682693, 0.02829228900372982, 0.06473883986473083, 0.03353127837181091, 0.05859927833080292, 0.08496183156967163, 0.029915645718574524, 0.029915645718574524, 0.06303330510854721, 0.03353127837181091, -0.009053368121385574, 0.03004148229956627, 0.03978680074214935, 0.04254525154829025, 0.09183614701032639, -0.047187983989715576, 0.042137738317251205, 0.06737911701202393, 0.032167334109544754, -0.005013721529394388], "y": [0.11858973652124405, 0.12751854956150055, 0.06910312920808792, 0.22816942632198334, 0.17721068859100342, 0.1323956549167633, 0.17042569816112518, 0.06236625090241432, 0.1358986347913742, 0.10019287467002869, 0.16975954174995422, 0.11574789136648178, 0.10515429824590683, 0.15870586037635803, 0.07633242011070251, 0.13893815875053406, 0.13092723488807678, 0.1439623236656189, 0.20452314615249634, 0.25639787316322327, 0.22457213699817657, 0.1724567860364914, 0.1497206687927246, 0.14972011744976044, 0.10522910952568054, 0.1852191686630249, 0.20155802369117737, 0.19019965827465057, 0.1740913838148117, 0.19397011399269104, 0.1503814309835434, 0.15371105074882507, 0.17724400758743286, 0.07729090005159378, 0.21736818552017212, 0.18877100944519043, 0.10189130902290344, 0.18016833066940308, 0.14361898601055145, 0.16441109776496887, 0.20834490656852722, 0.08690478652715683, 0.21416185796260834, 0.1940164715051651, 0.08308877050876617, 0.20860183238983154, 0.20509837567806244, 0.16435015201568604, 0.22816942632198334, 0.22816942632198334, 0.2113683521747589, 0.20860183238983154, 0.15107403695583344, 0.13090144097805023, 0.14305703341960907, 0.16558042168617249, 0.09987048804759979, 0.14098553359508514, 0.17918986082077026, 0.12430273741483688, 0.1647736132144928, 0.13061124086380005], "mode": "markers", "name": "Cluster 0", "marker": {"size": 8, "color": "rgb(141,211,199)"}, "text": ["Document 4", "Document 119", "Document 136", "Document 144", "Document 167", "Document 176", "Document 187", "Document 256", "Document 315", "Document 331", "Document 341", "Document 359", "Document 392", "Document 394", "Document 396", "Document 411", "Document 447", "Document 496", "Document 512", "Document 522", "Document 524", "Document 533", "Document 569", "Document 570", "Document 577", "Document 594", "Document 627", "Document 628", "Document 652", "Document 658", "Document 697", "Document 708", "Document 723", "Document 731", "Document 737", "Document 774", "Document 795", "Document 852", "Document 854", "Document 874", "Document 877", "Document 892", "Document 907", "Document 912", "Document 918", "Document 930", "Document 937", "Document 961", "Document 970", "Document 971", "Document 987", "Document 1025", "Document 1076", "Document 1104", "Document 1120", "Document 1214", "Document 1246", "Document 1340", "Document 1352", "Document 1355", "Document 1426", "Document 1466"], "customdata": [{"title": "rpj-c4", "text": "other criteria. Picking the right plastic isn't hard. But picking the wrong plastic can rob you of many of the benefits of credit card use you should be enjoying. So take a little time to make a smart choice. 0 Responses to \"5 ways to pick the best plastic for you\""}, {"title": "rpj-c4", "text": "numerous associated with advantages as well. A lot of cards provide you with cash aback plus particular incentives with almost anything people purchase. Out of gas so that you can equipment, you can obtain benefits simply for making use of the credit rating card. You possibly can boost your gain margin at the same time, which in turn is obviously a great thing. Should you have other workers that happen to be official to use your bank card, you can acquire more benefits \u2013 as well as way quicker when well. Re-decorating much easier for your small business, because your workers can consider getting their ambitions, every time they require it. To sum up, organization plastic cards will always be good to possess around. They\u2019re going to give your enterprise along with benefits in addition to ease, eradicating the want to use cash with every obtain a person make. Prepaid credit cards may also secure the future of your business, and let it grow. When you keep a small venture, you shouldn\u2019t wait to review these types of consumer credit cards. When you have observed the very best plastic card for the enterprise, you mustn\u2019t pause to help apply. Bank cards will always be good to own all-around \u2013 whether or not your small business is just simply obtaining started. In no time, your online business credit cards may more than cover themselves. Related Posts of \"Receiving A new Larger Reduce On Free airline Credit Credit card in Nebraska\""}, {"title": "rpj-c4", "text": "If you are a debit card user, there is a little-known tip you can use to eliminate paying any fee associated with your debit card, increase any card rewards, and pick up a little extra fraud protection. How do you do that? After you swipe your debit card and are asked, \"Debit or Credit,\" say \"Credit.\" You will be asked to sign the receipt, just like a credit card, rather than enter your PIN. Can you do that? Absolutely. Yet, according to Money Magazine (Oct 2005), 70% of debit card holders didn\u2019t know they could choose either option for their debit card. The only time a debit card holder needs to enter a PIN number is at the ATM machine when you are needing cash back."}, {"title": "rpj-c4", "text": "A pocket full of plastic money gives one a feeling of success and security. Using your credit cards for purchases is so easy, choose what you want to buy and pay for it with a piece of plastic instead of cash: bought, done. That is fine as long as you keep your spending limited within your monthly income and pay the full amount of your accounts by the date due. Unfortunately, in many cases, there is not enough income to cover the payments. This starts many people to begin using two or three or even more credit cards, making payments by rolling money from one of them to another in order to survive. Use of cards comes with a credit limit that you can buy for. This is set by the bank issuing it and is dependent on monthly income. Each bank has a different limit setting as well as some of the cards having budget payment facilities where as others do not offer this kind of service. Acquiring a card is usually easy to get as long as you qualify financially. In fact, the banks are only too willing to give them to you so they can make some easy money. The bank charges on overdue card payments are high and it is not difficult for people to end up not meeting their commitment by the due date. Instead of being careful about their spending they run up their cards to the maximum. If you have surplus money rather put it into a savings account"}, {"title": "rpj-c4", "text": "As if deciding what you buy and where to buy it wasn\u2019t hard enough, you also have to decide how you want to buy something. Debit versus credit, check or good old-fashioned cash. Decisions decisions. Turns out managing your money and your payment methods can be stressful! And don\u2019t even get us started on fraud. Let\u2019s assume you don\u2019t want to deal with going to the ATM and you forgot your checkbook (true and true). Let\u2019s focus on debit versus credit, since that\u2019s how most of us shop anyway. How do you know what to do when it\u2019s time to swipe? There are many benefits to both forms of payment, you just have to know what those perks are and when they apply to you. Ready to be a smarter shopper? Here are some things to consider so you get the most bang for your buck and the most protection when you pay. 1. Paying with a credit card can help your credit score. When it comes to charge cards, one of the fastest ways to improve your credit score is to use your credit card and then pay off your balance on time each month. It seems obvious\u2014if you pay your bills you will be rewarded with good credit. Duh. But some of us think if we don\u2019t use our credit card we will be better off. Not so. The more you use your credit card (within reason), the better your credit will be. Just make sure that you\u2019re spending within your means."}, {"title": "rpj-c4", "text": "everyday purchases, such as gas and groceries \u2013 consumers are increasingly turning to credit to pay for everyday expenses. According to a Nilson report released this month, more than half of all purchases in 2016 that used some type of plastic payment card \u2013 53.64 percent \u2013 were made on a credit card. In 2015, by contrast, just 45.84 percent of card purchases used credit. The percentage of cardholders using credit instead of a debit card or prepaid card has increased every year since 2012, thanks in part to consumers\u2019 increasing preference for using rewards cards. \u201cConsumers are choosing credit cards over debit cards to gain rewards from banks and other issuers,\u201d said Nilson\u2019s David Robertson in a news release. Debit cards used to regularly offer rewards programs that competed with credit card rewards. But since federal rules enacted in 2011 limit debit card swipe fees, debit card reward programs have become increasingly scarce. Rewards-based credit cards, meanwhile, have surged in popularity. According to research released this month by the financial services firm Credit Suisse, 72 percent of the offers issuers mailed to consumer homes advertised some kind of rewards offer. As consumers use credit cards more heavily, they\u2019ve also become more likely to carry a balance. According to research released in April by the American Bankers Association, the percentage of cardholders who revolve their balances from month-to-month rose by nearly half a percentage point in late 2016 to 43.7 percent of all bank-issued accounts. Meanwhile, the percentage of cardholders who pay off every balance dropped"}, {"title": "rpj-c4", "text": "rewards. When you have a consistent good credit score, you can apply for additional credit cards with sign-up bonuses that can reach $500 or more. There are even banks that offer start-up reward points that you can use to redeem items and gift checks. This rewards and points don\u2019t usually come with using your debit card, or they offer it only on a minimal level. One advantage why you should use your credit card if for protection. Using a credit card than a debit card protects you from possible fraud. When a debit card is stolen, your money in that account can go missing instantly, and it takes a lot of time to resolve the issue and return your money into your account. But when you, unfortunately, have your credit card stolen, and you see that they made a transaction, you can report it to your credit company, and they will resolve the issue. At the end of the day, you won\u2019t be charged with anything, and the money will go back to your account. When you purchase an item and when something goes wrong like the delivery didn\u2019t push through, or you want to cancel an order, it will not reflect on your billing statement, or you can get the money back from your credit card provider. Unlike when you\u2019re using your debit card, you\u2019re unable to do these things because a deduction is already made to your account. The central concept of credit cards is that you can make purchases and get to pay"}, {"title": "rpj-common-crawl-2023-06", "text": "had a credit card they wanted to put points on. There\u2019s no way there\u2019s going to be a card launch that takes up that amount of the conversation again. Taylor Tepper Taylor Tepper is a former senior staff writer at Wirecutter covering financial products and how people use them. He has been published in The New York Times, Fortune, and Bloomberg, among others. He earned his MA at the Craig Newmark School of Journalism at CUNY, and is currently preparing for the CFP exam at the University of Texas. Plastic, Estate Sales, and Wirecutter Lists by Ganda Suthivarakom In this week\u2019s newsletter: If you\u2019re already using a reusable grocery bag, that\u2019s great! But here\u2019s a few other things you may not have thought of yet. by Greg Daugherty Follow these tips to learn how to successfully build credit from scratch and avoid common pitfalls and mistakes. Your Credit Card Benefits Just Got Cut. What Do You Do? by Sally French Yes, your credit card issuer can legally change its terms for the worse compared with when you first signed up. But you have some power here. The Credit Card Rewards Game Is Unfair. But Is It Unethical? Banking inequality is, in part, paying for credit card rewards. Is it unethical to collect on this bounty?"}, {"title": "rpj-c4", "text": "Read the small carefully when you sign up for a debit card online. The credit ratings and rate are decided by market conditions, the loan rating from the business, and also the its ability to repay card balances. I Accidentally Overpaid My Credit Card; Comments You May Also Like. A credit representative may ask you if you could have any job prospects lined up. Apply for a plastic card with a zero-percent interest through a promotional period. A thief can go using a spending spree together with your stolen card; a presence thief may occurs data to rent apartments or remove cell-phone accounts; or perhaps a company might take your plastic card payment on the Internet rather than send your inventory. An unrecognized or incorrect charge on your bank card statement might be alarming, however it\u2019s often very easy to put out of the flames. Credit card payment systems also offer an additional measure of security. Click the calendar icon inside the \u201cDate\u201d column and pick the date the payment will occur. If you have a home, one option is really a home equity loan, which includes a low rate because the financial institution places a lien with your home as security. Applying for just a new plastic card benefits people who want to create credit or. In addition, any ask you for accrue in your Pay \u2013 Pal account will probably be taken out of one\u2019s Pay \u2013 Pal balance first, in lieu of charged straight to your charge card. Credit card debt can put"}, {"title": "rpj-c4", "text": "using a debit card; it\u2019s as easy to use as traditional plastic and takes the bucks straight outside the account so there aren\u2019t any different than bills to remember and no fees if you leave your overdraft unmarked. If used advantageously however several benefits can be bought from making use of your credit card to settle payments. In accessory for his executive duties, Haines serves as Secretary-Treasurer for that Winners Foundation, a racing industry charity that helps men and ladies with drug and alcohol abuse problems. Haines is along with a member for the Los Angeles Sports Local authority. Most visa or mastercard companies sometimes make it a breeze to procure a loan from a paypal or credit card online. Simply fill out the online forms, wait, within no time you can assertain whether or you got the card you wish. With a little imagination a person are revamp your wardrobe. Shorten your maxi dresses produce mini\u2019s, sew a ribbon bow onto a dress or tie a scarf around your waist additional medications . a belt a la Marc Jacobs. \u2190 Are We Turning The Corner On Real Estate In Denver?"}, {"title": "rpj-c4", "text": "Does Using a Credit Card for Christmas Shopping Make Sense? Online Shopping \u2013 Every year, more and more people are doing their shopping online. And, with places like Amazon.com competing for your business, it only makes sense to take advantage of the low prices and, in most cases, the free shipping. However, using a bank or debit card, or writing a virtual check can put your bank account at risk, and potentially expose you to serious financial problems. While most banks will credit your account for fraudulent charges, it can take time, and effort to resolve these problems, and can damage your credit score in the process. Credit cards, on the other hand, are much easier to cancel, and you\u2019re only liable for a small fee, usually around $50, in the event your card number is stolen. Carry Less Cash \u2013 If you\u2019re one of those people who loves to crawl the malls and discount stores on black Friday, you\u2019ll definitely understand how easy it can be to have your wallet stolen in the crush of shoppers! Doing all your holiday shopping using a single credit card can eliminate the opportunity to have your wallet (your cash and your identity) stolen! At most, you\u2019d only need to carry your credit card, and your driver\u2019s license or other form of identification. Think how much easier it will be to grab those bargains this coming black Friday! Cash Back (and other) Rewards Programs \u2013 What? Cash back for shopping? Yes. Using a cash back reward credit card for"}, {"title": "rpj-c4", "text": "twice before swiping the card in the stores. Every credit card holder needs to know some facts about the card he or she owns. Though this plastic money do some wonders for the users it is always wise for them to know some basic facts about these cards. Most of the credit card companies and even many banks work with the commercial establishments such as airlines, mobile phone companies and retail chains in order to offer best incentive packages to gain customer loyalty. If the card seeking individual prefers to use the card for the purpose of shopping, traveling and dining a co-branded credit card seems to be the best option. These credit card firms offer great discounts and make the individual to access to several promotions that are not offered by the other and regular card companies. Also these cards offer earning points for every transaction made through these cards."}, {"title": "rpj-c4", "text": "You have no credit cards to compare. \u00a9 2015 PlasticRewards.com. All Rights Reserved."}, {"title": "rpj-c4", "text": "tool is used correctly and properly. It will enable the credit card holder to manage his or her finances. Having a credit card also ensure not only your money and your life as well because it is very convenient compared to carrying cash or checks every time you have to buy or pay for something."}, {"title": "rpj-common-crawl-2022-05", "text": "3 Major Ways Credit Cards Have Changed in the Past Decade Compared with 2010, today\u2019s credit cards offer richer bonuses. Swiping is also giving way to dipping and tapping. Claire Tsosie The credit cards of the future are here \u2014 and they\u2019ve improved in some big ways in the past decade. Compared to cards in 2010, today\u2019s credit cards are more consumer-friendly, with certain restrictions on fees, interest rate hikes and unfair billing practices. Rewards and sign-up bonuses are far richer. Swiping is out, and dipping and tapping are in. Here\u2019s what changed in the past 10 years. Credit card consumer protections improved In the bad old days, paying a credit card even a day late could be incredibly expensive. Credit card issuers could immediately ratchet up your interest rates after a slip-up \u2014 even on existing balances \u2014 and tack on huge late fees. And missing a due date was easy, thanks to the billing practices of some issuers. \u201c[The banks] made bills due on the weekend when the post office isn\u2019t open,\u201d says Ed Mierzwinski, consumer program director for the United States Public Interest Research Group, a consumer advocacy group that was part of a coalition that lobbied for the passage of the Card Act of 2009. \u201cThey said, \u2018If you want to pay your bill last-minute over the telephone, we\u2019re going to charge an extra fee to do that.\u2019 They said, \u2018Let\u2019s change the days the bills are due on a random basis.\u2019\u201d That changed with the Card Act, which took effect in"}, {"title": "rpj-c4", "text": "so it's important to carry out periodic checks. 0 Responses to \"More credit cards, more offers, higher limits. Plastic's back!\""}, {"title": "rpj-c4", "text": "A credit card is a not-so-ordinary plastic card, which allows us to manage our financial needs and purchase goods on credit. It has become an unavoidable part of our lives nowadays. It provides us with immense convenience when harnessed responsible. Different credit cards provide different kinds of benefits and have their own features. A credit card is more convenient than cash nowadays, and people in the Philippines use credit cards more often nowadays, Because of the payment flexibility, security, rewards, and much more benefits. If you are a citizen of the Philippines and is planning to get the best credit cards. You need to first get a better understanding of how it really works and which top credit cards you should really prefer. In What ways Can The Top Credit Cards Benefit You? \u2022 Nobody likes waiting on the ATM to get cash and then carry it to the Malls or wherever. A credit card is an easy way to use to buy goods. Just swipe the card, sign the receipt and here you go. \u2022 It provides you with plenty of benefits like rewards, discounts, grocery bonuses and so much more. \u2022 A credit card cannot be used if stolen from you (unless the thief has your code!), and of course, there\u2019s no tracking for the cash in that case. You can simply get it blocked from your respective bank. Even if the thief managed to swipe the card somewhere \u2013 you can declare it wasn\u2019t you \u2013 and in most cases, you will get"}, {"title": "rpj-c4", "text": "person plenty involving gains seeing that well. The majority of playing cards provides you with money aback in addition to certain advantages for anything anyone purchase. From natural gas to equipment, you can obtain benefits basically for implementing the credit card. You possibly can raise your profit margin too, which is often an incredible thing. For those who have anybody else who\u2019re approved to apply your debit card, you will have more returns \u2013 in addition to way quicker while well. Re-decorating simpler upon your enterprise, since your individuals will certainly be capable of geting what they aspire to, if they have to have it. All in all, business a credit card are always excellent to get around. They are going to present your small business using advantages in addition to advantage, getting rid of the particular must use money with every acquire you actually make. These credit cards will likely defend the future of your business, in addition to allow it grow. If you possess your own business, you shouldn\u2019t be reluctant to look into most of these credit cards. Upon having uncovered the most effective credit card in your company, you must never be reluctant for you to apply. Bank cards will always be good to acquire about \u2013 even if your enterprise is just simply having started. Before very long, your corporation plastic cards can greater than spend on themselves. Related Posts of \"Best Store Credit Cards\""}, {"title": "rpj-c4", "text": "individuals are prone to spending thoughtlessly. A valid reason for this is that whipping out a bit of plastic is nothing at all like shelling out real hard cash. People don\u2019t seem to see plastic in the same way they see cash. Of course, while there are other before and after-wedding debts that turn up, the big winner is plastic. These days, nearly every business enterprise offers credit cards. They\u2019re so easy to get and so easy to use that they often tranquilize us. With a pocket or purseful of credit cards, we not only feel rich but powerful. We enter a shop and see a pair of really great shoes on sale. It\u2019s now or never, so we walk out with our shoes and have just added $300 to a credit card that we don\u2019t even quite realize will be charging us 19% interest on that loan. After all, that is a loan. We just borrowed $300 at usurious interest rates from a lender. The people who issue credit cards make it sound as if their cards are a free gift opportunity. For every purchase you make, you get cash back. You rack up mileage on airlines to romantic places as they entice you to believe that having that credit card will somehow make you rich. While a person with excellent credit can have certain credit cards with a low-interest rate, it\u2019s still very easy to over spend. The tip here is to sit down with your other half and very calmly try to work"}, {"title": "rpj-c4", "text": "for a variety of reasons, including the ways in which they affect our spending habits and their ability to multiply a few wasteful purchases into ballooning debts. When we whip out a credit card instead of counting out cash, we\u2019re more likely to spend more money than we otherwise would. Studies agree that paying with plastic does something to our brains that makes us more willing to part with our hard-earned money. Then there\u2019s the fact that credit cards create debt. If you pay off our bill every single month without fail, you\u2019ll be in pretty good shape. But if not? You\u2019d better be ready for steep interest rates. Credit cards create toxic short-term debt, and that\u2019s a big waste. So be careful. Spend smart, and use cash when you can. If you can plug the holes that your money drains out of, you\u2019ll be able to save more and build a brighter financial future."}, {"title": "rpj-c4", "text": "it. If we can pay with a credit card, we do, because the more we buy on that card, the more perks we get. Third, putting everything on plastic only works because we pay off our balances every month. This is an absolute essential part of using credit cards wisely. It\u2019s one thing to buy your groceries with a Visa or MasterCard, and then write one check at the end of the month, because you\u2019ll rack up airline miles or get a free camera. It\u2019s something else again when you buy groceries with a credit card because you don\u2019t have money in your checking account to pay for them. This article emphasized a fundamental rule of credit cards that is all too easy to overlook. The only people who should use credit cards regularly are people who don\u2019t need them. This might not seem fair, but it\u2019s essential for future financial security. Every time you use your plastic, you\u2019re getting a loan\u2014one that usually carries a very high interest rate. If you need that loan in order to buy whatever it is you\u2019re buying, you probably shouldn\u2019t be buying it. If you can\u2019t pay back the loan in the next month, your purchase could end up costing you much more than its initial price. What about emergencies? Unfortunately, sometimes plastic seems to be the only way to pay for an unexpected medical bill or car repair. If that\u2019s the case, the goal should be to pay it off as quickly as possible. And remember, if you"}, {"title": "rpj-book", "text": "view of the abyss. If debtors choose not to apply the brakes, at least they'll crash with eyes wide open. Those who defend credit cards cite the giant boost they give the economy. Plastic provides the jet fuel for consumer spending; it's the engine that powers the Consumers' Republic. Pay your balance in full every month and you make money on the float. Plastic is convenient\u2014you rent a car, buy groceries, and don't have to fill out a snoopy credit application. Cards level the playing field, sort of, between haves and have-nots. They give the have-nots a taste of the _have_ \u2014even if it takes over twenty years and $2,300 in interest to pay off a $1,000 _had-to-have_ , which assumes that the have-not works off the debt with minimum monthly payments. Champions of revolving credit follow the same logic as law-abiding members of the NRA\u2014credit cards don't break people, people break people. #### E-pulsive I mentioned earlier that impulsive buying is on the rise. Credit cards are not the only culprit. The World Wide Web offers us unparalleled opportunity to window-shop from home or work\u2014it's impossible to imagine a channel better suited to round-the-clock splurchasing. Estimates are that half of all online purchases are unplanned, which is not remotely surprising given that everything under the sun is for sale on the Web, and we can shop virtually anywhere in the world. From Chicago I just impulsively sent Ned, who's in Philadelphia, a CARE package of bagels and smoked salmon from Zabar's in New York. What's"}, {"title": "rpj-c4", "text": "real harvest is yet to come. When you invest first and then spend the remaining funds, you\u2019re aspiring for a healthy financial well-being. Your spending habit is controlled and calculated. You want to make the most of what you\u2019re earning at the present. You are searching for investment opportunities. There is a conscious effort to set aside a greater portion of income for investment purposes. You almost certainly know that the money you invest in sound financial instruments today will be worth ten fold or more in the future. Instead of fussing over high-tech gadgets, why not focus your attention on learning the rudiments of investing as well as the investment outlets available to help you achieve your long-term financial goals. If there\u2019s a single, biggest obstacle to wealth building, it\u2019s debt accumulation. The usual culprit why many young professionals experience financial woes early on is the credit card. The plastic gives you an illusion of being rich because you have the purchasing power. What many do not realize is that when you start paying, you end up being impoverished. Instead of improving your financial situation, you\u2019re digging a sink hole. Owning a credit card used to be a privilege but today you see the widespread use of the plastic even in the smallest purchases. Credit card issuers loosened the credit parameters that eventually led many people to be debt-ridden. The 2012 case study by the Asia-Pacific Management Accounting Journal on Credit Card Debt Management gives an insight on the problems with credit cards. It is"}, {"title": "rpj-c4", "text": "real harvest is yet to come. When you invest first and then spend the remaining funds, you\u2019re aspiring for a healthy financial well-being. Your spending habit is controlled and calculated. You want to make the most of what you\u2019re earning at the present. You are searching for investment opportunities. There is a conscious effort to set aside a greater portion of income for investment purposes. You almost certainly know that the money you invest in sound financial instruments today will be worth ten fold or more in the future. Instead of fussing over high-tech gadgets, why not focus your attention on learning the rudiments of investing as well as the investment outlets available to help you achieve your long-term financial goals. If there\u2019s a single, biggest obstacle to wealth building, it\u2019s debt accumulation. The usual culprit why many young professionals experience financial woes early on is the credit card. The plastic gives you an illusion of being rich because you have the purchasing power. What many do not realize is that when you start paying, you end up being impoverished. Instead of improving your financial situation, you\u2019re digging a sink hole. Owning a credit card used to be a privilege but today you see the widespread use of the plastic even in the smallest purchases. Credit card issuers loosened the credit parameters that eventually led many people to be debt-ridden. The 2012 case study by the Asia-Pacific Management Accounting Journal on Credit Card Debt Management gives an insight on the problems with credit cards. It is"}, {"title": "rpj-c4", "text": "student senator, and Godwin Ariguzo, marketing lecturer, also promoted the concept of schools adding a personal finance class that would be mandatory for all incoming students. They said such a class is important given that survey results found that students are more likely swipe their cards in purchasing day-to-day items, going on vacation or for weekends/pizza than for tuition costs. \u201cBy having a class like this, we can make sure students remain in the black and not in the red,\u201d O\u2019Brien said. Ariguzo added that students need credit cards, especially as they near graduation, in order to have a tool that will allow them to positively build a credit history that will facilitate future efforts to buy a car or house or even rent an apartment but instead many apply for the plastic cards because it is a sign of freedom. With no formal personal finance class currently on campus, suggestions were given for how students can avoid falling into credit card traps. Most importantly, O\u2019Brien said, is reading the fine print on applications and avoiding cards that carry universal fault increases that allow companies to raise your interest rate because of missed payments on other accounts. \u201cIf you\u2019re going to apply for a credit card know the reason why and understand the consequences,\u201d Ariguzo said."}, {"title": "rpj-c4", "text": "The most valuable plastic ever created is no doubt the credit card. Its power allows you to have whatever material thing you want in just a single swipe. Of course all good things has its own price you have to pay back and that are the fees and charges that could break you if you don't know how to use it properly. Other than being a money eating monster, credit cards also have quite good qualities that you can maximize for your own benefit. Knowing how to get the most out of your credit card offers a lot of saving opportunity for you. Taking these opportunities could greatly impact your financial situation by now luring yourself into spending and paying high interest rates afterwards. There are ways you can do to get the most out of your credit card like, rewards, cash backs, mileage, zero interest rates and more. What you need to catch all of these privileges is to keep yourself informed through brochures and newsletters inserted in your bill. Let's talk about rewards, if you know how to use it you certainly get the best value for what you are paying for your other purchases. There are different variations of rewards out there depending on the card company. If you like getting more points so you could use it in exchange for premium items choose the credit card that offers the highest reward points, but mind you when I say these cards with large rewards are most often the ones with high interest rates"}, {"title": "rpj-c4", "text": "service. For example southwest credit cards rack up mileage, which you can use to purchase tickets. This is great, but unless you travel a lot, it really won\u2019t add much padding to your wallet. In addition, you are subject to blackout dates and other restrictions in some cases. Also, other company programs such as gas cards or other store cards require you make purchases at their store. In most cases we shop deals and buy our necessities at several locations. So locking us into one store or brand would actually cost us more, which would defeat the purpose of earning rewards. Well the simple answer is just to use your credit card rather than cash or check. Are you still writing checks? With every purchase you make try to use your plastic purchasing power. Many rewards programs earn you more points for using your credit card, rather than your check card. So if you are on the fence, and not sure if you should use a credit or check card, go with the credit card. Just make sure to pay off your balances each month (the interest charged will more than outweigh any rewards points you may accumulate). Have a small business? Add your business cards to your rewards program also. For many businesses paying with plastic is simple, and can really provide a nice shot in the arm for your rewards balance. Do you purchase things for your employer that you get reimbursed for? Use plastic! As an added bonus, any rewards points you earn"}, {"title": "rpj-c4", "text": "Recently, I\u2019ve begun using a credit card with a useful bonus program as my tool for making small, regular purchases. I did this after finally climbing out of a significant hole of credit card debt, reaching a zero balance on every one of my cards. When I began using the card for this purpose, I justified it by saying that I would only use it for necessary small purchases, such as groceries, automotive needs, and so forth. Then, I would pay the entire balance each month and thus utilize the grace period to avoid any finance charges, and thus the bonus program would simply be a useful profit on the situation. Another benefit is that it made monthly budgeting much easier. I could literally take the balance of my primary checking account at the start of the month, work out the required payments down to the cent, and then not have to worry about overdrafting or such things in the event of minor emergencies. However, there are some drawbacks to this setup. The biggest drawback is that I make it very easy to continue to live above my means. I\u2019m still paying for things using plastic, a habit that got me into dangerous financial territory before. Even now, I\u2019m often tempted to just use the plastic to buy something I want and then have my \u201cfuture self\u201d pay for it. Thankfully, I\u2019m able to resist those demons. A second drawback is that I have another variable bill that I need to pay on time. The amount"}, {"title": "rpj-c4", "text": "of plastic that are the catalyst for debt ridden families and bankrupt individuals. Used correctly and paid off in full every month, they can enable people to build up strong credit scores and teach sound financial habits. As with most things, it may be the individuals, not the tools who are to blame for their misuse. Credit cards and their usage need to be a topic of education for the youth of today to enable them to manage their finances more effectively. What to do if Your Credit Card Interest Rate has Increased? What are low interest credit cards ? \u00ab Filing For Bankruptcy? What About Your Poor Credit Rating?!"}, {"title": "rpj-c4", "text": "Putting your tax bill on plastic can also help you if you\u2019ve recently opened a new credit card and are trying to meet a certain spending amount to unlock an introductory offer. For instance, as travel and finance website The Points Guy notes, the Ink Business Preferred Credit Card from Chase JPM, +0.02% offers new card holders 80,000 rewards points after they spend $5,000 within three months of opening their accounts. Given how large a hurdle that may be, a big charge such as a tax bill would go a long way in hitting that mark. Additionally, travel cards such as the JetBlue Plus Card JBLU, +2.99% or the Hilton Honors Ascend Card HLT, -0.27% from American Express offer special rewards once consumers reach a spending threshold \u2014 Mosaic elite status in the case of the first card, and a complimentary weekend night with the Hilton card."}, {"title": "rpj-c4", "text": "The amount we Brits spend on our credit cards is increasing. That\u2019s according to new statistics released by the British Banking Association, who have revealed that \u00a37.1 billion was spent on our cards during the month of October in this country \u2013 that\u2019s an increase of over 5 per cent compared to the same month in the previous year. Better At Handling Our Credit Cards? The good news is that we\u2019re getting much better at handling our plastic than ever before too \u2013 to go with increased use by British people, the amount of debt has gone down. Even though we borrowed \u00a37.1 billion, we actually paid off \u00a37.4 billion in the same time period, which would seem to suggest that we\u2019re getting much better at budgeting and using our cards properly. Credit cards are increasingly competitive with the benefits they\u2019re offering too \u2013 along with cash back credit cards which reward consumers for spending money on their plastic; some cards offer things like air miles; charitable donations; and more. These benefits are just not available on purchases made using a debit card, so people are still spending more money on their credit cards to see the extra profits. Along with Section 75 \u2013 a piece of legislation that protects consumers making purchases valued at over \u00a3100 using their credit cards \u2013 there\u2019s increasing numbers of incentives for Brits to make more purchases using their plastic. \u201cIt\u2019s time people woke up to the wonders of credit cards and changed their spending habits,\u201d adds Becker. It always"}, {"title": "rpj-c4", "text": "If the idea of a credit card gives you pause, you can always try an innovation like the Wired Plastic Prepaid Debit Card. This card allows you the freedom of a regular credit card, but with one significant difference: with the Wired Plastic card, you will not be spending against your future earnings. Most credit cards operate on a debt base; a transaction is charged to the card, and the user is then expected to pay it off within a certain amount of time. With a prepaid card, you are responsible for determining what you spend on the card. You achieve this by \"loading\" your card. Loading occurs when you take money that you already have and put it on this card, creating a balance which you will then use as funds. You'll never spend money that you don't already have! This type of card comes in especially handily for parents with teenagers. Most parents have some type of arrangement with their kids that allows them to buy gas for their car, clothes, and other necessities. With the Wired Plastic Prepaid card, you can be sure that your kids aren't out spending them into a deep hole. Just give them an agreed-upon sum each month, and when it is gone, they have to wait until the next \"loading\" time. Because this card is offered through the Visa company, it can be used wherever Visa cards are accepted. Using it will also qualify the person in whose name the card is issued to receive valuable membership reward"}, {"title": "rpj-c4", "text": "minimum monthly payments and then pay off balances at a time convenient to your schedule instead of each billing cycle. You will be surprised how quickly you can rack up bonus points or rewards on a charge card. Some offer cash back; others offer points to shop at a number of favorite stores and restaurants. Some people assume the benefits of rewards programs are very small and not worth changing cards or shopping around for. However, these people will be surprised to see how quickly they rack up points in order to make even large purchases. It is not uncommon for people to purchase plane tickets, electronics and other large items by spending only points earned through their charge card reward program. This is especially true for small business charge cards. Your card should offer you protection from fraud or identity theft. Your charge card company should call you if your card is being used out of state or out of the country. You should also have an easy option to dispute a charge if you know you did not actually make the purchase. Charge card companies that do not offer this option are failing to provide you with one of the key benefits of using plastic instead of carrying cash: protection. Look for the most secure options possible with the least amount of hassle. This will come in particularly handy when you are traveling or shopping online."}, {"title": "rpj-c4", "text": "Use the credit cards to scrape gum off floors, or remove dried glue and hardened candies. 9. You can punch holes in the credit cards, and use them as large tags to identify your belongings such as luggage, briefcase, or kids\u2019 coats. According to the commenter, you could sand the credit cards to make them paintable. I love this idea; however, does anyone have an idea how to degrade the numbers? 10. They are also good for scraping off wallpaper. 12. Give your expired cards to your children to use to play. However, scratch the numbers off for security purposes. 13. Use as a scraper to apply wood filler, spackle or grout. 14. Use the credit cards as a shoehorn. 15. Use them for making clay sculptures. You can use a credit card as a tool to smooth down a clay surface or cutting grooves in the sculpture to make a textured surface. 17. Use them to make a house of cards doll house. ( Via Connie Prater in her article on Taking Charge, a CreditCard.com blog) She concluded such a house \u201cwould be expensive real estate when you add up how much you spent on the credit cards.\u201d How true. 18. Use them as either seedling or plant markers. I made two different markers. One I cut into a flag and put the name on the flag part with a marker. The second time, I just cut \u00bc\u201d strips, which was more efficient than making the flags. I wasted less credit card material. I also"}, {"title": "rpj-c4", "text": "These days\u2019 people tend to carry credit cards instead of cash whenever they are going out as it is an easy medium to do the payment. There are people who love credit cards and people who hate them. Using a credit card can definitely make a life of people easier, but the spender can go under a huge debt if the credit card is misused. Hence, the pros and cons of credit card must be considered to make sure that you can get many benefits from that plastic card. In comparison to cash and especially when you need to write a check, credit cards are much faster to use (Also Read). You can just swipe your card and your transaction is completed in seconds. With the help of credit cards, you can do your basic shopping over the phone, through the internet, or in person. However, with cash, you are limited to in-person purchases unless you purchase money orders. You can earn rewards from the use of credit cards that can further be used for cash, gift cards, miles, or other merchandise. The more you use the more rewards you earn. You have the ability to pay off your balance in a particular period of time although it\u2019s best to pay your credit card balance in full each month. These days the majority of places accept credit cards, which means you don\u2019t have to carry bundles of cash or also need to stop by any ATM to pull out cash before going out. In case your"}, {"title": "rpj-c4", "text": "On behalf of Rothschild & Ausbrooks, PLLC posted in Credit Card Debt on Friday, December 4, 2015. The holidays are here and this means that retailers and other companies are offering huge sales to entice people in Davidson to spend money. Often, people will put these purchases on their credit card in order to grant gift wishes their children, friends or family members have. However, using plastic to buy things must be done with great care. It is important for people to remember that credit cards have high interest rates. Therefore, in order to manage credit card debt in a healthy way, purchases should be limited to what a person can financially handle. Credit cards can be a great way to build a good credit report but they can also damage that report if people are not careful. This is especially true for people who have just received their first credit card in the mail. Credit card debt can accumulate without users being aware of it so it is important for them to only use their plastic for items that can be paid off without financial difficulty. Furthermore, it can help their credit report if they pay off the balance over a period of time, rather than pay it off immediately. For people who have more than one credit card and balance, it can be tempting to simply pay off the balance of one card by transferring it to another card. However, this is not the best idea. When people have become overwhelmed by debt, there"}, {"title": "rpj-c4", "text": "I\u2019ve reported before that it is possible to increase credit card spend by buying and selling discount gift cards. You can see more in the post \u201cGift cards: buy low, sell high, get cash back.\u201d To make many of these deals work, you need to get extra cash back when buying and selling gift cards. One of the best options has been to go through TopCashBack to PlasticJungle. Currently, TopCashBack gives 2% back for gift cards bought at PlasticJungle and 4% back for gift cards sold to PlasticJungle. Another good option is ShopAtHome which offers a flat 2% cash back rate. These cash back options often go a long way in bridging the difference between buy and sell prices, so that you can come out even and sometimes ahead by doing this. Now for the bad news. I received a tip today from a person who wishes to remain anonymous: As of midnight April 12th (Thursday night) PlasticJungle will lower their payout to cash back sites to 1% across the board. It will be interesting to see if TopCashBack and ShopAtHome instantly lower their rates as well. I expect they will. So, if you have gift cards to sell, you might want to hurry! Does this work for Visa gift cards too? Kevin Wagner: I don\u2019t think that PlasticJungle sells Visa gift cards. Sites that do generally offer smaller cash back options for those purchases. Topcashback already lists that its ending in 1 day. I would seriously urge people not to go over board with gift"}, {"title": "rpj-c4", "text": "right type of plastic. For big purchases, such as laptops or TVs, consider that most American Express cards and a fair amount of \"higher-end cards,\" such as Visa Signature, offer extended-warranty protection for using the card. That can double the store warranty. It can be worth getting one of these cards if you don't have one \u2014 you also may get a bonus for signing up that could help pay for more college shopping. \u2022 Use online shopping to your advantage. A \"significant majority\" of the best deals are online, especially with the online coupon codes that outnumber printable coupons these days. Even for retail stores, check if you can order online and pick up at the store \u2014 you get the item immediately and still may be able to use online-only discounts."}, {"title": "rpj-c4", "text": "Carrying a balance on your credit card can put you in a sticky situation. Paying all that interest isn\u2019t exactly peanuts, and dealing with credit card bills every month can leave you feeling roasted. You know what\u2019s nuts? We keep spending. Sure, credit card companies are crafty at finding ways to get you to pay with plastic. Reward programs, cash back gifts, and zero balance transfers are all lip smacking offers designed to get into your psyche and entice you to tap credit. It\u2019s time to stop being shell-shocked by these trickster ways. Want to put a lid on your credit card spending? I have a smooth (or crunchy) solution to this gobsmacking problem. Warning: Results may include tasty savings, and a few nuts. TOTAL COST: This $2 recipe could save you thousands. Try my Credit Card Calculator to see how much costly interest you\u2019ll save. Prevent credit card overspending with this nutty trick. STEP ONE: Be brave. Gather all your credit cards. STEP TWO: Wrap those pieces of plastic in a strong baggie. Seal shut. STEP THREE: Submerge that spending mess into a tasty jar of peanut butter. This is hard, I know. So take a lunch break \u2014 munching on a peanut butter and jelly sandwich should do the trick. You can do it! Keep pushing those pesky credit cards deeper into the nutty butter. STEP FOUR: Make a face on top of that expensive mess to ward off temptation. If you open that jar, you\u2019ll see \u2018Mr. Sad\u2019 staring back at you. STEP"}, {"title": "rpj-c4", "text": "Credit cards and plastic money in general have become extremely ubiquitous with the passage of time because they so incredibly convenient. You don't need to whip out some paper money every time you go out for your groceries, just let the credit card deal with all your worries. But credit cards are not without their risks, here's what you should know about credit cards before making a transaction. Credit cards come with a large number of benefits. The most important of which is to actually build your credit. A good credit can help you obtain loans such as a mortgage plan on favorable rates and avoid utility deposits. There are two types of credit cards. Secured and unsecured. Secured cards are protected by a cash deposit and are equal to the maximum limit which can be withdrawn. This is collateral. Unsecured cards are not backed by any collateral and are more risky. If the card's annual percentage is about 20% then the interest rate is going to be 0.0548%. The periodic interest rate will be calculated by dividing the APR with 365 days. Multiply that your average daily balance and the number of days in the month which accrued all that interest. Credit card fraud is a serious problem which plagues plastic money in general. This includes fraud of all kind such as unauthorized opening of new credit cards and even the recent Equifax data breach which affected 145 million people. The number of identity fraud victims in the United States alone includes an all time"}, {"title": "rpj-c4", "text": "change or something more? Should you sign up? Not without first understanding the difference between what is advertised and what is in the fine print. Secondly, credit cards and their issuers have gotten a lot of bad publicity because of people blaming their problems on them. The fact is credit card companies are not at fault for the spending habits of their customers. There has been a lot of attention paid to credit cards recently as debt estimates have been exaggerated, and some have gone so far as to call credit cards evil. Credit cards are dangerous, not evil. If you are a mature, responsible and educated person, there are many benefits to using credit cards that will be outlined in a coming article. Thousands of people charge thousands of dollars a day and get cash back, free airline tickets, free hotel stays, free movies-all with the simple process of swiping a piece of plastic. Why are these people able to handle their credit properly and carefully and others not? It has nothing to do with the credit card company or the card that they use; it has everything to do with the individual using it. If you are not going to use credit cards responsibly, be it as a way to pay for things with simple convenience, take the rewards and benefits cards offer, or as a strategic financial tool, then you shouldn't use them."}, {"title": "rpj-c4", "text": "Credit cards are a great way to build your credit and cover unexpected expenses, but they can also be a major temptation. If you\u2019re a big shopper or are going through a tough time financially, your credit card may be burning a hole in your pocket. To prevent overspending, you can freeze your credit card in ice to make it hard for you to access and use. If you are worried about your credit, you may want to freeze your credit or prevent credit card fraud. Place the card in a freezer-safe container. You may want to use a plastic storage bag, a piece of tupperware, or even a cup. Choose an item that will either cover up your credit card number or is thick enough that the number will not be visible through the ice. If the number is visible through the ice, then you may be tempted to use the card number for online shopping. You could also cover the number with a paper towel or a small rag before freezing, but remember that it will be submerged in water. If you have a chip card, freezing it should not damage the chip. Fill the container with water, covering the card. Your card needs to be completely covered in water so that once it freezes it will be covered in ice. If your container has a seal, such as plastic storage bag, close it once you\u2019ve added the water. Place the container into the freezer and let it freeze solid. It may take several"}, {"title": "rpj-c4", "text": "Credit cards can offer several benefits compared to other forms of payment. Many of us use them as our preferred payment method, and for good reason. If you can properly use a credit card and understand NOT TO overspend or rack up interest charges by failing to pay off your balance, then a credit card is an excellent option. Below we will discuss the top benefits of using a credit card. One major drawback of using a debit card over a credit card is the fact that some debit cards have a 24-hour charging limit, which could delay you from making larger purchases on the spot. Credit cards on the other hand, provide you with more spending power since you do not have to have the up-front funds to make large purchases. Credit cards can also provide you with peace in the face of an emergency. According to CNBC, an astonishing 57 million Americans have no emergency savings. If you do not have an emergency savings account, paying for an unexpected emergency room stay or major car repair out of pocket may be a significant financial strain. A credit card, on the other hand, can make paying for an unexpected expense much more manageable and less stressful since you can payback your balance over-time. Just make sure your credit card does not come with a high interest rate! Also, be mindful of how much you are spending. It can be easy to swipe your credit card while on a shopping spree, but if you fail to"}, {"title": "rpj-c4", "text": "You have long known the credit card. It is said to be your ultimate gear when you go shopping. The plastic can even be a best friend to a happy shopper. Considering the times nowadays, this plastic seems to be the least practical option out there. It is actually the most convenient tool used for consumption when you are out of cash. It lures you to spend. Is there anyway for your credit card to be useful for your saving endeavors? Yes, actually there are ways that the plastic can be helpful. You CAN actually save money with that credit card. If your present credit card has high interests, you can transfer your balance to one with a low-interest or no-interest at all. It can offer you a 0% interest for a certain period and then a lower regular rate later on. A 19% interest rate can be transferred to one with 16.1%. The 2.9% difference means a lot, especially in the long run. Look for one with the lowest rate among others to further maximize having a credit card. This definitely spells savings. If you do not have a balance yet, it is best to look for a card without annual fees. Take extra precautions, too, in assuming that the lowest interest rate is the best for you. Factor in your buying habits. You may be attracted to the low rates, but the end result may not be desirable if combined with the annual fees and the like. Reward points system and cash back programs"}, {"title": "rpj-c4", "text": "bank or debit card company and receive a debit card. Although Top 10 Reviews reports that you are able to generally expect to acquire about one mile for each and every dollar spent, points can differ according to your type of purchase. Choose the bank card you want to utilize to for the total amount transfer. Check your next plastic card statement to substantiate that you happen to be the only authorized user for the charge card. If you\u2019ll be able to\u2019t find your statement, just call the corporation. Credit card companies have to clearly outline their policies to consumers, but those policies are cleverly hidden in tiny print on. The turnpike was internal 1954, charging drivers a little fee to get over the state faster using a less crowded highway. You\u2019ll also have an overabundance money to utilize to other debt, start a citicards login \u2013 https://www.loginphone.org/citicards-login/ wise investment program or put money away for retirement or maybe your kid\u2019s college education. Pay \u2013 Pal is usually a useful service for transferring money between two parties. it is going to tie up the device line up as you move the transaction will go through. For customers, paying an individual monthly plastic card bill might be easier than writing checks for small purchases, or making frequent visits to your bank or ATM to always have funds on hand. Obtaining a plastic card machine is often a relatively simple task. Study the plastic card amount due in your card, how much of your respective credit line can"}, {"title": "rpj-c4", "text": "There\u2019s choosing the right job, the right guy, and even the right shoes to compliment your perfect outfit. There\u2019s also choosing the right credit card. Since money doesn\u2019t grow on trees (unfortunately) and you don\u2019t always have cash, you swipe away using your plastic card to get the things you need and want. But, the credit card you use shouldn\u2019t do more damage to your bank account than your spending habits are already doing. Also read Ebates Review: What is Ebates and Why You Should Be Using It. Try paying more than the \u201cminimum payment due\u201d every month. Always make sure that you pay off your credit card debts to live a worry-free life. Instead of using a credit card you can use companies like Loans Now to get a good amount of personal loan without any form of collateral. Using your credit card will help you build a strong (and hopefully positive, so you can get Citrus Loans, calculated with OnQFinancial\u2019s mortgage calculator, or that car you want) payment history- which means paying your bills on time. If only money grew on trees\u2026But since it doesn\u2019t, making the right credit card choice really does make life a little easier. Be sure to decide on the best credit card for your lifestyle based on the facts.."}, {"title": "rpj-c4", "text": "Just having your name on a little plastic card isn\u2019t going to affect your credit score by much. It\u2019s how you use them that counts. There\u2019s a big difference between using a credit card for everyday spending and paying it off weekly or monthly and using it to buy a new car and letting the balance sit there unpaid. Lenders don\u2019t mind that you have credit cards, but they are very interested in how you handle them. Pay off your card immediately; you don\u2019t have to wait until your bill is due! The reason credit cards expire is because the magnetic strip gets a lot of abuse and needs to be replaced. A magnetic strip is good for only about three to four years of swiping. Using an unsecured credit card is like taking out a loan. Credit card companies allow customers to borrow their money, but everything must be paid back in full and on time by the end of the month. Using an unsecured credit card is like paying for the convenience of using money you don\u2019t have, but the credit card company can charge interest and limit your spending. With a secured credit card, the credit limit is paid in advance. You deposit a given amount of money with your credit card company to open a card. This deposit is typically the same as your credit limit. If you do not pay your bills on time, your creditor uses this deposit to cover the bill. If you consistently pay your bills on time,"}, {"title": "rpj-c4", "text": "Each time you brandish your plastic purchasing pal, you encounter the question. Is there a right or wrong answer? Not exactly. But here\u2019s a look at the differences to help you decide what makes sense for you. Credit and debit cards have similar logos, magnetic strips, encryption chips, and they\u2019re generally accepted in all the same places. So what gives? Credit cards attach to a line of credit. They work somewhat like a loan. When you make a purchase, the credit line decreases and your balance increases. If you pay the entire balance off by the due date, you don\u2019t pay any interest. If you don\u2019t, you get charged interest. The annual percentage rate (APR) varies, depending on your card. Debit cards attach directly to your checking or savings account. They work like cash. When you make a purchase, the money gets withdrawn immediately and decreases the balance in your account. There is no payment to make and no interest charged. Following are the benefits and things to be aware of with credit cards and debit cards. You build a credit history. Some cards reward points for travel, cash back, goods and other incentives. You can make purchases when you don\u2019t have enough cash in your account (which can be helpful for emergencies). There is usually a grace period of about 25 days to pay off your debt in full without incurring any interest charges. Credit cards can protect you from fraudulent charges, low-quality goods and goods you never received. You can sometimes get \u201cno interest\u201d"}, {"title": "rpj-c4", "text": "A pocket full of plastic money gives one a feeling of success and security. Using your credit cards for purchases is so easy, choose what you want to buy and pay for it with a piece of plastic instead of cash: bought, done. That is fine as long as you keep your spending limited within your monthly income and pay the full amount of your accounts by the date due. Unfortunately, in many cases, there is not enough income to cover the payments. This starts many people to begin using two or three or even more credit cards, making payments by rolling money from one of them to another in order to survive. Use of cards comes with a credit limit that you can buy for. This is set by the bank issuing it and is dependent on monthly income. Each bank has a different limit setting as well as some of the cards having budget payment facilities where as others do not offer this kind of service. Acquiring a card is usually easy to get as long as you qualify financially. In fact, the banks are only too willing to give them to you so they can make some easy money. The bank charges on overdue card payments are high and it is not difficult for people to end up not meeting their commitment by the due date. Instead of being careful about their spending they run up their cards to the maximum. If you have surplus money rather put it into a savings account"}, {"title": "rpj-c4", "text": "A pocket full of plastic money gives one a feeling of success and security. Using your credit cards for purchases is so easy, choose what you want to buy and pay for it with a piece of plastic instead of cash: bought, done. That is fine as long as you keep your spending limited within your monthly income and pay the full amount of your accounts by the date due. Unfortunately, in many cases, there is not enough income to cover the payments. This starts many people to begin using two or three or even more credit cards, making payments by rolling money from one of them to another in order to survive. Use of cards comes with a credit limit that you can buy for. This is set by the bank issuing it and is dependent on monthly income. Each bank has a different limit setting as well as some of the cards having budget payment facilities where as others do not offer this kind of service. Acquiring a card is usually easy to get as long as you qualify financially. In fact, the banks are only too willing to give them to you so they can make some easy money. The bank charges on overdue card payments are high and it is not difficult for people to end up not meeting their commitment by the due date. Instead of being careful about their spending they run up their cards to the maximum. If you have surplus money rather put it into a savings account"}, {"title": "rpj-c4", "text": "Personal finance experts spend a lot of energy trying to convince people not to use credit cards. Credit cards allow people to carry of a lot of personal debt and can be a major source of stress for our clients. However, credit cards provide many advantages as long as they are used wisely. Building credit. If you don\u2019t have a credit history or if you need to improve your score, a credit card can help raise your credit score. Debit cards do nothing to help your credit score. We offer a credit improvement program to help clients improve their credit scores so that just 2 years after filing bankruptcy they can qualify for a regular-interest mortgage or car loan. Part of the credit improvement program includes getting a credit card and using it responsibly. Cash back. With the right credit card, you can earn from 1-5% back on all your purchases. That\u2019s like having a permanent discount on everything you buy. Investment rewards. Some credit cards give cash back that must be deposited directly into an investment account. This encourages you to invest and save. Frequent Flyer miles. Nearly every airline has at least one credit card offering. The ultimate value of these cards is really determined by the specifics of the card and the airline tickets you actually use. The details can vary so shop around. Using a credit card makes it a lot easier to avoid financial losses due to fraud or unfortunate timing on automatic payments. If your debit card is used fraudulently,"}, {"title": "bm25", "text": "There\u2019s choosing the right job, the right guy, and even the right shoes to compliment your perfect outfit. There\u2019s also choosing the right credit card. Since money doesn\u2019t grow on trees (unfortunately) and you don\u2019t always have cash, you swipe away using your plastic card to get the things you need and want. But, the credit card you use shouldn\u2019t do more damage to your bank account than your spending habits are already doing. Also read Ebates Review: What is Ebates and Why You Should Be Using It. Try paying more than the \u201cminimum payment due\u201d every month. Always make sure that you pay off your credit card debts to live a worry-free life. Instead of using a credit card you can use companies like Loans Now to get a good amount of personal loan without any form of collateral. Using your credit card will help you build a strong (and hopefully positive, so you can get Citrus Loans, calculated with OnQFinancial\u2019s mortgage calculator, or that car you want) payment history- which means paying your bills on time. If only money grew on trees\u2026But since it doesn\u2019t, making the right credit card choice really does make life a little easier. Be sure to decide on the best credit card for your lifestyle based on the facts.."}, {"title": "bm25", "text": "Credit card debt among young Malaysians: A conceptual framework The credit card industry in Malaysia has grown, as more businesses accept credit card for financial transactions. However, majority of young adults today are burdened by credit card debts. Hence, this study investigates the factors that affect credit card debt among young adults in Malaysia. This research details a conceptual framework, sheds light on the reasons why young Malaysians fall into credit card debt trap, and provides strategies for helping them to use credit cards appropriately. Six independent variables will be used to develop arguments, and hypotheses for the specific effects of credit card debt. The six independent variables are compulsive buying, impulse buying, social support, interest rate, education, and beliefs on credit card. This framework would be helpful for assessing the key factors affecting credit card debts in Malaysia and could provide some bases for further investigation involving larger stakeholders."}, {"title": "bm25", "text": "for currency known as credit coins or charge plates \u2013 essentially a promise to pay for the goods or service in the future. The first plastic credit card was created by American Express in 1957 and over the last 50 years, the use of credit cards has become increasingly common. Today, the average American has 9 credit cards showing on their credit report, and the average consumer has four credit cards in their wallet. Even if the credit accounts aren\u2019t all open at once, most Americans are all too familiar with swiping the card to pay for life\u2019s expenses. Total consumer debt in the US not including mortgage loans is $2.46 Trillion. Of this total, over $900 billion is credit card debt. One in six credit card holders pays only the minimum payment every month. Since 2002, the rate at which cardholders pay down balances has decreased annually. For the first time in US history, the American savings rate is negative. There are several factors contributing to the growing problem of credit card debt. Since the early 1980\u2019s, banks and other issuers of credit have bombarded mailboxes with tantalizing offers for credit. Citing low interest rates, pre-approved credit, and a promise to have a card in your mailbox within just 2-3 business days, it\u2019s easier for Americans to get their hands on credit cards than ever before. College students walk past booths on campuses offering free t-shirts, gym bags, or beach towels in exchange for signing up for a new credit card. Department stores offer discounts"}, {"title": "bm25", "text": "Credit cards are so integrated into our financial lives, it\u2019s becoming increasingly difficult to get around using them. In recent years, Canadians\u2019 total credit card debt has almost reached a whopping $600 billion. That\u2019s a lot of plastic being swiped! Credit cards are convenient and necessary for many of our daily transactions. For shopping online or booking hotels and rental cars, they\u2019ve become a must. But that same convenience can lead to balances quickly adding up and spiraling out of control. That leads to added interest, which makes paying off balances even harder. Soon you\u2019re stuck in a pattern of barely maintaining minimum payments with a worrisome debt that feels impossible to pay off. Not only does that create added stress on your wallet, it can lead to damaged credit. Soon you\u2019re borrowing more just to maintain your basic monthly expenses. If you\u2019re feeling trapped in this cycle, don\u2019t worry. LendingArch specializes in helping Canadians find personal loans that can help reduce or eliminate credit card debt. We\u2019ll work with you to find a loan that has terms tailored to your needs. Even if you have bad credit, we\u2019ll locate a lender that understands your situation, helping you to consolidate costly credit card balances and pay off your debt painlessly. With the right plan, you can leave bad credit behind and start building for tomorrow. At LendingArch, we recognize how devastating those double-digit interest rates can be. The average annual percentage rate (APR) for typical consumer credit cards is about 16% to 17%, but many cards"}, {"title": "bm25", "text": "A Bankrate study last year found that 67% of millennials did not own a credit card. This isn\u2019t that surprising since many were old enough to see how the over-usage of debt and the financial crisis affected those around them. The Credit CARD Act of 2009 also made it harder for those under 21 to get a credit card by prohibiting credit card companies from giving out free swag on college campuses and requiring proof of income or a co-signer to get a credit card. Thus, a whole new generation of adults do not see any reason to have a credit card, which could become a problem in the future. A look on many of the comments posted on personal finance articles about plastic also show many people who are vehemently against the use of credit cards, preferring to use debit cards instead. They say it is too easy to go into debt because people mindlessly swipe because they are spending someone else\u2019s money. Or they say chasing after credit card rewards could lead to people to spend out of control because of the availability of credit. Being wary about debt is a good thing, however, except for only one reason why someone should use a debit card, pulling out a credit card is a vastly superior option when paying for everyday purchases. The biggest drawback about debit cards is they are directly linked to your bank account. For most people, this is the same account that they use to pay their rent, mortgage payments, utility"}, {"title": "bm25", "text": "Lately, it seems as though everyone is releasing a prepaid debit card. From Justin Bieber to Suze Orman, celebrity prepaid debit cards are all the rage. These prepaid debit cards look like credit cards, and when you make purchases with them, they act like credit cards. But they aren\u2019t credit cards. There are serious differences between prepaid debit cards vs credit cards, and you should be aware of what they are. In function, a prepaid debit acts a lot like a credit card. You swipe a piece of plastic, and you are able to complete a purchase. Most prepaid debit cards even come branded with the logos of prominent credit card payment processors like MasterCard and Visa. However, you need to know that a prepaid debit card is not a credit card. First of all, the only money available to you is the money loaded on to the card. A credit card represents a loan. You are using someone else\u2019s money, and if you don\u2019t repay the debt, you are charged interest. With a prepaid debit card, a set amount of money is associated with the card. When you swipe it, your available funds are reduced. When all of the money associated with the card is depleted, you can no longer use the prepaid debit card. You have to reload the card if you want to use it again. With a prepaid debit card, you will likely pay fees. Many prepaid cards come with monthly fees. So, in order to access your money, you are required"}, {"title": "bm25", "text": "much better with a firepit and some outdoor lighting, for example. When you\u2019re using plastic for landscape financing, you can run to the home improvement store for those extras and simply swipe your card to pay (up to your credit limit, of course). Of course, all that flexibility doesn\u2019t mean you shouldn\u2019t set a budget for your landscaping project upfront; it\u2019s always a good idea to map out what you plan to spend and carefully consider any add-ons before you whip out your credit card. There\u2019s one drawback to consider, however: Once your introductory rate expires, your interest rates can climb as high as 16% to 20%, which drives up your monthly payment and overall borrowing costs. If your landscape project runs to tens of thousands of dollars, think twice before paying with plastic. If you don\u2019t want to wait until you\u2019ve saved enough cash to cover your landscaping, Hearth can help you find the best rates on a personal home improvement loan or home improvement credit card. If you\u2019re not sure which option is right for you, use our home improvement financing comparison tool to help you decide. Click to request a personal home improvement loan or home improvement credit card. The process takes less than three minutes and doesn\u2019t affect your credit score. Review the options from our lending partners and decide which works best with your budget and landscape financing needs. Complete the application with your selected lender and wait for your money to arrive (usually between one and 10 days). Let Hearth"}, {"title": "bm25", "text": "use regularly and an additional one for emergencies will do just fine. Also, managing 3 cards is relatively simple. All you have to do is establish the 30% spending limit and use the cards accordingly. Needless to say while making timely payments. Two additional cards can be availed if you travel for work or have a particular expense on which you spend frequently like flights, fuel etc. These cards can be specifically used for the determined purpose. Now that you are equipped with all the insights on credit cards, it\u2019s time to say goodbye to the stack and hello to fewer cards and effectively utilization. Use plastic money to make your life easier and your bank balance heavier. Planning and discipline is the key. If you are new to using credit cards or have been using one without knowing what a bunch of things mean on the credit card statement, let\u2019s make things a little simpler for you. Let\u2019s de-jargonise some credit card terms for you so that you can handle your credit responsibly and in turn help you keep up a good Cibil score.Many financial terms on your statement stand for basic things that are easy to understand. Here\u2019s a closer look. The credit limit is the maximum amount of money that you can swipe or borrow on your credit card. This is a prestipulated amount that is fixed by the card issuer. How much of the credit limit you utilise, also has a large bearing on your Cibil score. Ideally the utilisation rate on"}, {"title": "bm25", "text": "on applying for a mortgage or other big loan in the near future, there are some issues to keep in mind. Applying for a new card dings your credit score in the short term because it suggests you're in need of money. Your credit score can also take hits when an account is closed. This is in part because closing an account lowers your total credit line. A smaller component in your score is the length of your credit history. So you want to think twice before closing one of your oldest accounts. If you're tempted by a balance-transfer offer but worried about hurting your score, see if you can use the offer to negotiate for better terms on your current card. Even if you have a spotless payment record, however, don't expect to receive a matching offer of 0 percent for 12 months, said Ben Woolsey, director of consumer research at CreditCards.com \"The most you can expect is a reduction in your interest rate,\" Woolsey said. In many cases, that may be all you were hoping for. by Candice Choi Associated Press Feb. 27, 2011 12:00 AM Sectors spar over fee cap on debit use Americans now make more than one-third of their purchases using debit cards, and all those swipes of the plastic have provoked a nasty battle. The fighting between the retail and financial industrials is over interchange fees on debit transactions. After years of merchant complaints, Congress in December instructed the Federal Reserve to cut the fees to 12 cents per swipe,"}, {"title": "bm25", "text": "Credit card addiction is real. Find out what are the symptoms to look out for, and what steps you can take from a financial perspective to rehabilitate yourself. The original version of this article was published by CompareHero.my, dedicated to increasing financial literacy and helping you save time and money by comparing credit cards, personal loans and broadband plans in Malaysia. What is Credit Card Addiction? Credit card addiction is when your convenience at swiping that magic piece of plastic spirals out of control. You think you can stop anytime, yet you somehow excuse your behavior to say \u201cI have to use it this time; I\u2019ll stop after this\u201d. As with any addiction, it can have devastating effects on an individual or a family because of the financial implications of spending too much with your credit card, as well as the subsequent money woes that can ruin marriages and careers. Although they are very easy to use, credit cards are not always the best way to pay for your purchases. An addiction doesn\u2019t become an addiction overnight. It likely begins as a convenient reason to do something, before going on to becoming a convenient excuse. Then, it becomes a habit before becoming a must-do compulsion. Here are some common phrases along the way. \u2018I have to get that new credit card, have you seen the promo on that? Are they familiar? Most of them are harmless on their own, and may even be justified as financially-savvy decisions! Tip: A credit card is best used for short-term"}, {"title": "bm25", "text": "Americans are increasingly whipping out plastic to pay for their purchases. This growing reliance on credit cards resulted in Americans closing out 2015 with more than $900 billion in credit card debt, according to a recent credit card study by CardHub. That means the average U.S. household is shouldering the highest amount of credit card debt \u2014 more than $8,000 per indebted household \u2014 since the Great Recession. It's a troubling (and disappointing) trend, especially when you consider just 18 months ago,many Americans reported either taking the scissors to their credit cards or making sure to pay off their balances in full each month. But more Americans seem to be practicing \"swipe now, worry later\" spending habits. \"Many consumers are focused on immediate gratification; it is very easy to pull out the plastic and make instant purchases,\" Laura Beal, a lecturer in finance, banking and real estate at the University of Nebraska at Omaha, told CardHub. In addition to factors like income and financial literacy, CardHub said where you live plays a significant role in how well you manage your credit card debt and how high that debt rises. Based on residents' average credit card balance and income, College Station, Texas, has the longest estimated payoff timeline at 387 months (more than 32 years), which is 47 times longer than the shortest payoff timeline, 10 months, for Cupertino, California. Americans added $21.3 billion in new credit card debt during the third quarter of 2015, which is 71 percent higher than the post-recession average. For help finding"}], "hoverinfo": "text"}, {"x": [0.15417949855327606, 0.14969590306282043, 0.07500186562538147, 0.0649222657084465, 0.13642427325248718, 0.0711079016327858, 0.09489275515079498, 0.06854268908500671, 0.11933927237987518, 0.13196954131126404, 0.11020126938819885, 0.059754256159067154, 0.06760305911302567, 0.12832233309745789, 0.15506361424922943, 0.12090636789798737, 0.07370875775814056, 0.07557626813650131, 0.1406105011701584, 0.046736493706703186, 0.10958660393953323, 0.0777057632803917, 0.1600036472082138, 0.1409507393836975, 0.13961100578308105, 0.14563143253326416, 0.1198943555355072, 0.12460920214653015, 0.11003056913614273, 0.05967273935675621, 0.13338179886341095, 0.10907556861639023, 0.1103285625576973, 0.11485778540372849, 0.12143079936504364, 0.12444736808538437, 0.12196947634220123, 0.07724635303020477, 0.09105300158262253, 0.06877004355192184, 0.14732903242111206, 0.07912500947713852, 0.07660795748233795, 0.1043609157204628, 0.128300279378891, 0.1532936543226242, 0.1409507393836975, 0.12196947634220123, 0.1187446117401123, 0.10612577199935913, 0.14311756193637848, 0.15394489467144012, 0.13952556252479553, 0.16159893572330475, 0.1394820511341095, 0.10076111555099487, 0.14199574291706085, 0.09606864303350449, 0.15596845746040344, 0.13137994706630707, 0.13121768832206726, 0.08598586916923523, 0.09473831206560135, 0.14324656128883362, 0.12355122715234756, 0.11528259515762329, 0.09750540554523468, 0.0827605277299881, 0.09680955857038498, 0.10572925209999084, 0.15919890999794006, 0.13293439149856567, 0.14610251784324646, 0.10310648381710052, 0.1406891644001007, 0.11020149290561676, 0.09133926033973694, 0.07278068363666534, 0.15627962350845337, 0.11289358139038086, 0.12734611332416534, 0.10861368477344513], "y": [-0.08089602738618851, -0.1128007248044014, -0.09057999402284622, -0.11029264330863953, -0.014756416901946068, -0.08182413876056671, -0.126416876912117, -0.09179351478815079, -0.13625244796276093, -0.08152271807193756, -0.04232034087181091, -0.11749285459518433, -0.14734871685504913, -0.09379076957702637, -0.0425422340631485, -0.09681553393602371, -0.07494743168354034, -0.12683898210525513, -0.07904881238937378, -0.06480804085731506, -0.10142067819833755, -0.100429467856884, -0.10089101642370224, -0.1035531684756279, -0.10438193380832672, -0.046696025878190994, -0.06727244704961777, -0.0937531366944313, -0.11137277632951736, -0.06202120706439018, -0.12102784961462021, 0.002022000029683113, -0.04878833889961243, -0.10733263939619064, -0.17249545454978943, -0.06767865270376205, -0.10804104059934616, -0.1007850170135498, -0.12500615417957306, -0.09383010119199753, -0.10028351843357086, -0.07513640820980072, -0.07886578142642975, -0.14329728484153748, -0.08883447200059891, -0.07538101077079773, -0.1035531684756279, -0.10804104059934616, -0.08906199038028717, -0.14328408241271973, -0.05964949354529381, -0.07336322963237762, 0.02157129906117916, -0.13424062728881836, -0.0998532697558403, -0.03360232710838318, -0.09330715984106064, -0.034804392606019974, -0.05143766477704048, 0.013566181994974613, -0.12071070820093155, -0.004679558333009481, -0.12855768203735352, -0.08057764172554016, -0.053506504744291306, -0.10233961790800095, -0.056315355002880096, -0.07136263698339462, -0.053792353719472885, -0.08870167285203934, 0.009671679697930813, -0.0822824239730835, -0.08420450985431671, -0.07170156389474869, -0.07653438299894333, -0.04232044517993927, 0.009120672009885311, -0.04890065640211105, -0.0677010789513588, -0.11950022727251053, -0.14857138693332672, -0.10203516483306885], "mode": "markers", "name": "Cluster 1", "marker": {"size": 8, "color": "rgb(255,255,179)"}, "text": ["Document 31", "Document 48", "Document 50", "Document 62", "Document 65", "Document 71", "Document 88", "Document 91", "Document 105", "Document 108", "Document 114", "Document 121", "Document 122", "Document 130", "Document 137", "Document 146", "Document 162", "Document 166", "Document 174", "Document 181", "Document 193", "Document 211", "Document 212", "Document 218", "Document 229", "Document 237", "Document 240", "Document 252", "Document 262", "Document 292", "Document 300", "Document 304", "Document 306", "Document 328", "Document 370", "Document 380", "Document 401", "Document 410", "Document 467", "Document 471", "Document 476", "Document 479", "Document 495", "Document 531", "Document 538", "Document 540", "Document 559", "Document 581", "Document 606", "Document 609", "Document 636", "Document 653", "Document 696", "Document 736", "Document 747", "Document 775", "Document 789", "Document 800", "Document 806", "Document 810", "Document 831", "Document 869", "Document 893", "Document 908", "Document 997", "Document 1000", "Document 1012", "Document 1040", "Document 1109", "Document 1142", "Document 1150", "Document 1171", "Document 1198", "Document 1224", "Document 1238", "Document 1264", "Document 1343", "Document 1354", "Document 1368", "Document 1378", "Document 1388", "Document 1447"], "customdata": [{"title": "rpj-common-crawl-2021-04", "text": "card. You\u2019ll still insert your card into a reader (which is just slightly different than swiping it through). Next, the machine and the card exchange information to confirm the card and the information it generates is authentic and not fraudulent. Once confirmed, you enter your PIN and complete your transaction. Why Is This More Secure? You need to understand how older credit cards worked to know why chip-and-PIN is considered \u201cmore secure\u201d than previous credit cards. In the past, the only security feature built into a credit card was the magnetic strip on the back. This strip contained information about your line of credit, and it\u2019s what a machine read when you swiped your card at a cash register or through an ATM. The information stored on the strip was tied to your account and is what determined whether or not your payment was accepted. Here\u2019s the thing: this technology is the same used in cassette tapes. But we\u2019re talking about our credit cards and financial information here. You can see why this just wasn\u2019t secure enough to prevent issues like fraud. Stealing data from credit cards with just the magnetic strip is easy for thieves to do. The information is static, it\u2019s not encrypted, and it\u2019s easy to read. People committing fraud could easily take the information -- either with a credit card skimmer or by taking the card out of sight and copying down the number and security code -- and use it to make purchases or even counterfeit copies of the card. (And"}, {"title": "rpj-common-crawl-2019-30", "text": "such as to pay for purchases by using a credit card, a debit card, or a gasoline charge card. A charge card or a debit card may also be used to transact business with a bank through use of an automated teller machine (ATM). The magnetic stripe card is capable of storing data by modifying the magnetism of magnetic particles embedded in the stripe. The data stored on the magnetic stripe may be sensed or read by swiping the stripe past a read head. The analog waveform obtained by sensing the magnetic stripe must undergo a process known as decoding to obtain the digital information stored in the magnetic stripe of the card. Currently, there are hundreds of magnetic stripe readers/swipers on the market; all of them are at least as long as the credit card itself. These existing readers/swipers can be classified as either platform card readers or plunge card readers. Platform card readers are traditional card swipers with single rails, which allow a card to be held against the base of the reader by the user and moved across the read head of the reader. Plunge swipers guide a card by two sets of rails and a backstop. Once the user has inserted the card against the backstop, the card is read as it is removed from the plunge swipers. Plunge swipers are common on ATMs and other self-pay devices because they are less prone to hacking. Magnetic stripe cards having standard specifications can typically be read by point-of-sale devices at a merchant's location."}, {"title": "rpj-common-crawl-2023-06", "text": "Evans, co-author of the book Paying With Plastic: The Digital Revolution in Buying and Borrowing. \u201cI think the answer is simple. It is really inexpensive to issue mag stripe cards, and nowadays the point-of-sale technology for reading mag stripes has been perfected and benefits from economies of learning and scale.\u201d The first person to affix magnetic media to a plastic card for data storage was IBM engineer Forrest Parry. This was back in the early 1960s. The story goes that he wanted to combine a strip of magnetized tape with a plastic identity card for officials of the CIA, and he couldn\u2019t figure out how to do it. When he mentioned his problem to his wife, who happened to be ironing clothing at the time, she suggested that he use the iron to essentially melt the strip on. And that\u2019s what he did. IBM became a pioneer in magnetic stripe technology. The story of the magnetic stripe isn\u2019t just about the ingenuity of the technology. Even more important was the effort by IBM and other leaders of electronic payments to create open compatibility standards. Working with the banking and airlines industries, IBM helped develop the approach that was adopted as a U.S. standard in 1969 and an international standard two years later. That meant that anybody could use their magnetic stripe credit or debit card anywhere in the world. It also meant that IBM couldn\u2019t benefit directly from its magnetic stripe inventions. \u201cWe decided not to patent the stripe or the stripe production technologies. We wanted"}, {"title": "rpj-common-crawl-2022-05", "text": "networks and transaction-processing computers, was the catalyst that accelerated the proliferation of the global credit card industry, which now handles US$6 trillion in transactions per year. Initially used on transit tickets for the London underground and California\u2019s Bay Area Rapid Transit system, the magnetic stripe enabled a person\u2019s identifying information to be logged and transmitted immediately, securely and accurately. The technology is now commonplace on ID cards, drivers\u2019 licenses, security control cards and ATM cards. \u201cWhy has the mag stripe proved so resilient?\u201d writes David S. Evans, co-author of the book Paying With Plastic: The Digital Revolution in Buying and Borrowing. \u201cI think the answer is simple. It is really inexpensive to issue mag stripe cards, and nowadays the point-of-sale technology for reading mag stripes has been perfected and benefits from economies of learning and scale.\u201d The first person to affix magnetic media to a plastic card for data storage was IBM engineer Forrest Parry. This was back in the early 1960s. The story goes that he wanted to combine a strip of magnetized tape with a plastic identity card for officials of the CIA, and he couldn\u2019t figure out how to do it. When he mentioned his problem to his wife, who happened to be ironing clothing at the time, she suggested that he use the iron to essentially melt the strip on. And that\u2019s what he did. IBM became a pioneer in magnetic stripe technology. The story of the magnetic stripe isn\u2019t just about the ingenuity of the technology. Even more important was the"}, {"title": "rpj-c4", "text": "In any case, modern credit cards use the same magnetic strip they\u2019ve used in the past. Over the past decade, however, credit card companies have added chip technology and tap-to-pay technology that makes them easier to use than ever before. One theme has remained common throughout the history of credit cards: credit card companies really want you to spend money. Their goal is to get you to spend as much money as possible, and then they make money off of the high interest rates and financing fees. That\u2019s what their business is based on. All of the technological improvements that have taken place over the years have revolved around making it easier to spend money \u2013 from the early days of the Diners Club card to modern Visa and MasterCard technologies. That theme isn\u2019t going to change as credit cards enter the future."}, {"title": "rpj-c4", "text": "Do You Need RFID Protection for Your Credit Card? RFID \u2013 it\u2019s not a collection of letters that sound particularly frightening out of context, however without the right protection, it could be the reason you fall victim to one of the most devastating privacy crimes \u2013 identity theft. The chances are that by now you\u2019ve seen people walking around withRFID-blocking sleeves for their cards. In fact, there are even a few ways to make your own RFID-blocking wallets if you don\u2019t mind the bulky home-made look. However, you might still be asking yourself whether you really need RFID protection for your credit card. The choice of what to put in your wallet used to be a simple one. You\u2019d stuff each pouch full of membership cards, credit cards, debit cards, and cash, and fill up the empty space with loose receipts and change. However, as new technology becomes increasingly popular today \u2013 particularly in the world of contactless payment, there\u2019s a new factor to think about. Contactless cards offer consumers convenience by allowing them to simply tap the top of their card onto a device to pay for products and services. This means no more wasting time remembering and entering your pin number when you\u2019re in a rush. Unfortunately, the technology that makes contactless payment work, is also what makes RFID protecting for your credit card so essential. RFID blocking sleeves, wallets, and even materials used in money security pouches are designed to help protect consumers from a worrisome form of electronic pickpocketing known as RFID"}, {"title": "rpj-common-crawl-2019-30", "text": "swiping a magnetic stripe card) and because there is no contact between the card and reader, there is less wear and tear, and therefore less maintenance. As RFID technology evolves and becomes less expensive and more robust, it's likely that companies and RFID vendors will develop many new applications to solve common and unique business problems."}, {"title": "rpj-c4", "text": "Concerned about identity theft? Our RFID-Blocking Credit Card Sleeves prevent unauthorized access to your credit cards by creating a metallic shield around your card that blocks skimming attacks. I guess it works as I haven\u2019t been hacked, so far so good. This store is excellent. Super fast shipping with quality merchandise. Exactly as described. Workmanship and quality are superb. Fits the Euro currency and credit cards but with a very slim profile. These were a gift for someone else and their feedback is positive. I am using the sleeves and they fit well in my wallet, however, the sleeves are a bit smaller than my credit card and debit card. I can see some of the magnetic strip showing and am not sure if this will be an issue since the sleeve is meant to protect from identity theft (is the sleeve suppose to completely cover the magnetic strip?). I will continue to use the sleeves and so far so good. I also gave some as holiday gifts and they were well received. The cherry tree sleeves are very beautiful; however, when I placed my door badge in the sleeve, the signal came through absolutely fine (opening the door with no problem). Therefore, I__m not sure they really block RFIDs. I like them very much. They fit very nice in my wallet with the cards. I also like the passport sleeve. Thank you for this good product. They are very pretty. I bought them as a gift. When the ones I use wear out, I will"}, {"title": "rpj-common-crawl-2019-30", "text": "it\u2019s not recommended. We have not done any licking tests in our lab.\u201d To fully understand what\u2019s going on with all these hinky (not to mention unhygienic) credit card workarounds, let\u2019s start by getting small. Really small. According to a white paper by Anadigm, a Cupertino, California, maker of programmable analog signal processors (don\u2019t ask), information on your mag stripe is stored on microscopic bar magnets rather like railroad cars. These cars are arranged with like poles abutting (north against north, south against south). At regular intervals where these poles collide, a magnetic flux or \u201ctick\u201d is produced. The arrangement of \u201ccars\u201d between these ticks (known to you engineers as Aiken Biphase encoding) is what carries the binary information that a POS terminal needs to identify and approve your card. \u201cIt\u2019s basically similar to an antenna,\u201d says Castner. \u201cThe mag stripe is putting off a very low frequency which the reader picks up.\u201d One more techie note: Because the coding is time dependent, there is a series of zeros (think empty cars) called \u201cclocking bits\u201d at the beginning and end of each mag stripe train that tells the reader the pace at which to read the swipe. That\u2019s why POS terminals often instruct you to insert and remove your card quickly. It also enables you to insert your card in either direction on most modern terminals. \u201cIf you\u2019re going extremely slow, it may not read as well,\u201d Castner says. \u201cI\u2019ve seen where people try to go too slow and it just doesn\u2019t accept the read.\u201d Cut"}, {"title": "rpj-common-crawl-2019-30", "text": "The second track primarily served banks, with the customer\u2019s account information and other data. The third was available for miscellaneous use. All of this technology remains in use today, though many credit cards now also carry embedded computer chips and are called \u201csmart cards.\u201d Those chips increasingly perform much of the work once assigned to the magnetic stripes, and instantaneous payment systems also are coming to smartphones. Still, the credit card designed more than 40 years ago by Svigals and his team are likely to remain with us for many years to come, and the credit processing principles developed or incorporated by that team \u2014 and demonstrated in the cardboard prototypes now back in the spotlight \u2014 may never disappear. \u201cThe guy who developed these prototypes and has donated one of them is a real pioneer,\u201d said Garcia, the computer museum curator. \u201cHe dates back to the earliest days of computing. He\u2019s a huge figure, and the magnetic stripe credit card was a huge factor in the development of real-time computing systems.\u201d See related:A chat with John Grund: A look at the future of cards, The history of credit cards Credit Card Help Credit Card Glossary The Best Credit Cards About Martin Merzer Personal Finance Writer In Innovations and Payment Systems Cards increase VIP experience programs Card companies are stepping up their special offers for cardholders, using their leverage as event sponsors to extend VIP-type perks to more mainstream customers"}, {"title": "rpj-common-crawl-2022-05", "text": "signature than with the swiping issue. So why institute blink technology at all? Why not just stop requiring signatures on regular credit cards? The answer may be Chase's national press release, which states, \"Research has shown that customers who use blink cards often spend more per transaction.\" In addition, the novelty of blink could lead consumers to apply for Chase credit cards so they can use the new technology. The end result is more money for the company supplying the cards. Critics point out that credit-card companies encouraging people to spend more money and to do it more quickly is not a good thing for consumers [ref]. While Chase is the first credit-card issuer to adopt RFID cards on a large scale, other companies are getting in on the action. MasterCard's PayPass and American Express' Express Pay have been implemented in select markets. What else does the future hold for contactless credit cards? The biggest impact could be seen in the form factor of credit cards. Much of the credit-card market is driven by personalized cards with images of the user's favorite sports team, national parks and other graphics that create additional appeal. Without the restriction of the magnetic strip, credit \"cards\" could come in any shape, from keychain fobs to miniature toys or sculptures to coins that fit easily into a pocket. An RFID chip could even be sewn into a jacket sleeve or implanted into your hand. Ultimately, consumer acceptance will determine how the technology is adopted. For more information on blink, RFID and"}, {"title": "rpj-c4", "text": "\u201cIt\u2019s a product that\u2019s supposed to protect your credit card from identity theft. It has a special metal-blocking aluminum alloy,\u201d she said. But Tierney wonders if these sleeves really do anything. \u201cPossibly yes, but probable, no,\u201d he said. But he says in most cases you don\u2019t need this type of protection. Why not? Because that little chip or magnetic strip in most cards is not an RF chip. It can\u2019t be read by proximity, or you would never have to insert or swipe it in a card reader. \u201cThe number of credit cards that have RF capability is infinitely small, less than 1 percent,\u201d Garcia said. But he says this is like protection from a meteor hitting your house. It could happen, but probably won\u2019t. So do they make good stocking stuffers? Sure. But many security experts say unless you are carrying your passport, it\u2019s doubtful you\u2019ll ever be hacked this way. Good information to know, so you don\u2019t waste your money. \u201cDon\u2019t Waste Your Money\u201d is a registered trademark of Scripps Media, Inc. (\u201cScripps\u201d). The information included in this article was obtained independently by Scripps reporters. John Matarese reports on deals and scams so you Don\u2019t Waste Your MoneyWhile purchases from links inserted in this article may result in a commission for Scripps, no Scripps reporter benefited from that commission."}, {"title": "rpj-c4", "text": "error. With just a little bit of magnetic material in them, the contaminated non-magnetic zones still have a much lower magnetic strength than the parts that are supposed to magnetized. Increasing the distance between the card reader and the corrupted zones is usually enough to get the reader to read those weak parts as non-magnetized again. A plastic bag, usually at-hand at the cash register, makes a great spacer. Wrapped around the card, the bag basically mutes the corrupted parts of the magnetic stripe so the reader is presented with the data as its supposed to be. Two robins were sitting in a tree. \u201cI\u2019m really hungry\u201d, said the first one. They flew to the ground and found a nice plot of plowed ground full of worms. They ate and ate and ate and ate until they could eat no more. \u201cI\u2019m so full I don\u2019t think I can fly back up to the tree\u201d, said the first one. \u201cMe either. Let\u2019s just lay here and rest in the warm sun\u201d, said the second. They plopped down, and stretched out in the sun."}, {"title": "rpj-c4", "text": "an ally in your business to reap better rates and a more satisfying experience. For more information on merchant credit card processing services, contact Mike Krause at 585-704-6453 or visit SalesSensePayments.com. Retailers in the United States mostly converted to chipped credit cards in October 2015 and slowly over the past 3 years we have all become accustomed to dipping credit cards at retail checkouts. So, why are we sometimes sliding cards the old-fashioned way rather than dipping (plugging the cards into the terminal) at some retailers? There are a couple issues behind whether a retailer has a chip-equipped terminal but still has you slide your card for payment. In addition to installing a new chip-ready terminal for checkout, the merchants must also install new software and then certify with their transaction processor that transactions are coming through accurately. Certification of their new process takes time and scheduling. Another reason for merchants\u2019 reluctance to adopt EMV is the additional time it takes to process a credit card transaction. While sliding a credit card takes only a few seconds, dipping the card into the card reader slot takes up to a minute longer because the transaction is verified in real-time. During non-rush months, an extra minute might be inconvenient but not noteworthy. However, during peak retail periods such as the winter holidays, every minute counts and retailers want those minutes spent shopping, not at the register. Smaller localized merchants are somewhat more willing to take the gamble that the credit cards they\u2019re accepting are not risky and will"}, {"title": "rpj-common-crawl-2022-05", "text": "credit card down a slot to activate/lock or unlock the safe. So I put our valuables in it and swiped the card, the safe engages the lock. An afterthought gets me back at the safe and swipe all I could, the safe would not budge. The service man comes over swipes once and the safe opens, I look like a fool, but he then tries the whole process himself - first swipe locks the safe, seven swipes later, the safe responds. It would appear, it is the speed of the swipe that determines if this thing works, it could be annoying, but two things come to mind. The first being the possibility that the card reader can store information, at least it stores enough to know that a swipe-lock with one card cannot be swipe-unlocked with another card. The second is, one of the reasons one would want a safe is to store the credit cards along with other valuables - in tourist places, it is sometimes better to pay cash than have some unscrupulous staff fleece your card not too long after your dinner, only to get home and notice large sums of money have gone walkies. If you then have to lock the safe with what you initially intended to store in the safe, this seemingly safe idea is probably highly risk averse on the side of the hotel because the credit card would always be on your person or outside the safe but seriously inconvenient and risky on your part. I say no"}, {"title": "rpj-c4", "text": "realize they can get away with using counterfeit plastic. By the time the fraudulent transactions are discovered, the cooks are long gone. And the retailer is on the hook for both the lost merchandise and the transaction money. There\u2019s one more reason to resist an upgrade: Another costly investment may be required down the road if the card industry opts to switch to a so-called \u201cchip and PIN\u201d system that requires customers to verify themselves with a numerical code rather than a signature. Not everyone agrees that chip and PIN is sufficiently better to justify the cost. \u201cThere are good arguments on both sides of the table,\u201d says Drieling. \u201cChip and signature may be a better transition because not all merchants have a PIN pad, and getting one means additional cost.\u201d Additionally, customers may resist using PIN cards because of the need to remember numerous PIN numbers for all their cards. Too, the upgrade cost may keep the industry from shifting to a chip and PIN system. \u201cAfter experiencing the headaches of the current transition, merchants will not want to revisit the expensive and time consuming terminal refresh process five years down the road,\u201d says Drieling. Even if the industry were suddenly to shift to all chip and PIN cards, merchants would still be on the hook for any losses incurred for transactions made over POS equipment that has not been upgraded to read chip cards. And there will always likely be some merchants who do not upgrade. \u201cCards will still need to have mag stripes"}, {"title": "rpj-common-crawl-2020-05", "text": "first place. They\u2019re just glued to your cards. So in addition to just falling off, if your chip gets scratched or boiled in your laundry machine, it\u2019s kaput. And you can forget about credit card chips making it through the zombie apocalypse; these things can\u2019t even survive Black Friday. America has GOT to get on the same page. ARE WE SWIPING OR INSERTING INTO THE CHIP READER CAUSE IM TIRED OF LOOKING DUMB AF @ CHECKOUT \u2014 Chaz N'oire. (@chase_august) August 1, 2016 And, most importantly, they\u2019re confusing I\u2019m not too proud to admit that I don\u2019t like anything that makes me feel straight up dumb. I like things that challenge me -- things that I can learn from -- but not things that should be easy and just aren\u2019t. There are several things like this: overly complicated TV remotes, Wheel of Fortune, correctly spelling McConaughey without googling it... Every time I remember to insert my chip, someone tells me to swipe. Every time I go to the grocery story around the corner from my apartment where they usually tell me to swipe, someone invariably tells me to insert my credit card instead. The people, myself included, need answers. If there is no other reason to dislike credit card chips, I dislike them because THEY ARE CONFUSING and awkward and make me feel like a doofus. me: *actually remembers to insert chip* cashier: \"go ahead and swipe your credit card whenever you're ready\" me: pic.twitter.com/uy29LdSfoG \u2014 Becca Strassberg (@strassbooger) August 25, 2016 You caught me; that"}, {"title": "rpj-c4", "text": "Chipped credit cards can be digitally pickpocketed. This slim sleeve wraps around it and keeps advanced cyber criminal\u2019s dirty paws off your hard-earned money. Strongur Shields is your best protection against the newest threat facing Americans today. Simply slide your card into the sleeve, and just like that, your info is safe. It fits easily in your wallet, even with the sleeve on. The RFID-blocking material puts a secure border around everything inside. Comes in a pack of 4."}, {"title": "rpj-c4", "text": "information about credit card services and merchant payment processing, contact Mike Krause at Sales Sense Payments by visiting salessensepayments.com or calling 585-704-6453. The number of Americans having their credit cards stolen, compromised or hacked each year is staggeringly in the millions. While the new EMV (stands for Europay, MasterCard Visa, the major credit card companies behind the more secure cards) chips protect your cards in live, in-person transactions at a retail store or restaurant, the new cards are no match online or over the telephone. Here are seven ways you can add protection to your credit and debit cards. The new chipped cards are come with RFID (radio frequency identification) and NFC (near field communication) technology for contactless payments (Apple Pay, Google Pay, bank mobile applications and others). Unfortunately, this leaves them prey to contactless pick pocketing. A thief uses a portable RFID card reader to transfer money from your credit card as a \u201cpayment\u201d to a nearby accomplice. Sure, you can keep your credit cards in an Altoids mints tin or wrap your cards in tin foil. A more conventional option is to buy a wallet, credit card sleeve/holder or purse that blocks automatic RFID transmissions. These are not expensive and give you some peace of mind when you\u2019re on the town or out of the country. If you use contactless cards frequently, contact the credit card company and limit the size of any purchase made with the cards. You can always call them back and raise the limit for a specific purchase. Alternatively, you"}, {"title": "rpj-c4", "text": "anymore, but it\u2019s better to be safe than sorry. Once you have cut up or shredded your cards, it\u2019s important to not throw them all away in the same place where they can be gathered and put back together again. If you throw a few pieces in several different trash bins, you greatly reduce your chances of someone being able to find them all and put them back together again. In some cases this may not be necessary, but some credit card companies will not credit your account for purchases not made by you unless a police report has been filed. In addition, police will not be looking for a perpetrator if you don\u2019t file a report. Currently, chip cards in the US still utilize the same magnetic strip that stores all your data, which can be stolen. However, chips can help prevent your data being stolen by hackers from stores where you make purchases. Lined credit card sleeves protect the information contained in the magnetic strip on the back of your credit card from being stolen electronically. For less than $10 you can buy a set of these sleeves. At ADS Guards, we believe it\u2019s important for people to know how to protect their personal information, and it\u2019s just as important to be protected against other types of harm and damage. If you\u2019re looking to hire security in Hayward, we provide highly trained guards for residential and commercial properties. Call 1-800-794-1550 today for a free quote."}, {"title": "rpj-c4", "text": "Episode 695: Put A Chip On It : Planet Money Credit cards with chips in them have been around for four decades. So why is America only getting them now? And now that they are here, why are so few places using them? Credit cards and debit cards have tons of safety features. The extra security code on the back. Sometimes your picture. Your signature. That little hologram of a bird that nobody looks at. But, until recently, there's been a big safety feature missing from credit cards in the U.S.: The chip. It was rolled out to stop fraud in France decades ago. It worked. Every other major economy adopted it, except us. Until now. What took so long for it to get here? And now that it is here, why have so few stores adopted it? Today on the show, we bring you a brief history of what's in your pocket. It's a story of convenience vs. fraud--and it also includes a hippie inventor, the origin of the last great upgrade on your card, the magnetic stripe, and why it takes so long to \"dip the chip.\" HOW LONG DOES IT TAKE TO DIP? In the podcast, we ask for your help. How long does it take for you to complete a transaction with your credit card chip? Fill out this form to let us know. The results may appear on an upcoming episode. Music: \"Wildfire.\" Find us: Twitter/ Facebook."}, {"title": "rpj-c4", "text": "Product Description: In credit cards and debit cards, RFID chips hold all of your most sensitive information such as card numbers, expiration dates, names, addresses, birthdays, and more. Protection: Protect your personal information from thieves transactions with these RFID-Blocking Credit Card Sleeves. Enjoy peace of mind knowing your information is safe with this product that fits most credit cards and identification. Gift: Makes a very thoughtful gift to family and friends. Detailed info: Radio frequency identification (RFID) is a technology that uses communication via electromagnetic waves to data between a terminal and an electronic tag attached to an object for the purpose of identification and tracking Prevents electronic pick-pocketing. Sleek silver design slides into your wallets card-holder with ease. Guard against electronic pick pocketing: Also known as EP The most important step is to make sure you guard your RFID enabled cards against RFID readers. Many credit cards contain RFID chips that record your personal information, so if you do not use protective measures with RFID wallets or secure sleeves, identity thieves can obtain your credit card data using hidden RFID readers without you ever knowing."}, {"title": "rpj-common-crawl-2023-06", "text": "Credit card security will benefit from latest technological advances By CHAD CAIN Last modified: Wednesday, March 11, 2015 How easy is it for a defrauder to steal your credit card information? Consider this recent case of a Florence Bank customer, as told by John Heaps, the bank\u2019s chief executive officer. Sometime last year, the customer used a bank card at a store to make a purchase. A defrauder intercepted the credit card information contained in the card\u2019s magnetic strip and used it to make a fake credit card, which Heaps said is as simple as a trip to Home Depot for some supplies. That process was repeated with hundreds of other customers who visited the store that day and used their credit card. Then the thief got into the back of a taxi and asked the driver to start swiping the cards to determine which were active. \u201cThe driver hands back the good cards and throws the bad ones away,\u201d Heaps said. \u201cNow the guy knows, OK, I\u2019m going shopping.\u201d That simplicity, however, is about to get more complicated for thieves and more secure for customers thanks to one major technological change in the offing for 2015, and another promising one that has yet to play out, bank officials said during recent interviews. First, the credit card industry, in a moved backed by MasterCard and Visa, is pushing ahead to do away with the familiar swipe-and-sign of a credit card transaction. In its place will be so-called chip-and-PIN technology called EMV, or Europay, MasterCard and Visa,"}, {"title": "rpj-common-crawl-2019-30", "text": "credit cards into the POS system - which retailers do on purpose so they can track your purchase habits - these problems will continue. The only place you should be sticking your card into is a bank-supplied, independant payment pin pad terminal. @Glenn 6 Stores started swiping credit cards long before the data gathering began. They started it because transferring the numbers electronically was more accurate than running a card through a mini-mimeo machine and collecting a signature. The mini mimeo machine meant the numbers had to be transcribed later by workers at VISA. The reduction in losses was reflected in the reduced costs VISA passed along to the businesses for swiping cards instead of imprinting them. It's been about 15 years since I had to look at the numbers, but I don't expect that aspect of it has changed. Tuesday 21st October 2014 19:51 GMT Stevie OFFS! The fun never ends! Alrighty! Any bets on next week's victim(s)? The categories are: gov, retail, financial"}, {"title": "rpj-c4", "text": "Home > Blog > Learn the basics of CHIP Cards. Learn the basics of CHIP Cards. The nightmare of card scams, is promptly merchants and credit card companies to implement ways to make credit card transactions more secure. The solution is now in your wallet, in the form of a thumb-size metallic square on your credit cards. The square is a computer chip, which turns your credit card into a chip card and makes it impossible for hackers to clone credit cards. Unlike the magnetic stripe on traditional credit cards, chip cards don't store sensitive information. Instead, each time the card is used, a unique transaction code is generated. If hackers intercept that transaction, they will not be able to use the code again. With the introduction of chip cards in late 2015, the United States is following the lead of European countries. Nearly 90 percent of credit card users commonly use chip cards. Insert, don't swipe: Instead of swiping the magnetic stripe, you insert the chip card into a chip reader. More secure, but not foolproof: Though chip cards are more secure, they can still be compromised. If your physical card is lost or stolen, it can be used by someone else since most cards only require a signature. What's more, the credit card chip doesn't protect against online fraud, so your card could still be compromised by Internet purchases. They're slower: We've all grown used to the speed of swiping, but the chip reader takes longer. Expect to spend a few more seconds at"}, {"title": "rpj-c4", "text": "Credit cards have become an increasingly important part of every consumer\u0092s finances. Banks now have more credit card customers than they have savings bank accounts. However, the product is relatively new. As a result, banks may not have anticipated the scale to which this business would grow. They are therefore working on with a rudimentary technology even today. Some parts of the world have realized the growing importance of credit cards and therefore have already moved to a safer technology standard whereas the rest of the world is still in the process of doing so. In this article, we will have a closer look at the various types of credit card technologies that are used in the world today. The traditional technology that was used when credit cards were first introduced is called a magnetic stripe. This is the technology that is still being used in most countries around the world. The problem with this technology is that it is extremely unsafe for the consumer. This is because a magnetic stripe technology encrypts all the credit card information on the magnetic stripe on the back of the card. This is the black colored stripe that is used for swiping the card. This contains information like the credit card number, expiry date, available credit limit etc. When a merchant swipes the card, this information is read by the card reader and using this information, the transaction is then closed. However, there is a significant problem with using this technology. The problem is that anyone can copy this"}, {"title": "rpj-common-crawl-2021-04", "text": "smart cards, many credit card users carry hybrid cards that include both a microchip and a magnetic stripe. Moreover, these cards may or may not require a PIN to complete a transaction. Embossed credit cards are slowly being supplanted by smooth credit cards in order to prevent physical card imprints. Additionally, local bank branches are able to produce unembossed debit cards within minutes, which eliminates the need to send cards through the mail.\u201d Contact the ACFE For more information, email PR@ACFE.com. Press Release Main Page"}, {"title": "rpj-common-crawl-2022-05", "text": "Home Technology - General News US gets chance to catch up on credit card security Technology - General News US gets chance to catch up on credit card security NEW YORK (AP) ? The next time you swipe your credit card at check-out, consider this: It\u2019s a ritual the rest of the world deems outdated and unsafe. The United States is the only developed country still hanging on to credit and debit cards with those black magnetic stripes, the kind you swipe through retail terminals. The rest of the industrialized world has switched ?or is in the process of switching? to \u201csmart\u201d chip-based cards. The problem with that black magnetic stripe on the back of your credit card is that it\u2019s about as secure as writing your account information on a postcard: everything is in the clear and can be copied. Card fraud, and the measures taken to prevent it, costs U.S. merchants, banks and consumers billions each year. The smart cards can\u2019t be copied, which greatly reduces the potential for fraud. Smart cards with built-in chips are the equivalent of a safe: they can hide information so it can only be unlocked with the right key. Because the important information is hidden, the cards can\u2019t be replicated. But the stripes have been so entrenched in the vast U.S. payment system that banks, payment processors and retailers have failed to reach consensus on how to revamp it, leaving the U.S. behind the rest of the world. \u201cThe card system in this country has been dysfunctional for"}, {"title": "rpj-c4", "text": "Contactless credit cards are coming, making it super simple to pay in stores: You\u2019ll hold your card near a payment terminal, which will pick up data transmitted by radio waves. Before you start stocking up on RFID-blocking accessories, consider whether they\u2019re worth it. The U.S. will see a gradual shift to contactless cards in the next three to five years, said Russell Palmer, STCU\u2019s card services manager. In Europe, the switch is mandated to happen by 2020. While some may bemoan change, Palmer says there\u2019s nothing to fear. Do you need special protection for my card? For starters, you probably don\u2019t have an RFID chip yet. If you do, there\u2019s security built into the technology, including \u201ctokenization,\u201d which means the information the card transmits changes with each use. In theory, a fraudster could read your card\u2019s information without your knowledge. But if they did, they\u2019d only be able to use it once. And that\u2019s only if you didn\u2019t use your card first. For a thief, it\u2019s a lot of effort for very little or no return, Palmer said. As for the wallets, credit card sleeves, and even vests and jeans promising to protect your contactless card: \u201cIn my mind, they\u2019re a waste of money,\u201d Palmer said. Learn more by reading STCU\u2019s financial education blog, \u201cMy life, my money,\u201d at stcu.org. Published: March 10, 2019, 3:09 a.m. Updated: March 24, 2019, 2:09 a.m."}, {"title": "rpj-c4", "text": "a lifetime interest. Check with your financial or tax professional regarding any potential estate or tax benefits or consequences before making this type of gift. statements, credit-card statements, or receipts showing the charity\u2019s name, date of your donation, and contribution amount. For donations or contributions of $250 or more, you\u2019ll need a detailed written acknowledgment from the charity. For more information and a list of specific record-keeping requirements, see IRS Publication 526, Charitable Contributions. questions you might have about chip cards. Magnetic strip cards contain information within the strip, so it\u2019s easy for a thief to \u201ccapture\u201d that information and use it to accrue charges without the cardholder\u2019s knowledge. By contrast, the chip card generates a unique, specific code for each transaction that cannot be reused. Why does it take longer to check out? identical one-time code and sends it back as verification for the transaction. As a result, it takes a few seconds longer to check out using a chip card because it takes time for the information to be transmitted. Why aren\u2019t some terminals working yet? How much longer will I have to carry a physical card? The answer to this question isn\u2019t clear. However, it\u2019s important to note that terminals with upgraded chip-card technology are also equipped with technology that can accept wireless near-field communication. This allows data to be exchanged between two different devices (e.g., a cell phone and a terminal) that are a short distance away. This means that one day, instead of swiping or inserting a card at the checkout,"}, {"title": "rpj-c4", "text": "Home > Blog > posts > Are The New Credit Card Chips Working to Prevent Fraud? Those annoying, beeping and longer stays at the checkout counter when inserting a chip credit card into a clunky machine that may or may not work are paying off in one big way \u2014 less fraud. Chip cards, also known as \u201cEMV\u201d cards for the three companies that developed the technology: Europay, MasterCard and Visa, have decreased counterfeit fraud, according to Visa. Most U.S. consumers became familiar with chip cards for their debit or credit cards in 2015, when U.S. banks started requiring retailers to have them or be held liable for in-store fraud. Counterfeit fraud at U.S. chip-enabled merchants is down 70 percent from December 2015 to September 2017, Visa reported in December 2017. During that time, the number of Visa chip cards in the U.S. has increased 202 percent to more than 481 million cards, which is about 67 percent of all Visa credit and debit cards. Though not everyone with a credit or debit card has a chip card, those who do have that little metallic square on their cards use it often. In December alone, EMV chip cards accounted for 96 percent of all U.S. payments, Visa says. Chip cards replaced magstripe technology from the 1960s that was less secure and could be copied or \u201cskimmed\u201d more easily by thieves. Chip cards prevent fraud by generating a unique one-time code every time they\u2019re used. The feature is virtually impossible to duplicate in counterfeit fraud, according to"}, {"title": "rpj-c4", "text": "by using magnetic stripes to hold our security data, whereas other countries use EMV chips, which use a different and more secure method of encrypting data. While magnetic stripes have the same encryption method, the method for EMV chips varies, making them harder to hack. The United Kingdom began using the EMV method in the 2000s and saw fraud drop by 63 percent between 2004 and 2010, according to the Federal Reserve Bank of Atlanta. The United States is moving closer to EMV usage, but isn\u2019t there yet. But there\u2019s good news. While credit card fraud is a hassle to deal with, for the most part you\u2019re not liable if someone hacks you. By law, you\u2019ll never be on the hook for more than $50 if a thief uses your card. You\u2019re also not liable for purchases made after you report the card lost or stolen. Finally, many credit cards offer zero-liability policies that provide even better protection than the law requires. There are safety measures you can take to avoid being hacked and actions you can take if you are the victim of hackers. Here are some ways to protect yourself from fraud. \u2022 Don\u2019t furnish credit card information unless absolutely necessary. \u2022 Create an effective firewall system in your computer. \u2022 Pay with cash; the surest way to prevent your credit or debit card being stolen is to avoid using plastic. \u2022 Avoid debit card use, especially during holiday seasons, and particularly if the card\u2019s tied directly to your checking account. \u2022 Sign up"}, {"title": "rpj-common-crawl-2019-30", "text": "more secure than having a credit card and sliding it through the magnetic strip.\" When it comes to magnetic strip cards those are being phased out in favor of the new EMV chip cards. The cards are placed in a reader that creates a unique code for that purchase. It can't be duplicated by criminals like magnetic strips. Merchants like Craig Pokorny at Aporjon Leather and Luggage said this reduces the risk of massive breaches like Target and Home Depot. \"Just seemed like a good idea to protect customers, get in the game right away.\" He also stocked up on RFID blocking wallets and sleeves. These protect against a form of electronic pickpocketing called \"RFID Skimming.\" A more rare and high tech way of stealing credit card information. \"So as long as your card or passport is in one of these protected wallets, it's not going to be scanned by somebody.\" But no technology is foolproof. If thieves get a hold of your credit card, they can still use those stolen numbers online. The best way to stop ID theft is to stay on top of your own financial information. Monitor your bank statements daily via apps or online. Get a free credit report annually at Annualcreditreport.com. Any accounts you don't recognize may be signs of suspicious activity. \"My husband and I were always making sure that was his charge or my charge and if something shows up we're not aware of, we're definitely calling the bank,\" explained Ellis. It's that vigilance that gives her peace"}, {"title": "rpj-common-crawl-2020-05", "text": "a new, safer standard. Basically every single time you insert the chip, it creates a unique transaction code that can\u2019t be replicated. It's actually genius. But it\u2019s also still dumb and inconveniences me every single day. I didn\u2019t touch my new credit card for weeks. I was in denial. My current (and perfect, I should add) card wasn\u2019t supposed to expire until 2020. We were supposed to have more time together, you know? It wasn\u2019t supposed to end this way. But eventually, old cards were going to stop working. I\u2019d need this new one, whether I wanted to admit it or not -- so I begrudgingly activated it. [at the gates of Hell] Me: [swipes card to enter] Satan: it's a chip \u2014 #1 samir (@samir) November 6, 2016 They\u2019re not even fully implemented What I really, really wanted to know is why cashiers are constantly telling me to, \u201cSwipe whenever you\u2019re ready\u201d even though a store\u2019s machine looks like it has chip-reading capabilities. Every time I go to insert my card, they ever so politely interrupt me: \u201cYou can just go ahead and swipe whenever you\u2019re ready!\u201d completely and simultaneously ruining my mood, day, and entire existence. Why though? On Oct. 1, 2015, this technology started making its way into U.S. stores. It was at that time, according to Credit.com, that businesses became liable for whatever credit card fraud took place in their stores if they didn\u2019t use chip readers. So, of course, many got them immediately. But then they needed the machines to be"}, {"title": "rpj-common-crawl-2022-05", "text": "is opaque and impervious to solvents. Attempts to access the circuit board destroys it.) MarkSitkowski, User Rank: Moderator Can it Happen Again? The real worry is that other retailers, using the same POS terminals will be attacked next. Isn't it time to look for a solution, before this happens? For instance, why do you have to give your credit card details to the retailer, to pass to the credit card company? Obviously, so they can know who you are, and that it's really your card. Okay, then, why not use an authentication system based on your ID, instead? Then, the credit card need only contain your user ID, which they could check, and tie in with the card details, which they already know. That way, the retailer would have nothing worth stealing. Of course, the authentication system would need to be fraudproof, and I believe there's a description of such a system at www.designsim.com.au/What_is_SteelPlatez.ppsx. I guess the other benefit of doing something like this, is that the credit card companies wouldn't have the expense of changing to EMV cards, or resorting to something unpleasant, like biometrics. I'm more interested in finding out whether retailers in the U.S. will be more proactive about moving to a smart-card system, which is much harder to hack, than our current magnet stripe cards. The WSJ reported yesterday that Target 10 years ago halted the rollout of a chip-based payment system because execs in store operations and merchandising \"worried that the technology slowed checkout speeds and didn't offer enough marketing benefits.\""}, {"title": "rpj-common-crawl-2022-05", "text": "the one on the back of the credit card, reports creditcards.com. \"If merchants were doing what they are supposed to do, then maybe it has added a level of security,\" Philip Andreae, a digital payments consultant, told the site. \"Otherwise, as it is today, there is no value.\" For a brief history of why credit cards have a chip now, check out this video from Planet Money: Merrit Kennedy Merrit Kennedy is a reporter for NPR's News Desk. She covers a broad range of issues, from the latest developments out of the Middle East to science research news. See stories by Merrit Kennedy"}, {"title": "rpj-c4", "text": "The decision to upgrade POS equipment may depend less on these fine points of analysis and more on consumer pressure. Shoppers love credit cards for quick and easy purchases. Retailers? Not so much. One big problem is fraud: Transactions with bogus plastic can drain significant sums from a merchant\u2019s bottom line. In a move to address security concerns, the card industry has introduced plastic with embedded chips highly resistant to counterfeiting. Even so, many merchants are delaying the costly investments required to upgrade their point-of-sale (POS) terminals to read the new technology. And retailers specifically? The National Retail Federation reported that 48 percent of its members had upgraded their equipment by the middle of 2016. While the association said that most retailers were expecting to undertake the upgrade by the end of 2016, that rosy forecast was far from assured for a market that remains less than thrilled with the new technology. \u201cRetailers are dragging their feet,\u201d says Fran Howarth, senior analyst for security at Bloor Research, Amsterdam (bloor.edu). So what\u2019s the big deal with the new chip cards? Thieves have become skilled at compromising the traditional \u201cstripe and swipe\u201d credit cards popular in the United States over the past several decades. That\u2019s because the sensitive customer data stored in the magnetic stripe is easily duplicated. The new cards, dubbed \u201cchip and signature,\u201d improve matters by storing customer data in a hard-to-duplicate chip instead of a magnetic stripe. New POS terminals read the chip and transmit a one-time-only code to the bank, which approves the transaction"}, {"title": "rpj-common-crawl-2019-30", "text": "Not convinced of the prototype\u2019s place in the scheme of things? Well, try this: The card is part of Sotheby\u2019s \u201cFine Books and Manuscripts\u201d collection. Expected to fetch $10,000 to $15,000 at auction, it truly was the start of a financial phenomenon responsible for the 1.4 billion credit cards currently in circulation in the United States alone, with 20 billion annual transactions worth $1.9 trillion. \u201cIt has withstood many challenges over the years to become one of the most successful technologies of the past half century,\u201d computer engineer Jerome Svigals, a key developer of the mag-stripe technology, recently wrote. It was in Svigals\u2019 wallet that the cardboard prototype has resided for all of these years. Now, the card is awaiting sale at Sotheby\u2019s and is attracting a new round of well-deserved attention. \u201cThis was one of those situations with far-reaching applications that even the creators couldn\u2019t see,\u201d said Chris Garcia, curator of the Computer History Museum in Mountain View, Calif, which houses the other mag-stripe card prototype. \u201cThe applications associated with this little piece of cardboard with a magnetic stripe on it expanded into all kinds of other information-related fields \u2014 banking systems, security systems, lots of things.\u201d It began back during the late 1960s, when Svigals and fellow engineer Forrest Parry led a team assembled by the International Business Machines Corp., better known as IBM. Their assignment: Design and build a better credit card. After a great deal of effort, they did. Key innovation: magnetic stripe Though earlier, primitive versions of credit cards had been"}, {"title": "rpj-c4", "text": "trying to get YOUR money back!?? I hope I can remember when I have my credit card with the chip in it when I go through the checkout leave the credit card in the protective sleeve \u2013 have the cashier scan your credit card with the sleeve on and without the protective sleeve. Shields or wallets marketed as RFID-blocking devices can make it more difficult for someone with an electronic reader to read your cards, but they don\u2019t entirely block transmission of card data. When security experts tested 10 types of shields and wallets currently being sold to protect contactless cards, they found that none blocked the signal completely, and there was dramatic variability even among samples of the same brand. Using a different approach, Recursion\u2019s experts created a credit-card-sized jamming device for the wallet that prevents cards from responding to any reader. Our reporter offered her own homemade shield constructed of duct tape and lined with aluminium foil. It provided better protection than eight of the 10 commercial products, including a stainless-steel \u201cRFID blocking\u201d wallet selling online for about $60. The statement I made is my opinion. If RFID theft was a threat, the credit card companies would give you sleeves. They\u2019re the ones loosing money when there\u2019s fraud. Consumers aren\u2019t liable for unauthorized credit card transactions. I haven\u2019t been able to find any information about any documented cases of RFID theft. Nor have I seen any demonstration that\u2019s convinced me protection is needed. I don\u2019t know how many, but people are spending money on"}, {"title": "rpj-c4", "text": "to hand your card to the clerk you may encounter resistance, or may be denied use outright. That means you\u2019ll have to have your full size card with you as a backup, which defeats the purpose of having the mini-card. The card purports to be safer because the numbers are small. I\u2019m not too worried about people memorizing my 16 digit number after spying my card as it swipes through the swiper, but I would be worried if my card got stolen or lost. In that case, at least I\u2019d know that the occasionally clerk might check the signature on the card \u2013 something that is sure never to happen with the mini-card. Overall, I\u2019m happy to see innovation in consumer products, but I\u2019d opt for technological advances that actually made life easier than gimmicks like useless microchips and smaller cards. How about a card that includes supermarket data? You could just print the barcode from my Shaw\u2019s Card onto my credit card and clean up my wallet. Why not print my frequent flyer number on there too, and my movie rental account information? (Or encode it directly on the card, or in a database that can be accessed with the card.) How about getting rid of the key ring all together? How about a card that is the key. P.S. Check out Cockerham\u2019s Safeway Card Prank! It\u2019s Patriots Day in Massachusetts, and I\u2019d say it\u2019s one of the better holidays around here. I happen to live very close to the Boston Marathon route, so there"}, {"title": "rpj-c4", "text": "Chip and Pin \u2013 Why Bother? If you work in retail or use a credit card, you have come across the latest technology: chip and pin. In the U.S. this is a newer and less prevalent technology than it is in the rest of the world. However, that does not diminish its importance. The more technical name for this technology is EMV (a shortened version of the card schemas: Europay, MasterCard, and Visa) but you can find usually find both phrases used in discussions about it. You may wonder what good it is and why it matters. If you are a company that accepts credit cards, this is a technology crucial to your future. The sooner you embrace it, the better. Chip and pin cards are more secure than traditional card swipe solutions. This is due to more built-in validation and verification. Without getting too technical, the big difference is that traditional cards use only a card number and expiration date in a transaction. The chip contains much more information that can be used to make it that much harder for hackers to fake a transaction. This increased security comes at a cost. However, the major financial institutions are putting pressure on merchants to accept these more secure cards anyway. These institutions often pay for fraudulent transactions. Thus, a reduction in fraud is a quick way to improve the bottom line. You may have noticed as a user that signatures are not needed for a chip card transaction. Instead of a signature, a pin is used."}, {"title": "rpj-common-crawl-2023-06", "text": "Target, Wal-Mart or Walgreens. It involves failed swipes, trying to follow the cashier\u2019s instructions, fumbling with the card while trying to insert it correctly into the reader slot and remembering to remove the card at the end of the transaction. \u201cI\u2019m a retail consultant, and I still put it in the wrong way and yank it out too soon,\u201d Stern said. \u201cIt takes a long time for people to change habits.\u201d Even without confusion, the so-called push-and-pause method generally takes longer than the swipe. Although that difference can be as little as about 1 second longer, a Wal-Mart spokesman said. \u201cFrom a retailer standpoint, it\u2019s really bad because it slows down productivity at the front end,\u201d Stern said. It will likely be more problematic for retailers whose customers expect a quick checkout, like Walgreens. \u201cPeople don\u2019t like waiting,\u201d Stern said. \u201cAt Macy\u2019s, customers might be a little more patient with the transaction process.\u201d Credit and debit cards are likely to be a big deal for the holidays, with 76.4 percent of consumers saying cards are their primary payment method, split about equally between debit and credit cards, according to the latest National Retail Federation numbers from 2014. That compares with 21.6 percent paying cash, and 2.1 percent paying by personal check. Oct. 1 was a soft deadline for banks to issue new credit and debit cards with microchips and for retailers to install readers that can use the new chip technology. However, it turned out that the Oct. 1 date was more of a starting gun"}, {"title": "rpj-common-crawl-2020-05", "text": "are up early making bread from scratch for you to enjoy. At the end of the day, all of our leftover bread is given to local charities. at 12:36:00 AM 0 comments Links to this post You can opt out of Pay-Wave / RFID Fraudulently using your RFID-enabled credit card without having to even touch it is more than theory. In January of this year, a hacker demonstrated it in front of a live audience. I have friends with RFID (Radio Frequency IDentification) cards, and they buy special sleeves to protect the cards while they are in their purses. But what happens when you have to pull it out to make a purchase? It turns out that even though new credit cards are issued with the RFID or \"Pay-Wave\" feature, you can opt out. I called CIBC today about my credit card, and after the operator made some inquiries, she confirmed that she could put in a request for my card to not have it. Even so, there was some sell of the feature: The operator emphasized that the Pay-Wave was for my convenience. It was faster, transactions would be limited to $50 or less (depending on the merchant), and in any case I could opt out of using the Pay Wave at all and demand to enter a PIN. If you are concerned about the RFID feature, call me paranoid but I would recommend you opt out until the technology is not so new and vulnerable anymore. Of course, cybercriminals can still fraudulently use your"}, {"title": "rpj-common-crawl-2021-04", "text": "that single, simple function. We might take a card swipe for granted, but getting every detail right takes extreme care. You have to make the swipe feel satisfying; you have to make it ready accurately enough that it works the first, every time. Those two factors help convey something in the moment about Square itself: That the company is trust worthy, rock solid, and easy. Some of that does involve the face Reader presents to the world. The new version is thinner than its predecessor, but it has a slightly larger footprint, giving customers and shop owners a slightly longer track for running cards. Both sides of the new device have tapered edges that make it easy to slot a card in, from either direction. (The former just had the open lip on one side.) Improving that main swiping functionality also meant ditching many of the stock components the company had relied on for their previous card readers and building their own. One of the most important was an all-new read head, the piece that actually pulls the data off your credit card's magnetic stripe. In the old Reader, Square used a standard read head, more or less the same one that's been in every credit card reader and tape deck since 1985. Those worked well enough, but they were far from optimal. First, they weren't doing all they could to ensure successful swipes. The magnetic stripe on your credit card stores data in two separate bands. The old Reader grabbed from just one. With their"}, {"title": "rpj-c4", "text": "supposed to be safer. Maybe because swiping is a really quick motion that leads to thousands of credit card injuries every year. Plus you have to keep doing it over and over and turning the card in every possible direction while the cashier and the other customers stand around and give you helpful tips. (\u201cTurn it!\u201d \u201cDo it faster!\u2026 Slower.\u201d \u201cLike starting a lawn mower.\u201d) But they don\u2019t actually help. So this is safer. You do it once. One try, and then you find out the reader\u2019s broken. Then you collapse, and the cashier takes it to do it for you, and he secretly skims it. So it\u2019s safer to have a system where you can accidentally walk away without your card. Wait, that\u2019s not it. The chips readers are supposed to make them more secure from credit card thieves, and they totally are. The way it works is the screen says, \u201cPlease swipe or insert card,\u201d like you have a choice, and you\u2019re like, \u201cWell, of course I\u2019m going to pick swiping.\u201d Or you pick inserting. It doesn\u2019t matter, because whatever you do, the cashier will tell you afterward that you have to do the other thing. And then the first thing again. It\u2019s totally random and only works about half the time, so mathematically, it cuts fraud in half. The credit card thieves just run out in frustration, leaving their cards in the machine because it hasn\u2019t told them they could take it out yet. Because you\u2019re not allowed to take it out until"}, {"title": "rpj-c4", "text": "to a popular, sunny getaway\u2026or a business trip. After swiping to cover that delicious dinner, your waiter returns with your credit card, the same card you used for those soft serve ice cream cones. Viola, a call from a 1-800 appears on your mobile phone. You let out a deep exhale because you know who\u2019s on the other line, the automated female voice from your card company. You loathe it, you wish there were a way to avoid this annoying occurrence during your vacation, but you can\u2019t because it\u2019s the Fraud Detection Department calling to verify your transactions after disabling your credit card for protection. That dreaded phone call has become a standard event during a vacation or any travel outside of your local area and you can thank those pesky card skimmers for this low point of your travels. It is the common moniker for copying the most important information from the magnetic strips found on credit and debit cards. As you probably guessed, card skimmers take that important information and through different methods, use it for fraudulent transactions on the internet and/or at physical merchants. You must be wondering how this is even possible in 2018 because your bank sent you a more \u201csecure\u201d card with a chip and surely, a card skimmer can\u2019t grab vital information from that chip\u2026but then again, think about how many times you swipe your card as opposed to inserting your chip. Yeah, I think we have your attention. Let\u2019s learn about how card skimming actually works, the different"}, {"title": "rpj-common-crawl-2019-30", "text": "credit cards into the POS system - which retailers do on purpose so they can track your purchase habits - these problems will continue. The only place you should be sticking your card into is a bank-supplied, independant payment pin pad terminal. @Glenn 6 Stores started swiping credit cards long before the data gathering began. They started it because transferring the numbers electronically was more accurate than running a card through a mini-mimeo machine and collecting a signature. The mini mimeo machine meant the numbers had to be transcribed later by workers at VISA. The reduction in losses was reflected in the reduced costs VISA passed along to the businesses for swiping cards instead of imprinting them. It's been about 15 years since I had to look at the numbers, but I don't expect that aspect of it has changed. Tuesday 21st October 2014 19:51 GMT Stevie OFFS! The fun never ends! Alrighty! Any bets on next week's victim(s)? The categories are: gov, retail, financial"}, {"title": "rpj-c4", "text": "The decision to upgrade POS equipment may depend less on these fine points of analysis and more on consumer pressure. Shoppers love credit cards for quick and easy purchases. Retailers? Not so much. One big problem is fraud: Transactions with bogus plastic can drain significant sums from a merchant\u2019s bottom line. In a move to address security concerns, the card industry has introduced plastic with embedded chips highly resistant to counterfeiting. Even so, many merchants are delaying the costly investments required to upgrade their point-of-sale (POS) terminals to read the new technology. And retailers specifically? The National Retail Federation reported that 48 percent of its members had upgraded their equipment by the middle of 2016. While the association said that most retailers were expecting to undertake the upgrade by the end of 2016, that rosy forecast was far from assured for a market that remains less than thrilled with the new technology. \u201cRetailers are dragging their feet,\u201d says Fran Howarth, senior analyst for security at Bloor Research, Amsterdam (bloor.edu). So what\u2019s the big deal with the new chip cards? Thieves have become skilled at compromising the traditional \u201cstripe and swipe\u201d credit cards popular in the United States over the past several decades. That\u2019s because the sensitive customer data stored in the magnetic stripe is easily duplicated. The new cards, dubbed \u201cchip and signature,\u201d improve matters by storing customer data in a hard-to-duplicate chip instead of a magnetic stripe. New POS terminals read the chip and transmit a one-time-only code to the bank, which approves the transaction"}, {"title": "rpj-common-crawl-2021-04", "text": "New tool makes online shopping safer By ABC7 MOST POPULAR: Video, stories and more SIGN-UP: Get breaking news sent to you from ABC7 This is a cool looking device and even kind of fun to use. But what it's really supposed to do is protect you from hackers who are out to get your personal information. so we decided to see if it really works. Buying with a credit card is simple at the store -- you just swipe and go. But shopping on your home computer is not so simple. You are typing in all the numbers and hoping you did it right. \"You swipe your card at the bank, you swipe your card at the store those are all secure so how come nobody's come up with a swipe device for the home computer?\" said Daniel McCann. McCann of Net Secure in Canada came up with a little gadget called SmartSwipe. You plug it into your computer, go shop online and at the checkout, it will let you swipe instead of type. But SmartSwipe's main purpose isn't to let you whip your card through a slot. It's to protect your credit card information from hackers and cyber-spies. How? When you swipe, it instantly scrambles your credit card information even before it hits your computer. \"So that means the information never really exists inside your computer so hackers and spyware and people like that who can get into your computer can never see it,\" said After you swipe, your information pops up with a bunch"}, {"title": "rpj-common-crawl-2021-04", "text": "conductor comes along to swipe the card and there\u2019s a small interaction where the passenger holds out the card and the conductor holds out the wand (yes, it was a wand, not the usual credit-card-swipey-slot thing). I wanted to put my card on top of his wand, but he wanted to put his wand on top of my card. I was just supposed to know the gesture. Sounds like a bit of a dominance issues, actually. In using the self-check at Tesco (a grocery store), I realized the software was the same as what I\u2019ve seen here at Home Depot, etc. but when it came time to pay, the voice prompt told me to insert my card into the chippenpin device. Turns out this was Chip-and-PIN, where credit cards and/or ATM cards have extra security via an embedded chip, and an associated PIN. These readers use a different swipe gesture, with the card going in the bottom of the keypad. Anyway, I stood there with my non-chipped credit card, putting it in and out of this bottom slot, to no avail. After I surrendered and paid cash, I realized there was the familiar vertical swipe slot along the bezel of the monitor, a different piece of hardware than the chippenpin. And this one was subtle but confounding: This is the TV remote from my Paris hotel room but the London hotel had a similar issue. In my experience, the red power button turns the TV on and turns the TV off. But in both these hotel"}, {"title": "rpj-c4", "text": "All an employee needs to do is wait until your attention is distracted to swipe your card from behind the counter. Skimming devices are readily available on the Internet from websites such as eBay for as little as $50. These devices are usually disguised under the name of a \u201ccard reader\u201d because they can also serve legitimate purposes. Skimming at restaurants also happens frequently, especially since customers often leave their credit card for the server to pick up, process, and return a few minutes later. In these cases, a portable card reader is perfect because it is small enough to fit in the server\u2019s pockets or apron. A server may not even need a portable skimming device. Your credit card information can easily be written down or copied from a receipt. It is very difficult for victims to know how, when, and where their cards were skimmed. Your card\u2019s details may have been skimmed months or years prior to you discovering any fraudulent transactions on your statements. Although debit and credit card companies can often perform data mining to find which retail establishments multiple victims have commonly used their cards at, at that point, it is often too late for the victim. Cover your keypad. Always use your hand and body to cover your keypad when operating a handheld pinpad or a payment processing machine like an ATM \u2014 even when alone. This will prevent shoulder surfers and pinhole cameras from observing your PIN number. Watch your card. If you must hand your debit or credit"}, {"title": "rpj-c4", "text": "The thing is a magnetic strip credit card reader is a way to get data from the card. These are devices that read the data off the magnetic strip at the back of the credit card. Readers are reading the codes when the card gets swiped. To get the information from the card, it is best to swipe the card through the slot. Newer card readers can even read the card information when placed at a short distance. More entrepreneurs today are using the card readers to get the process of credit card purchases going. One of the benefits of allowing credit card payments is the convenience. When shopping, the customers need not to bring much cash, but just to swipe their card. As a businessman, you will save time having to mind about change. It is easier to process the transactions with the help of readers. The beauty of readers is that the time needed to process the transaction is cut in half. Not only that, a reader also helps in speeding up the accounting process by encoding in a snal the financial information. There are many things you need to know about magnetic card readers. Most of the machines available are used in shopping malls, groceries, restaurants and other stores, designed for better convenience. Newer readers are able to read smartcards. The security of the transactions improve with the help of the chip and the strip. It is best to choose the kind of reader ensuring the best quality. As the reader captures the"}, {"title": "rpj-c4", "text": "new credit card, make sure to call and activate it so you can use it. The magnetic strip on some credit cards may stop working afterthe card has been too close to a magnet or sometimes a cell phone. When the credit card has been demagnetised, there may be a credit card read error or nothing will happen after the swipe. Scratches or bends on the magnetic strip may also prevent your credit card from being swiped. Your card number can still be manually entered, but you will have to get a new credit card to make swipe purchases. Credit card transactions processed electronically. The information passes through a few different layers before the transaction is approved. Technical difficulties at any stage can cause issues with your payment processing. The merchant may be able to hold your credit card information and run the transaction once the technical issues have been resolved. Your credit card may be declined if you don\u2019t have enough available credit for the transaction. You can\u2019t make a payment right away to free up some available credit, (unless the card is linked to your current account), so it is best to use another payment method if you don\u2019t have enough credit. Your credit card may stop working if your credit card issuer suspects fraud on your account. This can happen in cases of legitimate fraud, for example, someone is using your credit card to make purchases in another state. It can also happen when you make purchases that are out of the ordinary"}, {"title": "rpj-common-crawl-2021-04", "text": "Chip-and-PIN adoption still slow Credit card security has no silver bullet What you need to know about chip-embedded credit cards Chip card lawsuit to move forward against Visa, Mastercard, others Chip card payment confusion, anger rages on Merchants blame card companies for delays in certifying EMV software By Matt Hamblen Senior Editor, Computerworld | REUTERS/Philippe Wojazer Six months after U.S. retailers began assuming liability for debit and credit card fraud, only a fraction of the nation's in-store payment terminals can accept the highly secure chip-enabled cards. As a result, customers often face confusion and delays at checkout counters when trying to make payments. Many small, mid-sized and independent retailers still rely on insecure magnetic-stripe cards, despite the warnings of banks and card companies that those cards can be defrauded by criminals who surreptitiously skim customer account information and then use the customer's credit card information to buy goods illegally. \"Consumers don't know what to do at checkout and don't understand the chip technology and didn't feel the need for chip cards pushed upon them. They are now being caught in this mix. They don't know whether to swipe or insert a card, or sign, or use a PIN. They are dealing with longer lines, and retail staff are still learning about the cards and how they work,\" said Randy Vanderhoof, executive director of the nonprofit EMV Migration Forum, in an interview Tuesday. The forum represents a 170-member cross-section of banks, merchants and card payment technology companies. EMV, which stands for Europay, MasterCard and Visa, is a"}, {"title": "rpj-common-crawl-2021-04", "text": "summer, several credit card companies rolled out chip cards to American globetrotters and business travelers to make overseas purchases easier. \u201cThe U.S. is behind for a very simple reason: Consumers have not been asking for chip cards,\u201d says Bill McCracken, CEO of Synergistics Research Corp., an Atlanta-based marketing research firm for the financial services industry. \u201cThey have not understood the benefits of a chip card over a mag stripe. So why switch?\u201d EMV: Better security than the mag stripe? Proponents of smart cards brag about the security EMV cards offer versus the traditional swipe-the-stripe cards. Because the transaction information is encoded uniquely every time, it\u2019s harder for criminals to pick up useful payment data pieces and use them again for another purchase, says Randy Vanderhoof, executive director of the Smart Card Alliance, a nonprofit with a mission of advocating smart card technology. Compare that with magnetic stripes that contain what Vanderhoof calls \u201cstatic\u201d data, or payment information that never changes. All thieves have to do is lift that information and create a fake card before going on a shopping spree. EMV cards nearly eliminate skimming scams, says George Peabody, director of emerging technologies advisory service at Mercator Advisory Group. So no more worrying about a server taking liberties with your credit card after a meal, like the Mugs \u2018N Jugs waitress in Florida who was arrested on charges of skimming the credit cards of bad tippers. Unfortunately, head-to-head security comparisons are hard to come by. However, the UK Cards Association along with Financial Fraud Action UK"}, {"title": "rpj-c4", "text": "When wallets are lost or stolen, most victims notify their banks and credit card companies right away to prevent identity theft. But sometimes, there is no dramatic purse snatching or pick-pocketing to let them know they were robbed. This is because ID thieves have many exotic, electronic strategies for stealing credit card numbers by the hundreds or thousands from remote locations and computers. By the time their criminal activities are discovered, considerable financial damage is already done through identity theft fraud. A criminal can purchase a credit card skimming device for about $500. Then, the device may be installed in a gas pump, a restaurant, or a retail store. When you swipe your card at a gas pump, for example, the illegal device will read your information. Alternatively, a waiter at a restaurant may accept your credit card and covertly swipe it in this device. Once the information is stolen, it can be cloned onto a new card and used for fraudulent purchases. Credit report lawyers strongly recommend taking some simple steps to protect yourself from credit card skimming. Skimming: using digital cameras, skimmers, or other devices capable of capturing and recording credit card information. Skimmers also can be false user interfaces placed overtop an ATM keypad or card slot to record and transmit the data without the knowledge of the user. Phishing: Tricking people into responding to an email asking for personal information. People voluntarily provide their personal data because they believe the email is a legitimate inquiry by their bank. Pharming: Instantly redirecting visitors"}, {"title": "rpj-c4", "text": "You're in a restaurant, enjoying a deep conversation. Peripherally, you see the waiter take your credit card and return a few minutes with a slip for you to sign. You think nothing of it until a few hours later when you receive a call from your bank: Someone is racking up serious debt on your credit card, mostly for electronics purchases. Is it you? Skimming, a form of high-tech financial fraud, is on the rise worldwide. It relies on sophisticated data-reading electronics to copy the magnetic stripe information from your credit card or debit card. It can capture both your credit card number and your PIN. And it's happening not just at restaurants but at neighborhood gas pumps and ATM machines. Today a criminal merely has to slip an electronic magnetic strip reader over the existing card slot at an ATM, or replace a point of sale device. When you slide your plastic in, the skimming device reads it first, and then the actual card reader does--at which point the transaction proceeds as expected. But now a crook has an exact copy of your card data without your even realizing it. Older card-skimming devices required criminals to return and collect the information periodically, exposing them to risk of discovery. But newer skimmers can broadcast the card data to the thieves either by Bluetooth (which has a short range) or by GSM cellular. This enables the thieves, who may be sitting in a car nearby or in a building on the other side of the planet, to"}, {"title": "rpj-c4", "text": "being accused out of fraudulence on the bank card fees prior to the filing of these bankruptcy. It might be super easy of an experienced bankruptcy lawyer towards argue your buys had been regular and also required in their ordinary lifetime. The bankruptcy lawyer might continue towards argue your products purchased regarding credit had been that the mere rules out of survival in terms of nutrition. The magnetic stripe contains account information. This can conveniently be copied at a thiefs equipment like a skimming device. The best chip card utilizes a microprocessor thats embedded. This Will Make that account information non-accessible to a hacker during all aim of a sales transaction. People can have a very great thing hereif its applied as part of an intelligent chance. What else effective is an advancement as part of tech when its carelessly used? Just as charge cards have always been gathering popularity with each moving day, each credit card issuers are looking ahead to put up newer innovating tips to be able to attract new customers to embrace their products. About charge cards are increasingly being offered by accommodations, banking institutions, storage divisions and also gasoline companies. For example Shell displays introduced per shell credit card for its users. The magnetic stripe technologies concerning charge cards means they are therefore hackable. One way to assist in preventing credit card crimes would be to implement your chip-and-PIN technologies. buy cc dumps Their been touted as your sure way to keep crime away. But is that it what else its"}, {"title": "rpj-c4", "text": "for a dishonest waiter, this is the perfect opportunity to swipe the credit card through a skimmer without being detected. Once the victim's credit card information is stolen, thieves will either create cloned credit card to make purchases in store, use the account to make online purchases, or sell the information on the internet. Victims of credit card skimming are often unaware of the theft until they notice unauthorized charges on their account, have their card unexpectedly declined, or receive an overdraft notification in the mail. Credit card skimming devices are crafted to blend in seamlessly with the machine it's placed on. Unless you're specifically looking for a skimming device, you may not notice anything out of the ordinary. Look out for credit card skimmers anywhere you swipe your credit card, but especially at gas stations and ATMs. Becoming familiar with the look and feel of regular credit card readers can help you detect when there's something out of place. Here are some ways to detect a credit card skimming device. A credit card reader that sticks out far past the panel. Skimmers are designed to fit over the existing credit card reader. If you notice a credit card reader that protrudes outside the face of the rest of the machine, it may be a skimmer. This is especially the case when an additional part seems to be affixed to the rest of the credit card reader. At a gas station, you can compare a suspicious credit card reader to the readers at nearby pumps. If"}, {"title": "rpj-c4", "text": "not process suspicious charges until you verify that you initiated the transaction. Simply using your credit card puts you at risk of becoming a credit card skimming victim. Credit card skimming incidents can be difficult to detect. Unless you know what you're looking for, it can be extremely difficult to detect skimming devices. Catching fraudulent charges related to a skimming incident requires you to watch your accounts frequently. Monitor your checking and credit card accounts online at least weekly and immediately report any suspicious activity to your bank or credit card issuer. Here are a few more tips for avoiding credit card skimming. Watch where you shop. Restaurants, bars, and gas stations seem to be the places where credit card incidents happen most frequently. Retail store self-checkouts and ATMs, especially standalone ATMs (those that aren't at the bank) are also places that skimmers can be found. Check ATMs before using them. At ATMs, skimmers often place a camera within view of the keypad to steal your PIN. These cameras are often tiny and difficult to detect. When you're using an ATM, cover your hand as you type your PIN to keep a camera from catching a view of what you're typing. Don't become a victim of \"credit card cleaning\" scams, where thieves claim to clean the magnetic strip on your credit card to help it work better. These thieves simply swipe your credit card through a credit card skimmer and take your credit card information. If you think you've been a victim of credit card skimming,"}, {"title": "rpj-c4", "text": "When stealth and shady Eastern European criminal organizations are able to provide money-back guarantees on the counterfeit credit cards they hawk online, credit card fraud has officially gone global and wholesale. That was the word on credit cards in 2015 from a pair of local bank officials told members of the Mill Valley and San Rafael Chambers at a Content & Coffee event on March 27 at the Renaissance Entrepreneurship Center. So what can merchants do to combat it? While the world of credit card fraud is complex, Sandy Barron, AVP/Regional Manager for Redwood Credit Union, and Dan Lanting, a Business Sales Consultant with Wells Fargo Merchant Services, said the short-term solution was quite simple: upgrade your credit card reader before October 1 to avoid the specter of being liable for credit card fraud. New readers cost a few hundred dollars to buy on average, the bankers said. The chambers hosted the event to educate their members about a major transition happening later this year. Credit card providers are replacing all \u201cswipe-the-stripe\u201d cards with those embedded with a microchip, with customers inserting the cards into a slot instead of swiping the stripe. Customers will still sign to validate most transactions, but the new system, known as EMV, will lead transition from swipe-and-sign to chip-and-PIN, enabling the use of PIN numbers if card issuers decide to add them to their cards. The critical piece for merchants is the coming liability shift for so-called \u201ccard present\u201d transactions that occur in person with the customer \u2013 not online or"}, {"title": "rpj-common-crawl-2021-04", "text": "Credit Card News Cash Cut As New Cards Hit Town 2997131 Cash cut as new cards hit town The introduction of the new chip and PIN credit and debit cards is predicted to see a significant decrease in those paying with cash or cheques, according to research carried out by MasterCard. The new technology will see people pay for goods by typing in a PIN number to a consol rather than sign their name to authorise a transaction. Around 41 per cent said they would opt for the convenience of plastic, and 42 per cent say they will carry less coins and cash on them. The main reason respondents gave for making more purchases by plastic rather than cash or cheques was that it will be made safer (55 per cent) and quicker (52 per cent) once chip and PIN is in place. Additionally, the technology will enable stores to provide secure self-service checkouts \u2013 a key factor for the increase in cards users. \u201cThe research suggests that the roll out of chip and PIN in the UK will spark a huge step change in the way people prefer to pay,\u201d said Paul Lucraft, the general manager of MasterCard for business services in Northern Europe. \u201cIt seems that peoples\u2019 wallets and purses will soon be a lot slimmer . . . They will opt instead for the increased convenience and security offered by plastic once signatures are replaced by PIN numbers.\u201d The findings also suggest that due to the security level increase, around three million people"}, {"title": "rpj-common-crawl-2019-30", "text": "are taking wireless readers into busy crowds in order to charge people's contactless cards with bogus payments while they are still in their handbags and pockets. The machines work even when concealed inside a shopping bag \u2014 which gives criminals the ability to target victims without them realising. There is little data on the prevalence of card skimming in the UK, but people who fall victim will typically be refunded the full amount by the their bank. Radio frequency identification technology, known as RFID, is a layer built into purses which is designed to block such rogue transactions. The worlds most cashless countries It stops radio waves travelling between tiny antennae on card chips and card readers, so that cards inside the wallet cannot be read. Meanwhile the UK's tap-and-go card boom is killing traditional purses and wallets, sales figures suggest, as consumers are opting for slim card-only wallets. According to shops card holders have overtaken traditional wallets with compartments for coins and notes for the first time. John Lewis said slim card wallet sales were growing twice as fast as chunkier purses, with sales up by 90 per cent yer on year compared to 42 per cent. while Debenhams said sales of card wallets were up by 100 per cent over 12 months."}, {"title": "rpj-c4", "text": "Nowadays, it is far more convenient to pay at gas stations with a speedpass, use Paypal for online purchases, and pay with plastic rather than holding wads of cash and pockets of loose change. But instead of now worrying about being mugged for cash, there is a technique to defraud you of your money that is more anonymous, sophisticated, and dangerous \u2014 and all it takes is a device that can easily be purchased for $50 online. This type of fraud is known as card skimming and it involves swiping your debit or credit card through a card reader that has been illegitimately set up to record information from your card\u2019s magnetic stripe. After your information has been recorded, it is usually then sold to other scammers on the black market or converted into a counterfeit card and used to make fraudulent purchases. Because it is difficult to know when your card has been skimmed, you may not find out unless you review your financial statements or get a call from your card provider. How Does Card Skimming Work? Although card skimming techniques are becoming increasingly sophisticated, the methods are generally the same. Skimming devices are usually installed on machines like ATMs and handheld pinpads, but also come as standalone, portable versions that are small enough to fit inside your pocket. One method of skimming involves fraudsters installing a faceplate over the card slot of any machine which accepts debit or credit cards. This is commonly referred to as ATM skimming, but it is also popular"}, {"title": "rpj-c4", "text": "credit card and have not yet received my chip card. When will I receive it? When your credit card expires it will be replaced with the new chip card. If you would like to receive a chip card before your current card expires, please contact the Credit Union. What are the benefits of using a chip card? Chip cards let you pay with confidence. Every time a chip card is used at a chip-activated terminal, a unique one-time use code is generated for the transaction to be approved. This feature is virtually impossible to replicate in a counterfeit card. Chip cards are designed to be simple\u2014everywhere. When using a chip card at a chip-activated terminal just insert the card with the chip side up, follow the prompts, and remove the card when the purchase is complete. Step 1:Insert the chip end of the card into the terminal (instead of swiping). Step 2:Keep the card in the terminal and follow the prompts to complete the purchase. Step 3:Cardholders should remember to take their card with them when they leave. Where can chip cards be used? Chip cards offer the greatest security when inserted into a chip-activated terminal. You may continue to use your card by swiping, because chip cards still have a magnetic stripe on the back. You may also continue to make online purchases by entering the card number or selecting the card during the checkout process if the card is already on file with that merchant. Chip cards are still accepted at the ATMs you"}, {"title": "bm25", "text": "cards, including the allocation of card number ranges to different card issuing institutions. In 1960 IBM used the magnetic tape to develop a reliable way of securing magnetic stripes to plastic cards, the most common identification and payment method to date. As technological progress emerged in the form of highly capable and always carried smartphones, handhelds and smartwatches, the term \"digital card\" was introduced. On May 26, 2011 Google released its own version of a cloud hosted Google Wallet which contains digital cards - cards that can be created online without having to have a plastic card in first place, although all of its merchants currently issue both plastic and digital cards. There are several virtual card issuing companies located in different geographical regions, such as Weel in Australia and Privacy in the USA. Magnetic stripe card A magnetic stripe card is a type of card capable of storing data by storing it on magnetic material attached to a plastic card. A computer device can update the card's content. The magnetic stripe is read by swiping it past a magnetic reading head. Magnetic stripe cards are commonly used in credit cards, identity cards, and transportation tickets. They may also contain a radio frequency identification (RFID) tag, a transponder device and/or a microchip mostly used for access control or electronic payment. Magnetic storage Magnetic storage was known from World War II and computer data storage in the 1950s. In 1969 an IBM engineer had the idea of attaching a piece of magnetic tape, the predominant storage medium"}, {"title": "bm25", "text": "worse. This is because the way biometrics work isn't really any different from credit cards. What's The Difference? It's easy to think of credit in terms of the plastic cards in our pocket, since we can touch them, and that makes it more real. But this isn't the case. Today, credit is really nothing more than a long string of numbers stored in a computer somewhere. When you swipe your card at the local Wal-Mart, the information stored on your card is converted into a number as well and sent to your bank. If the numbers match up you get to walk home with a bag full of goodies. Biometric identification works in a similar manner, but you're using your fingerprint instead of a card. It will still be turned into a string of numbers and run through a computer network. In the end does it really matter where the string of numbers comes from when an identity thief gets hold of it? Despite the predictions of some experts, a database is still just a database. A hacker can still steal data from a computer or network, it doesn't matter if that data is a credit card number, or a digital voice print. As far as security is concerned, many experts agree that maintaining \"token\" forms of identification are probably superior. Token identification is a card, password, PIN etc. \u2013 something that can be canceled, or changed if it is lost, misplaced or stolen. On the other hand biometric identification can't be lost, misplaced, or loaned"}, {"title": "bm25", "text": "cards without microchips can still be used at French merchants if they accept them, with the usual procedure of swiping the magnetic stripe and signing the receipt. In 2000, Serge Humpich, after failing to convince the makers of a serious flaw he had found two years before, purchased some metro tickets to prove it. He sent the proof to Groupement des Cartes Bancaires. They then initiated criminal action against him, and he was convicted and sentenced to a ten months suspended jail sentence. In 2003, the Cartes Bleues / CB started to move on to the international standard EMV for smart chips, allowing for their use abroad. In 2010, the Carte Bleue brand was phased out in favour of Visa; however, the term carte bleue continues to be used as a generic term for EFT-based payment cards, including debit and credit cards. See also Groupement des Cartes Bancaires CB ATM usage fees References External links Official Site of Carte Bleue Official Site of CB Fuel Cards Website Financial services companies established in 1967 Products and services discontinued in 2010 1967 establishments in France 2010 disestablishments in France Smart cards Debit cards Debit card issuer associations Credit card issuer associations"}, {"title": "bm25", "text": "going to want one or am I not going to have any choice? Chris Fendley: To some degree you're not going to have a choice. The banks are going to move over the next four to five years and put these chip cards out on the marketplace. They have for their own requirements need to move to a chip based product so instead of swiping cards you'll be sticking cards into terminals. So once you've got a card with a chip on it the banks and other people will be looking at other reasons or other products to offer you. Loyalty products for instance, today a lot of people have frequent flyer programs whereby you get quarterly statements and earn points and you can then redeem them for flights. These cards will allow you to do things like buy ten coffees, get one free. Now that's nothing new, people do that today with bits of paper. What this does it just simplifies it, it's one piece of plastic and it basically is enabling you access to a number of services just from one piece of plastic. Richard Aedy: Before we unpack a few more of those, let's go back to the banks. Why would they do this, you said they're going to drive it over the next four or five years but what's in it for them to push out this new technology? Chris Fendley: With existing credit and debit cards there is a significant amount of fraud whereby people replicate cards or skin cards. For"}, {"title": "bm25", "text": "channel and even damage the reader.\u201d Card reader software is designed to correct for errors due to the wear and tear of extended card use. Terminals, after all, are in the business of saying yes, not no. But a combination of an aging POS terminal and a card on its last legs forces some merchants to nurse their costly systems along with the tricks mentioned here. Castner says Hypercom terminals are tested to more than 300,000 mag stripe transactions, roughly the equivalent of five-plus years of service. On average, credit cards are built to last half that. He says when a merchant frequently has to resort to creative solutions like these to get a green light, it\u2019s time to either clean the terminal or replace it. \u201cJust as changing the oil in your car will extend the life of your car, minimal regular care, whether it\u2019s a quick squirt with compressed air or a couple swipes with a special cleaning card, will extend the life of your terminal,\u201d he says. If you have a card in your wallet that is particularly problematic, contact your card issuer; they\u2019ll be happy to replace it for free. To get longer life out of your card, consider using the plastic card sleeves that many issuers provide. \u201cIn my wallet, my card is right up against the leather with another card behind it, so it\u2019s always getting some sort of friction somewhere,\u201d says Castner. \u201cI think those holders would definitely help to protect the card. I think that\u2019s why issuers offer"}, {"title": "bm25", "text": "I will be travelling to the US soon and for that I obviously need a proper credit card, because Americans love their plastic money. I already own a credit card but I am a little bit confused, because the magnetic stripe seems to be just plain black paint with blocking number of the bank written in the middle without any actual function (I could be wrong). This fits to my research where I learned that in the EU the chip-and-pin verification is almost the only acceptable system. In the US however. I learned that they still widely use the older and far less secure swipe-and-sign system. I also learned that there is a difference between credit cards and cards coupled with your bank account called VISA debit cards (not to confuse with the normal bank card used to withdraw money and such). When I asked my bank support the reply was (translated from German): technically your Visa card is set up as a \"deferred debit\", this fulfils the requirements to be a credit card. Are European credit cards still capable of the swipe/sign system used in the US? And can I use the \"deferred debit\" card just like any other credit card used by Americans? e.g. Rent a car, hotel rooms etc. Can I use Swipe/Signature with German [VISA] credit card? Your network must be supported. VISA and MasterCard are OK, but sub-things like Cirrus may not be. This is more of a problem with Americans traveling to Europe (American Express and Diners Club are much"}, {"title": "bm25", "text": "use it or lose it \u2014 Why aren\u2019t chip credit cards stopping \u201ccard present\u201d fraud in the US? Fraud is on the rise despite a move to chip cards. Megan Geuss - Nov 15, 2018 5:07 pm UTC Enlarge / Chip cards help prevent fraud but only if you use them. Patrick T. Fallon/Bloomberg via Getty Images A security analysis firm called Gemini Advisory recently posted a report saying that credit card fraud is actually on the rise in the US. That's surprising, because the US is three years out from a big chip-based card rollout. Chip-based cards were supposed to limit card fraud in the US, which was out of control compared to similar fraud in countries that already used EMV (the name of the chip card standard). What happened after the US moved to chip-embedded payment cards? Chip cards work by creating a unique code for each transaction, and (ideally) require a customer to enter a PIN to verify that they want to make the purchase. This doesn't make it impossible to steal information from chip-based cards, but it does make it much harder to reuse a stolen card. By contrast, using a magnetic stripe to swipe a card simply offers all the relevant information to the merchant's card reader, which is much easier for a bad actor to steal. Gemini Advisory now says that 60 million credit and debit card numbers were stolen in the US in the past 12 months, and most of those were chip-based cards. The firm found this information"}, {"title": "bm25", "text": "and China Unionpay. EMV cards feature a built-in microprocessing chip that helps keep your information safe and secure. These types of cards are the standard throughout the world -- with the exception of the US. Chipped credit cards are still fairly new in the United States and have been slow to catch on. That\u2019s actually caused by a positive reason: fraud rates in the US are low compared to other countries. There was less incentive for banks (and cardholders) here to make the switch to EMV cards. Understanding How the Technology Works Chip-and-PIN authentication keeps credit cards secure in two ways. The chip itself allows the card to communicate with the card reader when you insert your plastic into the machine. The information on the chip is dynamic, which means it changes. It also interacts with the card reader to actively create and encrypt the information it shares with the machine. The chip in your card creates a unique transaction code every time you swipe it. This code is only valid for that one transaction. Even if this information is stolen, it\u2019s pretty useless -- using it again would cause a payment to be declined. The \u201cPIN\u201d part comes next. Once the chip communicates with the card reader and the system authorizes the transaction, you provide your PIN. If your PIN doesn\u2019t line up to the PIN required to use the card, the system won\u2019t authorize the transaction. While chipped cards offer more security, you probably won\u2019t notice a difference when you go to use your"}, {"title": "bm25", "text": "How magnets can ruin credit cards Posted by About this Blog at 2:32 PM It's a familiar scenario for anyone who has ever used plastic to pay: You hand over a perfectly valid credit or debit card at the cash register of your favorite store, but after several swipes at the terminal, it fails to work. (Cue disgusted sigh from the cashier.) Is it karmic retribution for buying one too many copies of \"People\"? No, the most likely culprit is demagnetization, a phenomenon that occurs when the magnetic stripe on the back of the card becomes corrupted. With magnetic stripes on everything from MasterCards to subway tickets -- and magnets built into many everyday objects -- demagnetization can be an accident just waiting to happen. \"There are some environments where it's fairly easy to demagnetize a card,\" says Kevin Rhoads, a research engineer at Dartmouth University in New Hampshire. But how does magnetic energy result in the ruination of a card? It all has to do with the nature of the magnetic stripe itself. The black stripe on the back is filled with data about your account, from the name of the card issuer to the limits on your card. This data is arranged on the stripe using tiny magnetic particles, so exposure to an external magnet can throw the information out of place and render the card unreadable. \"If you disturb the way that the particles were aligned in the first place by putting a magnet close to it, it will disrupt that encoding,\" says"}, {"title": "bm25", "text": "Earthmover Credit Union Visa\u00ae Credit Cards now come with built-in chip technology. These new cards are not only more secure - they're also easy to use. Receive an enhanced level of security. When you use your card at a chip-activated terminal, the embedded chip generates a one-time use code. This code is virtually impossible to counterfeit and helps reduce in-store fraud. Check out with ease. Enjoy global acceptance. More merchants are accepting chip transactions every day. Whether you check out using chip technology or swipe your card, you can pay wherever Visa credit cards are accepted. 1 Visa's Zero Liability Policy covers U.S.-issued cards and does not apply to certain commercial card transactions or any transactions not processed by Visa. You must notify your financial institution immediately of any unauthorized use. For specific restrictions, limitations and other details, please consult your issuer. Keep the card in the terminal throughout the transaction and follow the prompts on screen. Remove your card when prompted and take your receipt. Chip-activated terminals are coming to certain U.S. retailers this year - and more locations in the years to come. A: Earthmover Credit Union's Visa Credit Cards now feature built-in chip technology. You'll enjoy global acceptance plus an enhanced level of security. Q: Can I swipe my card to pay? A: Yes. If a merchant is not yet chip-activated, you can continue to swipe your card. Keep in mind, you may need to sign for your purchase."}, {"title": "bm25", "text": "signature than with the swiping issue. So why institute blink technology at all? Why not just stop requiring signatures on regular credit cards? The answer may be Chase's national press release, which states, \"Research has shown that customers who use blink cards often spend more per transaction.\" In addition, the novelty of blink could lead consumers to apply for Chase credit cards so they can use the new technology. The end result is more money for the company supplying the cards. Critics point out that credit-card companies encouraging people to spend more money and to do it more quickly is not a good thing for consumers [ref]. While Chase is the first credit-card issuer to adopt RFID cards on a large scale, other companies are getting in on the action. MasterCard's PayPass and American Express' Express Pay have been implemented in select markets. What else does the future hold for contactless credit cards? The biggest impact could be seen in the form factor of credit cards. Much of the credit-card market is driven by personalized cards with images of the user's favorite sports team, national parks and other graphics that create additional appeal. Without the restriction of the magnetic strip, credit \"cards\" could come in any shape, from keychain fobs to miniature toys or sculptures to coins that fit easily into a pocket. An RFID chip could even be sewn into a jacket sleeve or implanted into your hand. Ultimately, consumer acceptance will determine how the technology is adopted. For more information on blink, RFID and"}, {"title": "bm25", "text": "from legitimate commercial websites to counterfeit web pages designed to look and act like the real deal to trick the users into disclosing their credit card information. Carding: Making small online purchases to verify that stolen credit card numbers are still in good standing without raising the suspicion of cardholders or banks. Your identity theft lawyer might recommend using cash whenever possible to make purchases. If you must use plastic, use a credit card instead of a debit card or swipe your debit card as a credit card to avoid typing in your PIN. This prevents criminals from using a cloned card at an ATM. Consumer law protects individuals who promptly report fraudulent activity. However, if you delay reporting unauthorized purchases, you may be liable for the loss. This means it\u2019s critical to monitor your bank accounts, credit card accounts, and credit reports regularly. In the event that you do become a victim of credit card skimming, contact a credit lawyer immediately. Your lawyer can help you with notifying the police and obtaining a copy of the police report. He or she can walk you through all the legal steps you need to take, such as completing an identity theft affidavit and submitting it to all appropriate parties. Never pay a disputed charge as it makes it harder to fight additional fraudulent charges resulting from the ID theft in Alexandria. At Blankingship & Christiano, P.C., we are an Alexandria identity theft law firm ready to provide the legal help you need. Although you can dispute a"}, {"title": "bm25", "text": "huh?\" they say, grinning their slack, insincere grins. \"Guess so.\" I answer. What I want to say is \"The crazy part is that if I bludgeoned you to death with one of these four-pound Snickers bars here, they'd put me in jail.\" Have you seen the Dance of the Debit Card? The High Clerk (or Clerkess) takes your card, holds it up to the light, flicks it with his thumb a few times, and makes various concerned noises. Then he puts the card gingerly into the center of the \"swipe channel\" on the register. Since the card reader is designed to work when the card is swiped briskly through it, this does not work. It is followed by swiping the card through slowly, then more slowly. Then the card is placed in the reader and allowed to sit for a few moments. Then it's swiped wrong-side out (just in case.) If you (and the fine people waiting in line behind you) are very lucky, you may now be treated to the rarest spectacle I've been privileged to witness: the Shopping Bag Gambit. This is when the clerk pulls the out the big guns; he will actually pull a shopping bag out and wrap it around the card. The great thing about this is that it requires repeating the entire dance from start to finish. The only thing that is always the same regardless of which clerk is doing the Dance of the Debit Card is the finale, in which the clerk completely gives up and keys"}, {"title": "bm25", "text": "clone of your card. They can then use that in places that still require you to swipe to pay. GT: I actually got an alert for this recently - I don't know if it was from a shimmer, but somehow I was sitting at home and got a text message saying, your recent transaction at such-and-such gas station was declined because you should use the chip instead of swiping. So clearly someone had gotten enough info about my credit card to clone a magnetic stripe, and I only knew because they didn't manage to clone the chip card. LD: In some places, merchants can still swipe your card instead of using the more secure chip method because the timeline credit card companies gave to merchants to twilight swiping the magnetic stripes hasn't come yet. You only get the increased security when the chip-based payment method is actually used, so your card having it isn't enough to keep you safe. GT: There's been a process called the \"liability shift\" - where the credit card companies are telling merchants with magnetic stripe readers, if someone uses a cloned card, you need to pay the cost of that, we're not going to pay it. It's been completed in most places, although gas stations in the US are still exempt. Which is probably why they tried using my cloned card at a gas station, but this particular gas station apparently had a chip card reader. LD: And, of course, online purchases use your fixed credit card number. So if some"}, {"title": "bm25", "text": "A magnetic stripe card is a type of card capable of storing data by modifying the magnetism of tiny iron-based magnetic particles on a band of magnetic material on the card. The magnetic stripe, sometimes called swipe card or magstripe, is read by swiping past a magnetic reading head. Magnetic stripe cards are commonly used in credit cards, identity cards, and transportation tickets. They may also contain an RFID tag, a transponder device and/or a microchip mostly used for business premises access control or electronic payment. Magnetic recording on steel tape and wire was invented in Denmark around 1900 for recording audio. In the 1950s, magnetic recording of digital computer data on plastic tape coated with iron oxide was invented. In 1960, IBM used the magnetic tape idea to develop a reliable way of securing magnetic stripes to plastic cards, under a contract with the US government for a security system. A number of International Organization for Standardization standards, ISO/IEC 7810, ISO/IEC 7811, ISO/IEC 7812, ISO/IEC 7813, ISO 8583, and ISO/IEC 4909, now define the physical properties of the card, including size, flexibility, location of the magstripe, magnetic characteristics, and data formats. They also provide the standards for financial cards, including the allocation of card number ranges to different card issuing institutions. Magnetic storage was known from World War II and computer data storage in the 1950s. In 1969 Forrest Parry, an IBM engineer, had the idea of securing a piece of magnetic tape, the predominant storage medium at the time, to a plastic card base."}, {"title": "bm25", "text": "Q: What is the easiest way to get track data off a simple USB HID magnetic card reader? I need to get Track 1 and Track 2 data off magnetic cards and send them over the network to a waiting server. What is an easy way to get the track data from a USB HID magnetic card reader? In case it helps, I have a MAGTEK Mini Swipe Magnetic Strip Reader (part no. 21040140) I'm OS agnostic -- a solution for Windows, Mac or Linux would be great. Preferably no .NET, but if that's the easiest way I'll go for it. What do you all think? Thanks! A: Every card reader I've seen has had a keyboard emulator, so you swipe the card and it sends characters through the keyboard buffer. Looks like this one also does that (documentation : http://www.magtek.com/documentation/public/99875206-16.01.pdf) Page 14 describes the data sent after a swipe, which is again, fairly standard across card readers: [Tk1 SS] [Tk1 Data] [ES] [Tk2 SS] [Tk2 Data] [ES] [Tk3 SS] [Tk3 Data] [ES] [CR] So your track one data starts with % and ends with ? Track two data starts with ; and ends with ? I noticed the question was tagged credit-card though, so it would be worth making sure you know the consequences of sending raw card-data across a network (even an internal network). Take a look at the Payment Card Industry Data Security Standards (PCI-DSS) : https://www.pcisecuritystandards.org/security_standards/pci_dss.shtml There is a demo program for that specific reader that comes with VB source. http://www.magtek.com/support/software/demo_programs/usb_swipe_insert.asp A:"}, {"title": "bm25", "text": "locations across 30 states likely had payment systems compromised by card-stealing malware, with the highest exposure in California and Arizona. Gemini puts the exposure window between July 2019 and August 2020. \u201cLow-and-slow\u201d aptly describes the card breach at Dickie\u2019s, which persisted for at least 13 months. With the threat from ransomware attacks grabbing all the headlines, it may be tempting to assume plain old credit card thieves have moved on to more lucrative endeavors. Alas, cybercrime bazaars like Joker\u2019s Stash have continued plying their trade, undeterred by a push from the credit card associations to encourage more merchants to install credit card readers that require more secure chip-based payment cards. That\u2019s because there are countless restaurants \u2014 usually franchise locations of an established eatery chain \u2014 that are left to decide for themselves whether and how quickly they should make the upgrades necessary to dip the chip versus swipe the stripe. \u201cDickey\u2019s operates on a franchise model, which often allows each location to dictate the type of point-of-sale (POS) device and processors that they utilize,\u201d Gemini wrote in a blog post about the incident. \u201cHowever, given the widespread nature of the breach, the exposure may be linked to a breach of the single central processor, which was leveraged by over a quarter of all Dickey\u00e2\u20ac\u2122s locations.\u201d While there have been sporadic reports about criminals compromising chip-based payment systems used by merchants in the U.S., the vast majority of the payment card data for sale in the cybercrime underground is stolen from merchants who are still swiping"}], "hoverinfo": "text"}, {"x": [-0.19597038626670837, -0.2519565522670746, -0.2790471315383911, -0.29315489530563354, -0.24948830902576447, -0.17150810360908508, -0.2306043654680252, -0.2235090285539627, -0.22036193311214447, -0.2737469971179962, -0.27247658371925354, -0.23876096308231354, -0.23178879916667938, -0.29184770584106445, -0.2809702754020691, -0.2918355464935303, -0.3024289906024933, -0.2803875803947449, -0.3000039756298065, -0.24599552154541016, -0.20399925112724304, -0.2870001196861267, -0.27850601077079773, -0.2458987981081009, -0.2664642930030823, -0.24289856851100922, -0.20011217892169952, -0.20011217892169952, -0.28797799348831177, -0.3221534788608551, -0.20123352110385895, -0.1578347384929657, -0.31338220834732056, -0.2613576054573059, -0.22851678729057312, -0.26537778973579407, -0.2595893442630768, -0.2749585211277008, -0.20571395754814148, -0.2851408123970032, -0.26957598328590393, -0.2537645101547241, -0.24265459179878235, -0.24289856851100922, -0.29654330015182495, -0.25292474031448364, -0.2529248595237732, -0.2885914146900177, -0.280634343624115, -0.24391338229179382, -0.2656991481781006, -0.2656990885734558, -0.25979989767074585, -0.20994752645492554, -0.26525384187698364, -0.26525384187698364, -0.2525319755077362, -0.2766260504722595, -0.2766260504722595, -0.20124758780002594, -0.279183954000473, -0.30652475357055664, -0.21345177292823792, -0.2232149988412857, -0.24175463616847992, -0.2578286826610565, -0.244951531291008, -0.29489731788635254, -0.27046018838882446, -0.23165877163410187], "y": [-0.038028690963983536, -0.02372746169567108, -0.0011970656923949718, 0.02162882871925831, -0.010000578127801418, -0.05838217958807945, -0.003157110419124365, -0.030755875632166862, -0.021088004112243652, -0.0017769301775842905, -0.015373430214822292, -0.06113617867231369, -0.04494715854525566, -0.01819647289812565, -0.02626274712383747, -0.028072137385606766, -0.07214923202991486, -0.06170923635363579, -0.020314522087574005, -0.06766974925994873, -0.06593197584152222, -0.06328441947698593, 0.009739303961396217, 0.015856724232435226, -0.025032594799995422, -0.034241724759340286, -0.011363662779331207, -0.011363662779331207, -0.05096161738038063, -0.036335792392492294, 0.019001644104719162, 0.016099344938993454, 0.030465278774499893, 0.0009043634054251015, -0.043975409120321274, -0.00019984201935585588, -0.016050418838858604, 0.012216630391776562, -0.07929900288581848, -0.013139813207089901, -0.04894280806183815, -0.060537632554769516, -0.07833466678857803, -0.034241724759340286, -0.0133163807913661, -0.001363487564958632, -0.0013634797651320696, 0.005653568543493748, -0.026884159073233604, -0.04222220927476883, -0.017174584791064262, -0.017174670472741127, -0.00983519572764635, -0.10744261741638184, 0.00025893296697176993, 0.00025893296697176993, -0.05049226060509682, -0.028169937431812286, -0.028169937431812286, -0.07114477455615997, -0.008849634788930416, -0.05305283144116402, -0.03261663019657135, -0.04699701815843582, -0.02843811921775341, -0.03079521283507347, -0.08752203732728958, -0.028797149658203125, -0.054752130061388016, -0.026561329141259193], "mode": "markers", "name": "Cluster 2", "marker": {"size": 8, "color": "rgb(190,186,218)"}, "text": ["Document 8", "Document 58", "Document 147", "Document 149", "Document 151", "Document 170", "Document 186", "Document 197", "Document 226", "Document 227", "Document 228", "Document 254", "Document 255", "Document 274", "Document 293", "Document 295", "Document 299", "Document 323", "Document 326", "Document 338", "Document 351", "Document 405", "Document 421", "Document 423", "Document 491", "Document 492", "Document 550", "Document 551", "Document 612", "Document 614", "Document 624", "Document 629", "Document 663", "Document 671", "Document 673", "Document 685", "Document 703", "Document 718", "Document 719", "Document 742", "Document 779", "Document 780", "Document 791", "Document 808", "Document 848", "Document 864", "Document 865", "Document 866", "Document 881", "Document 884", "Document 899", "Document 900", "Document 921", "Document 924", "Document 927", "Document 928", "Document 942", "Document 948", "Document 949", "Document 955", "Document 963", "Document 992", "Document 994", "Document 999", "Document 1063", "Document 1131", "Document 1133", "Document 1273", "Document 1331", "Document 1448"], "customdata": [{"title": "pubmed", "text": "[USE OF PLASTIC BAGS IN A BLOOD BANK]."}, {"title": "rpj-c4", "text": "him a brief explanation, that by using these bags I don\u2019t need to use any plastic produce bags anymore. When it was his turn to pay, the cashier asked: \u201cPaper or plastic?\u201d To which he replied, \u201cPlastic, but I will use it for garbage.\u201d This was the perfect segue to offer a reusable bag. At first he didn\u2019t want to accept and countered that he really could buy his own. In my head, I thought, \u2018but you haven\u2019t bought your own\u2019 so I said, \u201cPlease take this, you would be doing me a favour because I\u2019ve made a pledge that I would give a bag away to help keep plastic from going into landfill, besides you can pass if forward.\u201d He took it with a smile and the cashier was thrilled. With a big smile she said how happy she was that this exchange happened at her till! I'm a student, artist, actor, cook, practice Longsword, Martial Arts and Wilderness Survival. I started this blog in 2014 when I was ten years old."}, {"title": "rpj-common-crawl-2023-06", "text": "take-out food. Also, people on welfare would be exempt from paying. I don\u2019t remember ever getting a bag at Costco; they usually just stack everything in the cart or some random odd-shaped cardboard box and then I shove the items all over the car and do 20 trips back and forth between my car and my kitchen. From my perspective, there is value in a plastic bag after you purchase something. I just used plastic bags to put away all my Christmas lights. I also use them to pick up dog poo. Actually, I keep a couple bags in my car so when I see an irresponsible dog owner who lets their dog poop on someones yard without cleaning it up I pull up and ask them if they need a bag for the gift they just left the resident. So far they all say yes. My Dad, who grew up during the depression, loves plastic bags to organize all his clutter that he keeps because he does not like to throw things away (you know the type). I can imagine my Dad in the future at the Safeway parking lot selling his extra plastic bags out of his trunk for 10 cents each. Charging for bags will not end litter. The only way to solve litter is by having Singapore-style laws where the penalties are high enough to discourage deviant behavior even when no one is looking. In the end, if I find value in the plastic bag then I am OK with paying for"}, {"title": "rpj-c4", "text": "Those are some general reasons to use reusable bags rather than paper or plastic bags, but let\u2019s take a look at some of the more specific benefits of reusable bags, the negative impact of plastic bag pollution, and a few other reasons it\u2019s a good idea to bring your own bag. Though they seem small and light, plastic bags have a much larger environmental footprint than you may imagine, beginning with the energy required to make them. Twelve million barrels of oil are used to manufacture the plastic bags consumed in the United States each year, according to Waste Management Northwest. On a smaller scale, according to SPREP.org, you could drive a car a mile for the same amount of gasoline it takes to manufacture 14 plastic bags. The effects of plastic on the environment can be devastating. Plastic products such as plastic bags can take between 15 and 1,000 years to break down, and that\u2019s assuming they even make it into a landfill instead of winding up in water such as streams, rivers or the ocean \u2014 or floating around the neighborhood. Of the 100 billion plastic shopping bags Americans use each year, only about 1 percent are recycled, so a lot of plastic bag pollution is generated annually. Even where good intentions lead someone to recycle their plastic grocery bags, a lot of recycling equipment can\u2019t handle the task, according to a 2016 Business Insider article. Bags get snagged on conveyors belts and wheels, clogging the machinery; they can be difficult to separate from"}, {"title": "rpj-c4", "text": "In order to fix this, stores can advertise that reusable bags will result in a $0.05 reimbursement. Another way to help this problem would be to have businesses sell reusable bags at every cash register and ask each customer if they would want to purchase a reusable bag. If people have easy access to reusable bags, plus an incentive like Target\u2019s to use reusable bags, people will likely use the reusable bag and be more environmentally friendly. Furthermore, by asking customers if they would like to purchase reusable bags, shoppers would be conscious of their plastic bag usage and therefore potentially feel guiltier about choosing plastic. People would then be making conscious efforts towards a cleaner environment. Eventually, after implementing more environmentally conscious actions, stores could begin charging customers for plastic bags. The price would not need to be expensive, but just high enough to encourage shoppers that it would be a better investment to use reusable bags. Even if you are normally very economically conscious and use reusable bags, there are always off days when you might forget your reusable bag when you go shopping. Off days happen and shoppers should have access to a plastic bag on those occasions. Without access to plastic bags, you might have to carry each individual item in your arms since you cannot access a bag, which is one of the last things you want to do after shopping. Additionally, plastic bags are multi-functional. You can use plastic bags over and over again. They can keep wet items separate"}, {"title": "rpj-common-crawl-2019-30", "text": "to the US. (Or rather, one that has succeeded in expanding to the US: I've seen it in two or three completely different parts of the country.) Maybe they just haven't quite figured out how weird their shopping cart deposits feel to Americans. (My local Aldi recently reversed its \"no credit cards\" policy, which was another thing that felt foreign about it. Whoever heard of a store that didn't accept credit cards? Anyway, if they just get rid of the shopping cart deposits, and start giving out free grocery bags with people's purchases, they'll probably be able to start passing for a normal 'Merican chain.) Postby Soupspoon \u00bb Sat Feb 10, 2018 11:17 pm UTC The trend in Europe (or at least in the UK, for what that's worth, but I suspect it's a policy development on the mainland continent too) is to start charging for (plastic) bags, to reduce one-use-then-discard-any-old-how practices. (I have at least one bag-for-life for each different supermarket chain I deliberately visit more than twice a month, which I try not to cross-brand lest they each discover I may have been having a relationship with one or more of the others. And I still have loads of single-use bags that I singly-used prior to the charge, then put into (a bag of their own kind in) a cupboard in order to use\u2026 somehow\u2026 at a later date. Using them as bin liners for small bins doesn't even use/waste them enough, 'cos I only rarely bin things so messy that I need to"}, {"title": "rpj-common-crawl-2020-05", "text": "two, either because you don't have enough bags with you or because yours are worn out. To solve this problem, you could keep a re-used bag on you most of the time if going into a commercial area, to anticipate those spontaneous purchases. The relatively thin composition of a vest bag makes it possible to fold right down to an easily pocketed size without trouble. You can re-use plastic bags for more than just shopping. In imaginative hands, you can turn the traditional free vest bag to a multitude of new uses. Some of these will get a second use out of the bag; others will use the bag over and over again, for which you deserve to give yourself a hefty pat on the back: Storage - Use a bag to collect and keep things tidy and all in one place. Use shopping bags to sort and store recyclables, like card, plastic, newpaper and so forth. Or, hang bags off hooks as extended storage for lightweight goods like crisps, snacks and biscuits. In the Garden - Plastic bags can be used in many ways in the garden. They make reasonable grow-bags and can be used for insulation. You can use them as improvised buckets to move stuff from A to B - things such as leaves or freshly extracted garden veg - or to collect slugs and snails for humane disposal. You can use them for collecting trimmings while pruning to simplify the clean-up process, or use them for... Water-proofing - You can use impermeable"}, {"title": "rpj-common-crawl-2023-06", "text": "any risk of illness. 9. What if I forget my reusable bags? Getting used to new habits takes a little time and practice. If you forget your bag, most stores will offer reusable paper bags for a minimal charge, generally 10 cents. To avoid needing to buy bags, keep reusable bags in the car and tuck a small, collapsible bag into your purse or glove box or attach one to your keychain for quick shopping trips. Pretty soon, bringing your own reusable bags into stores will become second nature - just like - fastening your seat belt. 10. What if I can\u2019t afford to purchase a reusable bag? Stores are required to provide customers participating in the California Special Supplemental Food program for Women, Infants, and Children (WIC) and customers participating in the Supplemental Food (SNAP) program with a reusable bag or recycled paper bag at no cost at the point of sale. 11. Why not offer plastic bags, but charge for them instead? The goal of this ordinance is to reduce overall plastic bag use. As illustrated in other communities who have passed similar ordinances, bans are better than fees at helping us reach this goal. California law (AB2449) prohibited charging for plastic bags, however it didn\u2019t prohibit charging for paper bags. As a result, retailers are able to recover their cost for providing paper bags, and this small fee helps encourages customers to use reusable bags, thus also reducing the use of paper bags. 12. How can I avoid the charge? You can avoid"}, {"title": "rpj-common-crawl-2022-05", "text": "you could keep a re-used bag on you most of the time if going into a commercial area, to anticipate those spontaneous purchases. The relatively thin composition of a vest bag makes it possible to fold right down to an easily pocketed size without trouble. You can re-use plastic bags for more than just shopping. In imaginative hands, you can turn the traditional free vest bag to a multitude of new uses. Some of these will get a second use out of the bag; others will use the bag over and over again, for which you deserve to give yourself a hefty pat on the back: Storage - Use a bag to collect and keep things tidy and all in one place. Use shopping bags to sort and store recyclables, like card, plastic, newpaper and so forth. Or, hang bags off hooks as extended storage for lightweight goods like crisps, snacks and biscuits. In the Garden - Plastic bags can be used in many ways in the garden. They make reasonable grow-bags and can be used for insulation. You can use them as improvised buckets to move stuff from A to B - things such as leaves or freshly extracted garden veg - or to collect slugs and snails for humane disposal. You can use them for collecting trimmings while pruning to simplify the clean-up process, or use them for... Water-proofing - You can use impermeable bags to improvise waterproof clothing. This type of bag can also be used to keep things dry, if sealed properly,"}, {"title": "rpj-c4", "text": "from dry items. They can be used to clean up after pets, especially when walking a dog. When put over shoes or wrapped around a person\u2019s knees, plastic bags ensure that a person\u2019s shoes or clothing do not get dirty, especially when working in a garden-like setting. Additionally, they can also be used as stuffing when packing gifts or boxes. Furthermore, by incentivizing environmentally-friendly actions, people may subconsciously associate eco-friendly techniques into other aspects of their lives. In other words, people will associate being environmentally conscious with saving money and feeling good about oneself. Those associations will encourage further environmentally healthy decisions. If Rice County was to completely ban plastic bag usage, people would not have this opportunity to grow into environmentally conscious people on their own. Mickaylie Bade \u201920 (Bade1@stolaf.edu) is from Hutchison, Minn. She majors in English."}, {"title": "rpj-common-crawl-2021-04", "text": "eager for an opportunity to run their own business and contribute to the family income. This new lightweight, sturdy, and 'disposable' product was marketed as an essential part of a good healthy home. Anyone that has a child fifteen years old or older can tell you that the item being disposable was the best part of the product. Disposable plastic plates, cups, cutlery and anything else you could get your hands on revolutionized children's parties. No one ever mentioned that they didn't know how to dispose of it, or even that it wasn't actually disposable. Back then it was all about saving trees, so everyone used plastic instead. 1985 - The Society of Plastic Engineers' Regional Conference talked about \"New Materials and Profits In Grocery Sacks and Co-Extrusions,\" and pointed out that plastic bags were less expensive than paper bags. At the time, one thousand plastic bags cost $24, while the same number of paper bags could set retailers back $30. The Late 1980's and Early 1990's - People were still unsure about the choice between paper and plastic, that is, until they were told about the advantages of the 'reusable plastic bag'. The Film and Bag Federation, a trade group within the Society of Plastics Industry based in Washington, D.C., said the right choice between paper and plastic bags was clearly plastic. \"Compared to paper grocery bags, plastic grocery bags consume 40% less energy, generate 80% less solid waste, produce 70% fewer atmospheric emissions, and release up to 94% fewer waterborne wastes,\" according to the"}, {"title": "rpj-c4", "text": "to handle them for each customer. Don\u2019t believe me? Ever had to stand in line behind some well meaning rube who has purchased a few hundred dollars worth of groceries and carries around the commensurate number of bags needed to transport said load? True Story. It took easily two to three times as long for the cashier and the bagger (if your grocer does not have a bagger at each register multiply that time) to bag the groceries of the customer in front of me. What is typically less than three-to five minutes in line turned into ten. Now multiply that by every customer at every register every day. If, as a business, you plan to handle the same volume of customers with the same level of service, you will now need more cashiers and baggers to offset these mandated labor costs because of the plastic bag ban. And having observed this practice for a while now, there is no conceivable way for the average business I frequent to accept piles of folded up re-usable (see also un-recyclable) bags, unfold them, and fill them with the efficiency of plastic grocery bags. This legislates added costs to every transaction. And where does that cost show up? Not down at the town council meeting. It announces itself in your grocery bill. If your store of preference is not equipped or leveraged to add more cashiers or baggers to handle the exact same amount of business (including but not limited to mom and pops, small chains, boutique type or"}, {"title": "rpj-c4", "text": "plastic bag.\""}, {"title": "rpj-c4", "text": "because they have other uses (such as picking up pet droppings, using as cheap garbage liners, and numerous useful life hacks.) It is hard to erase the cultural significance of plastic bags, so it is important to have an equal or better alternative. According to the California Grocers Association, standard plastic bags cost about 2 cents while a biodegradable bag costs about 15 cents. If a sustainable biodegradable bag can be created, laws banning plastic bags would be extremely effective. If that can\u2019t be done, places with plastic bag bans should consider programs for recycling plastic bags. It\u2019s hard to change culture."}, {"title": "rpj-c4", "text": "long time. Until somebody recycles them, that is. They can be made into, among other things, robust furniture. I\u2019m sure that major stores have discovered efficiencies in delivering paper bags. But paper is bulkier than plastic, probably by something like 10 times. Paper bags, then, require from 10-15 times more fuel to transport, and roughly 10 times as much storage space as plastic. The transport and storage are not just one way. The customer will take these bags home, and most will end in the trash or recycling bin. It costs 10-15 times as much to haul away the paper as plastic. Plus, for those bags that aren\u2019t recycled, the space on the garbage trucks isn\u2019t insignificant. Nor is it on the recycling truck. In other words, a lot of fuel is burned up carting paper bags to and fro. Plus, much space is taken; space at the store which is heated, air conditioned, kept dry. This is fuel and space that could have been saved had plastic bags been used. Plastic, made from natural gas which we have in abundance, eventually sits in the landfill\u2014and sits, and sits. But that\u2019s all it does: sits. And sits in a trash heap, a place set aside for rubbish. Meaning, of course, that it can be avoided. Even when it eventually breaks down, it still sits, creating small particles of plastic which, as far as we know, are largely harmless. This might not turn out to be true, of course; it could be that degraded plastic beads cause"}, {"title": "rpj-c4", "text": "gift that keeps on giving (to the planet) - a stash of stylish roll-up bags to hide in every available glove-box and handbag for emergencies. Don\u2019t see plastic bags as a problem, so can\u2019t see the point of banning them. Either refer to much bigger environmental problems facing the world or deny that there are any environmental problems facing the world. Response: \u2018\u2018Why bother, it\u2019s not going to make a difference anyway\u2019\u2019. Help to transition: Show them pictures of cute albatross chicks, dying whales and babies (their own if possible and preferably all together in the same photo). Batter them down with relentless optimism about the power of humanity to change course if we all work together. Fold up your reusable bags when you finish putting away your shopping and put them back in the car. Keep an emergency bag in every glove box and handbag. If you forget your reusable bags, ask for a cardboard box, carry items loose or push them to the car in your trolley. A little bit of inconvenience and/or public embarrassment will help you remember next time. Replace plastic bag bin liners with a newspaper bin liner or no bin liner at all (just wash and dry in sunshine when empty, works best if you compost your food waste). Dog owners - switch to bread bags or other bags that come with pre-packaged food items for your favourite daily job (picking up the poo). Didn't read the full article - this is a total joke and scam of getting more"}, {"title": "rpj-common-crawl-2022-05", "text": "of the production line are the tests---a battery to make sure plastic bags are up to snuff. A key test is the \u201cjog test.\u201d Engineers put a weight resembling a giant six-pack into the bag, and a machine shakes it up and down 175 times to simulate the walk---or jog?---from the store to the car. It\u2019s telling perhaps, that plastic bag manufacturers would focus so much on the walk to the car--this is all most people use plastic bags for. And so the plastic bag\u2019s greatest strength also becomes its downfall. \u201cIt\u2019s easy to make the case, why do you have this thing that you use for 10 minutes and it lasts forever,\u201d says Freinkel. San Francisco\u2019s ban came about because the bags were quite literally clogging up the city\u2019s recycling equipment, so that workers had to climb in with box cutters once or twice day. What\u2019s so galling about just throwing out plastic bags is that the light, strong, waterproof bags are so useful. If you\u2019ve ever needed to carry something in the rain, or schlep a wet swimsuit from the pool, or pick up dog poop---all pain points I\u2019ve encountered living in the island of plastic bag scarcity that is California\u2019s Bay Area---plastic bags are the way to go. Those bags I used get to free at the grocery store? I would happily buy some. In the grand scheme of environmental problems, ubiquitous plastic bags do not rank that high, says Freinkel, but the bans are still important. \u201cThis kind of very short-term mindset"}, {"title": "rpj-c4", "text": "up recycling machinery. So, Lee wants to ban it. Now, you might say that this is a bit hasty. Maybe we should give stores time to voluntarily diminish the use of plastic bags in their stores? You would be right, and in 2008, when Mayor Leffingwell first wanted to do this, six retain giants got together and said that if he would hold off the ban, they would cut bag use by 50%. He let them try. It\u2019s been 3 years, and it still hasn\u2019t happened. The retailers say that they\u2019ve done a great job, and have reduced bag use by 20%. However, by my own gauge, most stores are doing a lousy job. How do I judge? The grocery stores are the only places that don\u2019t bat an eye when I say I have my own bags. The lady at Gap looked as if she didn\u2019t know if she was allowed to put my clothes into my cloth bag! The man at JCPenney\u2019s heard me, but still pulled out a plastic bag. I had to explain that I didn\u2019t want a disposable bag. The fact of the matter is that plastic bags are wasteful to our environment and not as sturdy as reusable bags. It takes 12 dinky plastic bags to hold all of my groceries, when I could use 4, maybe 5, reusable bags. And for those, like me, who thought, \u201cHey! I use reusable bags, but I want my meat in a disposable bag so that it doesn\u2019t cross contaminate!\u201d Lee has thought"}, {"title": "rpj-common-crawl-2020-05", "text": "to these costs. This shows up in school curricula???? What next- in praise of incandescent lights? I can\u2019t fault the industry for trying- the culpability is with the school district for buying. The Bearded Obecian September 22, 2011 at 3:07 pm I\u2019m not sure why they didn\u2019t mention, to me, the largest benefit of plastic bags; helpful in cleaning up after our dogs. I don\u2019t see the problem with encouraging students to consider the convenience of plastic bags as part of the decision-making process. It\u2019s a legitimate question to consider the convenience vs. the cost to the environment and a good exercise in critical thinking. I doubt that\u2019s why the plastics industry wanted the language there, but whatever. Plastic bags are convenient. I reuse canvas for groceries most of the time, but I can\u2019t pick dog poop up with them. Is it better to use plastic poop bags created solely for that purpose or to get two uses out of plastic grocery bags (once at the store and once for poop?) I would hope that the topic of \u201cconvenience\u201d would indeed be a part of critical analysis in any number of subject areas. The school district does not need to shill for the plastic industry to encourage that kind of discussion. You and another commenter raised a resonant point about plastic bags as poop collectors. There is certainly a need for a way to dispose of cat and dog poop that doesn\u2019t rely on the plastic bag as we know it. So why haven\u2019t we come"}, {"title": "rpj-c4", "text": "briefcases. Over time, however, plastic zipper bags were developed. Eventually, in 1968, Dow Chemical Company began to market its Ziploc\u00ae brand of resealable plastic bags to grocery stores. They turned out to be very popular. Today, these types of bags are available in many different sizes and styles, from snack and sandwich bags to craft and freezer bags. You can also buy bags with expandable bottoms that stand on their own. Some bags even allow you to steam food in the microwave! Jewelry: Many people use resealable plastic bags to store small pieces of jewelry, including beads. Office supplies: Want to keep track of tacks and paper clips easily? Store them in convenient resealable bags! Games: Always losing the cards or dice from your games? Keep these items together in a resealable plastic bag and you'll never be searching for those missing pieces again. Today, many people try to use less plastic because of its effect on the environment. Manufacturers of resealable plastic bags have taken steps to become more environmentally-friendly. For example, Ziploc Evolve bags contain 35% less plastic and are made using wind power. They're also packaged in recycled paperboard. Wonderopolis is all abuzz because of tomorrow\u2019s Wonder of the Day! Do you have another great idea for a fun craft to make with resealable plastic bags? Share it with your Wonder Friends by posting it to Facebook. We can't wait to read your ideas! That's WONDERful, Aleydis! What's your favorite part of packing your lunch? I liked todays wonder! I don't take home"}, {"title": "rpj-c4", "text": "before folding the bags in fourths reverse the bag so it\u2019s inside out. If the wallet won\u2019t stay folded in half, lightly iron the fold for 10 seconds to help it keep its shape. Plastic grocery bags are a great material to fuse because it's thin and strong. When a plastic grocery store bag is stretched in the direction of handles to bottom, the bag feels strong and resilient. When the bag is stretched from side to side, it easily pulls apart and loses ts shape. This is due to the chemical structure of polyethylene, the material that most plastic bags are made of. The polyethylene that makes plastic grocery bags is a polymer. When plastic bags are made, the polymers are all lined up side by side in the same direction. The polymers lay in the direction of handles to bottom. Since grocery bags can be used to carry heavy items, the polymers are aligned this way to give the bags the most strength. Imagine all these tiny chains laying next to each other and holding up the weight of a few cans of food. It\u2019s easy to stretch and deform the bag when it\u2019s pulled from side to side because the chains of polymers are not connected in that direction."}, {"title": "rpj-c4", "text": "in lobbying against plastic bans. In 2011, the ACC announced that the APBA was becoming a division of the Plastics Industry Association, which became a member of ALEC in 2013. In recent years, the Plastics Industry Association and the APBA have worked more closely with ALEC to oppose plastic bans across the country. Companies like Coca-Cola, PepsiCo, and SC Johnson were listed as members of the Plastics Industry Association as of 2018. While SC Johnson recently stated that it supports plastic straw bans, it is still a member of the association whose APBA division leads preemption lobbying against local plastic pollution ordinances. James is correct about reusable bags. Alas. Well, I have had the same Patagonia shopping bag in my purse for about eight years. I wash it once in a while. I think it\u2019s definitely better than a plastic bag. It holds way more. Plus it has shoulder straps. And I am the last thing from a germaphobe. So, that works for me. I recently worked at a fundraiser at the coat check area. We put bags and shirts in plastic bags for the participants. The bags tore almost immediately. I recycle bmy plastic bags as I am sure most people do. City Hall can screw themselves with their politically correct crapola. IKEA bags, like https://www.ikea.com/us/en/catalog/products/17228340. They\u2019re not made quite as well as they were when they cost 79 cents, but I have a bunch I have been using nonstop for maybe 15 years. They work for other loads as well, and when they get"}, {"title": "rpj-c4", "text": "Reusable bags are everywhere, which is awesome for both the environment and the businesses making good use of them. If you haven\u2019t yet jumped into the game and need a little push, here are 50 amazing reasons to get your own reusable bags today. Beautiful Merchandise \u2013 Reusable bags made with quality materials and stamped with lovely logos make for beautiful merchandise, plain and simple. Tons of Brand Impressions \u2013 Each reusable bag receives 5,938 brand impressions throughout its lifetime. Think how many people that could be, all seeing your company name and logo and thinking of you the next time they need a related product. Plastic Waste \u2013 Plastic makes up 12.8 percent of the municipal solid waste stream, and a whole lot of that is bags. Reusable bags help eliminate this waste. The Bag Tax \u2013 More and more cities in the United States and around the world are taxing plastic bags in an effort to encourage business owners to find another solution. When you use reusable bags instead, you can save yourself the extra nickels and dimes, which add up quickly. Harm to Wildlife \u2013 Paper and plastic bags ruin habitats, choke animals, make them sick and kill them. Considering most people don\u2019t feel good about that, reusable bags are a great way to go. Marine Life \u2013 Similarly, animals and plants in the ocean are harmed by waste materials, so do your part to keep them out of the ocean by going reusable. Leached Toxins \u2013 Plastics leak toxins that are harmful"}, {"title": "rpj-c4", "text": "wine in it, without worrying that it will tear and collapse \u2013 and that alone surely is yet another very good reason to swop to using sturdy reusable bags! A search of the Cabdirect database using the terms plastic bags and recycle returned 36 records, which can be accessed by subscribers of the database by following this link. These include an article by Mathu et al. on the carbon footprint of shopping bags and another by Halden entitled 'Plastics and health risks'. Halden, R. U. (2010). Plastics and health risks. Annual Review of Public Health Vol. 31 pp. 179-19. Muthu, S. S.; Li, Y.; Hu, J. Y.; Mok, P. Y. (2011). Carbon footprint of shopping (grocery) bags in China, Hong Kong and India. Atmospheric Environment Vol. 45 No. 2 pp. 469-475. Money is a good servant and a bad master . Sometimes one pays most for the things one gets for nothing . No country , however rich , can afford the waste of its human resources ."}, {"title": "rpj-common-crawl-2022-05", "text": "70% less plastic today than 20 years ago. No other industry has a better track record in material reduction. Packaging and Films Association 2003 Plastic bags do not waste oil, they are derived mainly from oil refining by-products (naptha, ethylene, etc) which would otherwise be flared off. So plastic bags are an excellent use of otherwise waste products. All plastic packaging of all types uses no more than 2% of total oil extraction compared with 29% for transport and 35% for heating/industry. Plastics Europe 2007 The Irish tax has cost small to medium retailers an estimated \u20ac24.3m (after the first year of operation) mostly as a result of theft plus additional theft of \u20ac10m in \u201cpush out\u201d thefts (where unbagged and unpaid for goods are wheeled through the doors due to absence of carrier bags as evidence of purchase) (Note: This is more than the income \u201cgenerated for the good of the environment\u201d and includes the theft of trolleys and baskets) \u2026 RGDTA \u2013 Irish Grocers Association and Irish Trade Journal \u201cShelf Life\u201d estimates 2003, A 10p tax per carrier bag represents a tax level of 1000+% on cost price. If applied equally across popular goods, a can of Coke would cost \u00a38 and a packet of crisps \u00a35. Simpac Ltd Study for CBC 2005 Published on Wednesday, 22 June 2011"}, {"title": "rpj-common-crawl-2020-05", "text": "leaning towards offering paper bags as an alternative. But from an environmental perspective, there is evidence plastic grocery bags take 40% less energy to make. One study says they actually generate 80% less solid waste. Fee Strategies for Small Businesses Still there is a growing trend toward charging fees for plastic bags. Charging a bag fee at the check out in retail and grocery stores is a common method. There are some strategies you can use to implement this kind of program. Make the case the extra plastic bag fee helps the environment. Some of your customers will pay the extra charge when you frame it up that way. Be clear and upfront on your webpages and social media. You can offer reusable bags. For example, paper bags are biodegradable. Find a supplier and make a bulk deal for a number of these. It can create another revenue stream. And keep you on the right side of the environmental debate. You can stock cotton and hemp bags too. These come in a variety of colors and sizes. They are another way to market your goods and services in a positive light. Charging for plastic bags isn\u2019t a bad thing for small businesses. In the end, it gives your enterprise a good reputation where sustainability is concerned. How to Open a Retail Store Secrets of Preventing Employee Retail Theft Revealed POLL: What Does Your Small Business Do for Black Friday? Rob Starr Rob Starr is a Staff Writer for Small Business Trends. Rob is a freelance journalist"}, {"title": "rpj-common-crawl-2022-05", "text": "Study: A nudge instead of a push can help shoppers give up plastic bags New research indicates store owners could encourage shoppers to forgo plastic bags with a charitable nudge. Plastic bags start out as fossil fuels then end up in landfills and oceans. Fish and sea turtles eat thousands of tons of plastic every year. That consumption makes its way up the food chain. According to some estimates, people consume about a credit card\u2019s worth of plastic every week. Ohio State University researchers found that giving customers a 5-cent token toward a charitable donation in exchange for their rejection of a disposable plastic bag reduced plastic bag use by 30%. The researchers used a behavioral economic theory known as nudging as part of their experiment. According to the theory, nudging can guide people in a certain direction but not restrict their options. The initiative must also be low-cost in order to count as a nudge. The researchers performed their study at two convenience stores, offering tokens worth a 5-cent donation for one of three charities in exchange for declining a plastic bag, resulting in a decrease in plastic bag use of 30% to 34%. \u201cThe question is the long-term effect. Will it last? I think for all nudges, there is a decay effect because people get used to it in daily life. But would it go completely to zero? I don\u2019t think so,\u201d said Wuyang Hu, co-author of the study and a professor of agricultural, environmental and development economics at Ohio State University. \u201cMy prediction"}, {"title": "rpj-common-crawl-2022-05", "text": "Study: A nudge instead of a push can help shoppers give up plastic bags New research indicates store owners could encourage shoppers to forgo plastic bags with a charitable nudge. Plastic bags start out as fossil fuels then end up in landfills and oceans. Fish and sea turtles eat thousands of tons of plastic every year. That consumption makes its way up the food chain. According to some estimates, people consume about a credit card\u2019s worth of plastic every week. Ohio State University researchers found that giving customers a 5-cent token toward a charitable donation in exchange for their rejection of a disposable plastic bag reduced plastic bag use by 30%. The researchers used a behavioral economic theory known as nudging as part of their experiment. According to the theory, nudging can guide people in a certain direction but not restrict their options. The initiative must also be low-cost in order to count as a nudge. The researchers performed their study at two convenience stores, offering tokens worth a 5-cent donation for one of three charities in exchange for declining a plastic bag, resulting in a decrease in plastic bag use of 30% to 34%. \u201cThe question is the long-term effect. Will it last? I think for all nudges, there is a decay effect because people get used to it in daily life. But would it go completely to zero? I don\u2019t think so,\u201d said Wuyang Hu, co-author of the study and a professor of agricultural, environmental and development economics at Ohio State University. \u201cMy prediction"}, {"title": "rpj-common-crawl-2019-30", "text": "a bathtub is overflowing, the first thing to do is turn off the valve. The Reusable Bag Bill enables us to reduce marine debris by tackling the problem right at the source.\u201d \u201cPlastic bags, which resemble jellyfish, are the most commonly found synthetic item in sea turtles\u2019 stomachs,\u201d said Dr. Erin Meyer, Director of Conservation Programs and Partnerships, Seattle Aquarium. \u201cOcean plastics are ingested by whales, fish, and even plankton, which can lead to gut obstruction and starvation.\u201d \u201cSingle-use carryout plastic bags produce litter in our communities, impact wildlife in our rivers and marine waters and contaminate our commercial compost\u201d said Heather Trim, Executive Director, Zero Waste Washington. \u201cIt\u2019s also expensive for recycling centers to remove plastic films from their machinery. This bill will save money.\u201d Under the bill, retailers can offer 40% post-consumer content recycled paper bags or thicker 3 mil reusable plastic bags, with a minimum 10 cent pass-through charge that offsets their cost of providing those alternative bags. This charge helps motivate people to remember to bring their own bags. Participants in food assistance programs are exempt from the pass-through charge. \u201cThe ten-cent pass through charge is important to ensure all retail grocery stores are able to transition to paper from plastic,\u201d noted Holly Chisa, Northwest Grocery Association. \u201cPaper bags cost the small stores about 10 cents to provide to their customers. And having a statewide standard helps both our customers and our employees across Washington.\u201d Jan Gee, President and CEO of the Washington Food Industry Association, continued, \u201cThe residents of our state"}, {"title": "rpj-c4", "text": "bottles stacked sideways, etc. and i\u2019ve never understand why they always double-bag. seems like trader joe\u2019s should just use stronger bags. If a store\u2019s paper bags don\u2019t have handles \u2014 TJ\u2019s do, for example; Pavilion\u2019s don\u2019t \u2014 the paper in plastic makes them easier to carry, especially if you\u2019re trying to juggle a child and several bags at once. I recycle the plastic bags, and use the paper bags in my indoor recycling can to make it easier and cleaner to dump them into the rolling bin. I appreciate paper in plastic. Actually, plastic is better for the environment overall. Plastic is reuseable, just take your bags back to the store with you and put them in the bins at the entrance. Plus you can use them in your own small trashbags. The main reason is paper bags are far heavier than plastic, and the bags need to be transported to the store. That takes tons of fossil fuels, while plastic is like ten times lighter to transport. Also recycling the paper for bags takes a huge amount of energy as well. Plastic is definitely better, as long as you bring the bags back to the store. That may be, but baggers are far more wasteful when using plastic unless you walk them through it. They\u2019ll load up paper, as I always request. But if I let them use plastic only, they\u2019ll invariably try to get by with one or two items in each plastic bag, then they\u2019ll double the bag. Makes absolutely no sense. I\u2019d"}, {"title": "rpj-c4", "text": "What Are The Advantages Of Utilizing Eco-Bags? Recollect that Eco-Bags are much more secure than plastic, particularly assuming that you have youngsters around the house. Plastic can suffocate your kids and the best conceivable approach to evade that is to utilize a material eco pack rather. www.weddingbagshop.co.uk - Planning a wedding is exciting, anxiety and confusion. Reading the following article in its entirety will help you plan your wedding easily and affordably. www.buyonlineshoppingbags.com - Look at customer reviews for any new retailer if this is your first time purchasing from them. This will help ensure that you a good idea of the quality of the company\u00e2\u20ac\u2122s products and customer service. Discover Commerical Real Estate Tips You Don\u2019t Want To Miss! www.buyonlineshoppingbags.com - Look over the URL of a store before giving your credit card number. If the \u00e2\u20ac\u0153https\u00e2\u20ac\u009d is there that means your information is being safely encrypted. If you do not see this, you are putting yourself at risk for fraud."}, {"title": "rpj-c4", "text": "ask for electronic receipts if possible. I\u2019ve seen a lot of restaurants move towards this trend and am loving it because holding onto this tiny piece of paper that I will probably lose is not only wasteful, it\u2019s annoying. My favourite store that has gone paperless is Home Depot. They actually read my credit card number and automatically send it to the email that I have set up with them. And that\u2019s another hack if you want emails sent to a specific account, just create another email. It takes about 5 minutes to create another Gmail account and I personally find it super useful to have an email for only promotional emails. While of course my banks and cellphone companies have my main email, its stores like Home Depot where I can give them my promotional email and on the off chance I need to return something, I can log in and get it. Not only is creating another email far less wasteful than having actual mail arrive, but it\u2019s also much easier to clean up than the piles of physical mail on the counter. And if you do ignore it and it piles up, promotional emails are a quick fix to pile up. One of my biggest faults when it comes to wasteful plastic is the use of single plastic bags. You know those produce bags that are so paper thin, they can\u2019t be used for much else and tear at an instant? Yes, those bags. I didn\u2019t realize how much single-use plastic bags I"}, {"title": "rpj-c4", "text": "the potential to make a huge difference. Ouch. That\u2019s a tough first one. Plastic is very useful to us and very harmful to the environment. What can be done to find a compromise my comfort and conscience can live with? Keep the necessity, use thoroughly, discard carefully and avoid as far as possible. We\u2019ll need to keep the plastic bags for packing stuff on treks and monsoon hikes, but use them carefully and reuse them as much as possible, rather than using fresh ones each time. Using a biggish purse/whatever bags men use, avoiding accepting the minor carry bags is no issue. Adding a small cloth bag for emergencies would avoid asking for a fresh one while shopping. We can make sure to carry a shopping bag when going out for shopping for sure. Loads of plastic can be recycled. Rather than throw it into the dustbin, we can sell it to the recycle shops \u2013 kabadiwallahs, bhangarwallas, raddiwallahs, etc. That money can be put to good use, or simply into a box to donate to organizations that work for the environment. Spending some time a day at the end of picnics, hikes or on treks to make the places we visit cleaner. A quick 15 minutes effort by a group can make quick work of the plastic lying around in a natural environment and inspire the people watching them into similar acts. Annual get-togethers for outdoor groups can be held in places that need efforts like this and a huge gang of members can make"}, {"title": "rpj-c4", "text": "their plastic bags \u2013 so what? Even if you buy something from a bookstore, for instance, just put the receipt in the book and refuse the bag. It\\\u2019s not that difficult and one person can make a difference."}, {"title": "rpj-common-crawl-2023-06", "text": "from providing single-use plastic or paper carryout bags to customers at the point of sale. It would permit the sale of recycled paper bags and reusable bags at a minimum price of 10 cents per bag. Plastic bags are a plague that harms wildlife and increases litter. Meanwhile, people in other locations and countries have been happily using reusable bags for years--just ask a European. I recommend a YES vote. A change of course This is purely a personal statement that is likely of interest to very few. Feel free to click away now, if you like. For some time now, I've argued that third parties in the United States served a useful function, and that it was better to vote your conscience than to vote strategically, because the entire point of voting is to vote your beliefs. That is still true, somewhat. Somewhat. This election has changed my personal view and intentions. As the GOP has descended into a morass of obstreperous, dog-whistling white nationalism, and has nominated a would-be dictator and accused sexual abuser with little to no understanding of how our government functions, the political landscape has changed. I now believe it's more important for progressive Americans to unite to work for the common good and in the interest of common human decency than it is to engage in internecine arguments over ideological purity. That is something we can no longer afford. Nothing less than the fundamentals of democracy and human liberty are at stake. Even if Trump is defeated, his followers will"}, {"title": "rpj-c4", "text": "weeks, then losing their whole paycheck at the nearest casino. Then doing it again in an attempt to \u201cwin it back\u201d. I use a big canvas bag as my standard handbag, don't keep much in it (keys, purse, phone) but means I rarely have to take a bag when shopping. We walk to the shop for our weekly shop which makes remembering reusable bags easier as it's obvious we need something to get it home in, to us at least (those thin plastic bags are horrible for walking any distance). Aldi's charges for using a plastic or paper bag, and I love their prices so I'll usually keep a tote bag in my car. Worst case if I forget I'll just grab an empty cartoon from a shelf and use that to carry my things to the car. I really don't know how much they charge for bags, cause I have never actively considered paying for it. Yeah, but I use those plastic bags for trash bags and to clean the litterboxes. I do not throw them out! When I first moved to the bay area, I was pissed I couldn't get a plastic bag and had to pay for paper ones. Then I realized that I never - ever - saw plastic bag litter all over the bloody streets, tucked into crannies of buildings, in rivers, in the ocean. Just for that, I'm more than happy with the restriction on plastic bags. My life hasn't turned worse because of it, but it's nice not to"}, {"title": "rpj-common-crawl-2020-05", "text": "bags or jute bags! This will slow down the use of polythene bags in time.\u201d Many of the shopkeepers however complied with Mr. Muthu\u2019s wishes by agreeing to reduce the number of plastic bags they order at the wholesale shops. In fact, they resolved to use plastic bags only for the heavier object and at a price. Later when the biodegradable plastic bags were available, the more hazardous counterparts were never purchased. Thus the shopkeepers of Nelloor contributed to some of the responsible choices made, by the town at large. At this the women were a little sceptical. The shier women murmured something to Selvi, who had now made herself their spokeswoman. She simply said, \u201cNot possible! How can we remember to take a cloth bag each time we go to a store! It\u2019s so convenient, these plastic bags! Especially when we buy non vegetarian foods like chicken, mutton or fish, the blood doesn\u2019t go dripping!\u201d \u201cUse the plastic bags you already have, then! Yes, save a few for such purposes, and dispose of the rest! After all, plastics really are useful, you know! It is only when you irresponsibly litter the country side, rivers and drains that it becomes hazardous. Anyway, henceforth, say no to plastic bags at the shops and carry a cloth bag! And if you forget, pay for the plastic bags! Is that clear? Yes, you all have to switch over to cloth or jute bags if you are serious about saving your town!\u201d \u201cIt\u2019s the men too, who dirty the town!\u201d"}, {"title": "rpj-c4", "text": "Plastic bags and paper bags are used widely by every person in the globally since decades. Both are quite beneficial for carrying things. However, these days people prefer to use plastic bags for its varied benefits. Versatility of using the bag has made it greatly popular. You can even carry liquid item which can\u2019t be taken in paper bags. After carrying things home, you can use the bags for storage purposes. Bags made of plastic can carry large things without any issues of breaking or tearing down. It is the best cheap material to carry recently bought products as carry bags made of other materials cost more. It can be easily and cheaply customized with company\u2019s logo or your shop address to promote your business. However, using cheap rate plastic bags which isn\u2019t biodegradable isn\u2019t a wise idea. As it spoils the environment as well as contribute greatly to global warming. Littering of plastic bags garbage everywhere plays a great role in land pollution. While the plastic bags are decomposed in recycling factories toxins are released in atmosphere resulting in air pollution. When the plastic bags are dumped in oceans and rivers they become the cause of disturbing the marine ecosystem by killing millions of aquatic lives finally causing water pollution. Many recycling company owners shy away from recycling plastic bags as they clog the machines. While using paper bags you don\u2019t have to worry about causing ecosystem issues as paper bags are far more ecofriendly compared to plastic bags. It is recyclable. Recomposing services don\u2019t"}, {"title": "rpj-c4", "text": "Recently you announced that you were going to stop selling single-use 5p plastic bags to encourage people to buy reusable \u2018bags for life\u2019. Reported in The Guardian, you claim \u201cending sales of single-use bags will significantly reduce the number of bags sold and would therefore help to reduce litter and the number of bags sent to landfill\u201d. This is an admirable sentiment. In seeing this policy rolled out, I like the cheerful \u2018I\u2019m back\u2019 adorned on your new bags, as if the bag itself were announcing its return to a store. But there remains a problem\u2014encouraging your customers to carry their bags with them all the time rather than just buying another one each time they shop. At the Tesco Express near where I work I witness people shopping for a lunch time meal deal who hadn\u2019t necessarily planned to go to your store when they left for work in the morning. Most don\u2019t appear to carry one of your bags with them as a matter of course, and they either juggle what they\u2019ve bought in their hands on leaving the store, or buy another bag. The idea that I\u2019m offering to you struck me when being served at this store. I was asked by one of your staff if I had a Clubcard, to which I replied, \u201cno, but I\u2019ve got a bag.\u201d As the words came out of my mouth the thought occurred to me: why not embed the Clubcard in the bag itself rather than on a separate card? This might go some"}, {"title": "rpj-common-crawl-2023-06", "text": "bags is a major environmental success! This comes as no surprise, as one needs only to look at the experience of other places that have already enacted bag fees. Time and time again, a small fee on plastic bags is enough of an incentive to convince consumers to bring their own bags. This seemingly small step toward promoting more sustainable consumer behavior is now having tremendous and obvious impacts on the amount of plastic we consume in our state. The District of Columbia was one of the first to establish a law mandating a 5-cent fee on all single-use plastic and paper carryout bags in 2010. This resulted in a 60% reduction in single-use bag consumption in the first year. Similarly, a 5-cent fee on plastic checkout bags in Suffolk County, New York (effective Jan. 1, 2018) led to a drop in plastic bag use from 70% to 30% within the first month, while reusable bag use rose from just 5% to 43% among consumers. Some may lament that the Connecticut bag fee is not generating the revenue they thought it would, however, it needs to be said that this was never about making shoppers pay for bags. The goal always has been to reduce plastic pollution. Arguably, the environmental and economic costs avoided through eliminating plastic bags far overshadows the amount of revenue that would be generated through such a policy. The law is significantly reducing the number of disposable plastic bags used in our state, which would otherwise pollute our communities and threaten our"}, {"title": "rpj-common-crawl-2019-30", "text": "to go down the compactor (trash) chute with a whole day's trash. -- plastic bags can be used to pack up liquid waste, household dust, and other products. -- plastic bags can be cinched up pretty tight at the top. -- plastic bags are smaller, more durable, and have more uses. As such, plastic bags are more reusable than paper. Yes, the reusable bags you sell are fine - but they are also bulky, and I would not want to walk around with them all day, just to make a trip to Whole Foods on the way home. I urge you to consider giving Manhattan customers the option, and offer plastic bags at your checkout registers. Paper or plastic should be a choice. (Trader Joe's offers just that.) Lev Zhurbin Tags: bags, green energy, reusable bags, shopping, whole foods market hooked on ack! music: Simplenoise Brown One of the least gratifying aspects of my experience as a father has been an increasingly cumbersome sense of OCD. Never leave home without a phone charger, checking all the faucets, checking the lock twice, and so on. Perhaps it's not fatherhood's fault -- it's just that, if you're a guy shopping for gadgets, you want to be 100% sure that you bought the right thing. Luckily, there are many stores that support you in this quest, by offering 7-day, 15-day or 30-day return policies. Some stores (Bed Bath & Beyond, for instance) let you return items even 5 years later. (I wish they sold more gear!) Some stores charge"}, {"title": "rpj-common-crawl-2022-05", "text": "oven, sous vide machine, or Instant Pot. You can use the bags to pop corn in the microwave, eliminating the wasteful single-use microwavable popcorn bags. One recipe even shows you how to cook Thanksgiving turkey in a Stasher bag. Stasher bags now come in many colors: Some have cute cartoon designs on them to delight children who bring them to school as sandwich bags, and one collection has a shimmery exterior. \u201cThere\u2019s this idea that eco-friendly products are somehow worse than less sustainable products,\u201d says Nouri. \u201cBut we\u2019re proving that this isn\u2019t true. If you rethink a product from the ground up, you can find ways to make the product even more functional, effective, and even more fun to use.\u201d Your behaviors are a signal These startups are making it easier to reduce the amount of plastic in our lives. This accomplishes several goals. It takes nonrenewable fossil fuels to manufacture plastics, all of which contributes to our carbon footprint. And reducing our personal plastic consumption means less plastic is ending up in landfills and oceans, where it will break into smaller particles, but never decompose. But there is also some tension in their business models. Growing as a business means selling more products, which inherently means creating more waste, whether that comes in the form of packaging or shipping goods throughout the supply chain. These businesses are currently still very small, especially compared to the massive conglomerates they are competing against. As they grow, they will also need to be careful about not falling into"}, {"title": "rpj-common-crawl-2020-05", "text": "is rolling out a 5 cent fee on all disposable bags at a variety of retail establishments, from supermarkets to department stores beginning Jan. 1. The new law, which was officially passed by the Legislature in September 2016, applies only to the single-use plastic or paper bags provided by cashiers at the end of a sale and used to carry goods from the store. There won\u2019t be a fee, however, on bags found in produce sections for fruits and vegetables, frozen foods or on bags by pharmacies to carry prescription drugs, according to the law. Cashiers are required to add the total fees to a customer\u2019s receipt based on how many bags are used. Residents can avoid the fee by either buying a reusable bag \u2014 ones made of cloth or canvas, which are available in many retail stores \u2014 or shopping with a bag from home. \u201cHopefully people will say \u2018I\u2019m not paying 5 cents\u2019 and go with the other options,\u201d said Legislator William \u201cDoc\u201d Spencer (D-Centerport), who wrote the legislation to reduce the influx of plastic bag waste that gets trapped in trees, blocks storm drains and causes significant damage to water supplies and wildlife. \u201cWe\u2019re hoping to change behaviors. While we won\u2019t change everyone\u2019s, this will change a lot of people\u2019s and that can make a big difference. I think once people start to not use the plastic bags, they\u2019re not going to really miss them.\u201d Spencer\u2019s bill began in March 2016 as a ban on all single-use plastic bags, piggybacking off an"}, {"title": "rpj-common-crawl-2020-05", "text": "leaning towards offering paper bags as an alternative. But from an environmental perspective, there is evidence plastic grocery bags take 40% less energy to make. One study says they actually generate 80% less solid waste. Fee Strategies for Small Businesses Still there is a growing trend toward charging fees for plastic bags. Charging a bag fee at the check out in retail and grocery stores is a common method. There are some strategies you can use to implement this kind of program. Make the case the extra plastic bag fee helps the environment. Some of your customers will pay the extra charge when you frame it up that way. Be clear and upfront on your webpages and social media. You can offer reusable bags. For example, paper bags are biodegradable. Find a supplier and make a bulk deal for a number of these. It can create another revenue stream. And keep you on the right side of the environmental debate. You can stock cotton and hemp bags too. These come in a variety of colors and sizes. They are another way to market your goods and services in a positive light. Charging for plastic bags isn\u2019t a bad thing for small businesses. In the end, it gives your enterprise a good reputation where sustainability is concerned. How to Open a Retail Store Secrets of Preventing Employee Retail Theft Revealed POLL: What Does Your Small Business Do for Black Friday? Rob Starr Rob Starr is a Staff Writer for Small Business Trends. Rob is a freelance journalist"}, {"title": "rpj-book", "text": "or even just a rucksack. Over 500 billion plastic bags are used every year globally \u2013 that's at least a million a minute \u2013 and yet replacing your plastic bags with a reusable alternative could be the easiest thing you do to get rid of plastic. If you're doing your shopping online, then make sure to write in the comments box of your order that you do not want the items delivered in plastic bags. It's possible the supermarket will ignore you, but the more people writing this, the more likely it is they'll start including it as an option. > Replacing your plastic bags with a reusable alternative could be the easiest thing you do to get rid of plastic. ### Where to Shop #### Make It Work Wherever You Shop One option could be to carry on at your favourite or most convenient shop \u2013 to avoid their most over-packaged goods and to put pressure on them as a regular customer to do more to reduce their plastic footprint. For example, you could ask to speak to the manager or the customer services representative in the shop (or on the phone), or if you're on social media then take a photo of the packaging you're most frustrated by and tag the shop in your picture. ### Using Social Media One easy way to vent your frustration whilst making companies think twice about using so much plastic is to take pictures of the worst offenders and, making sure to tag the social media account of"}, {"title": "rpj-c4", "text": "I Keep Forgettin\u2019 . . . | At The Green House. . . Sometimes real life writes the strips . . . in those situations, it isn\u2019t always funny. Fortunately, I don\u2019t mind bringing home a plastic bag every once in a while. I find uses for them around the house, or I fill a plastic bag with plastic bags (anybody else have a special place for that plastic bag full of plastic bags?), and bring them back to the store for recycling every couple of months or so. I also find uses for paper bags at home, so those work too. . . but why can\u2019t I just remember to grab the cloth shopping bags whenever I go into a store? It\u2019s not just the grocery store. . . I bought a new pair of jeans last night and got to the checkout line, and thought, \u201cWhy didn\u2019t you bring in a shopping bag?\u201d I carried the jeans au-naturel. It\u2019s probably just my scatter-brained nature. I\u2019ve tried putting them in the front seat so I won\u2019t forget them. . . I\u2019ve tried putting the shopping list in a bag . . . that one works if I can remember to do it- at least I don\u2019t end up in the shopping line without the bags. . . and now some markets have signs on the door or in the parking lot reminding us to grab our reusable bags. . . but you have to be conscious to notice them. I\u2019m sure I\u2019ll get it someday,"}, {"title": "rpj-c4", "text": "I Keep Forgettin\u2019 . . . | At The Green House. . . Sometimes real life writes the strips . . . in those situations, it isn\u2019t always funny. Fortunately, I don\u2019t mind bringing home a plastic bag every once in a while. I find uses for them around the house, or I fill a plastic bag with plastic bags (anybody else have a special place for that plastic bag full of plastic bags?), and bring them back to the store for recycling every couple of months or so. I also find uses for paper bags at home, so those work too. . . but why can\u2019t I just remember to grab the cloth shopping bags whenever I go into a store? It\u2019s not just the grocery store. . . I bought a new pair of jeans last night and got to the checkout line, and thought, \u201cWhy didn\u2019t you bring in a shopping bag?\u201d I carried the jeans au-naturel. It\u2019s probably just my scatter-brained nature. I\u2019ve tried putting them in the front seat so I won\u2019t forget them. . . I\u2019ve tried putting the shopping list in a bag . . . that one works if I can remember to do it- at least I don\u2019t end up in the shopping line without the bags. . . and now some markets have signs on the door or in the parking lot reminding us to grab our reusable bags. . . but you have to be conscious to notice them. I\u2019m sure I\u2019ll get it someday,"}, {"title": "rpj-c4", "text": "Plastic shopping bags are a huge threat to our environment. Their impact is widespread- from the energy it takes to produce the plastic to the pollution they cause on land and sea. Yet they\u2019re still one of the most used single-use convenience plastics. If these are items you\u2019d like to eliminate (or cut back on), here are 22 Ways to Avoid Plastic Shopping Bags. Own a lot of reusable bags: A lot of bags means you\u2019ll be able to stash them in a lot of places. Then they\u2019ll be a lot more accessible, and accessibility generally makes items easier to use. These are some of my favorite heavy-duty reusable bags for grocery shopping. Always keep 2 bags in your purse: When I only have 1 bag in my purse, I inevitably use it, take it into the house with the items in it and don\u2019t put it back in my purse right away. Then I forget I didn\u2019t put it back and I get stuck bagless. Use small foldable bags in your purse: Some reusable bags are small enough to fold up and stash in your purse or even your pocket. Check out this 5 pack of nylon, reusable bags on Amazon. Take more bags into the store than is necessary: We\u2019ve all been there: we\u2019re only running into the store for \u201ca couple\u201d of things so only 1 or 2 bags are on hand. We end up with way more items and are short on bags. Take a bag in the store even when getting"}, {"title": "rpj-c4", "text": "packaged, processed foods filled with questionable ingredients), I have learned new skills (home made pasta anyone?), and over all I\u2019m exposed to fewer toxins found in plastic packaging, such as BPA. l also find living this way incredibly rewarding which keeps me going. I recently challenged a fellow YouTuber to make a few simple changes in his life for one week (switching to a reusable coffee cup and water bottle, using cloth bags, cooking more from scratch) and he surprisingly managed to reduce the contents of his bin bag by half! And he was only just scratching the surface. It\u2019s about realising that by thinking we can\u2019t, then no one will. By thinking we can, everyone will. Replacing all cleaning products with white vinegar, bicarbonate of soda and vodka etc. Shopping at local, independent organic grocery shops where the produce is sold without packaging and the butcher\u2019s counter is happy for me to bring my own tins. Supermarkets can be a bit tricky to shop without packaging at the moment. The 5p bag charge was obviously extremely successful in reducing single use plastic bags, what other steps do you think governments, alongside large corporations, can take to have a similar impact? It certainly has had a positive impact and who could have thought that 5p would be enough to encourage people to bring their reusable bag?! I would love the 5p charge to be applied to all businesses, as it\u2019s currently only the larger ones who are required to charge for plastic bags, meaning small businesses"}, {"title": "rpj-common-crawl-2019-30", "text": "that means people can drop off bottles and any \u2018reverse\u2019 machine. Supporters of the scheme reference the success of the 5p plastic bag charge as a real-world example of how well such a system can work. According to stats, this scheme has cut single use plastic bag usage by 83% since 2015. Bringing a reusable bag to the supermarket however strikes me as a different kettle of fish. Unlike the plastic bag scheme, to buy their desired drink single use plastic bottle free retailers would need to start providing consumers with coca cola, smoothies, whatever your tipple of choice is, at self-service, in-store filling stations. I\u2019m not entirely against that as an idea, just sounds unlikely to happen soon! What can we do as consumers? Not that I want to over simplify this, but one easy way we can make a difference as a consumer is to avoid products packaged in plastic. I know it\u2019s not always that easy, indeed that\u2019s exactly why I started Acala; to make buying plastic free toiletries and cosmetics simpler for people. To a degree though, it is as simple as seeking out plastic free alternatives. Deposit returns have produced meaningful results in many countries but I do think it is important to remember that plastic can only be recycled so many times. The emphasis should be on funding alternative, more-easily recycled or biodegradable containers. For example, wherever possible, at Acala we are using biodegradable and compostable card and paper packaging to just take plastic right out of the equation! So,"}, {"title": "rpj-common-crawl-2020-05", "text": "\u201cPaper or plastic?\u201d has become a resolute \u201cPaper!\u201d Which makes it all the more annoying that our supermarket seems to have selected plastic. Oh, they still offer a choice. They still have the stacks of brown paper bags ready to be popped open and filled. But when you ask for paper, you\u2019re likely to get a response somewhere between benign ignoring and outright attitude. Yesterday, we asked for paper. We bagged as many groceries as we could in paper. The checker, as if to race us, started filling plastic bags, whether we wanted them or not. Finally, in the spirit of compromise, she put a paper bag inside a plastic bag and filled that. Two environmental disasters for the price of one! I don\u2019t understand how she could hear our choice and see our choice and yet insist on using plastic. Maybe those soft little plastic bags, already pulled open on their little wire rack, are easier on the fingernails than those big old clumsy paper numbers. But at least she was quiet about it. Another time, we had a checker actually argue with us. We asked for paper, and she pointed out that it was raining, and the paper bag would get wet, and we really should use plastic. We said no, paper would be fine, and she got huffy. She was just looking out for our best interests, after all. And since she knew what was good for us, she went ahead and bagged our groceries in plastic, though we begged her not to."}, {"title": "rpj-common-crawl-2020-05", "text": "\u201cPaper or plastic?\u201d has become a resolute \u201cPaper!\u201d Which makes it all the more annoying that our supermarket seems to have selected plastic. Oh, they still offer a choice. They still have the stacks of brown paper bags ready to be popped open and filled. But when you ask for paper, you\u2019re likely to get a response somewhere between benign ignoring and outright attitude. Yesterday, we asked for paper. We bagged as many groceries as we could in paper. The checker, as if to race us, started filling plastic bags, whether we wanted them or not. Finally, in the spirit of compromise, she put a paper bag inside a plastic bag and filled that. Two environmental disasters for the price of one! I don\u2019t understand how she could hear our choice and see our choice and yet insist on using plastic. Maybe those soft little plastic bags, already pulled open on their little wire rack, are easier on the fingernails than those big old clumsy paper numbers. But at least she was quiet about it. Another time, we had a checker actually argue with us. We asked for paper, and she pointed out that it was raining, and the paper bag would get wet, and we really should use plastic. We said no, paper would be fine, and she got huffy. She was just looking out for our best interests, after all. And since she knew what was good for us, she went ahead and bagged our groceries in plastic, though we begged her not to."}, {"title": "rpj-common-crawl-2021-04", "text": "still be affecting the planet today?! This is why so many people and brands are making the move towards reusable bags. There are many stores such as Target, Whole Foods, Trader Joe\u2019s and more that offer a small discount or raffle entry for a weekly prize when you bring your own bag to shop with. There are even legal measures being taken in cities like NYC starting early 2017 that will charge a fee per plastic bag provided by a store to reduce the amount of non-biodegradable waste that is produced by the city. Long story short, quitting plastic bags is kind of a big deal. The easiest way to incorporate reusable bags into everyday life is by making the transition one that\u2019s convenient for your life. Start the easy no-cost way by tucking a plastic bag that you get on your next or last shopping trip into your bag that you carry with you on a daily basis. If you want to take the next step, purchase a foldable durable cloth bag that can easily be taken with you. Make a conscious effort to use it on your next grocery trip. Ask your cashier if there are any incentives offered for using your own bags. Heck, try to challenge yourself to stick to a limit of items that can only fit in that bag. This will not only bring you one step further on your journey to sustainability, but it will also make you more mindful of your spending! 2. Seek out solar-powered everyday electronics."}, {"title": "rpj-common-crawl-2023-06", "text": "latest research is saying and what we feel comfortable sharing with our local businesses.\u201d A group of more than 125 epidemiologists, virologists and other health experts from 18 countries recently signed a statement saying that reusables are safe as long as standard health codes and sanitation guidelines are being followed, Vegas explained. \u201cThe CDC has also come out with a statement saying that the transmission of the virus from surface contact has not yet been documented. Right now, it\u2019s only been transmitted from person to person through respiratory droplets that are inhaled, not from surfaces like cutlery, glasses, plates, those kinds of things,\u201d said Vegas. Bonnie Monteleone Plastic Ocean Project Executive Director Bonnie Monteleone reiterated in an interview with Coastal Review Online how important it is to support local Ocean Friendly Establishments to help eliminate single-use plastics. She said she thought the argument for not using reusable bags is contradictory. \u201cThe items are picked up by the customer and then handled by the cashier and placed in a bag. At this point, it doesn\u2019t matter what type of bag. We encourage people to bring their own bag and not let the cashier touch it, bag their own groceries to reduce contact. Otherwise, the cashier is touching both the items and the plastic bag, which they hand the customer,\u201d Monteleone said. The Plastic Oceans Project placed a radio advertisement encouraging people to support their Ocean Friendly Establishments. \u201cAnd when they place their order, we asked that they mention if they do not need single-use, to-go ware or"}, {"title": "rpj-c4", "text": "and plastic, you can employ reusable bags as part of your merchandise displays in your store, highlighting goods and making your shop cheerful and attractive to customers. Serious Ugliness \u2013 It\u2019s just plain ugly to see plastic and paper bags tumbling through the streets. Honestly, they\u2019re even ugly before you take them off the rack at the store, so why not replace them with something much prettier? Suffocation \u2013 Plastic bags are dangerous to children, and can result in suffocation. Quality \u2013 Reusable bags are stronger and longer-lasting than paper or plastic, and showcase the quality of your shop and product. Overflowing Landfills \u2013 In 2013, Americans generated more than 254 million tons of trash and recycling. By offering reusable bags to customers instead, you can help make a serious dent in that problem. Carbon Footprint \u2013 Making single-use bags require energy, and when we throw them away, we have to use the same amount of energy all over again to make more. Air Pollution \u2013 Making any type of bag produces pollution that floods our atmosphere, traps greenhouse gases and causes global warming. Make sure that the bags that do get created stick around for a long time! Deforestation \u2013 Logging accounts for 14 percent of deforestation, while fuel requirements account for an additional 5 percent. Creating, using and selling reusable bags in your shop will help lower both numbers. If that\u2019s not enough reasons to go green and take advantage of the benefits of reusable bags, we don\u2019t know what is! Get your reusable"}, {"title": "rpj-c4", "text": "and plastic, you can employ reusable bags as part of your merchandise displays in your store, highlighting goods and making your shop cheerful and attractive to customers. Serious Ugliness \u2013 It\u2019s just plain ugly to see plastic and paper bags tumbling through the streets. Honestly, they\u2019re even ugly before you take them off the rack at the store, so why not replace them with something much prettier? Suffocation \u2013 Plastic bags are dangerous to children, and can result in suffocation. Quality \u2013 Reusable bags are stronger and longer-lasting than paper or plastic, and showcase the quality of your shop and product. Overflowing Landfills \u2013 In 2013, Americans generated more than 254 million tons of trash and recycling. By offering reusable bags to customers instead, you can help make a serious dent in that problem. Carbon Footprint \u2013 Making single-use bags require energy, and when we throw them away, we have to use the same amount of energy all over again to make more. Air Pollution \u2013 Making any type of bag produces pollution that floods our atmosphere, traps greenhouse gases and causes global warming. Make sure that the bags that do get created stick around for a long time! Deforestation \u2013 Logging accounts for 14 percent of deforestation, while fuel requirements account for an additional 5 percent. Creating, using and selling reusable bags in your shop will help lower both numbers. If that\u2019s not enough reasons to go green and take advantage of the benefits of reusable bags, we don\u2019t know what is! Get your reusable"}, {"title": "rpj-common-crawl-2019-30", "text": "the 15-cent fee going to the retailer will help alleviate business owners\u2019 concerns about the impact of the bill on their business. \u201cWe\u2019re not here to say this is a money grab for the city, this is more about doing the right thing, being environmentally friendly,\u201d he added. \u201cThere\u2019s over 450 municipalities and four states (three states that have banned it and one that\u2019s close to banning it). We\u2019ve learned from all those experiences,\u201d said Logan Welde, head of legislation at the Clean Air Council, which provided input on the legislation. Welde emphasized that while one person might find it convenient to use a plastic bag to purchase three items at a store that alternatively could be carried, put in a pocket, or placed in a reusable bag, the impact such actions have in aggregate are harming the environment. Some critics, like Brian Hickey of the Philly Voice, have expressed concern about single-use plastic bags\u2019 occasional secondary use \u2014 like picking up dog poop. Addressing those concerns, Welde indicated that the carbon footprint and other environmental impacts of single-use plastic bags makes it worth getting rid of them \u2014 especially if, with a little creativity, everyday citizens are able to find substitutes. \u201cOpen your freezer or your refrigerator,\u201d he said. \u201cA lot of \u2026 our bread comes in bags. Your peas are in a plastic bag \u2026 There will always be items in our life that we can use to pick up dog poop.\u201d Squilla\u2019s legislation has lofty aspirations. \u201cThe goal of this bill is to"}, {"title": "rpj-common-crawl-2021-04", "text": "by 70-80%\u201d, he said. \u201cIt is vital that our attitudes towards using and throwing away valuable resources improve if we are to reduce our impact on the environment and wildlife\u201d. The UK government proposed a similar measure last year, but the plan was labelled a \u2018mess\u2019 by a government committee and green groups because it would exclude small retailers, paper and biodegradable bags. Meanwhile, figures released in July suggested plastic bag use in England had increased by more than 3% since 2012. Photo: Dave Bleasdale via Flickr 5p charge on plastic bag is \u2018a mess\u2019, says committee Shoppers to be charged 5p for plastic bags Microplastic intoxicates marine wildlife, new study finds Study: plastic pollution not limited to oceans Plastic bag use in England rises for fourth year running Related Topics:5p chargeplasticplastic bagsscotland How Plastic Bags Are Destroying Landscapes, Wildlife, and Human How Bottled Water Harms The Environment (And How You Can Help) Is There Ever A Time Where Plastic Is Environmentally Friendly? What is a home report? And where do you need one? The Environmental Impact of One Trillion Plastic Bags Study Reveals Deposit System Cut Plastic Bag Use By 80% In Sweden"}, {"title": "rpj-common-crawl-2021-04", "text": "by 70-80%\u201d, he said. \u201cIt is vital that our attitudes towards using and throwing away valuable resources improve if we are to reduce our impact on the environment and wildlife\u201d. The UK government proposed a similar measure last year, but the plan was labelled a \u2018mess\u2019 by a government committee and green groups because it would exclude small retailers, paper and biodegradable bags. Meanwhile, figures released in July suggested plastic bag use in England had increased by more than 3% since 2012. Photo: Dave Bleasdale via Flickr 5p charge on plastic bag is \u2018a mess\u2019, says committee Shoppers to be charged 5p for plastic bags Microplastic intoxicates marine wildlife, new study finds Study: plastic pollution not limited to oceans Plastic bag use in England rises for fourth year running Related Topics:5p chargeplasticplastic bagsscotland How Plastic Bags Are Destroying Landscapes, Wildlife, and Human How Bottled Water Harms The Environment (And How You Can Help) Is There Ever A Time Where Plastic Is Environmentally Friendly? What is a home report? And where do you need one? The Environmental Impact of One Trillion Plastic Bags Study Reveals Deposit System Cut Plastic Bag Use By 80% In Sweden"}, {"title": "rpj-common-crawl-2022-05", "text": "top of those issues, there is the weight of consumer expectations. A flimsy bag might be fine if you\u2019re buying some produce at Kroger, but what if you\u2019ve spent $500 on a dress from a department store, or you\u2019re carrying hot pho home from a restaurant? For some of these contexts, a single-use plastic bag was never the right solution to begin with\u2014which is why the winners include all sorts of alternatives that take different approaches to the same problem. SmartC [Image: courtesy Center for the Circular Economy] So what better ideas did the contest dig up? One interesting approach is called SmartC. It\u2019s not just a new reusable bag (made from ethically sourced fibers), but an accompanying digital platform that transforms your reusable bag into a more precious object with a meaningful history. Any time you check out at a store, the clerk scans your bag with an onboard radio-frequency identification chip or QR Code. These scans go into an online dashboard that graphs your own dedicated reuse of the bag over time, as you score more points. The effect looks a lot like the Apple Watch\u2019s daily activity tracker, but hopefully played out over the course of a bag you\u2019d cherish and reuse for years. Is the plan a little overwrought? For sure. We all have a lot to worry about in our lives, and the fate of a $1 bag can demand only so much of our attention! But in a world where we need to treat almost everything we own as less"}, {"title": "rpj-common-crawl-2022-05", "text": "By Beth Smits Creating a new habit worthwhile Changing habits can be difficult, especially when it's a choice and not something that is forced upon you. When I first lived in Belgium more than 30 years ago, the grocery store provided single-use plastic bags, and I used them. But a combination of factors, including extensive government campaigns about the environmental impact of these bags that made me feel guilty and bag taxes that made me not want to pay for them, changed my habits. I assembled a favorite collection of reusable bags that were always kept in the car, ready for my next grocery run. Here in and around Hinsdale, the bags are thrust upon me at checkout, whether it's at a big chain supermarket or a smaller grocery. \"Paper or plastic\" is often the only choice I'll get. I'm never asked if I actually need the bag and have seen people handed a single piece of fruit in one. I bring my own bags because it's a habit and because I think it's important. Whether they're paper or plastic, disposable bags do cause environmental damage. This takes different forms, from the pollution caused by making paper bags to the remains of plastic bags that can linger in landfills or float in our waterways for literally 1,000 years. In 2017, the city of Chicago put a 7 percent tax on all paper and plastic checkout bags. This certainly changed habits; for example use of single-use bags fell from 82 percent of Chicagoans each shopping trip to"}, {"title": "rpj-c4", "text": "This small produce bag makes replacing plastic bags so easy! Perfect for taking to your grocers or local market. I am so happy to be stocking these small cotton bags because they are so handy and can really help you reduce your plastic waste! I always buy my friends and family some to help them see how easy it is to switch to a better eco-friendly alternative to plastic. Made from organic cotton which is sustainable and eco-friendly, you can wash and reuse them! And as they are made from natural cotton, these bags will biodegrade safely. We all know plastic bags are one of the most commonly used plastics out there. We also all know that they are completely unnecessary, yet people still use them even though there are so many alternatives. It absolutely blows my mind that there are people still using new plastic bags to carry their shopping, I just don\u2019t understand it. This is so easy and simple to change and can seriously reduce plastic waste just by reusing bags, especially bags that are made from natural materials such as cotton and hemp. If we could completely stop using plastic carry bags could you imagine the difference it would make to plastic pollution, it would be immense. The small cotton bag has a card belly tag that is recyclable and the bag itself is biodegradable so once the bag is on it\u2019s last legs you can pop it in your compost. Wash at 30 and make sure to air dry. Due to"}, {"title": "rpj-c4", "text": "SHOPPING MADE SIMPLE | Swiish - Fashion, Beauty, & Lifestyle. Grocery shopping for the week can be a nightmare, particularly if you\u2019re doing it solo. The idea of lugging 60 plastic bags between the grocery store and your car doesn\u2019t exactly have anyone racing out the door! Not to mention the environmental impact. That\u2019s where trolley bags come in! These open and upright bags can be spread out in your trolley to make organizing your groceries a total breeze. No more trying to hold bags open with one hand! Don't ask me how I came across these but I am so 100% glad I did. They make supermarket trips a whole lot more enjoyable. They\u2019re super practical and cost effective. I was so impressed with these handy helpers that I\u2019ve even started giving them to my family and friends as a gift. They\u2019re just too good not to share! Get yours HERE!"}, {"title": "rpj-c4", "text": "Plus, these bags are heftier, making them something your customers can easily reuse. Instead of going with standard white plastic bags, or even kraft paper bags, why not go with a frosted plastic bag to help your purchases stand out? Your customers get a unique bag that they can reuse when they get home, and you get a way to visually stand out from the crowd. Then, whenever the customer sees that bag again, they know where they got it from, and they think about returning for another purchase. The unique bag can do a lot when it comes to keeping your customers thinking about visiting you regularly. Instead of just printing on the outside of the bag, you can also color code wraps around your products inside the bag. Tissue paper often sticks out of the top of paper bags, adding to the color branding reach you can get. There are dozens of colors to choose from, allowing you to find the perfect hue to match your company\u2019s brand. This helps you make each bit of packaging that you send your customers out the door with match, giving an even better impression during each shopping experience. Retail packaging is very important. Increase how many people see your brand this holiday season by investing early in the right retail packaging so it\u2019s ready when you need it. Then, when the holiday rush starts to kick in, you\u2019ll be ready for the influx of customers and your newly found brand exposure. Next post: Which Slatwall Shelving is"}, {"title": "bm25", "text": "Q: Nylon bag vs plastic bag I was buying some carry out and I asked for a nylon bag. The cashier, who is not a native speaker, gave me a look and offered a 'plastic bag', which is what I wanted to begin with. I don't know why I used \"nylon\" instead of \"plastic\"; I'm not a native speaker but I'm fluent in English and that got me thinking: Is there any difference between \"nylon bag\" and \"plastic bag\"? Can they be used interchangeably? A: Yes, Nylon is a plastic, but the lightweight plastic bags they give you at stores are not nylon. Nylon works well as a fiber, so a 'nylon' bag could refer to a woven bag, such as are re-used instead of re-cycled. {And I don't think it was construed as requesting a bag for nylon stockings.} A: No, they can't be used interchangeably (in the US) since nylon bags and plastic store-purchase-type bags are different materials entirely. Nylon bag (typically called a laundry bag) Plastic shopping bag Edit: and to Aml's point, nylon is a synthetic woven fiber and plastic is not."}, {"title": "bm25", "text": "75 results for \"plastic bags\" View ALL | WATCH | SHOP | READ How to Reduce Your Oil Footprint A few simple ways to effect change. In the wake of last week's catastrophic oil spill, still growing in the Gulf of Mexico, many people are feeling helpless as to what they can do in their personal lives to stop supporting offshore oil drilling and the use of oil in general. Fortunately, our everyday lifestyle and purchasing decisions matter. We as individuals have the power to help reduce our country's reliance on oil,......read more California to Ban Plastic Bags Move follows plastic bag prohibitions by several Californian cities. In a move Governor Arnold Schwarzenegger called a \"great victory for the environment,\" California will become the first US state to ban plastic bags. On Wednesday, state Assembly approved legislation prohibiting pharmacies and grocery, liquor and convenience stores from giving out plastic bags. Under the measure, shoppers who don't bring their own reusable bags to the store will......read more Holstee Wallet This vegan wallet is made primarily of plastic bags and newspapers, collected off the streets of Delhi in India. $25.00 When Holstee went looking for a new wallet, they couldn't find what they were looking for so they designed their own... The slim wallet design holds the essentials - cash, credit cards and even has a sliding window for your ID and Metro card. \"Working with a family-run non-profit based in India that works to collect and recycle litter off the streets of Delhi we were able to"}, {"title": "bm25", "text": "the suspension was not released. Two Downtown Association volunteers are compiling the history of every Winslow Way storefront. Find out how to help here. Coming Up: Check the Kitsap Sun today for photos from the Thanksgiving Turkey Trot. Follow us on Facebook and Twitter for updates throughout the week. Contact Bainbridge reporter Tad Sooter at tad.sooter@gmail.com. November 23, 2012 Bainbridge Islander, Business, City Hall, Downtown, Ferries, Friday Preview, Sports, Weatherfriday preview Quick facts on the Bainbridge bag ban The island\u2019s ban on plastic shopping bags begins Thursday. We\u2019ve posted some of the basics below. Let us know what you think of the bag ban by taking our poll below or leaving a comment. Why a bag ban? The City Council unanimously approved the bag ban this spring as a way of reducing litter and unnecessary waste, while promoting reusable bags. Bainbridge is the fifth Washington city to ban plastic bags and the first in Kitsap County. Seattle banned plastic shopping bags in July. What are the rules? Starting Thursday, retailers are no longer allowed to provide those thin, single-use plastic bags at checkout. Paper bags will still be available, but the ordinance requires retailers to charge 5 cents for larger paper bags (this doesn\u2019t apply to qualifying low income shoppers). There are a few exceptions to the ban. Plastic bags are allowed for restaurant take-out food, produce, greeting cards, small hardware items, newspapers, dry cleaning and waste. What stores does this apply to? Short answer: All of them. This ban applies to all retailers across the"}, {"title": "bm25", "text": "Save the Plastic Bag Coalition v. City of Manhattan Beach counties that can be used to help in understanding the impacts associated with actions targeted at cutting the use of single-use bags. The MEA reports several findings specific to plastic bags, including that \"nearly 20 billion single-use high-density polyethylene (HDPE) plastic grocery bags are used annually in California, and most end up in landfills or as litter. In fact, of the four types of bags considered, plastic bags had the greatest impact on litter.\" The MEA reports that single-use paper bags are recycled more than plastic bags, but considering lifecycles, paper bags contribute to larger greenhouse gas emission, water consumption"}, {"title": "bm25", "text": "Lawmakers to consider plastic bag ban, paper bag fee Adam Crepeau It has not been difficult to find bills this legislative session that would be harmful to businesses or consumers in Maine. One such bill is LD 1532, sponsored by Rep. Holly Stover, which seeks to ban plastic bags in Maine and impose a fee on the use of paper bags. The measure is scheduled for a public hearing before the Environment and Natural Resources Committee on Wednesday, April 24 at 10 am. While the goals behind this bill are certainly laudable, LD 1532 would hurt consumers and do little to help the environment, and the language of the bill is so flawed it may not achieve its intended result. LD 1532 prohibits retailers from using plastic bags, imposes a five cent fee per recycled paper bag used, exempts people that use an electronic benefits transfer (EBT) card from paying the fee and includes numerous carve-outs that exempt businesses from the plastic bag ban, undercutting the purpose of the bill. Banning single-use plastic bags does not have the effect one would expect. While a ban may have an effect on litter and plastic pollution, there is little that it would do for the environment. The Danish Environmental Protection Agency found that a paper bag would need to be reused 43 times for its environmental impact to be less or equal to one use of a disposable plastic bag. Will consumers reuse a paper bag provided by a retailer this many times to recover the cost to"}, {"title": "bm25", "text": "wet, I'll have to ask for a polythene bag over a thin paper bag that the vendor is using for everything else. I would not prefer to put an adjective to this (such as shopping bag, grocery bag) which would simply restrict its usage! Use a polythene bag to carry a wet shoe, a fruit, a bunch of newspapers or anything that you don't 'shop' as well! [I'm tagging this answer as InE]. A: In my experience, which is all I can answer from, in American English, 99% of the time the white plastic object is called a bag. Specifically, it is a plastic bag. We also have paper bags. And canvas bags. When you start talking about \"bags\" made out of thicker material, traditionally woven from cotton or something, you can then use the word sack. You can use sack to refer to a paper bag, but it is rare to refer to a plastic bag as a plastic sack, in the USA, using American English, at least in the dialect I speak. So, in short, yes, bag is the most common term to call the white plastic object. A: I have a funny experience with this. I grew up in the Eastern U.S. What you ask about were called bags, pure and simple. Then I moved about 1500 miles (2400 km) away, to the American midwest, near the geographic center of U.S. I still remember my puzzled look when the cashier asked me, \"Would you like a sack with that?\" Where I had grown"}], "hoverinfo": "text"}, {"x": [-0.11298958957195282, -0.17314289510250092, -0.2498357743024826, -0.1957981437444687, -0.14722506701946259, -0.07261081784963608, -0.18823513388633728, -0.17314289510250092, -0.0831574946641922, -0.141755610704422, -0.06982197612524033, -0.20337043702602386, -0.09210344403982162, -0.1806000918149948, -0.22784705460071564, -0.2578231990337372, -0.24239838123321533, -0.2045127898454666, -0.08762354403734207, -0.22144675254821777, -0.17002755403518677], "y": [0.039970073848962784, -0.08690390735864639, -0.001243117731064558, -0.052240967750549316, -0.03432774916291237, -0.03893991932272911, -0.04185112193226814, -0.08690390735864639, -0.011791016906499863, 6.707686407025903e-05, 0.013314027339220047, -0.01120817381888628, -0.016863636672496796, -0.12607388198375702, -0.00945703312754631, -0.0734577402472496, -0.06456458568572998, -0.013044822961091995, -0.04936891794204712, -0.06251227855682373, -0.020827578380703926], "mode": "markers", "name": "Cluster 3", "marker": {"size": 8, "color": "rgb(251,128,114)"}, "text": ["Document 19", "Document 42", "Document 159", "Document 175", "Document 383", "Document 504", "Document 583", "Document 660", "Document 839", "Document 925", "Document 946", "Document 1052", "Document 1085", "Document 1135", "Document 1192", "Document 1209", "Document 1256", "Document 1318", "Document 1379", "Document 1385", "Document 1414"], "customdata": [{"title": "rpj-c4", "text": "you are adding to that PVC Mount Everest and causing irreversible damage to the environment. Talking about making an impact. I don\u2019t know about you but I feel very guilty over the plastic cards I\u2019ve discarded over the years. Fortunately, there is something you can do to prevent further damage to our environment. The next time you get an inciting offer from a credit company, think twice before signing up. Save you credit and save your environment by passing on it. As for store cards, you can live without them. You can also opt out of Blockbuster and sign up on Netflix. No membership cards are required there. Some gyms can enter your membership manually instead of swiping a card. If you are creative, you can find even more ways around plastic cards. Also, you may want to discontinue buying and giving gift cards as presents to family, friends and coworkers. Gift cards are short lived and usually discarded immediately upon depletion. Instead, buy an actual gift or just give them cash. If you have old plastic card and are looking for away to dispose them, please DON\u2019T CUT AND THROW AWAY in the trash bin like I did. Dumping them with the rest of your recyclables won\u2019t help, as you already read PVC is neither recyclable nor biodegradable. Instead go to Earthworks\u2122 to donate your useless plastic cards. They provides a green alternative to PVC by producing cards made from 100% recycled PVC material. Using this American-made recycled card material conserves energy by reducing the"}, {"title": "rpj-c4", "text": "bread - Packaging search, Product search, information search - CHAOAN HENGTAIDA PACKAGING INDUSTRY CO., LTD. 2.Use them as small trash can liners. 5.Use them as a container for dog poop retrieved out of the yard by turning the bag inside-out, putting your hand in it like a make-shift glove and grabbing the poop. Once you've grabbed the poop, use your other hand to turn the bag right side out and the poop will magically be inside the bag. Be sure to use a bag that doesn't have any holes in it!!!!! 18.Use them to help make a credit card or other magnetic stripped card swipe when the card by itself won't swipe by putting it inside the bag. Not sure why this one works but it does. I see people do it in truck stops constantly. Once we've gone to mandatory hand chip implants I wonder if the tip in number 15. will help make reluctant implant chips scan by using them as a make-shift rubber glove? 55.Use them as flexible molds for the spray foam that hardens to fill in holes in walls, etc. 56.Use them as kindling to start fires with, even in the rain, since once they start burning the heat is intense -- just avoid inhaling the toxic fumes they give off !!!!!! 64.Weave them into an inexpensive rug!!!! 1957 The first baggies and sandwich bags on a roll are introduced. 1958 Poly dry cleaning bags compete with traditional brown paper. 1966 Plastic bag use in bread packaging takes over 25 to"}, {"title": "pubmed", "text": "Plastic helps in the cleanup."}, {"title": "rpj-common-crawl-2023-06", "text": "it can also cause death. Step-by-step procedure on how plastic bags are used to help patients wear the stockings The nurse helps the patient slip her foot into a transparent plastic bag. The plastic bag should ideally be big enough to cover the ankle. The nurse then rolls up the stocking from top to bottom before slipping it over the patient\u2019s foot. The plastic bag prevents the toes from getting caught in the stocking\u2019s opening (where the toes are) and provides better glide over the most difficult spot to navigate \u2013 the heel. The nurse then pulls and adjusts the stocking further up the leg, taking extra care to ensure that it is wrinkle-free. The nurse further adjusts the stocking until it extends all the way up to the upper thigh. When the stocking is in place, the plastic bag is removed and the process if repeated for the other leg. The same plastic bag can be re-used for the other leg. Source: Singapore Health \u00a9 Singapore Press Holdings Limited. Permission required for reproduction. Department of Cardiology \u200b10 Ways to Reduce Stress on Your Heart \u200bFoods Bad for Your Heart \u200b\u200bSupplements for a Healthy Heart \u200bImplantable Cardioverter Defibrillator: All You Need To Know \u200bMenopause and Heart Disease: What Is the Link? Heart \uff06 Lungs"}, {"title": "rpj-c4", "text": "Like millions of Americans, Jessica Hamilton, will buy her friends and family a handful of gift cards this holiday season, drawn by their convenience. Yet Hamilton, who carries reusable bags when she goes shopping, is bothered by the thought of all that plastic ending up in landfills along with worn-out hotel key cards, credit cards and the like. In 2012, the global card industry produced 33 billion cards, according to the International Card Manufacturers Association. Most of those cards contained polyvinyl chloride, a plastic that contains pollutants that are harmful to the environment and slow to decompose. ?If they had something more eco-friendly, that would make me shop at one place over another,? Hamilton said. Increasingly, card manufacturers and retailers are listening, offering more alternatives to plastic cards. High-end grocery store chain Whole Foods Market Inc. did away with plastic cards in 2011 and replaced them with paper gift cards. ?Generally, at Whole Foods, we like to think green \u2026 but we were producing tons and tons of waste from PVC cards, and that wasn?t in line with what we want to do,? said Marushka Bland, gift cards project manager for the Austin, Texas, company. Last year, Whole Foods launched a gift card during the holiday season made with wood from sustainably managed forests in Europe. The cards, produced by Sustainable Cards in Colorado, are made with 30 percent less energy than plastic cards and are compostable. Whole Food?s commitment to reducing its environmental affect played a role in the decision to get rid of plastic"}, {"title": "rpj-common-crawl-2021-04", "text": "can be leveraged to do so,\u201d Fuller said. See related: \u2018Green\u2019 your spending with eco-friendly cards Effort to increase cards\u2019 recyclability Plastic credit cards are difficult to recycle and they\u2019re typically made from environmentally hazardous materials. Most bank cards are composed of PVC, a known carcinogen that can foul the air when burned and pollute groundwater when it sits in a landfill. More than 8 million tons of plastic are dumped into the ocean each year, according to the nonprofit environmental group Plastic Oceans. The new card is part of an effort by AmEx to reduce single-use plastic in its global operations. The company also said it would rid its Centurion airport lounges of one-time-use plastic straws and coffee stirrers within 30 days, and all virgin plastic by the end of 2018. Additionally, the card issuer is planning to increase recycling rates at its global operations and achieve zero-waste certification at its New York City headquarters by 2025. AmEx is partnering with environmental organization Parley to roll out the marine plastic card and raise consumers\u2019 awareness of ocean conservation. Brady Porche is a senior editor at CreditCards.com. Since joining CreditCards.com in 2016, Brady has covered a wide variety of personal finance topics, including credit scores, rewards, debt management and data security. In Innovations and Payment Systems Skim Reaper: The death of card skimmers? A grimly named handheld gadget can detect card-data-stealing skimmers in compromised gas pumps, ATMs"}, {"title": "rpj-common-crawl-2020-05", "text": "of using a plastic bag. THINK BEYOND PLASTIC The problem is not single-use plastic but a single-use mindset. So can you help incorporate plastic-free solutions into a lifestyle like Akyra TAS Sukhumvit? And think beyond plastic \u2013 what other single-use products (chopsticks! flowers!) can you repurpose and breathe new life into? CROWDSOURCING MEETS CONVENIENCE Surabaya makes it ultra-convenient for people to play their part: as well as depositing waste at terminals, passengers can literally \u2018pay\u2019 for their tickets with trash on the bus! Can you make doing good as seamless? It\u2019s simply not possible to solve the global waste issue alone. Generous and committed brands will think broadly about partnerships and collaborative solutions. Who can you partner with? Like P&G and Unilever, don\u2019t be afraid to reach out to your rivals! Consumers wooed by the benefits of technology \u2013 from free messaging to validation on social-media \u2013 hardly stopped to think about the ramifications of their digital activities. Until, across Asia, a series of highprofile scandals surrounding data misuse, fake news and worse, brought the topic to mainstream awareness. In 2019, consumers will look for initiatives that give them greater security and peace of mind for their entire digital existence. HARD TO KEEP UP The number of internet users in Asia has grown by 1704% since 2000 (Internet World Stats). In the 2017-2018 period alone, 224 million people came online for the first time (We Are Social). Consumers are going online faster than society can promote (or even define) digital literacy, guidelines and etiquette. THE LOSS"}, {"title": "rpj-c4", "text": "bread - Packaging search, Product search, information search - CHAOAN HENGTAIDA PACKAGING INDUSTRY CO., LTD. 2.Use them as small trash can liners. 5.Use them as a container for dog poop retrieved out of the yard by turning the bag inside-out, putting your hand in it like a make-shift glove and grabbing the poop. Once you've grabbed the poop, use your other hand to turn the bag right side out and the poop will magically be inside the bag. Be sure to use a bag that doesn't have any holes in it!!!!! 18.Use them to help make a credit card or other magnetic stripped card swipe when the card by itself won't swipe by putting it inside the bag. Not sure why this one works but it does. I see people do it in truck stops constantly. Once we've gone to mandatory hand chip implants I wonder if the tip in number 15. will help make reluctant implant chips scan by using them as a make-shift rubber glove? 55.Use them as flexible molds for the spray foam that hardens to fill in holes in walls, etc. 56.Use them as kindling to start fires with, even in the rain, since once they start burning the heat is intense -- just avoid inhaling the toxic fumes they give off !!!!!! 64.Weave them into an inexpensive rug!!!! 1957 The first baggies and sandwich bags on a roll are introduced. 1958 Poly dry cleaning bags compete with traditional brown paper. 1966 Plastic bag use in bread packaging takes over 25 to"}, {"title": "rpj-common-crawl-2019-30", "text": "American Express to launch credit card made from ocean plastic The card currently exists as a prototype but it is expected be made available to the public within the next 12 months. Using your credit card can sometimes be a guilty experience. Fortunately, American Express is working to alleviate some of that guilt through the launch of a new card made entirely with plastic recovered from the ocean. The new credit card, a world-first, is being produced with Parley for the Oceans, a marine conservation group which has worked with Adidas on a highly successful plastic sports shoe. \u201cOur oceans play a vital role in our lives, the health of our planet and the health of travel and tourism, which American Express has long supported. It\u2019s important that we raise awareness and do our part to keep our oceans blue,\u201d said Doug Buckminster, a group president at American Express. \u201cPartnering with Parley is the right next step as we pursue our larger vision of backing our communities and sustaining the planet we share.\u201d The move is designed to raise awareness on the issue of plastic pollution and make a small dent in the estimated 8 million tonnes of plastic which is dumped in the world\u2019s oceans each year. Latest figures show that American Express has produced 112.8 million credit cards worldwide. \u201cEvery second breath we take is created by the oceans. Without them, we can\u2019t exist. American Express is creating a symbol of change and inviting their network to shape a blue future, one based on"}, {"title": "rpj-common-crawl-2022-05", "text": "wanted to make sure we could do this responsibly. Our product is environmentally responsible, but we also wanted to have fiscal responsibility ourselves. Everything we make goes back into the company, minus $1 from every roll sold that we donate to animal groups that are in our local area. Everything in terms of growth comes from our profits. Have you heard of business credit? Yes. We are building credit for the business. Everything in terms of legal structure is set up so the business is its own entity. In terms of business credit cards and things like that, everything is in the business\u2019 name. 100+ business credit cards in one click Business credit cards can make sure you always have emergency cash on hand. Browse your top business credit card matches for free and apply in minutes! Find my top options Managing the Business What\u2019s most challenging about running your business? For us, it\u2019s getting customers to try to have fun with something like this. Picking up dog poop is just something you\u2019ve accepted you have to do. You buy the cheapest bag, pick it up, and throw it away. Our bags are a little bit more premium because we have a mission behind them. The way landfills are, they push everything down, so plastic and other things don\u2019t actually have the oxygen they need to break down. Being that our bags are made from bio-based resins, they can break down with minimal oxygen. We have to educate customers on how to be more responsible about"}, {"title": "rpj-common-crawl-2019-30", "text": "of plastic every week: study Well, here\u2019s one way to cut down on personal debt. Humans are gobbling up around 5 grams of microplastics in their weekly diets \u2014 or about as much as your ATM card, according to a new study led by researchers at the University of Newcastle, Aus... Goldman CEO says he's testing the bank's credit card with Apple and consumers are going to love it Solomon is personally testing the iPhone-lined credit card, which is set to be released this summer, Solomon said in an interview with Carl Quintanilla.... Find Valuable, Targeted Credit Card Bonuses With the CardMatch Tool From time to time, credit card issuers offer elevated welcome offers to all new cardholders, such as Delta\u2019s current promotion on several of its credit cards. But the very best offers are often only available to a target subset of customers\u2014you\u2019ve li... ATM Card Rules: Transaction Charges Levied By SBI, Post Office Compared The ATM card charges apply depending on the type - whether it belongs to the same bank or post office where the customer's account is located or some other bank or post office - and nature of ATM -...... Union Budget 2019: Government To Launch Of National Transport Card The national transport card can be used for various modes of transport like railways, roadways and the national transport card will ease mobility for people in the country who use multiple modes of...... What to give the graduate? Gifts ideas for grads beyond the old greeting card with cash This cap-and-gown"}, {"title": "bm25", "text": "is polyvinyl... What Are The Diseases Caused By Recycling Of Plastic Bags? There are no diseases that I know of that are caused by recycling plastic bags, because this is seen... What Are The Disadvantages And Advantages Of Using Plastic Bags? Plastics are non- biodegradable, they require thousands of years to decay. They are one of the causes... How Are Shoelaces Like Pulleys? When you put a shoelace through an eyelet, what do you do next? You bring it back in the direction... What Are The Daily Duties Of A Plastic Surgeon? It really depends on the type of cosmetic surgery that he or she specializes in, and how he or she wants... What are the merits and demerits of plastic money? Credit and debit cards have changed the way we live. They help immensely, and many people couldn't imagine... My 2 year old shitzu ate ziploc and the tip of a plastic pen. She probably ate all of the sandwich size ziploc bag What should I do? As always, should you have a medical emergency with your pet, call your Vet's office for help. That's... Who Invented Shoelaces? What Does Plastic Contain? Who And When Was The Key Chain Invented? Who Invented The Plastic Ends To Shoe Laces? How Do You Make A Stola? How Do You Make A Senegalese Twist? How Do You Make A Bonnet? What Does Couture Mean? How Is Denim Made? Here are some related questions which you might be interested in reading. Can You Share Me With Your Funny Best"}, {"title": "bm25", "text": "American Express Planning to Introduce the First Ocean Plastic Credit Card The Inertia American Express is pioneering the first credit card made of upcycled ocean plastic, available later this year. Photo: American Express Restaurants and other centers of commerce may very well soon be asking customers if they intend to pay with paper or ocean plastic. That\u2019s because in 2018 American Express, in cooperation with Parley for the Oceans, announced plans to launch the first credit card made of upcycled marine plastic debris. When AmEx made the announcement back in June, the card was 12 months away from being available to the general public, according to a statement. \u201cThe inspiration for the card is to combat plastic pollution in the oceans and to raise awareness of this important issue,\u201d said AmEx. With bans on plastic bags, plastic straws in diverse parts of the world, and global campaigns that extoll the benefits of multi-use water bottles over single-use plastic ones, the appetite of the general public to find plastic alternatives if not cut certain uses of plastic out entirely goes without saying. But when consumers think of plastic pollution, bags, straws, food packaging and containers are typically the most egregious offenders. By comparison, little thought is often given to the plastic credit/debit card of which most people have multiples in their wallets and use daily. This effort by American Express is the first \u2013 besides credit/debit cards made of metal \u2013 to create a card from an alternative to virgin plastic. \u201cEvery second breath we take is"}, {"title": "bm25", "text": "TechRadar pro IT insights for business Best Cloud Storage Best Printer Mac Pro 2020 Vodafone issues 'half-sized' SIMs in war on plastic By Steve McCaskill 2019-12-06T10:55:03Z Vodafone aims to halve environmental impact by 2025 (Image credit: Vodafone) Vodafone is to issue customers with half-sized SIM card holders as part of measures to eliminate all non-essential plastics at its retail stores and offices by April 2020. SIM card holders have traditionally been the size of a credit card, often dwarfing the dimensions of the actual SIM. By reducing the size of the holder, Vodafone will reduce plastic waste by more than 340 tonnes and save up to 15 tonnes of carbon dioxide emitted during the production and transportation for every tonne of plastic reduced. This amounts to a reduction of 5,000 tonnes of carbon dioxide annually. Vodafone 5G takes off at Gatwick Lack of phone recycling leads to metal shortage Exertis to offer refurbished handsets to resellers Vodafone green The initiative will support Vodafone\u2019s overall aim of halving its environmental impact by 2025. The operator\u2019s 7,700 retail stores worldwide will no longer offer plastic bags and will restrict the use of plastic marketing or promotional materials. A range of eco-friendly accessories will also be stocked, including phone cases, charging backs and docks, under the \u2018Red loves Green\u2019 branding. Vodafone will help customers to recycle and extend the lifespan of their devices and will no longer offer plastic bags in its 7,700 retail stores worldwide. Stores will also restrict their use of plastic marketing and promotion materials and"}, {"title": "bm25", "text": "compost collection. Composting is an absolute necessity in saving the human species. Not only does composting cut methane, compost added to our soil boosts carbon drawdown. Putting a banana peel in a paper bag and dropping it at a compost drop-off location is not difficult. Composting is very low hanging fruit. One third of all the food produced becomes waste, much of which in dumped into landfills. As mentioned, this rich organic material turns into methane. Landfills emit 2 billion tons of methane each year. Methane is 80 times stronger than carbon dioxide. Cutting methane from landfills is the quickest and easiest greenhouse gas to eliminate. If you\u2019re not already composting, you can begin today. Just place all kitchen scraps in a brown paper bag and drop-off at town site each weekend. The bags can be stored in the refrigerator until you\u2019re ready to drop-off. Most community waste comes from unrecyclable plastic. The vast majority of plastic is manufactured from petroleum and is toxic. The global plastic crisis that has killed millions of ocean species, and according to Sir David Attenboroughis responsible for up to one million early deaths per year, generates mountains of microplastics that are now in our food supply (we eat 100 bits of microplastics per meal, which amounts to one credit card a week, 52 credit cards per year). Recent news about nanoplastics found in the air that we breath, especially those who live and work in our cities, is that much more alarming and should motivate us to refuse plastic. Green"}, {"title": "bm25", "text": "hopes humorous bags like \u2018Wart Ointment Wholesale\u2019 will persuade shoppers to shun single-use plastic bagsIf concern over the climate crisis or revulsion over the contamination of the ... Check your cabinets: Some Ragu pasta sauces recalled, may contain fragments of plastic Mizkan America, Inc. issued the recall out of an \"abundance of caution,\" warning consumers that the pasta sauces may contain fragments of plastic ... Georgia: newborn baby found alive in plastic bag \u2013 video report Police in Georgia have released dramatic bodycam footage showing the moment a newborn baby girl was discovered alive in a plastic bag. Local residents called the police on 6 June after hearing cries f... Hundreds of sharks snarled by plastic in the world's oceans, scientists warn New research suggest previous studies have underestimated the number of sharks and rays entangled in plastic. The problem is likely much worse than scientists realized.... Humans eat a credit card-size amount of plastic every week: study Well, here\u2019s one way to cut down on personal debt. Humans are gobbling up around 5 grams of microplastics in their weekly diets \u2014 or about as much as your ATM card, according to a new study led ... Nestle Waters teams up with Ocean Legacy for plastic waste cleanup Nestle's bottled water division Nestle Waters, owner of Perrier and Vittel, said it would team up with Canada's Ocean Legacy Foundation to help to clean up plastic pollution.... Whole Foods eliminating plastic straws from US stores in July. Expect new chicken, too. Whole Foods Market is eliminating disposable"}, {"title": "bm25", "text": "them out of direct sunlight and extreme temperatures. Heat, cold, humidity, and ultra-violet light will all damage plastic over time (this is why so many white plastic figures turn yellow over time). So there you go. You now know how to store your toys properly. The relatively small cost of buying a thousand (or several) polypropylene bags is nothing compared to the potential cost of replacing an entire collection when it degrades over time. -Zak. I'm a real doctor. From America. Very cool tip on the bags. For some reason, we (man children) think of \"archival quality bags\" for comics and cards and such, but not so much when it comes to the little plastic men. Yeah, go figure. I was using polypropylene bags to store comics when I was 8. And I didn't think to apply that same concept to my action figures until I was 28. how good does this work in preventing clone troopers from yellowing? In the few years that I've been using these bags, I haven't had any clone troopers noticeably yellow on me (thought I had several that had already yellowed by the time I discovered these bags), but I don't honestly know if the bags can take credit for that, or if it's just higher quality plastic used in the figures these last few years. One trick that you may want to look into though is hydrogen peroxide. I haven't tried it myself yet, but many people online have reported success in restoring clone troopers (and other white plastic"}, {"title": "bm25", "text": "late to change. e. But the film doesn\u2019t only present the negative side. Complete the sentences with the words from the box. We urgently need to \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 action about the plastic waste problem. The hurricane had a devastating \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 on the island. The filmmakers \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 a shocking discovery in the Pacific. The answer was painfully \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 to everyone in the room. Everyone has a \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 to play in this situation. It\u2019s not too late to \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 the tide and fix the problem. This is a short-\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 solution. It won\u2019t work forever. There is a staggering \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026 of plastic in the world. What documentary films would you recommend? Advantages That You Will Get with Plastic Membership Cards Use the Benefits of Plastic Member Cards and Customer Loyalty Important Tips On Choosing Best Plastic Molding Compan-converted Get Complete Information About Amazing Industrial Innovation Print Plastic Gift Cards With Professional Help How can the plastic gift cards increase revenues of a business Show Quality and Vision of Your Business Promote your brand with Eco Friendly Jute Bag-converted (1) How Plastic Gift Cards Can Increase Business Revenue Plastic bags but at a price! Film spiderman 4 dvdrip Why Wooden Toys Are Best For Your Kids-converted sea in a jar how can we write about dopcumentaries expose ocean zones Ocean Circ Water Types Masses 15. Oceans and coastal processes Top 10 Global Consummer 2019 bariere 80 guide Culture Strategy Elaboration versus Project Management, a Manual"}, {"title": "bm25", "text": "plastics and paper cups. \u2026 McDonald\u2019s is already aiming for all its paper and card packaging, such as burger boxes or paper bags, to come from recycled or certified sources where no deforestation occurs by 2020. Question: What Is Considered A Psychopath? What is a psychopaths weakness? Psychopathy researchers What Jobs Can I Get After IIT? Is IIT costly? Tuition fees at IIT for the current Question: What Is Difference Between Email And Webmail? Which email is safest? The most secure email providers Quick Answer: What Stores Accept Personal Checks? Can I shop online using my checking account? Question: How Do I Return My Vodafone Router? How do you dispose of old modems and routers? How Do I Add A Public Key? How do I SSH to a public key? Manually Copy an SSH What Is The Largest Utility Company In The United States? Which country is the largest producer of electricity Question: What Is Meant By 100% Cashback? What is cashback and how does it work? A cash back What Are The Dangers Of Oversharing? Why is oversharing a red flag? RED: oversharing early Which 5 Banks Are Merging With SBI? Which bank converted into State Bank of India? Question: What Is The Best Meal At Taco Bell? What is Taco Bell\u2019s $5 box right now? Quick Answer: What Happens If My Credit Card Gets Declined? Why is my credit card declined If I have money? Can You Split Payments On Walmart App? What is Walmart starting pay 2020? The new wage ranges \u00a9 2021"}, {"title": "bm25", "text": "\u2014 along with plastic containers in food settings became increasingly used, contributing to more plastic waste, according to the study. Market 810 only offered single-use plastic dishware and cutlery during the fall 2020 and spring 2021 semesters, and a total of 113,943 entry swipes were used at Market 810 during that period, according to Thorton. Kildahl stated that individuals can also do their part to reduce single-use plastic waste; having a reusable water bottle or shopping bag on hand can help limit one\u2019s individual waste. Other ways include purchasing food and grocery items not in plastic containers or using a cotton rag instead of plastic sponges when washing dishes, according to Kildahl. \u201cWhile VCU does its part at the institutional level, this is also an opportunity for each of us to reflect on the choices we make every day,\u201d Kildhal stated in an email. \u201cI hope this measure and the changes it is driving at VCU will raise awareness across the community.\u201d Correction: An earlier version of this story misspelled the name of the food service company, Aramark. Bleecker St. Emma Carlson lauren johnson Market 810 VCUDine VCU holds 9/11 commemoration, community reflects on 20th anniversary impact Lee statue removed, new time capsule placed in pedestal as area awaits transformation"}, {"title": "bm25", "text": "Q: Meaning of \"totes\" in \"totes can be used for personal items\" Source: Sinks could be an infection source and should avoid placing toothbrushes directly on counter surfaces. Totes can be used for personal items so they do not touch the bathroom countertop. Does this tote stand for \"a plastic box\" (Wiktionary)? I also thought of \"tote bag\", but that would not be very handy, would it, to put bags on the countertop? So I thought that a small plastic container would be ideal. But on the other hand, the Wiktionary article says that the container meaning refers to logistics. A: No. From the same dictionary definition, a tote is a \"tote bag\", a large bag with handles. The plastic box definition has to do with \"logistics\", that is, with shipping of goods."}], "hoverinfo": "text"}, {"x": [0.006907403003424406, 0.050620533525943756, -0.020295841619372368, 0.10493410378694534, 0.011854102835059166, -0.00785029586404562, 0.08325796574354172, 6.52242815704085e-05, 0.10452700406312943, 0.0027224894147366285, -0.04976698383688927, 0.027867935597896576, -0.03702494129538536, -0.047737859189510345, 0.028420327231287956, 0.046307481825351715, 0.03894411772489548, 0.05379132181406021, 0.07719264179468155, 0.03179868683218956, 0.027608683332800865, 0.07382159680128098, 0.10617507994174957, -0.0004146962019149214, -0.0023388112895190716, 0.00921956729143858, 0.04834572598338127, 0.03761729598045349, 0.03761729598045349, -0.0029661329463124275, -0.0029661329463124275, -0.0007679305272176862, 0.02416398376226425, 0.003433111123740673, 0.003433111123740673, -0.059105727821588516, -0.033149246126413345, 0.027662064880132675, 0.07767969369888306, 0.026210354641079903, -0.020104754716157913, -0.00785029586404562, -0.044221241027116776, -0.033149246126413345, 0.03179868683218956, 0.06687668710947037, 0.06693928688764572, -0.059105727821588516, -0.030137572437524796, -0.012680931948125362, 0.07181556522846222, -0.020295841619372368, -0.002411167835816741], "y": [0.08432652056217194, 0.12743833661079407, 0.09994824230670929, 0.02774174138903618, 0.17050418257713318, 0.11324810236692429, 0.12764157354831696, 0.12164503335952759, 0.14971843361854553, 0.20438076555728912, 0.032208941876888275, 0.1862999051809311, 0.0874076709151268, 0.0757124125957489, 0.1610894650220871, 0.1713668704032898, 0.010842566378414631, 0.11320539563894272, 0.13371272385120392, 0.08642342686653137, 0.14704813063144684, 0.04833504185080528, 0.04733038321137428, 0.09831111878156662, 0.14622104167938232, 0.17924700677394867, 0.08131128549575806, 0.1620577722787857, 0.1620577722787857, 0.1871608942747116, 0.1871608942747116, 0.05481075868010521, 0.0359715074300766, 0.1381373405456543, 0.1381373405456543, 0.1318114697933197, 0.008530615828931332, 0.13794167339801788, 0.1914343535900116, 0.1798567771911621, 0.11337246745824814, 0.11324810236692429, 0.05941196531057358, 0.008530615828931332, 0.08642342686653137, 0.06922028213739395, 0.057293716818094254, 0.1318114697933197, 0.13497263193130493, 0.07276450097560883, 0.052635569125413895, 0.09994824230670929, 0.14094145596027374], "mode": "markers", "name": "Cluster 4", "marker": {"size": 8, "color": "rgb(128,177,211)"}, "text": ["Document 1", "Document 11", "Document 15", "Document 17", "Document 82", "Document 94", "Document 145", "Document 202", "Document 203", "Document 221", "Document 238", "Document 247", "Document 250", "Document 261", "Document 271", "Document 272", "Document 287", "Document 294", "Document 301", "Document 321", "Document 332", "Document 384", "Document 388", "Document 460", "Document 466", "Document 515", "Document 527", "Document 536", "Document 537", "Document 546", "Document 547", "Document 634", "Document 640", "Document 645", "Document 646", "Document 690", "Document 698", "Document 710", "Document 728", "Document 753", "Document 821", "Document 926", "Document 951", "Document 1023", "Document 1064", "Document 1179", "Document 1182", "Document 1213", "Document 1289", "Document 1301", "Document 1313", "Document 1324", "Document 1369"], "customdata": [{"title": "rpj-c4", "text": "Why Use Paper When We Have Plastic? Plastic is becoming more convenient and easier to use. No, I am not talking about bags at the shopping center. I am talking about your debit and credit cards. Not only are they more convenient and a time saver, they are also cheaper! There are many pros and cons as I will explain for both products but I think we all can agree that plastic is the new way to go when making payments. Debit cards, which are also known as, check cards or bank cards give people a greater sense of safety and control when purchasing items. Unlike credit cards, where you can continue to charge things over and over again, debit cards can be prevented from using all the money in your account. Debit card transactions are easier to show proof of purchase and solve problems with the bank. The convenience is the main reason people use debit cards. You do not have to carry around those bulky check books and keep a running balance. If you have a bank like mine, every time your debit card is swiped you receive a text with all of the transaction information. This is turn makes it easier for you to not have to keep a running balance in the check register because, it is always at your fingertips. The nice thing about debit cards is they do not require identification if the back of the card is signed. Lastly, with a debit card it is highly unlikely you will"}, {"title": "rpj-c4", "text": "and that cash back / fuel surcharge waiver didn\u2019t work. You call the bank and they have a simple answer \u201cSir fuel surcharge waiver is applicable only if you swipe your card on our bank\u2019s machine.\u201d What ?! Now who will go and ask the petrol bunk guy to provided xyz bank\u2019s machine ? You see, even though the banks claim to waive the surcharge, it surely isn\u2019t easy to get it done. Adding to that, even train ticket bookings cost more now, thanks to that \u201cTransaction Fee\u201d the IRCTC portal charges for providing you the facility to pay by card. Imagine if we could pay by cash for online transaction through a machine attached to the computer that would accept cash and credit to the merchant ! First of all, it\u2019s easy to handle plastic money from the user\u2019s point of view. Imagine you wanting to buy a TV, carrying 50k in cash, that would surely be a fat wallet \ud83d\ude09 Using a Debit / Credit card in such cases is better option since its safe and easier to handle. Hence using a Debit / Credit card for making payments is an effective and simple alternative. Secondly, when you pay by cash, you usually don\u2019t keep a track of how much you spent. But while using Plastic Money, your statement has recorded every penny you spent. Effective isn\u2019t it ? Using plastic money is a great way to keep an eye on your spending and enhance your savings. Thirdly, many stores \u2013 mostly online \u2013"}, {"title": "rpj-c4", "text": "Money . It means that J.S. Mill wanted to control money. Now we .. Definition of Money According to Keynesian Economists . Representative Money or Modern Money/Plastic Money/Electronic Money. 28 Nov 2016 . In defining demerit goods we may assume that people are irrational and make . (contraception helps spread STD) and therefore a merit good. 18 Nov 2009 . A debit card is a plastic card that resembles credit card. . Whenever a card holder withdraws money from an ATM or uses the debit card for. introduction - Shodhganga shodhganga.inflibnet.ac.in/./09_chapter%201.Plastic money has certain advantages over traditional money just as paper money . (1998) definition which states that plastic money is an electronic store of. 30 May 2017 . Important points on the benefits and disadvantages of a credit card . Some of the perks of paying with plastic include: A credit card is safer than carrying cash. While there's only a small chance of having lost or stolen cash ... a credit card as a means of payment over a personal loan or leasing options. Reuse is the action or practice of using something again, whether for its original purpose . Reuse has certain potential advantages: .. Sainsbury Ltd have operated a plastic carrier bag cash refund scheme in 1991 - \u201cthe penny back scheme\u201d. 7 Apr 2013 . The term \"plastic money\" can refer to plastic credit cards, debit cards and . The perpetrators take the advantage of the newly emerged issues,. 8 May 2017 . Read the positive and negative effects of plastic"}, {"title": "rpj-c4", "text": "major credit cards are acknowledged. The flexibility is the primary advantage of using the general-purpose card. You can fill up your gas tank, go out to eat, purchase concert tickets or whatever else you need to do with it. All these plastic cards have proven their usefulness in our society today. Indeed we can conclude that such technology can lead to a more secure and functional way of doing business. Also, ease of handling, convenience and portability are big factors in making the plastic card a business solution of choice."}, {"title": "rpj-c4", "text": "cash on purchases for less than $20 had $173 less in revolving debt. The group also sent reminders to credit union members that \u201ccredit keeps charging\u201d and that using a credit card adds about 20 percent to the total cost of something. People who received that reminder didn\u2019t significantly change the amount of their credit card debt, the survey found, but younger people did charge less. People under 40 who received the reminder about the cost going up by 20 percent with a credit card had $160 less in credit card debt. Swiping a credit card can seem a lot easier and cheaper than using cash because you\u2019re not parting with anything tangible. Seeing a $20 bill leave your wallet feels more like spending money than using a plastic card to buy something. After all, a $6 drink doesn\u2019t look too bad when compared to a $5,000 spending limit on your credit card. Having cash on hand helps you refrain from making small impulse purchases, which quickly add up. Check your credit card statement \u2013 seeing is believing. I hope you found this information helpful. Please contact me for all your real estate needs today! No one wants to be reminded by their bank that using a credit card too much is a bad idea. It\u2019s a rule of thumb that everyone knows, but often avoids because a credit card is a major convenience. After all, who wants to always carry cash for everyday purchases? However, it turns out that \u201crevolvers\u201d \u2014 people who carry a"}, {"title": "rpj-c4", "text": "carrying it. And you'll be kinder to small businesses by paying with cash, as they won't have to pay merchant fees to the charge-card company if you don't pay with plastic."}, {"title": "rpj-c4", "text": "The use of credit cards is one of the most efficient ways that is becoming very popular among the people in the world that we are living today. This is to say that, you can be able to pay for anything that you want including globally by the use of the credit cards that we are having today. This is something that many people are doing and it is one of the ways that you can be able to use to ensure that you increase your profits very fast. This means that you can be able to choose the option of the credit cards which is very fast and very efficient in all your payment needs. We are going to see the reasons why you should be able to consider the efficiency of the credit card payments because this is something that have been tested and found to be true and very true to the very members of the community. It is really an option that you can be able to pay by the use of cash. In many ways, it has been tested and found to be the most secure means in making of the purchases. This is something that is acceptable by all the people globally because it have been established that, when there is the payment using the credit cards, the likelihood of theft or crime is really low meaning that it is one of the most secure means to make the payments. This is something that is really good to many people"}, {"title": "rpj-common-crawl-2020-05", "text": "said that. PLASTIC MONEY In the past, people b ought goods using (1)_____ m oney from financial in stitu tio n s and o nly w hen they had (3). .T h ey rarely (2). saved_________ the money, did they buy w hat they wanted. Recently, however, there have been great changes in the way people purchase goods. To begin w ith, some people pay fo r things by cheque, w hile others prefer m o n th ly ( 4 ) __________instalments______ >rath er than paying the whole amount__________ at once. Most consumers, though, prefer to buy things using th e ir cred it cards. By and large________ , it is th o u g h t th a t there are benefits to having a credit card. A part from the fact th a t cred it cards are handy, some stores o ffe r bonus points to people m aking purchases, w hile others give on certain products. On the o the r hand, cred it cards m ust be used w isely because they can prove disastrous. In the long run, consum ers find th a t they can't ( 8 ) ____________ do____________ w ith o u t th e ir credit cards and constantly rely ( 9 ) __________ on______________ them , as they are \u201ceasy m oney\u201d. As a result, some people lose co ntrol of th e ir finances spending m ore than th ey should and w ind up not being able to (10) they end up"}, {"title": "rpj-c4", "text": "about handling as much cash, but they also benefited from impulse purchases by consumers too. All cards are subject to what are called interchange or transaction fees. These fees are the \"cost\" of transferring funds between the merchant bank and the customer's bank (card issuer). Companies like Visa determine these fees, which often involve a fixed and variable component. For example, the interchange fee might be $0.25 per transaction plus 2% of the purchase price. Generally, merchants prefer their customers use debit cards. That's because the interchange fees are usually lower than credit cards. The higher interchange fees associated with credit cards allow financial institutions to profitably market offers such as 1% cash back rewards. The \"behind the scenes\" difference between using a credit and a debit card is very straightforward, and knowing how they differ will lead right into a discussion of the pros and cons for each card type. Credit Cards: allows the user to make a purchase using money \"borrowed\" from the card issuer. If the money is paid back in a certain timeframe, the user essentially gets an interest-free loan. Debit Cards: directly linked to a bank account. The money spent using a debit card is immediately deducted from the account balance. Convenience: cardholders don't have to worry about carrying a lot of cash. Interest-Free Loans: cardholders that pay off their card's balance on time each month are getting an interest-free loan of money. Credit Rating: using a card in a responsible manner tells lenders the cardholder can be trusted to pay"}, {"title": "rpj-c4", "text": "paying with cash. Researchers are actually able to measure consumers\u2019 perception of pain and paying with plastic doesn\u2019t trip the same triggers as handing over cash. That doesn\u2019t happen with credit cards. You may have thousands left on your limit so spending $50 or even a few hundred doesn\u2019t matter as much. There\u2019s no mental budgeting to slow you down from using the card again and overspending. Credit card companies have even been able to associate their logos with spending through powerful conditioning. A series of experiments by Dr. Richard Feinberg found that people were more willing to spend just by showing them logos of credit card companies! Not only do credit card companies use psychology to get you to overspend, they use it to get make more on interest payments. A paper published in the Journal of Marketing Research found that people are driven to attain small goals. This means people are psychologically-driven to pay off small debts first even if others have higher interest rates. The result, people run up huge bills on their credit cards and turn their focus to paying other bills while paying double-digit rates to the credit companies. Finally, credit card companies are masters at the psychological incentives of rewards. Offering \u2018cash back\u2019 programs and rewards drive consumers to overspend way beyond their budget. Many card companies even use tiered rewards systems so the more you spend, the more rewards you \u2018earn\u2019. Credit card rewards systems turn consumers into Pavlovian dogs! Just as a dog that hears a bell and"}, {"title": "rpj-c4", "text": "the fiftieth birthday of the fiscal transition that made Gemma's shopping frenzy possible. Plastics reached Great Britain in the shape of the American Express Charges Card. And it has triggered a revolutionary change, making cash and credit more available than ever. Total payments for a particular deal were 75 pounds per annum and full balance had to be settled each and every monthly. Batch and credit card were nothing new on the international scene. In fact, the entry-level American Expressreen card has been designed to look like cash, meaning that instant cash is available. However, when other card types came onto the scene - Mastercard, Barclaycard and Access in the UK - they also became icons of social standing. Plastics had started to alter the mechanism as we bought goods. Folks used tickets to buy smaller and smaller things. There are 47 million UK cardholders of direct debits and 30 million credit and customer cardholders. Worldwide, around six billion non-biodegradable maps are manufactured every year. Nevertheless, in April of this year, 43. 43. pm. 6bn was still dumped on plastics by 883 million buys. Melanie Johnson, Chairwoman of the UK Card Association: Money gives you instant access to your spending and remaining time. Thus, for example, we tend to issue smaller denominations rather than smaller ones for daily objects, but combine bigger bills with cost-cutting. What is the opposite of what one might have expected the plastics to make dispensing easy. Humans will be different, and what the denomination effect has resulted in is that humans"}, {"title": "rpj-common-crawl-2021-04", "text": "there [are] no worries about late payments, payoffs, or repossessions. You have no worries about your credit being affected. Cash assures that no creditor will ever call you wondering where their payment is,\u201d Bridges says. Likewise, here are some times you should never use your credit card for payment. FabrikaSimf/Shutterstock Limits companies\u2019 tracking If you\u2019ve noticed that after purchasing something, all of a sudden you have an increase in solicitations and offers, this is because retailers can track their customers\u2019 spending, share their information with a third party, and target them with more advertising, Bridges says. Plus, using cash could even cut the amount of junk mail you receive, Bridges says. \u201cThere is a good chance they may not be aware it\u2019s you who is paying, reducing the amount of offers and so forth that come in the mail. Paying with cash helps to reduce this,\u201d she notes. Robert Kneschke/Shutterstock And a card? So we now know when to pull out the bills, but when should we pull out the plastic? \u201cLarger expenses, like travel, hotel fees, and monthly bills, are typically best to put on cards. By doing so you can collect rewards points like free airline and hotel stays and different cash back rebates,\u201d Friedmann says. But is it worth it to use cash back credit cards? Friedmann thinks so: \u201cOver time, these cash back rewards and incentives really add up.\u201d Cash is great in many circumstances, but there are still some times you should never pay with cash. Every product is independently selected"}, {"title": "rpj-common-crawl-2021-04", "text": "\u2018Terminal Stage\u2019 (G.) \u2022 John Clarke has Died We need a war on plastic, not cash. It\u2019s more likely that the last time you bought a pack of gum or a can or soda, you used a credit card. People like their credit cards so much they\u2019re using them even for the tiniest purchases, according to a new survey released Monday from the credit cards site CreditCards.com. Among people with credit cards, 17% said they use them to buy items in brick-and-mortar stores that cost less than $5, up from 11% last year. CreditCards.com surveyed about 1,000 U.S. adults in March 2017. After a lull in the wake of the Great Recession, credit cards are once again being used with increased frequency. The Federal Reserve reported last week that collective credit card debt in the U.S. had reached $1 trillion. Credit-card debt and auto loan debt balances for people ages 60 and older have also risen since 2008, that Fed data showed, whereas credit-card debt for those 59 and younger has fallen. The Fed, when describing that phenomenon, said lending standards have tightened since the recession, and those who are older may also be more creditworthy. But when consumers can pay their balances each month, turning to credit cards for small purchases isn\u2019t a bad thing, said Matt Schulz, a senior industry analyst for CreditCards.com. Putting more charges on a credit card may indicate consumers feel more optimistic about their financial picture for the future, he said. \u201cPeople who are chasing rewards realize that those little"}, {"title": "rpj-common-crawl-2020-05", "text": "to Legislate New Measures (GR) \u2022 Great Barrier Reef at \u2018Terminal Stage\u2019 (G.) \u2022 John Clarke has Died We need a war on plastic, not cash. It\u2019s more likely that the last time you bought a pack of gum or a can or soda, you used a credit card. People like their credit cards so much they\u2019re using them even for the tiniest purchases, according to a new survey released Monday from the credit cards site CreditCards.com. Among people with credit cards, 17% said they use them to buy items in brick-and-mortar stores that cost less than $5, up from 11% last year. CreditCards.com surveyed about 1,000 U.S. adults in March 2017. After a lull in the wake of the Great Recession, credit cards are once again being used with increased frequency. The Federal Reserve reported last week that collective credit card debt in the U.S. had reached $1 trillion. Credit-card debt and auto loan debt balances for people ages 60 and older have also risen since 2008, that Fed data showed, whereas credit-card debt for those 59 and younger has fallen. The Fed, when describing that phenomenon, said lending standards have tightened since the recession, and those who are older may also be more creditworthy. But when consumers can pay their balances each month, turning to credit cards for small purchases isn\u2019t a bad thing, said Matt Schulz, a senior industry analyst for CreditCards.com. Putting more charges on a credit card may indicate consumers feel more optimistic about their financial picture for the future, he"}, {"title": "rpj-common-crawl-2022-05", "text": "were each made with a debit card, although before returning home we went for a drink and paid with cash, the only time we used the filthy lucre. Though I'm not a particular advocate of contactless card payments, which seem to me to be wide open to abuse, using plastic, whether a debit or credit card, is both convenient and saves us having to walk around with a purse- or wallet-load of cash. In short, it's probably the best way to settle a bill, provided you immediately clear any credit card debt, so avoiding interest charges. Google 'bad financial habits' and in less than a second, 6.6 million results will confirm that failing to pay off your monthly credit card bill is the most costly financial habit of all. Failing to examine credit card statements is another, so how do we adopt good financial habits? Unfortunately, there's no easy answer because if you want to achieve anything in life, you have to work at it. Good financial habits are no different: most of us have to work at developing them, starting by eliminating the bad ones first. I speak from experience; it took me some time to break the habit of paying the minimum monthly amount on my credit card, while gratefully accepting every increase in my credit limit those nice people at the card company willingly extended. With hindsight, it was akin to dealing with the Sopranos: I was paying interest on interest and at higher rates than those demanded by Tony and his New"}, {"title": "rpj-common-crawl-2019-30", "text": "anti-competitive no-surcharge rules, etc. is inflationary and affects negatively consumer purchasing power as well as lower savings rates. 4. Credit cards encourage impulse buying. The industry knows this very well. Swiping a plastic card rather than opening a wallet and directly taking cash out creates a disconnect between the purchase and the loss of money to the consumer. 5. Credit card terms\u2014what Senator Elizabeth Warren calls \u201cmice print\u201d\u2014are mostly inscrutable and non-negotiable. You sign on the dotted line, shut up and shop. Companies rarely compete over fine print terms that favor the consumer. Compare, with a suitable microscope, the standard form contracts of Visa, Mastercard or Discover or GM, Ford and Toyota, or Bank of America, Citigroup or Wells Fargo. Consumers have been driven into a choiceless contract of peonage or contract servitude. 6. Using cash/check encourages consumers to live within their means and not get caught in an ever deeper cycle of debt. For instance if you are out shopping with cash and set a budget for yourself, it is impossible to overspend if you simply do not bring more than has been allocated for your purchases. 7. Paying by cash/check avoids the gouging of fees, penalties, termination charges, and of course, sky-high interest rates for consumers. Corporations on the other hand enjoy low-interest rates across the board. (Remember, however, checks have a fee if they bounce.) 8. Paying by cash/check\u2014say in a restaurant\u2014saves time and follow-up monitoring for errors. Furthermore, it prevents the addition of any fraudulent charges to the bill. 9. Paying by"}, {"title": "rpj-common-crawl-2021-04", "text": "plastic, compared with 50 per cent for paper and 1 per cent for other methods. In 1998, there were 1.36 billion debit card transactions worth $58.4-billion, compared with 185 million transactions worth $9.4-billion in 1994. There are now about 276,000 merchants with Interac machines, and 22,000 ABMs. The typical Canadian uses a debit card 8.5 times a month to make purchases. In the year ended Oct. 30, 1998, there were a billion credit card purchases worth $84.1-billion, compared with 778 million in fiscal 1994 worth $55.1-billion. Although the study found that consumers prefer to use plastic, the use of cheques is still alive and well. Sandy McFarlane, chairman and chief executive officer with Toronto-based Davis & Henderson Ltd., which makes more than half of the personal and small-business cheques in Canada, said: \"You are seeing a shift happening [to plastic], but people are doing more transactions than ever before,\" he said, adding that the demise of cheques has been slowed as new players in the financial services market such as brokerage firms offer chequing accounts. While Canadians prefer to use plastic more often, they have yet to embrace smart cards -- plastic cards with an imbedded microchip that can be programmed to carry electronic cash. The most ambitious project, conducted by the Mondex Canada Association in Guelph, Ont., was stopped in October when three of Mondex's bank members would not contribute money to finance the project. The setback delayed the national rollout of the Mondex card, which had been expected to take place by year's end."}, {"title": "rpj-c4", "text": "said above that it has been proven that customers typically spend a large percentage of their money when paying with credit cards than when using cash. For that matter, removing cash payments will be like urging your customers to spend more. Besides, you will realize that a large number of people will also be willing to pay more on an item when using a credit card than when using cash. It is essential to note that credit cards have a lot of cash and the users might not be able to see this as a waste of money."}, {"title": "rpj-c4", "text": "save you from paying any extra fees. Despite this seemingly disturbing information, credit cards are far securer than cash. Still unconvinced? How about this \u2013 if you lose a PLN 100 banknote, the chances that you will find it are zero and there is no one responsible for your loss. However, if your money is stolen from your account, it is possible to track the perpetrator (e.g. by establishing location and time of a transaction)."}, {"title": "rpj-c4", "text": "campus, the card can be swiped at the bookstore, the library and the cafeteria. Since it bears a MasterCard logo, it can also be used off-campus, such as the local mall or when studying abroad. It is not a credit card, so students cannot run up a debt, but they may learn soon to budget. \u201cIt\u2019s a tool that will help them to manage their finances and teach them a little bit more about financial literacy,\u201d says Lieto. Of course, plastic does come with some pitfalls. For one thing, people do not tend to be as conscious of their spending as they are when they are using cold hard cash. \u201cI don\u2019t really think of it as money. I just kind of blindly swipe my card,\u201d says Pace student Alexandria Tribble. In addition, consumer advocates from New York Public Interest Research Group say students are being hit with an array of fees that chip away the value of their student loan. \u201cIf you use the card and you swipe it and choose to use debit instead of credit, you\u2019re charged 50 cents. If you use an outside bank and you withdraw money, it\u2019s $2.50,\u201d says NYPIRG campus supervisor Megan Ahearn. There is also an abandon account fee of up to $19 after nine months of inactivity. Higher One points out that to date, only 1 percent of the 4.8 million students they serve have been subject to this penalty, and say the other charges are either avoidable or common in the banking industry. Still, with more"}, {"title": "rpj-c4", "text": "absorbed by the store. So it is passed along to its customers by increasing the prices of products or services it sells. The result is that people who shop at the store pay a higher price, with or without credit cards. And since nowadays most credit cards give at least 1% back to the cardholders for using the cards, the price increase is even bigger because banks will no give card users that 1% out of their own pockets. If you use a credit card with 1% cashback at the store, you at least get some of the increased cost back in terms of credit card rewards. For those who shop at the same store, but pay with cash, they don\u2019t get anything back while still paying the same higher price as those who use credit cards do. So how much advantage have we credit card users taken from cash users? On average, each cash-using household pays $151 to card-using households and each card-using household receives $1,482 from cash users every year. On average, and after accounting for rewards paid to households by banks, the lowest-income household ($20,000 or less annually) pays $23 and the highest-income household ($150,000 or more annually) receives $756 every year. because low-income people usually use cash more and people with high income are more likely to use credit cards. Now that you know where your credit card rewards come from, are you going to change the way you pay your purchases? Even though reading the report didn\u2019t make me feel any"}, {"title": "rpj-common-crawl-2019-30", "text": "we've gone with Visa for over eight years and MasterCard \u2026 a little bit shorter. But we like those long-term themes. When you think about your own personal habits, probably 10 years ago you were using your credit card a little bit for different purchases, but now you probably use it all the time. For myself personally, most of the time I don't have any cash in my wallet\u2014I don't need it. You think about that transition over the past five or 10 years\u2014it's been massive! You really don't need cash to do anything in the economy now. On top of that, you benefit from a theme of e-commerce. Obviously if you're buying something on Amazon or some other website, you can't pay with cash. And so, by default, you have to use a credit card and that helps MasterCard and Visa even more. The more transactions the better it is for Visa, MasterCard. Absolutely! So they get a little\u2014they clip a little bit of each transaction. It's not a huge amount: probably twenty cents on a $100 transaction, so not a huge amount of money. But when you think about the billions of transactions that happen every day in the world\u2014that's a good thing for them. And you think about even the number of transactions when you're buying lunch, or you're paying for parking\u2026all these small transactions are just a big benefit for MasterCard. Okay, so why trim it? If it's that great a business model, the outlook looks good\u2026everybody's going electronic, it's going to"}, {"title": "rpj-common-crawl-2022-05", "text": "card that I have used for years. It includes VISA access, but as a debit card the sum is debited immediately, like normal ATM cards. The accompanying brochure told me to always select \u201cCredit\u201d when paying unless I wanted cash paid out. What's wrong with that? Many vendors charge extra for credit. And I don't want cash out. Called up ALDI, who confirmed that they would charge extra even for debit cards. Called up ANZ and spoke to Josh, who told me it would not cost anything more. When I told him about ALDI, he finally told me that yes, I could still pay with \u201cSavings\u201d. Asked to speak to his supervisor\u2014why do I have to do that so often?\u2014and spoke to David, who explained why the documentation told me to use \u201cCredit\u201d: Because of the \u201cFalcon\u201d, a brand name which he pronounces the American way, /\u02c8f\u00e6lk\u0259n/, and not /\u02c8f\u0254\u02d0lk\u0259n/. It seems that this bird gives me additional protection against fraud. I told him I hoped it would work better than \u201cVerified by Visa\u201d. He laughed and said yes, much better. So it seems that even in ANZ they know and accept how bad VBV is. But what's the point? I have a credit card. The /\u02c8f\u00e6lk\u0259n/ protects me there too. And I don't have to pay immediately. And why is the documentation so bad? On reading the details on the web, it seems that I now have to inform ANZ when I am travelling overseas, or my credit card may be blocked. Nothing about that"}, {"title": "rpj-c4", "text": "Merits and Demerits of Plastic Money Based on Experiences of Peoples . \"plastic\" portion of this term refers to the plastic construction of credit cards,. I've got a school project in which I have to study merits and demerits of plastic money based on experiences of people. Actually I don't have anyone with whom I. Advantages of a Credit Card. Credit cards bring in easy cash at your disposal even when your wallet runs out of cash. It comes handy specially when you are. 12 Apr 2014 . 1 | P a g e CHAPTER 1 PLASTIC MONEY Concept of plastic money . Merits and Demerits to Customer: Merits o Convenience o Allows a short. 24 Jul 2015 . Ch.1 Introduction Plastic money or polymer money, made out of plastic . card can be defined as \u201cA small plastic card that ADVANTAGES ... Experts make more money and get more media attention and that's free advertising! There are several advantages of plastic money as seen in the above illustration. . But this means once you lose your wallet you lose everything. So here the. Hire the top Merits demerits plastic money based experience people introduction . Meaning/Definition Needs Types Evolution Of Money Merits And Demerits . 7 Apr 2013 . The term \"plastic money\" can refer to plastic credit cards, debit cards and . The perpetrators take the advantage of the newly emerged issues, as a result .. legal system and the perpetrators escaped Scott free increasing the. Home \u00bb History of Money \u00bb Demerits of"}, {"title": "rpj-c4", "text": "There's evidence that using cash instead of credit can help consumers cut spending, but it can be hard to put this bit of financial wisdom into practice. After all, credit cards are more convenient than cash, and using them affords some benefits and protections cash can't provide. But a new study by the Urban Institute and D2D Fund offers a middle ground that consumers might find more realistic: Use cash for anything under $20. The study's organizers sent thousands of credit union customers regular reminders that they should use cash for purchases costing less than $20. Those who received the reminders had $104 less in revolving debt, on average, at the end of the study, amounting to a 2% drop from their baseline average. Here are some of the reasons you should try this simple tip if your savings could use a shot in the arm. It's simply easier to swipe a credit card than it is to pay with cash, because you aren't parting with anything tangible. One recent study even found that when \"tightwads\" were forced to pay for certain food items with credit cards, their spending loosened so much that it approached the credit card spending of \"spendthrifts,\" who are more likely to overspend to begin with. High credit limits can make a small purchase seem like a drop in the bucket. After all, it's easier to think of a $10 lunch as a trifling expense when it's charged on a credit card with a $3,000 limit instead of using half of a"}, {"title": "rpj-common-crawl-2019-30", "text": "now to set yourself up for financial success. 1. Carry cash, not cards Mom left you the \u201cemergency\u201d credit card? Keep it in the back of your wallet, where you\u2019re less likely to reach for it. In studies, using cash is associated with spending less and making more thoughtful (and healthier) purchases. Paying with credit and debit cards makes us spend more We\u2019re more likely to buy something if we\u2019re paying with a plastic card than if we\u2019re paying with cash, says a 2012 study in the Journal of Consumer Research. That\u2019s because handing over cash gives us a painful emotional jolt, while paying with plastic is just too comfortable, according to a study in the Journal of Experimental Psychology. Paying with credit cards is associated with less healthy food choices. A 2011 study of shopping behavior found that shoppers using credit or debit cards picked up more food items that were considered unhealthy. When we encounter cookies, cakes, and pies\u2014and when we\u2019re paying with a card\u2014we\u2019re more likely to fall victim to our impulses (Journal of Consumer Research). When you do need to use plastic, set up transaction notifications on your budgeting app (such as Mint) so that you\u2019ll be alerted when you\u2019ve reached or exceeded your budget. This could help you be more realistic about your spending. 2. Watch your bank fees Be aware of bank charges for overdrafts, insufficient funds, and ATM withdrawals. Set up alerts for when you\u2019re approaching a low balance. How do small charges get so big? Often, overdrafts are"}, {"title": "rpj-c4", "text": "for plastic money. You do not have to worry when someone runs away with your wallet, as long as you only have plastic money in it. The guy needs, PIN number to use it hence he can't take the cash or swipe it. As soon as you know that you are pickpocketed, you can call the bank and ask them to block or cancel the card. If it was actual cash in its place, then it is easy for the thief. He can easily take the cash and throw the wallet somewhere. But with plastic money, his job has become a difficult one. He needs to know cracking techniques to find the PIN number to use the cards. Hence worries associated with theft will be less in case of plastic money. Another merit is that the fingerprints on a plastic card are more clear than that on bank notes. Provides credit facility: How about having a card that provides you a credit facility? That sounds good right? With the advent of credit cards you can purchase anything today and you are given sufficient time to pay for it. Only with plastic money, you avail this credit facility. The advantage of having this facility is that you need not go behind people to borrow money in case of emergencies, instead, you can use the card in your hand. Also, you get ample amount of time to repay the amount. It is like a best buddy who helps you in case of financial needs. Purchase today and pay"}, {"title": "rpj-c4", "text": "have made a purchase and when at the counter you realize that your card is damaged or when trying to swipe, the transaction is not getting proceed due to some chip error or damage. You will definitely wish if you had some cash in hand. These cases occur only when plastic money is used. It might be a rare case but the possibility cannot be completely ignored. Interest, for non payment: A credit card allows you to purchase today and pay for at a later period of time. It gives you a credit period, but if we fail to make the payment within the due date, interest will be charged. When we are using cash, we are not taking any credit from the bank, hence non-payment does not occur. We are living in a world where almost every other person holds plastic money along with cash. But we should know the advantages and disadvantages of it in order to use the plastic money efficiently. It is true that at times plastic money is of great help but we should admit that it is not the case always. One should be wise when using plastic money or cash. Whatever it is, money has value and we should not fall a victim for thefts be it online or not."}, {"title": "rpj-c4", "text": "have made a purchase and when at the counter you realize that your card is damaged or when trying to swipe, the transaction is not getting proceed due to some chip error or damage. You will definitely wish if you had some cash in hand. These cases occur only when plastic money is used. It might be a rare case but the possibility cannot be completely ignored. Interest, for non payment: A credit card allows you to purchase today and pay for at a later period of time. It gives you a credit period, but if we fail to make the payment within the due date, interest will be charged. When we are using cash, we are not taking any credit from the bank, hence non-payment does not occur. We are living in a world where almost every other person holds plastic money along with cash. But we should know the advantages and disadvantages of it in order to use the plastic money efficiently. It is true that at times plastic money is of great help but we should admit that it is not the case always. One should be wise when using plastic money or cash. Whatever it is, money has value and we should not fall a victim for thefts be it online or not."}, {"title": "rpj-c4", "text": "a credit card rather than cash. In fact, they found that people were willing to pay up to 100 percent more with plastic. So have I thrown a net too widely in arguing that we are all suckers, even those of us who faithfully pay off our bills every month? Nope. Net tossed just right. You have to admire the marketing might of credit card issuers. They have done an outstanding job in persuading otherwise smart people that using plastic can come with no price. Oh, there is a cost. You may be able to bear it, but there is an extra cost."}, {"title": "rpj-c4", "text": "a credit card rather than cash. In fact, they found that people were willing to pay up to 100 percent more with plastic. So have I thrown a net too widely in arguing that we are all suckers, even those of us who faithfully pay off our bills every month? Nope. Net tossed just right. You have to admire the marketing might of credit card issuers. They have done an outstanding job in persuading otherwise smart people that using plastic can come with no price. Oh, there is a cost. You may be able to bear it, but there is an extra cost."}, {"title": "rpj-common-crawl-2022-05", "text": "BrandIndex's consumer perception research on credit card companies appears in Adweek and Mediapost Visa Says Plastic Beats Paper The new work claims, 'More people go with Visa' NEW YORK The No. 1 brand of credit card, Visa, has a new take on using plastic. In a global campaign breaking March 4, Visa tells consumers credit cards aren't about spending more money. Rather, \"More people go with Visa\" touts plastic as a better way to spend than paper cash and checks. The campaign, created by TBWA, plays up the security, control and convenience of using a Visa card. The first two U.S. ads, \"Let's Go\" and \"Aquarium,\" will debut on American Idol on Wednesday. In the coming weeks, print ads will flag the benefits of the Visa Check Card. Visa also launched microsite Visa.com/go. It invites consumers to submit pictures and provide recommendations about different experiences to try along with offers from various merchants. \"Visa gives people the ability to take action, the actions that are most important to them,\" said Visa CMO Antonio Lucio in a statement. \"The 'More people go with Visa' campaign is an invitation to make the most out of life every day, a powerful message. It's not about spending more, it's about using Visa for those things that are important to you every day.\" The campaign is meant to be optimistic \"yet grounded in the reality that people are seeking to live both in the moment and within their means,\" per the company. Visa is also touting its range of payment product"}, {"title": "rpj-c4", "text": "What could be lovelier than to go shopping with a good sum in our wallet? Though the revolution of plastic money has made things go easy the bliss of spending money in the form of cash prevails. Debit and credit cards are handy to use all the time, even when it comes to carrying them along. We need not keep an account of our money all the time in case of using online transaction as they are done automatically and we get the results in a text message within a fraction of a second. Sweden has converted almost 98% of its transactions into digital ones and stands tall pioneering the go cashless revolution. Other the other hand America, which has all the power to go cashless, still hesitates without trust. We a can go without cash and swipe a credit or a debit card in a supermarket orat any other bigger place, but what can be done when it comes to smaller transaction? Every other shop, along the lane cannot be expected to have the option to swipe a card right? Cash alone can stand in these situations. Petty transactions with people who do small business has nothing to do with these go cashless ideas until things go completely digital. In the U.S small businesses hardly goes for plastic money. \u201cCash only\u201d signs at most of the corner shops in the place are a proof. While using credit cards around 3% of the amount paid gets charged as fee. When we cumulate all these fees it"}, {"title": "rpj-c4", "text": "We're all humans, and thus, all creatures of habit, which has a big effect on how we spend money and what we spend it on. Knowing the science and psychology behind what makes us spend money the way we do can help us control those habits that are keeping us from a better financial future. It seems like common sense to anyone who has ever made the jump from paper cash to plastic cards, but when we swipe, we tend to spend more. An MIT study proves it. There is now scientific evidence to suggest that credit cards can make us spend more. In the study, participants were offered the opportunity to buy sought-after tickets to a basketball game. Some participants were only allowed to use cash or debit cards to make the purchase, while others were only allowed credit. What the study found is that people were willing to pay almost twice as much when using credit as they would if restricted to using only cash. It's possible that in the age of electronic money, we have become conditioned to react this way when certain stimuli appear. We all know it can be painful to part with cash, but a University of Toronto study says this also makes us grow more attached to the stuff that we buy. In the study, participants were offered a chance to buy limited edition mugs. The researchers then attempted to purchase the mugs back. What was found is that those who purchased their mug using cash ask for a"}, {"title": "rpj-c4", "text": "We're all humans, and thus, all creatures of habit, which has a big effect on how we spend money and what we spend it on. Knowing the science and psychology behind what makes us spend money the way we do can help us control those habits that are keeping us from a better financial future. It seems like common sense to anyone who has ever made the jump from paper cash to plastic cards, but when we swipe, we tend to spend more. An MIT study proves it. There is now scientific evidence to suggest that credit cards can make us spend more. In the study, participants were offered the opportunity to buy sought-after tickets to a basketball game. Some participants were only allowed to use cash or debit cards to make the purchase, while others were only allowed credit. What the study found is that people were willing to pay almost twice as much when using credit as they would if restricted to using only cash. It's possible that in the age of electronic money, we have become conditioned to react this way when certain stimuli appear. We all know it can be painful to part with cash, but a University of Toronto study says this also makes us grow more attached to the stuff that we buy. In the study, participants were offered a chance to buy limited edition mugs. The researchers then attempted to purchase the mugs back. What was found is that those who purchased their mug using cash ask for a"}, {"title": "rpj-c4", "text": "purge the plastic. Cancel overdraft protection. Call the credit card company and put a cap on your spending limit. (DO NOT allow them to just automatically increase your available balance). Get in the habit of NOT using plastic! Once you have purged the plastic, its time to set up your cash envelope. I STILL use one for gas and one for grocery. On occasion, I will use one for a \u201cbig box store\u201d shopping trip. From time to time, I swipe the debit card for gas and grocery but I mostly use the envelope. This helps keep me IN the habit of staying on budget and avoiding impulse buys. Get in the habit of USING cash! 4. Answer the questions \u2013 WHY? WHY do you want to make the change? Answer that and WRITE IT DOWN, in pen, pencil, crayon, marker, highlighter, etc. Write it ON PAPER. Then, attach a feeling to that answer. How will it make you feel once you change a habit? The answer MUST have a feeling attached to it. Emotions are powerful. Is the group of people you hang out a detriment to you changing habits? Don\u2019t just \u201cditch\u201d those friends, but add in new friends who ALREADY have the habits you are trying to create. They will be your cheerleaders, your advisers and your inspiration for making the change! You can find people in IRL (in real life) or in online communities. What habit are you going to work on changing TODAY? You can do it! Do you need some"}, {"title": "rpj-common-crawl-2021-04", "text": "I just swipe my plastic library card. When I park at a parking meter, I swipe my debit card. When I get gas in the car, I use my plastic gas card. When I came here to the hospital, I just showed my plastic health insurance card. Does anyone use cash anymore?\" So we talked about that for a while. \"There are plenty of places that don't even want cash because a card is faster. Besides, my experience is that many cashiers don't know how to make change. For example, if my total comes to $3.92, I usually give four $1 bills plus two pennies and expect the cashier to give me a dime back. It's amazing how many clerks hand back the two pennies, telling me that I've given too much, and then proceed to give me 8 cents change.\" \"Yep, it's a plastic world,\" Ellie confirmed. \"You don't find purses loaded with two $1 bills very often like this one.\" She held out her purse, pointing for me to follow out the hospital room door. \"We could go on a spending spree!\" she added. [Nancy Linenkugel is a Sylvania Franciscan sister and chair of the department of Health Services Administration at Xavier University, Cincinnati.] The game is afoot with these chain jokes It was Mom's bag Timeless treasure R\u00e9sum\u00e9 builders No Chinglish here Spirituality | It's a plastic world Virtual Mass as the real presence of Christ amid pandemic Hold nothing of yourself back He has had a year Sisters in quarantine observe Holy"}, {"title": "rpj-c4", "text": "with a credit card, or the money management inherent to a debit card. Pick your plastic! Learn more in our Question of the Week."}, {"title": "rpj-c4", "text": "later, isn't that a benefit you are getting? This factor is one of the main reasons why people are attracted towards credit cards. Tracking transactions becomes easy: Having a track of your daily or monthly transactions is always good. By using the plastic money you are automatically keeping a track of all your transactions. You can verify it later if required. When we are using bank notes, we might forget later for what we spend it, unless you have the habit of noting down every cash transaction you make. This is not the case with plastic cards. The banks normally send the statement of debit or credit card to its customers on a monthly basis which will have the list of all your transactions for that particular month. This transaction history might help us at times when we misplace a bill. We can show the transaction details to prove that we have made a purchase. Also, for us to have a check of our expenses or any particular transaction made in the past, these statements are useful. 0% Installment options: Certain credit cards provide its customers the facility to convert their purchases from selected outlets to installment options of 3, 6 or 12 months at 0% interest rate. The customer is given the option to select the period of installment which cannot be changed later. If you have selected 6 months installment plan and paid it off within 5 months, then you will have to pay an extra fee. Therefore, be careful and pay only according"}, {"title": "rpj-c4", "text": "Is internationally acceptable: One of the main advantages of plastic money is that the same card can be used locally as well as internationally. For example, you can get rid of the hassle of converting the cash into the currency of the country you are planning to travel. If you have an international debit or credit card, you can make your purchases with that card itself. So the problem of running out of cash will not happen even if you are abroad and that helps you to have a safe journey without worrying about the cash and budget. Sometimes we end up not buying something that we actually like due to insufficient cash but when you have a credit card with you, you can always purchase it and pay later. Especially from abroad as it is not practically possible to visit the country again to buy stuff. Like everything, plastic money also has its own merits and demerits. We should wisely use it keeping all the below points in mind. If you are clever, you can make use of the cards but not everyone can be clever. So for those who are not well aware of the cards and its disadvantages should always be careful to avoid themselves being in trouble. Many people play with cards and might not end up paying a single penny as interest. Never follow them as not everyone is smart with cards and we might end up losing money. Just plastic money won't help always: Plastic money is not a complete"}, {"title": "rpj-common-crawl-2023-06", "text": "come in second, with 37% of people having difficulty paying their utility bills before their troubleshooting. To cope with the situation, many households resort to quick loans, such as My Quick Loan, which is a wise and practical way to solve short term financial problems. Getting a loan is not the only way for citizens to cope in UK. As of January 2021, 62.8 million credit cards were in use on the continent. Store cards are also a popular choice, which are specialty credit cards for specific businesses. These plastic cards also carry an interest rate risk if the cardholders are unable to repay them. Yet the interest on a credit card is often much lower than that on a payday loan. This is why so many citizens choose to use plastic cards to bridge the gap in their regular income. Citizens can also use credit cards to purchase goods anywhere, including online or over the phone. Resources for dealing with financial stress Financial strains cause a lot of stress. It can cause mental health issues such as anxiety and depression. Alcohol consumption also increases as money tightens. The NHS UK and Citizens Advice are exemplary resources for concerned citizens. Both websites have straightforward suggestions for dealing with financial worries. They also provide resources to find a job and deal with debt. While millions of people struggle with finances in the UK, the help is out there. More and more people are using payday loans, credit cards and other methods to allay their money worries. Still,"}, {"title": "rpj-c4", "text": "carrying it. And you'll be kinder to small businesses by paying with cash, as they won't have to pay merchant fees to the charge-card company if you don't pay with plastic."}, {"title": "rpj-common-crawl-2019-30", "text": "the implications of these new payment systems will be for consumers. \"There are shorter product life cycles and if consumers are feeling less connected to the products they're already buying, just add easier access to credit and higher consumer debt levels and it's a toxic combination,\" says Shah. There's been some positive systems in the marketplace that Shah points to as helpful to consumers including the recent Interac commercials extolling the virtue of cash over credit, and even mobile apps that remind consumers of when a purchase has been made on their account. \"These should be encouraged because they can help consumers more careful, deliberate and meaningful purchases,\" she says. The study is available online and published in the current edition of the Journal of Consumer Research. Payment methods affect consumers' perceptions of products Journal information: Journal of Consumer Research Provided by University of Toronto Citation: Paper or plastic? The way we pay influences how much we value our purchase (2016, July 7) retrieved 17 July 2019 from https://phys.org/news/2016-07-paper-plastic.html Do consumers purchase interesting products with credit and boring products with cash? People buy more junk food when using plastic Cash is healthier? Credit and debit increase impulsive food purchases Netclearance seeks foothold in mobile payments Wal-Mart offers online shoppers a \"cash\" option New model forecasts anomalous growth patterns for substitutive products and behaviors Fairtrade benefits rural workers in Africa, but not the poorest of the poor Government-funded research increasingly fuels innovation The dark side of personality Performance improves when the enemy of an enemy is a"}, {"title": "bm25", "text": "I just swipe my plastic library card. When I park at a parking meter, I swipe my debit card. When I get gas in the car, I use my plastic gas card. When I came here to the hospital, I just showed my plastic health insurance card. Does anyone use cash anymore?\" So we talked about that for a while. \"There are plenty of places that don't even want cash because a card is faster. Besides, my experience is that many cashiers don't know how to make change. For example, if my total comes to $3.92, I usually give four $1 bills plus two pennies and expect the cashier to give me a dime back. It's amazing how many clerks hand back the two pennies, telling me that I've given too much, and then proceed to give me 8 cents change.\" \"Yep, it's a plastic world,\" Ellie confirmed. \"You don't find purses loaded with two $1 bills very often like this one.\" She held out her purse, pointing for me to follow out the hospital room door. \"We could go on a spending spree!\" she added. [Nancy Linenkugel is a Sylvania Franciscan sister and chair of the department of Health Services Administration at Xavier University, Cincinnati.] The game is afoot with these chain jokes It was Mom's bag Timeless treasure R\u00e9sum\u00e9 builders No Chinglish here Spirituality | It's a plastic world Virtual Mass as the real presence of Christ amid pandemic Hold nothing of yourself back He has had a year Sisters in quarantine observe Holy"}, {"title": "bm25", "text": "campus, the card can be swiped at the bookstore, the library and the cafeteria. Since it bears a MasterCard logo, it can also be used off-campus, such as the local mall or when studying abroad. It is not a credit card, so students cannot run up a debt, but they may learn soon to budget. \u201cIt\u2019s a tool that will help them to manage their finances and teach them a little bit more about financial literacy,\u201d says Lieto. Of course, plastic does come with some pitfalls. For one thing, people do not tend to be as conscious of their spending as they are when they are using cold hard cash. \u201cI don\u2019t really think of it as money. I just kind of blindly swipe my card,\u201d says Pace student Alexandria Tribble. In addition, consumer advocates from New York Public Interest Research Group say students are being hit with an array of fees that chip away the value of their student loan. \u201cIf you use the card and you swipe it and choose to use debit instead of credit, you\u2019re charged 50 cents. If you use an outside bank and you withdraw money, it\u2019s $2.50,\u201d says NYPIRG campus supervisor Megan Ahearn. There is also an abandon account fee of up to $19 after nine months of inactivity. Higher One points out that to date, only 1 percent of the 4.8 million students they serve have been subject to this penalty, and say the other charges are either avoidable or common in the banking industry. Still, with more"}, {"title": "bm25", "text": "(money) in case they lend to bad people who can\u2019t afford to repay. ### Payments In the future, people will rely less and less on cash. This is because paying for things in cash, is expensive and keeps poor people, poor. Banks around the world have to abide by global trends and help people to adapt to new environment. So they provide debit and credit cards to help you pay for things in shops or online. When you use a card to buy, say, food, the money is transferred from your bank account to the bank account of the shop. Exactly the same thing happens when you pay for things using your debit or credit card online. If these payments stopped working, then the entire economy would grind to a halt. This is why the Bank of Zambia oversees these payments, to make sure they operate smoothly every day. You can also follow us on Facebook & Twitter, or reach us at: hello@ilovezazu.com"}, {"title": "bm25", "text": "especially true for the points/rewards/cashback credit cards. The credit card companies actually charge the stores for these freebies. Logically, the credit card companies should be paying the stores for allowing their credit cards to be used, because it is these very stores that help the credit card user fall into debt. Card swiping machines are not free and usually come with a separate monthly bill. The man who shagged the IRS, Sagar Thakkar, alias Shaggy. He was making up to $100,000 a day until the IRS, in collaboration with the Indian Government, crashed the party. While what he did was criminal, the story also highlights how Americans have become conditioned to opening their wallets for the IRS, no questions asked. For India, this becomes an even worse idea India currently lacks the infrastructure for a cashless society, with the exception of some urban areas. Where infrastructure does exist, Electricity and Internet outages are the norm. India faces an existential threat of war. An attack on Critical Electrical installations and Internet Relay Centers can completely shut down economic activity if a sizeable portion of Indian Society goes cashless. Most Indians are illiterate. Going cashless makes them even more vulnerable to fraud. I have seen poor old people in ATM queues, who have their PINS written down on their ATM cards, and who would not mind somebody else helping them input the numbers. This is why Indian ATMs, unlike Western ones, also feature a guard who is on 24 hour duty. Going online in rural India means sitting"}, {"title": "bm25", "text": "purge the plastic. Cancel overdraft protection. Call the credit card company and put a cap on your spending limit. (DO NOT allow them to just automatically increase your available balance). Get in the habit of NOT using plastic! Once you have purged the plastic, its time to set up your cash envelope. I STILL use one for gas and one for grocery. On occasion, I will use one for a \u201cbig box store\u201d shopping trip. From time to time, I swipe the debit card for gas and grocery but I mostly use the envelope. This helps keep me IN the habit of staying on budget and avoiding impulse buys. Get in the habit of USING cash! 4. Answer the questions \u2013 WHY? WHY do you want to make the change? Answer that and WRITE IT DOWN, in pen, pencil, crayon, marker, highlighter, etc. Write it ON PAPER. Then, attach a feeling to that answer. How will it make you feel once you change a habit? The answer MUST have a feeling attached to it. Emotions are powerful. Is the group of people you hang out a detriment to you changing habits? Don\u2019t just \u201cditch\u201d those friends, but add in new friends who ALREADY have the habits you are trying to create. They will be your cheerleaders, your advisers and your inspiration for making the change! You can find people in IRL (in real life) or in online communities. What habit are you going to work on changing TODAY? You can do it! Do you need some"}, {"title": "bm25", "text": "amount of cash in the correspondingly addressed envelope. When your entertainment cash is gone you can't swipe a debit or credit card. If you've nearly spent the cash in your gasoline folder, you avoid taking that last-minute excursion out of town. How does the envelope system cut your monthly expenses? By erasing the illusion created by that plastic in your wallet that there's always a little extra that can be spent. An envelope doesn't have an expanding and tempting credit limit. When it's empty, it's empty. That Stings! People who pay with cash say there's a psychological incentive to spend less. Handing over the actual money you earned is tougher than swiping a debit or credit card. In fact, some say it hurts to take that money out of a purse or wallet and say goodbye to it. Paying with cash, you're more likely to make a smaller purchase or skip it altogether [source: Ramsey]. 3: Consider Before You Order You're organized and you have discipline -- now you want to find ways to get the most bang for your limited buck. You could avoid eating out altogether, but that provides an opportunity for you to socialize with friends and family. So, what do you do? You certainly don't need to go hungry. Portion sizes are increasing at restaurants. Often, you'll get more food than you could ever eat. Consider ordering a la carte. For instance, rather than getting the three enchilada, two taco combo with a side of beans, order a burrito and eat the"}, {"title": "bm25", "text": "Home\u00bbWildLife\u00bbA World Without Animals What if we lived in a world without credit? \u2013 Downside Up By Team Daity Green World December 5, 2022 A World Without Animals No Comments32 Mins Read When was the last time you paid for something in cash? I\u2019ve carried around credit cards for most of my adult life. It\u2019s second nature to just swipe or tap my card and move about my day. And Americans use credit for everything these days. Remember that old MasterCard commercial? Clip from MasterCard Commerical There are some things money can\u2019t buy. For everything else there\u2019s MasterCard. We buy all kinds of things like groceries or gas or movie tickets on credit. But then we also take out loans for big life changing purchases, like a college education or a home mortgage. Good credit scores are a crucial part of the American dream. But what if we couldn\u2019t take out loans? What if we couldn\u2019t buy anything on credit? How would that reshape our lives? I\u2019m Chris Cillizza and you\u2019re listening to the last episode of this season of Downside Up. Thanks so much for listening. Today, we\u2019re examining what our world might look like if we couldn\u2019t buy things on credit. So join me as we turn our financial systems downside up. Before we imagine a world without credit, let\u2019s get on the same page about what credit actually is. I understand the basics of how a credit card works. I go to a store. I swipe a piece of plastic. A bank pays"}, {"title": "bm25", "text": "Why Don\u2019t I Always Have to Sign for Credit Card Purchases? Between deliveries, bank transactions, and contracts large and small, scribbling your John Hancock is practically an everyday event. But have you ever wondered why you sometimes don\u2019t have to sign for a credit card purchase? The answer is a little more complex than you might expect. Before discussing when you need to sign for a credit card purchase and when you don\u2019t, let\u2019s review the reasons you sign for plastic transactions in the first place. The first is identity verification. One of the reasons you\u2019re required to sign the back of your credit card is so that merchants can check the signature on your card to the signature on your receipt. If they don\u2019t match, this is one way to catch a credit card thief. Of course, it\u2019s pretty rare that a store clerk will actually take this step, but it could theoretically happen. The second is to protect all parties involved (you, the merchant, and the credit card company) in the event that a purchase is disputed. For example, if you spot a transaction your credit card statement that you didn\u2019t make, the credit card company can demand a signed receipt from the merchant to prove you it was you who swiped the card. If he can\u2019t, your case is bolstered. But alternatively, if he can, he\u2019s protected from having to refund the cash. Signatures are all well and good, but in today\u2019s world we have a need for speed. The two major credit"}, {"title": "bm25", "text": "Money . It means that J.S. Mill wanted to control money. Now we .. Definition of Money According to Keynesian Economists . Representative Money or Modern Money/Plastic Money/Electronic Money. 28 Nov 2016 . In defining demerit goods we may assume that people are irrational and make . (contraception helps spread STD) and therefore a merit good. 18 Nov 2009 . A debit card is a plastic card that resembles credit card. . Whenever a card holder withdraws money from an ATM or uses the debit card for. introduction - Shodhganga shodhganga.inflibnet.ac.in/./09_chapter%201.Plastic money has certain advantages over traditional money just as paper money . (1998) definition which states that plastic money is an electronic store of. 30 May 2017 . Important points on the benefits and disadvantages of a credit card . Some of the perks of paying with plastic include: A credit card is safer than carrying cash. While there's only a small chance of having lost or stolen cash ... a credit card as a means of payment over a personal loan or leasing options. Reuse is the action or practice of using something again, whether for its original purpose . Reuse has certain potential advantages: .. Sainsbury Ltd have operated a plastic carrier bag cash refund scheme in 1991 - \u201cthe penny back scheme\u201d. 7 Apr 2013 . The term \"plastic money\" can refer to plastic credit cards, debit cards and . The perpetrators take the advantage of the newly emerged issues,. 8 May 2017 . Read the positive and negative effects of plastic"}, {"title": "bm25", "text": "to show for it. Inflation, like old age, is getting the best of me. Bills are being replaced. I mentioned previously that we are being replaced by the credit cards. Yes we bills are a dying breed. In the old days folks would cling so tightly. Since the credit cards have taken the stage folks don\u2019t think quite as much about their spending. They don\u2019t have to give anything up. When you pay with cash, especially a Benjamin, you can feel pain. After the purchase your wallet is physically thinner and you have the feeling that you actually spent money. Credit cards aren\u2019t the same. There is no pain. Your wallet never changes. It really is getting bad. I don\u2019t mean to go on a tangent here but I can\u2019t help but say a bit more because the situation is worsening a bit every day. When the little plastic minions first came on the scene they were a pain for the humans to use. Many companies didn\u2019t accept them. You had to hand the card to the cashier. They took it from you and gave it back. Today you need not hand your card to an attendant. They have shifted control to the user and allow you to swipe your own card. Although subtle, this change further reduces the pain of credit card spending. You are the master and remain in control of your little plastic slave at all times without any cost whatsoever\u2026 until the statement arrives announcing that the roles have been reversed. The"}], "hoverinfo": "text"}, {"x": [-0.048787180334329605, 0.014206307008862495, 0.01806993968784809, 0.07032138109207153, 0.0148856770247221, -0.02317998558282852, 0.00229886407032609, 0.06054679676890373, -0.034434664994478226, 0.05139249935746193, 0.049267590045928955, 0.03574506565928459, 0.043770305812358856, -0.005449550226330757, 0.0148856770247221, -0.04842956364154816, -0.01104960311204195, -0.04431833699345589, -0.06230425834655762], "y": [-0.021322518587112427, -0.013944638893008232, -0.03584907948970795, -0.06731453537940979, 0.0364614874124527, 0.042422592639923096, -0.027216849848628044, -0.056988637894392014, -0.08787562698125839, -0.043119341135025024, -0.050782460719347, -0.00914692971855402, -0.06146520748734474, 0.03710544854402542, 0.0364614874124527, -0.004914768040180206, -0.1367635577917099, -0.0769796371459961, -0.06395865976810455], "mode": "markers", "name": "Cluster 5", "marker": {"size": 8, "color": "rgb(253,180,98)"}, "text": ["Document 20", "Document 41", "Document 70", "Document 78", "Document 81", "Document 106", "Document 156", "Document 325", "Document 363", "Document 375", "Document 452", "Document 477", "Document 490", "Document 607", "Document 858", "Document 862", "Document 1279", "Document 1361", "Document 1408"], "customdata": [{"title": "rpj-common-crawl-2023-06", "text": "plastic materials. Bank cards"}, {"title": "rpj-c4", "text": "kind of neat, you know, these plastic cards. They put your best face forward when they are designed with your logo and corporate \u201clook and feel\u201d. Plastic cards help you access information about your customer through a variety of media: RFID chip, magnetic stripe, barcode or simply just a number printed on the card. Plastic cards can help identify your employees to your customers. They can help identify your customers to your employees, too, for that matter. A plastic card can give you access to your hotel room. Custom printed plastic cards help you surprise a friend with a thoughtful gift. Plastic cards help you expand your business by rewarding your customer or VIP, and showing them how much they are appreciated. Custom gift cards motivate your customer to spend more with your business. CardPrinting.us knows the true value of these cards. Not to be clich\u00e9 about it, they can be priceless. They can be a bridge to more business or access to important areas or information. And the bottom line is - plastic cards can be perceived as important cards, simply because of what they are made of. Your cards need to be done right. They need to be in your hands on time. That\u2019s the bottom line. Tell us what you want to do with your plastic cards, how you want them to work. What you want them to look like. Tell us when you need them. Then let CardPrinting.us work its magic. We can help you with all these goals, and more. Rely"}, {"title": "rpj-c4", "text": "information which include our phone book or stored messages within the inbox. All these plastic playing cards have tested their usefulness in our society these days. Indeed we will finish that such technology can cause an extra at ease and practical manner of doing business. Also, ease of coping with, convenience and portability are large elements in making the plastic card a business solution of preference."}, {"title": "rpj-c4", "text": "You are probably carrying several of these style of cards in your wallet right now. Magnetic strip plastic cards have many uses, from credit cards, ATM cards, loyalty cards, gift cards, membership cards \u2026 the list goes on and on. Most commonly these cards work by being swiped or \u201cread\u201d by a card reader at the point of sale. The data read from the card identifies the holder of the card in the computer database which then makes the information available at the point of sale for the operator . The database can contain account, membership, loyalty or discount information relating to the card holder using the card. There are also specialty magnetic strip cards that actually store information on \u201cdata track\u201d that exist within strip itself for use in a similar way to that described above. Extra design features can be included in your card setup such transparent areas, metallic finishes or embossed characters (again like a credit card). Design features such as highest quality PVC material for the cards construction, exceptional quality four colour print are standard with all our plastic cards. Your graphic artist or marketing team can supply us with the high a quality PDF, PSD or illustrator file of your finished artwork or our in house designers can help you with the finished artwork for small fee. You client will be impressed, you will achieve professional reliability and you\u2019ll never regret your investment in our highest quality magnetic strip plastic business cards. Contact us today to discuss the best possible price"}, {"title": "rpj-c4", "text": "Pvc card are part of our daily life. Most people are carrying atleast one card , whether its their company ID card, their health club card or a driving license . All that you have to do to determine exactly how popular plastic card tend to be is have a look in your wallet or even handbag. you will actually be surprised how little paper is generally found in the modern purse or wallet. Most people work on plastic instead of hard cash and few individuals keeps business card or till slips within their wallets."}, {"title": "rpj-common-crawl-2020-05", "text": "days of the credit card industry there were three more qualities that plastic offered that made it the material of the moment: its cheapness, its associated disposability, and its lightness. It was these three qualities that, in the late 1950s and 1960s, led plastic cards to be mailed, unsolicited, to vast numbers of the US public, often without anything in the way of a credit check. So for example, in a period from around 1966 to 1970 \u2013 until the practice was eventually made illegal \u2013 around 100 million plastic credit cards were mailed, unsolicited, to potential users, in what the president of the Bank of America, Rudolph Peterson, called \u2018the great credit-card race\u2019[4]. These transactional devices had, therefore, partially morphed into marketing devices. The reason for this was that the very act of getting these seemingly insignificant objects into the hands of borrowers really mattered. An experiment conducted by a New York bank in the late 1960s showed that when credit application forms were mailed out, they received responses from only 221, or 0.7 per cent. But when cards were sent directly to 731 recipients, 19 per cent were actively using them within 60 to 90 days.[5] Like many other plastic objects, these unsolicited cards were clearly coded as disposable; they could be thrown away by the recipient. However, the issuer was not only hoping, but banking on the fact, that in many cases they wouldn\u2019t. The expectation was that, after their arrival through the letterbox, these millions of cards would materially endure in US"}, {"title": "rpj-c4", "text": "Smart credit card design and easy carrying. Eco-friendly and no metallic taste. Does not react with food."}, {"title": "rpj-c4", "text": "Keep your Credit/Debit Card and other passes safe and sound in this Silver Credit Card Protector. The small and robust case can easily fit in your pocket or bag allowing it to be quickly found. Inside a set of plastic concertina-style pockets open to reveal spaces for up to six credit or business cards."}, {"title": "rpj-common-crawl-2021-04", "text": "subsequently cured. The glossy back side was printed with a black UV-curable ink that was subsequently cured. A UV-curable coating, such as a clear matte tint base varnish, was applied over the printed layer and was subsequently cured. A polypropylene laminate with adhesive, such as an oriented polypropylene (OPP) 2 mil film, was laminated to both sides of the sheet stock using a belt laminator. An optional magnetic stripe was fed into the belt laminator for laminating to the sheet stock with OPP film. The magnetic stripe did not adhere to the OPP film. However, a combination of primer and surface conditioning, such as an alcohol bath or corona treatment, before printing improved ink adhesion to meet ISO specifications. The card passed ISO environmental requirements for heat and humidity, e.g. no curl was observed. A recyclable plastic card according to the embodiments of the invention can reduce the negative impacts on the environment that standard PVC or styrene cards create. Both waste from the manufacture of such cards and discarded cards can be recycled. The plastic card of the present invention is readily recyclable in that materials are used that have established recycling streams. Further, the materials used to manufacture the plastic cards of the present invention cost less, are less dense, and can be locally supplied. The plastic cards of the present invention meet many of the industry standards, and perform similar to the standard PVC or styrene cards in retail point of sale applications. The plastic cards of the present invention provide further advantages"}, {"title": "rpj-c4", "text": "Keep your Credit/Debit Card and other passes safe and sound in this Purple Credit Card Protector. The small and robust case can easily fit in your pocket or bag allowing it to be quickly found. Inside a set of plastic concertina-style pockets open to reveal spaces for up to six credit or business cards."}, {"title": "rpj-c4", "text": "Keep your Credit/Debit Card and other passes safe and sound in this Blue Credit Card Protector. The small and robust case can easily fit in your pocket or bag allowing it to be quickly found. Inside a set of plastic concertina-style pockets open to reveal spaces for up to six credit or business cards."}, {"title": "rpj-common-crawl-2022-05", "text": "get this straight \u2026 a process that used to take me literally two seconds (dropping the plastic card into the credit card slot on my shredder) now requires me to make a phone call and talk to someone about getting rid of the card? All because it\u2019s made of metal? Many TPG readers likely have multiple metal cards these days. (Photo by Summer Hull/The Points Guy) They\u2019re not special anymore But one of the most important reasons why issuers should get rid of these cards is simple. They are no longer special. When one issuer did it on a single card, it was cool. When another one went metal, it was still a nice Now, metal cards are everywhere. Heck, even my new Capital One Venture Rewards Credit Card \u2014 one that has just a $95 annual fee \u2014 has a metallic glint to it. Will my no-annual-fee Cubs Mastercard be next? I mean, given the team\u2019s brutally mediocre performance thus far in 2021, I guess anything\u2019s worth a shot. But in all seriousness, why are we still doing metal cards when they\u2019ve lost any sort of uniqueness factor? Which reminds me of the common refrain on airline status: \u201cIf everyone\u2019s elite, no one\u2019s elite.\u201d No metal cardholder is \u201celite\u201d anymore \u2014 they\u2019re just one of the crowd. Heavy metal cards are not new, but \u2014 to borrow a quote from the inimitable Ozzy Osbourne \u2014 the proliferation of these cards is \u201cgoing off the rails on a crazy train.\u201d Not only can they be difficult"}, {"title": "rpj-c4", "text": "First-time buyers of plastic cards often have a lot of questions, and that\u2019s totally understandable. There are many, many options to consider with plastic card printing. How should the cards be designed? What\u2019s the best way to track user data? Are security features really necessary? Those are the kinds of things my new clients want to know, and if you\u2019re in the same boat, I hope you find this blog helpful. What is the end use or purpose of the plastic card? That\u2019s the very first question you should ask yourself. To drill down a little, you\u2019ll need to know if you plan to give the cards to members or loyal buyers. Or are you looking for business cards or gift cards to hand out? In order to provide guidance on the best features or options for you, I need to know exactly how the card will be used. So, with a plastic business card, for example, I\u2019m fairly confident there won\u2019t be any need for a magnetic stripe. Conversely, if it\u2019s a gift card, you will need a mag stipe. Will you need to keep track of data, either on purchases and/or on the card holder? You have three main options, depending on the end use of the card: barcodes, magnetic stripes and smart chips. Each one offers a progressively higher level of data security. In some cases, you may want a mag stripe and a barcode. And smart cards require a signficant investment in systems and programming because of the embedded chip, so there"}, {"title": "rpj-c4", "text": "Plastic Reality is a series about the furtive existence of the credit card. The owner can touch their own credit card, but cannot touch the currency, which affords a certain distancing. The invention of the credit made acquiring desires easy for people. Transactions happens in a vague, inaccessible space to the owner of the card. Considering its role as stretchy cash, a plastic card is a perfectly appropriate nickname for a credit card. The word plastic implies flexible, pliable, and fake, and it describes the material of a card. This unique plastic object holds important identification of the owner, and makes so many things possible. But its expiration date exterminates its life. Unlike the nickname, a plastic card\u2019s fate completely fixed and inflexible."}, {"title": "rpj-c4", "text": "Pvc card are part of our daily life. Most people are carrying atleast one card , whether its their company ID card, their health club card or a driving license . All that you have to do to determine exactly how popular plastic card tend to be is have a look in your wallet or even handbag. you will actually be surprised how little paper is generally found in the modern purse or wallet. Most people work on plastic instead of hard cash and few individuals keeps business card or till slips within their wallets."}, {"title": "rpj-c4", "text": "Plastic Cards are a great way to put your business in the lead! They offer thousands of practical and promotional applications with a huge market. Plastics are set to super affordable Trade-Only prices, providing a huge opportunity to perfect your profits with comfortable mark-ups. Plastic Cards are durable and printed on 20PT Plastic Opaque White, Frosted (transparent), and Clear stocks."}, {"title": "bm25", "text": "Bend it like Silicon Flexible Silicon and Plastic Circuits For some years, when I have travelled, my passport has been stowed in my hip pocket. This has worked well (apart from the incident with the cool wash cycle) but did mean that my passport developed a firm curve. Earlier this year I needed a new passport, and when it arrived, there was a firm instruction: \u201cDo not Bend\u201d. This is, presumably, because it has a chip inside, and, as we all know, silicon does not bend. But when you talk to, among others, Gerhard Klink of the Fraunhofer Institute\u2019s \u201cGroup Polytronic Technologies\u201d in Munich, he can show silicon bending. It is easy, really. You start with a standard wafer, build up your circuit on one side, and then remove the back side of the wafer mechanically until you achieve a thickness of less than 25 microns. (The technology for making wafers thinner has been well developed for MEMS sensors and related products.) At this thickness, it is possible to bend silicon easily. Why would you want to? Apparently, the makers of smart cards are looking at this. Many of you in the United States may not be aware that most credit cards in the rest of the world have an integrated chip, and, instead of swiping a magnetic strip through a reader, a transaction involves a conversation between a card reader, the card, and the card user. The card owner enters a PIN (Personal Identification Number), which is checked by the card reader. Chip and PIN"}, {"title": "bm25", "text": "follow the lettering rules detailed above? If the answer is yes, the cards and bag might be authentic. Is the Italian phrase \u2018CERTIFICATO DI AUTENTICIT\u00c0\u2019 centered at the bottom of the envelope? Does the English phrase \u2018AUTHENTICITY CERTIFICATE CARD\u2019 appear directly below? Are they both embossed in all capital letters? If the answers are yes, the cards and bag might be authentic. Are any of the details printed onto the envelope? If the answer is no, the cards and bag might be authentic. The envelope should always be embossed. Touch it to make sure you can feel the indentations. Is the Authenticity Card crafted of high-shine, white plastic, which looks and feels like a credit card? If the answer is yes, the card and bag might be authentic. Is Prada\u2019s coat of arms and rope logo printed on the front of the Authenticity Card? If the answer is yes, the card and bag might be authentic. PRADA, MILANO, and DAL 1913 should be encircled by the Italian royal family\u2019s knotted rope and topped by its coat of arms. Are \u2018Certificato di autenticit\u00e0\u2019 and \u2018Authenticity certificate card\u2019 printed along the bottom of the Authenticity Card? Are the two phrases separated by a bullet point? If the answers are yes, the card and bag might be authentic. Is there a magnetic strip along the back of the Authenticity Card? If the answer is yes, the card and bag might be authentic. Is the bag\u2019s article number (ART), material (MATERIALE), and color (COLORE) printed directly underneath the magnetic strip"}, {"title": "bm25", "text": "top surface. High-pressure laminates consists of laminates \"molded and cured at pressures not lower than 1,000 lb per sq in.(70 kg per cm2) and more commonly in the range of 1,200 to 2,000 lb per sq in. (84 to 140 kg per cm2). Meanwhile, low pressure laminate is defined as \"a plastic laminate molded and cured at pressures in general of 400 pounds per square inch (approximately 27 atmospheres or 2.8 \u00d7 106 pascals). Paper Corrugated fiberboard boxes are examples of laminated structures, where an inner core provides rigidity and strength, and the outer layers provide a smooth surface. A starch based adhesive is usually used. Laminating paper products, such as photographs, can prevent them from becoming creased, faded, water damaged, wrinkled, stained, smudged, abraded, or marked by grease or fingerprints. Photo identification cards and credit cards are almost always laminated with plastic film. Boxes and other containers may be laminated using heat seal layers, extrusion coatings, pressure sensitive adhesives, UV coating, etc. Lamination is also used in sculpture using wood or resin. An example of an artist who used lamination in his work is the American Floyd Shaman. Laminates can be used to add properties to a surface, usually printed paper, that would not have them otherwise, such as with the use of lamination paper. Sheets of vinyl impregnated with ferro-magnetic material can allow portable printed images to bond to magnets, such as for a custom bulletin board or a visual presentation. Specially surfaced plastic sheets can be laminated over a printed image to allow"}], "hoverinfo": "text"}, {"x": [0.07964792102575302, 0.033819202333688736, 0.05447303131222725, 0.1412099152803421, 0.10429801046848297, 0.09303302317857742, 0.08832873404026031, 0.08832873404026031, 0.08774065226316452, 0.022934043779969215, 0.07075188308954239, 0.0299711711704731, 0.0299711711704731, 0.09305256605148315, 0.08895093202590942, 0.05529439076781273, 0.09489608556032181, 0.08566596359014511, 0.0951644703745842, 0.07772333920001984, 0.02174215018749237, 0.11987875401973724, 0.06954415887594223, 0.09355673938989639, 0.10498487949371338, 0.02997094765305519, 0.03793990984559059, 0.09534339606761932, 0.06271891295909882, 0.042613085359334946, 0.06197904050350189, 0.05987892672419548, 0.11565186083316803, 0.06941796094179153], "y": [0.04767776280641556, -0.023092957213521004, 0.001390011515468359, 0.04155294597148895, -0.02556099183857441, -0.020423971116542816, -0.03887317702174187, -0.03887317702174187, -0.052535317838191986, -0.05077417194843292, 0.0006516200373880565, 0.008352602832019329, 0.008352602832019329, -0.05112968012690544, -0.048889484256505966, -0.015628613531589508, -0.027285011485219002, 0.058631837368011475, 0.0042508551850914955, 0.042166996747255325, -0.023869916796684265, 0.023687012493610382, 0.000676348980050534, -0.02325456589460373, -0.007373253349214792, 0.008351147174835205, 0.0005468192975968122, 0.049147386103868484, -0.0400051511824131, 0.02902740240097046, -0.0045492746867239475, -0.08322592079639435, 0.06837370246648788, -0.02194550447165966], "mode": "markers", "name": "Cluster 6", "marker": {"size": 8, "color": "rgb(179,222,105)"}, "text": ["Document 56", "Document 150", "Document 201", "Document 462", "Document 503", "Document 518", "Document 592", "Document 593", "Document 598", "Document 621", "Document 626", "Document 683", "Document 684", "Document 700", "Document 722", "Document 767", "Document 778", "Document 883", "Document 903", "Document 904", "Document 922", "Document 1024", "Document 1054", "Document 1066", "Document 1206", "Document 1252", "Document 1266", "Document 1323", "Document 1335", "Document 1384", "Document 1409", "Document 1430", "Document 1465", "Document 1482"], "customdata": [{"title": "rpj-c4", "text": "get a 3-percent cash back for doing so, you are unlikely to frequent a gas station, which charges you extra for it. But it turns out that there is more to it than that. A new paper from Tamas Briglevics and Oz Shy from the Boston Fed strongly suggests that offering a cash and, especially, a debit card discount may not even make financial sense for the merchants themselves. Let\u2019s see why. Consider a merchant selling to consumers who spend on average $30 for each transaction. Suppose that the merchant fee on credit card transactions is 2 percent (hence, 60?\u00f3 per average transaction). Suppose that the merchant fee on debit cards is a flat 25?\u00f3 per transaction. Note that the debit card fee does not vary with the value of the transaction. Footnote 10 explains why 25?\u00f3 is a realistic estimate of a debit card merchant fee. Conjecture 1. Because 60?\u00f3 > 25?\u00f3, profit is always enhanced when merchants steer the average customer to pay with debit cards instead of paying with credit cards. Suppose that the 1-percent debit card discount is a sufficient incentive to induce all customers who pay with credit cards to switch to paying with debit cards. Then, the merchant saves 60?\u00f3, which is the credit card merchant fee on a $30 transaction. On the other hand, each consumer who switches from paying with credit to paying with debit increases the merchant cost by 25?\u00f3 per transaction. In addition, the merchant loses 1 percent from the debit card price, which equals 0.01"}, {"title": "rpj-c4", "text": "size. Other retailers questioned about their payment trends say there has been no noticeable move to plastic. At Stanfords and the Whittard and Past Times chains there have been no such changes. It is the same story at the travel specialist Stanfords flagship store in Covent Garden. The store\u2019s January-to-March figures for 2010 and 2011 show plastic is remarkably consistent at between 75% and 77% of total transactions. That is exactly what the BRC is doing, as the big issue is that as the banks and card schemes promote contactless as the more convenient way to pay than cash, the downside for retailers is that the transaction costs attributed to contactless payments (and any other form of plastic payment) are higher than for cash. The 2009 Cost of Payment Collection Surveyfound cash transactions cost an average of 2.1p to process whereas a debit transaction typically costs retailers 8.5p and a credit card is a much higher 33p to process. The cost of retailers accepting prepaid cards varies widely according to BRC policy advisor Richard Braham, who says there are over 270 different levels of charges (interchange fees) on various plastic cards \u2013 the and Visa branded. \u201cRetailers are agnostic about payments. They are not sitting there favouring one method over another. Everything the BRC has done is for fair costs for processing payments. We don\u2019t understand why with a swipe function, where we should be getting more cost efficiencies, we are seeing a rise in fees. And it is non-negotiable and non-accountable,\u201d explains Braham. This is"}, {"title": "rpj-common-crawl-2021-04", "text": "Swiped: Banks, Merchants And Why Washington Doesn't Work For You By Zachary D. Carter and Ryan Grim WASHINGTON -- Charlie Chung runs Cups & Co., a coffee and sandwich shop in the basement of the Russell Senate Office Building. Known on Capitol Hill simply as \u201cCups,\u201d the shop -- a rickety 20-second train ride away from the elevator to the Senate floor -- is always swarmed with lobbyists, staffers and the occasional senator. If customers flash an American Express card to buy a banana, Chung waves them off: \u201cJust take the banana. Don\u2019t give me the card.\u201d Chung has run Cups for about a decade and says that plastic has allowed him to better serve a hurried and harried clientele. But Chung is still routinely frustrated with the card networks -- Visa, MasterCard and American Express -- that dictate the fees storeowners like himself must pay to process credit and debit card transactions. Why charge for a banana when card fees make it a losing proposition? Fees are annoying, Chung says, but not debilitating. \u201cThey\u2019re just like a phone company,\u201d he says. \u201cDelivery surcharge. Paper charge. Equipment charge.\u201d There\u2019s an additional fee for using cards from banks outside his contract, but Chung says he has no way of knowing until he\u2019s gotten his bill how much of that pricier plastic has been swiped. The fees Chung pays are a tiny fraction of Wall Street\u2019s swipe fee windfall; banks take in a combined $48 billion a year from these \u201cinterchange\u201d fees on debit and credit cards, according"}, {"title": "rpj-c4", "text": "credit card. Visa\u2019s rates currently range from 0.800 percent plus 15 cents for a retail swiped Visa Debit CPS to 2.450 percent plus 10 cents for a Visa Debit Keyed Business card. The card issuer then clears the payment to the acquiring bank which also takes a smaller cut for itself. So, for a $100 purchase, for example, the card issuer might take two dollars as the interchange fee when it adds the purchase amount to the cardholder\u2019s bill. And, the acquiring bank might take another fifty cents before passing the remaining $97.50 to the merchant. Ask a credit company what merchants and customers receive in return for the higher product prices and lower merchant profits that the interchange fee produces, and they\u2019ll give a long list of benefit -- most of which relate to the use of credit cards themselves rather than to the fee or its size. Mastercard points out that the interchange fee allows its card owners to make purchases in more than 210 countries, withdraw cash from ATMs around the world, and receive rewards and loyalty points every time they make a purchase. Merchants, Mastercard says, are also able to hold less cash making them smaller targets for criminals, avoid credit losses, provide data processing, and even, the company argues, increase sales and lower the processing costs they would incur if they had to accept payments in checks. Mastercard also points out that it receives no money at all from the interchange fee. Those funds, the company says, are passed from the"}, {"title": "rpj-common-crawl-2021-04", "text": "was an extension of authority to the Federal Reserve to make sure that credit card swipe fees were \u201creasonable.\u201d The swipe fee is the base charge the merchant pays when you buy something by credit or debit card \u2013 you swipe and the merchant pays a base processing fee plus a percentage of the purchase. If you\u2019re buying a flat-screen tv then the percentage, called a discount rate and usually in the 2% range, is the big chunk. If you\u2019re selling gum or slurpees, however, then the approximately $0.30 swipe fee is the big deal. But you as a merchant suck it up and accept it because consumers are paying more and more with plastic even while the credit card companies spend millions to run commercial that portray people paying with cash as slow line-clogging buffoons. However one thing that has stuck in a lot of people\u2019s craws for a long time was the banks continuing to charge swipe fees on debit card purchases that were just as high as the credit cards. They felt that since the bank had instant access to the consumer\u2019s balance and were at a lower risk for fraudulent charges that they should see some decrease in their side of the equation too. Card processors said no thanks, we kinda like this billions-a-year with low-risk thing. Schumer\u2019s Durbin\u2019s amendment was just one more salvo in this war which has included lawsuits and other sabre-rattling. The Fed was now in the business of setting a price and they settled on around $0.21"}, {"title": "rpj-common-crawl-2021-04", "text": "Credit Card Antitrust Settlement \u2013 What It Means If You Use Plastic to Pay Swipe fee refer to the interchange charges assessed for each credit card transaction. According to the Wall Street Journal, swipe fees rate number three behind rent and payroll as the highest business expense. Beginning in 2005 retailers that include Walgreens, Safeway and Kroger started filing lawsuits against Visa, MasterCard and other banks. Retailers filed litigation arguing that a pricing system for credit card swipe fees was non-existent. Therefore, credit card companies and banks, which charged an average transaction fee of 1.5 to 3% percent, charged retailers to pay more than necessary for making credit card service available to customers. Recently, credit cards giants Visa and MasterCard, some big banks and retailers reached a settlement. Filed Antitrust Charges against Credit Cards Companies According to the class action lawsuit filed by seven million U.S. retailers, Visa, MasterCard, Bank of America and JP Morgan Chase engaged in price fixing swipe fees and overcharged merchants billions of dollars in transaction charges. Mallory Duncan, a spokesperson for the US National Retail Federation, said swipe fees for debit and credit cards have increased to $50 billion\u2013 more than three times swipe fees generated a decade ago. Originally scheduled to go to trial in September 2012, the litigants settled the lawsuit with the banks paying $7.25, billion in payment fees and in penalties to the retailers. More importantly, credit card companies and banks eliminated the rule that prohibits retailers from assessing a surcharge on consumers. If you pay with"}, {"title": "rpj-common-crawl-2023-06", "text": "GOP-tied lobbying firm goes on the offensive against swipe fee bill with ad campaign Article by Adriana Nunez | Dec 6, 2022 Credit & Debit The news: The American Free Enterprise Chamber of Commerce\u2014led by prominent Republican figures like former Iowa Gov. Terry Branstad\u2014is pushing back against the Credit Card Competition Act with a seven-figure ad campaign showcasing a world without credit card rewards, which opponents of the bipartisan bill argue would be the end result if it passes. Key context: The Credit Card Competition Act would let merchants route Visa and Mastercard credit card transactions over alternative networks. It would require that credit cards from large banks provide at least two unaffiliated networks to process credit card payments. Sens. Dick Durbin (D-IL) and Roger Marshall (R-KS) introduced the bill in July. Why it\u2019s worth watching: The Credit Card Competition Act has been heavily debated over the last few months. Bill proponents say it could help lower swipe fees for merchants by creating more payment network competition. US merchants paid $77.48 billion in credit card swipe fees last year. Major retailers like Walmart and Target and trade groups like the Merchants Payments Coalition have signaled their support for the bill and other swipe fee initiatives. Meanwhile, bill opponents\u2014which include large banks and payment companies\u2014say it could hurt consumers. Although swipe fees are set by Visa and Mastercard, they primarily go to banks, which use them to fund things like security, innovation, and credit card reward systems. Our take: Small businesses have been a major focus of"}, {"title": "rpj-common-crawl-2023-06", "text": "GOP-tied lobbying firm goes on the offensive against swipe fee bill with ad campaign Article by Adriana Nunez | Dec 6, 2022 Credit & Debit The news: The American Free Enterprise Chamber of Commerce\u2014led by prominent Republican figures like former Iowa Gov. Terry Branstad\u2014is pushing back against the Credit Card Competition Act with a seven-figure ad campaign showcasing a world without credit card rewards, which opponents of the bipartisan bill argue would be the end result if it passes. Key context: The Credit Card Competition Act would let merchants route Visa and Mastercard credit card transactions over alternative networks. It would require that credit cards from large banks provide at least two unaffiliated networks to process credit card payments. Sens. Dick Durbin (D-IL) and Roger Marshall (R-KS) introduced the bill in July. Why it\u2019s worth watching: The Credit Card Competition Act has been heavily debated over the last few months. Bill proponents say it could help lower swipe fees for merchants by creating more payment network competition. US merchants paid $77.48 billion in credit card swipe fees last year. Major retailers like Walmart and Target and trade groups like the Merchants Payments Coalition have signaled their support for the bill and other swipe fee initiatives. Meanwhile, bill opponents\u2014which include large banks and payment companies\u2014say it could hurt consumers. Although swipe fees are set by Visa and Mastercard, they primarily go to banks, which use them to fund things like security, innovation, and credit card reward systems. Our take: Small businesses have been a major focus of"}, {"title": "rpj-c4", "text": "There has been a fight brewing between the financial and retail sectors over the fees associated with swiping your debit card. In that fight, the banking industry managed to deal a blow to the retail industry this week. The Federal Reserve said Wednesday that it will appeal the decision handed down from the U.S. District Court at the end of July, which effectively said that the central bank\u2019s rulemaking had not sufficiently protected the retail industry. The banking industry cheered the Fed\u2019s move to appeal. \u201cThe Federal Reserve\u2019s decision to appeal is the right thing to do for consumers who value debit cards and the financial institutions that serve them. We\u2019re encouraged that all parties have asked for a stay and will seek an expedited appeal, which would avoid the market disruption and consumer harm that other alternatives would cause,\" said Frank Keating, CEO of industry trade group the American Bankers Association, in a statement. At stake in the battle is what is called the \u201cswipe fee,\u201d which is the processing payment a retailer has to make to a bank when a customer pays with plastic. Swipe fees are a critical source of revenue for many banks, but for retailers \u2013 many of whom are already operating on razor-thin margins \u2013 the cost of accepting plastic can take a significant bite out of profits. As part of the sweeping Dodd-Frank Wall Street Reform and Consumer Protection Act passed in 2010, debit-card interchange fees were mandated to be \"reasonable\" and proportional to the costs the card-processing company"}, {"title": "rpj-common-crawl-2023-06", "text": "Tiny Thai Restaurant Snowlights 2023 June 30, 2010 News + Opinion \u00bb Economy Change for the Better? Local Financial Institutions Lament Lower \"Swipe Fees\" By Kevin J. Kelley Published June 30, 2010 at 9:08 a.m. Politics makes strange bedfellows, but it can also produce unlikely adversaries. Consider the current case of Congressman Peter Welch and Vermont\u2019s credit unions, community banks and small retailers. On money matters, these interest groups are often in sync with one another and with Welch\u2019s populist politics. But convergence has given way to conflict over a major component in the financial regulatory reform package expected to become law in the coming week. At issue is the \u201cswipe fee\u201d merchants must pay to financial institutions and to companies such as Visa and MasterCard every time a customer makes a purchase with a debit or credit card. The fee usually ranges between 1 and 2 percent of the sales price, which is enough to erase the profit a mom-and-pop shop might make on, say, a bag of peanuts. \u201cTake out two cents on some small item and you might as well be giving it away,\u201d says Courtney Handy, whose family owns Simon\u2019s convenience store across from Battery Park in Burlington. Welch calls the slice taken by Visa, MasterCard and big banks \u201ca rip-off that has to end.\u201d Action to limit the swipe fee is \u201cso overdue it\u2019s shameful,\u201d adds Vermont\u2019s sole member of the U.S. House. He notes that swipe fees in the United States are among the highest in the world because many"}, {"title": "rpj-c4", "text": "According to research done by Javelin Strategy & Research, consumers are reverting back to cash for small purchases, despite aggressive incentivization by credit card companies to charge. The research shows that 79 percent of consumers utilized paper money in the last week. In contrast, only 65 percent used a debit or credit card. This comes as a relief for vendors that specialize in small purchase items like coffee shops that have weathered the unintended consequences of the Durbin Amendment to the Dodd-Frank Act, which capped debit swipe fees at 21 cents. Previously, merchants would pay a small percentage of the total cost in swipe fees where a $1 cup of coffee would incur a transaction fee of a few cents. But after the Durbin Amendment took effect, banks decided to charge the entire 21 cents for any transaction, including that $1 cup of coffee, which ate into profits. Since merchant are not allowed to pass swipe fees onto the consumer nor can they require minimum purchases, many have been biting the bullet on small purchases, though many still break the rules. Other ways merchant circumvent paying fees is by ditching card transactions all together and install an ATM in their place of business, which some customers take as an insult. Javelin also found 70 percent of consumers believe the banks are actually benefitting from the regulations instead of vendors. This public sentiment most likely arises from highly covered news reports of Bank of America\u2019s proposed $5 monthly debit card usage fee, which was abandoned after public"}, {"title": "rpj-common-crawl-2021-04", "text": "plastic, retailers can now charge you a surcharge, which lessens their costs for swipe charges. According to Anisha Sekar, the vice president of NerdWallet, an online reviewer of financial products, consumers who use methods other than cash, \u201cwhen you shop you\u2019ll be paying for that service.\u201d \u201cEveryone who uses cash has been subsidizing credit-card holders for years,\u201d said Sekar. Costs to Consumers and Small Retailers Duncan said Americans pay more than $427 million a year in swipe fees. Some analysts do not believe retailers will jump at the chance to assess consumers a surcharge. Storeowners who single out credit card users for a \u201cspecial charge\u201d may face consumer backlash in tight economic environments. Other analyst view the situation as going the way of the service station, which have a two-tier system for customers paying with cash and those using by credit cards. Texas, California, New York and seven other states have laws on the books that outlaw surcharges. These states have 42% percent of the current volume that make up transaction surcharges. A specialty storeowner in South L.A., Efrain Lopez says most customers \u201cgo away\u201d when he advises them of a $1 transaction fee. Anisha Sekar believes that consumers will make adjustments by not paying for a service for which they \u201cno longer need,\u201d much like passengers who avoid airline baggage charges by not checking luggage. In addition, Sekar says the timing presents an opportunity for retailers to use their collective strength to bargain with credit card companies and banks for lower transaction fees and pass"}, {"title": "rpj-common-crawl-2021-04", "text": "plastic, retailers can now charge you a surcharge, which lessens their costs for swipe charges. According to Anisha Sekar, the vice president of NerdWallet, an online reviewer of financial products, consumers who use methods other than cash, \u201cwhen you shop you\u2019ll be paying for that service.\u201d \u201cEveryone who uses cash has been subsidizing credit-card holders for years,\u201d said Sekar. Costs to Consumers and Small Retailers Duncan said Americans pay more than $427 million a year in swipe fees. Some analysts do not believe retailers will jump at the chance to assess consumers a surcharge. Storeowners who single out credit card users for a \u201cspecial charge\u201d may face consumer backlash in tight economic environments. Other analyst view the situation as going the way of the service station, which have a two-tier system for customers paying with cash and those using by credit cards. Texas, California, New York and seven other states have laws on the books that outlaw surcharges. These states have 42% percent of the current volume that make up transaction surcharges. A specialty storeowner in South L.A., Efrain Lopez says most customers \u201cgo away\u201d when he advises them of a $1 transaction fee. Anisha Sekar believes that consumers will make adjustments by not paying for a service for which they \u201cno longer need,\u201d much like passengers who avoid airline baggage charges by not checking luggage. In addition, Sekar says the timing presents an opportunity for retailers to use their collective strength to bargain with credit card companies and banks for lower transaction fees and pass"}, {"title": "rpj-common-crawl-2020-05", "text": "to reach a reasonable solution,\" Visa said in a statement. According to the National Retail Federation, roughly 2 percent of all transactions go toward swipe fees."}, {"title": "rpj-common-crawl-2023-06", "text": "By Laura D. Reed on November 23, 2022 Credit card The National Association for Convenience Stores (NACS) is taking on the airways as part of the latest initiative to pressure payment card processors Visa and Mastercard to allow additional networks to process bank card transactions. The group, a member of the Merchants Payments Coalition (MPC), just launched a new ad winking at Visa\u2019s sponsorship of the FIFA World Cup \u2013 calling on the company to refuse to allow competition on swipe fees. The ad depicts a football match taking place in a crowded stadium. As players attempt to score goals, images of credit cards and messages from the ad\u2019s narration appear. \u201cFree market competition \u2013 Main Street businesses do it every day and consumers are the winners,\u201d says a narrator in the ad. \u201cBut what happens when we let credit card companies play by different rules? Americans pay the highest swipe fees in the world, up to 3% or more, or nearly $1,000 $ a year in unfair hidden fees for families. That\u2019s why Main Street businesses and consumers support the Credit Card Competition Act. It takes free market competition to get fair fees. Visa is the Official Payments Technology Partner of FIFA and is actively promoting its participation in this year\u2019s World Cup in Doha, Qatar. \u201cVisa is spending millions of dollars promoting competition in football, even though it refuses to allow competition on swipe fees and how transactions are routed,\u201d said MPC executive committee member Doug Kantor. and general counsel for NACS, in a"}, {"title": "rpj-c4", "text": "credit card companies. \u201cIt\u2019s a good first start,\u201d he said. All the execs did state that any savings they see from the swipe fee reform would be passed along to the consumer."}, {"title": "rpj-common-crawl-2021-04", "text": "more transparency in the pricing.\u201d U.S. District Judge John Gleeson approved the settlement in a written order. Retailers first sued Visa and Mastercard in 2005 over \u201cswipe fees,\u201d also known as interchange fees. Card processors, such as Visa and MasterCard, set swipe-fee rates, but merchants pay banks the fee each time a customer uses plastic. Swipe fees are typically 2 to 5 percent of the purchase price. Merchants have argued that they have limited power to negotiate the amount of the fees, which cost them and their customers about $30 billion a year, according to the National Retail Federation. They have also accused credit card companies of barring them from steering shoppers to cheaper forms of payment. Financial firms contend that they are charging retailers for providing a service that helps their businesses. The government stepped into the fray two years ago, when the Federal Reserve placed caps on swipe fees for debit cards but not credit cards. In July 2012, attorneys representing merchants nationwide reached a $7.2 billion settlement that has since tumbled to $5.7 billion as 8,000 merchants, including Amazon and Wal-Mart, bowed out of the deal. Those dissenters say the deal forces merchants that accept Visa or MasterCard to waive their right to sue the companies over swipe fees. The settlement includes cash payments to merchants across the country. It also allows retailers to charge shoppers extra if they choose to use MasterCard or Visa, a practice known as surcharging. Critics of the deal say retailers are unlikely to take advantage of the"}, {"title": "rpj-c4", "text": "companies involved make their money on delaying your ability to make an immediate purchase and by attaching the rebate to a credit card. Whenever your card is used, the merchant pays the credit card company money.\" Can someone provide me more details/explaination what is meant here? That sentence could be clearer. Credit card companies charge what's called swipe fees to vendors. They get paid two ways - whenever the card is swiped and a total percentage of the transaction. Here's an interesting article on what's been going down lately with CC vendors."}, {"title": "rpj-common-crawl-2020-05", "text": "market was robust and that their swipe fees had caused no obvious damage AmEx\u2019s competitors. The plaintiffs countered by arguing that American Express\u2019 anti-steering provisions stifled competition between credit card networks leading both to higher fees for merchants and, ultimately, higher prices for consumers. Better for Consumers? The issue underlying the dispute is the difference in \u201cswipe fees\u201d charged by the major credit card companies and banks. It is estimated that merchants (and consumers through higher prices) pay more than $50 billion annually in swipe-fees. Swipe fees vary by brand of credit and debit card and by the size and negotiating power of the merchant, but can be as high as 5% of the total. American Express charges higher swipe fees than Visa, MasterCard or Discover Card and small, local businesses, with limited negotiating leverage, are charged the highest rates. Merchants, especially small merchants, clearly would prefer that consumers pay with the method that charges the lowest swipe fee. If they were fully aware of the magnitude and the differences in those swipe fees, consumers probably would choose the lowest cost option as well because, in the end, it all comes back to them in terms of higher prices at check-out. But the Supreme Court sided with American Express by allowing it to continue to bar merchants from \u201csteering\u201d consumers toward credit (and debit) cards that charge lower swipe fees. I have no sympathies for either Visa or MasterCard, as will be explained below, but this decision should give pause to everyone who is really committed"}, {"title": "rpj-c4", "text": "more power when they pay their bills with a credit card.\u0094 What's more, \u0093accepting payments by plastic can be expensive for merchants who must pay fees to the card-issuing financial institutions, buy new equipment and maintain strict security standards,\u0094 the newspaper reports. \u0093While many merchants can pass on some of those costs by incorporating them into the prices of the goods they sell, utilities typically need permission from regulators to raise rates. Those government agencies are unlikely to approve across-the-board rate increases for a service that mightn't appeal to all utility customers.\u0094 To overcome those hurdles, Visa and MasterCard are courting utilities with lower fees."}, {"title": "rpj-common-crawl-2019-30", "text": "an \u201canti-steering provision\u201d that prevented merchants from directing consumers to other credit cards with lower swipe fees (the amount a merchant pays the card) was offset by Amex providing benefits such as travel services (at least to platinum members) and various discount and loyalty reward programs. The court found this consumer benefit offset the cost to merchants of the higher swipe fees (as the dissent observed, the majority did not address the finding of the district court that these higher swipe fees were passed on to consumers in the form of overall higher prices). While Ohio v. Amex dealt with credit cards, folks like Lena Kahn have argued that because digital platforms such as Facebook are also \u201ctwo-sided markets,\u201d this decision will make it extremely difficult to go after digital platforms. As long as the company justifies its conduct by pointing to a consumer benefit, such as giving the product away for free (or selling at a reduced cost in the case of companies like Amazon), it is hard to understand what harm to the folks on the other side of the market will satisfy the consumer welfare standard. Or, in other words, it would appear under Ohio v. Amex that even if a firm like Amazon or Facebook does things to prevent a competitor or extract monopoly rents from the non-consumer side, as long as consumers benefit in some way everything is cool. Others have argued, however, that we should not read Ohio v. Amex as bleakly as this. Since the majority did not address"}, {"title": "bm25", "text": "The younger set is less likely to use a bank check,\" said Reed. \"They have a debit card and sometimes that's all they need.\" Anyone doing research on credit card readers can\u2019t help running into the term \u201cswipe fee,\u201d a broad term for what the credit card company charges vendors when the customer uses plastic instead of cash. Swipe fees include interchange fees, payment processor fees and assessment fees. Each may differ in amount depending on the type of business or credit card used. Every time you swipe, the business (store, gas station, eatery, etc.) pays, and most often it\u2019s Visa or MasterCard that gets paid. For a small business owner with a small profit margin, a 2% swipe fee can take out a big chunk, often the third largest expense after payroll and rent. \u201cThe four big credit card companies, Visa, MasterCard, American Express and Discover, are taking a big piece of the merchant's pie,\u201d said Reed. \u201cThey don't really care how big or small your business is. It's all about the fees.\" Most credit card companies dangle rewards such as \u201ccash back\u201d or \u201ctravel credits\u201d to attract customers. Rewards differ among types of purchases but in the end it\u2019s the business owner who ends up paying the most. So what are businesses doing to offset these fees? Some are giving \u201ccash discounts\u201d or in reality they are charging the customer a fee to offset their own fees. My auto repair guy tacks on an extra 3% if you don\u2019t pay cash. The other day"}, {"title": "bm25", "text": "One way you\u2019re paying credit-card fees, even if you don\u2019t have a card Maria LaMagna The U.K. is banning credit-card \u2018swipe fees\u2019 \u2014 could it happen here? The \u201cswipe\u201d fee might already be built in. The U.K. is breaking up with surprise credit-card fees. The British government announced this month that businesses there will no longer be able to add a surcharge to prices for consumers who want to pay with debit or credit cards, or some forms of digital payment including PayPal. PYPL, -1.43% That includes everything from an extra 50 pence for using plastic for small purchase to theaters that charge a fee for processing your tickets using credit cards. It will go into effect in January 2018. The rule was enacted because it\u2019s been common for certain retailers \u2014 including airlines, food delivery apps and small businesses \u2014 to charge consumers extra for paying by card, according to the BBC. For example, Irish no-frills airline Ryanair RYAAY, +0.81% adds a 2% surcharge to ticket prices when customers paid with credit cards. Thee charges have \u201cno place in a modern Britain,\u201d said Stephen Barclay, the economic secretary to the Treasury, in a release about the news. Because retailers pay these fees to banks, many already raise prices on products to account for them. That means everyone effectively ends up paying these fees \u2014 whether they use plastic or cash. The reason: Merchants don\u2019t want a backlash from customers for explicitly charging a credit-card surcharge, even as they are trying to cover their own costs,"}, {"title": "bm25", "text": "moves forward and the chorus of objections grows.\u201d Hidden Fees Are at the Issue\u2019s Heart \u201cThe underlying issue is that the [payment card] networks use their overwhelming market power to impose unfair rules and outrageous fees on retailers who accept plastic,\u201d said Brian Dodge, a RILA spokesman. \u201cVisa and MasterCard centrally set fees that are ultimately paid by merchants and collected by issuing banks. With two fee schedules imposed by two companies that control 70 percent of the marker there is no meaningful competition.\u201d Interchange or swipe fees can be nearly invisible to some merchants that simply must pay whatever Visa and MasterCard dictate without recourse. According to the NRF, \u201ccombined credit and debit card swipe fees tripled over the past decade to about $50 billion a year \u2013 driving up prices an estimated $427 for the average household \u2013 before [the] debit swipe [fee] was capped by the Federal Reserve last year. Credit card swipe averages about 2 percent of each transaction, and amounts to about $30 billion a year, or $250 per household. Swipe fees are the second or third-highest expense for most retailers, behind employee salaries and health care benefits.\u201d $7.2 Billion Payment is Not the Point The long-standing litigation was supposed to help retailers gain better fee visibility and acquire some means of negotiating both fees and rules with Visa and MasterCard. Instead, the NRF, RILA, and other retail advocate groups believe that the pending settlement exchanges a penitence for maintaining the status quo. The settlement pays merchants just $6 billion in"}, {"title": "bm25", "text": "when the card number is keyed-in or the card is used to make an online purchase. A Quick but Important Digression: It\u2019s Not a \u201cSwipe Fee\u201d Especially when talking about the Durbin debate, people tend to refer to interchange fees as \u201cswipe fees.\u201d Doing so is erroneous at best, and misleading at worst. It confuses the facts for anyone trying to understand how credit card processing fees really work. Regulated debit interchange is capped by the Durbin Amendment for all types of transactions, including those where a card is not actually swiped, such as an online purchase. The term swipe fee is a dangerously oversimplified reference to interchange fees. It\u2019s not a \u201cswipe fee.\u201d It\u2019s an interchange fee. And in fact, many interchange categories regulated by the Durbin Amendment don\u2019t require a card to be swiped. The second part of the Durbin Amendment that receives far less attention than the first, but is quite significant in its own right, is the debit network routing requirement meant to combat network exclusivity. The network routing provision requires all card-issuing banks, regardless of size, to enable routing through at least two unaffiliated networks, and it blocks card networks from restricting which networks an issuer or business may select. If you think that sounds confusing, you\u2019re absolutely right. In my opinion, this provision receives far less attention than the interchange cap because it\u2019s a lot harder to grasp and explain. But that doesn\u2019t make it any less important or impactful. So, what\u2019s the point? Why does freedom to route debit"}, {"title": "bm25", "text": "plastic, retailers can now charge you a surcharge, which lessens their costs for swipe charges. According to Anisha Sekar, the vice president of NerdWallet, an online reviewer of financial products, consumers who use methods other than cash, \u201cwhen you shop you\u2019ll be paying for that service.\u201d \u201cEveryone who uses cash has been subsidizing credit-card holders for years,\u201d said Sekar. Costs to Consumers and Small Retailers Duncan said Americans pay more than $427 million a year in swipe fees. Some analysts do not believe retailers will jump at the chance to assess consumers a surcharge. Storeowners who single out credit card users for a \u201cspecial charge\u201d may face consumer backlash in tight economic environments. Other analyst view the situation as going the way of the service station, which have a two-tier system for customers paying with cash and those using by credit cards. Texas, California, New York and seven other states have laws on the books that outlaw surcharges. These states have 42% percent of the current volume that make up transaction surcharges. A specialty storeowner in South L.A., Efrain Lopez says most customers \u201cgo away\u201d when he advises them of a $1 transaction fee. Anisha Sekar believes that consumers will make adjustments by not paying for a service for which they \u201cno longer need,\u201d much like passengers who avoid airline baggage charges by not checking luggage. In addition, Sekar says the timing presents an opportunity for retailers to use their collective strength to bargain with credit card companies and banks for lower transaction fees and pass"}, {"title": "bm25", "text": "Let your voice be heard 2020 tax headaches No \ud83c\udf7a\ud83c\udf77 but more \ud83d\udcb5 Cut these expenses now Why don't all retailers accept Visa, American Express, Discover, Mastercard credit cards? Matthew Frankel, CFP Grocery giant Kroger recently decided to stop accepting Visa credit cards at its subsidiaries Foods Co. and Smith's Food and Drug, a move designed to pressure the credit card giant into lowering its interchange fees, or \"swipe\" fees. The nation's largest grocery said Friday while the majority of its stores still accept Visa credit cards, it \"continues to explore options\" to reduce \"swipe\" fees paid to credit card companies. Kroger isn't the only retailer that takes issue with certain types ofcredit cards. In fact, millions of retailers don't accept one or more of the four major credit card types for one reason or another. Kroger expands ban:Smith's Food & Drug stores in 7 states soon won't accept Visa What you need to know:Find out if Kroger's Visa ban affects you American Express and Discover: Why aren't they accepted everywhere? American Express and Discover have done a great job of building up their acceptance rates in recent years, but they still don't enjoy the near-universal acceptance of Visa or Mastercard. Why aren't American Express and Discover accepted as much as the other two? Like Kroger's issue with Visa, it comes down to fees. American Express is notorious for charging higher swipe fees than the competition. While the credit card companies are tight-lipped about the specifics of their fees, American Express' swipe fees are roughly 1"}, {"title": "bm25", "text": "retailers pay. Some businesses don't take credit cards at all In general, paying with cash is becoming less and less convenient, especially as companies like Square make it easier than ever for small businesses to accept credit cards. However, there are some holdouts that remain cash-only businesses. This is especially common among independent restaurants. For example, the famous Peter Luger Steak House in Brooklyn, New York, only accepts, cash, checks, debit cards (which have generally lower swipe fees than credit cards) and their own Peter Luger card. Laundromats, vending machines and nail salons are other types of businesses you're likely to encounter that don't take credit cards of any kind. To sum it up, there are two main reasons businesses might choose not to accept a particular type of credit card, or none at all \u2013 fees and partnerships. Swipe fees can take a big bite out of a merchant\u2019s profits, especially in businesses with tight profit margins like restaurants and every percentage point counts. And, by using an exclusive partnership structure, like Costco does, a retailer can potentially cut its acceptance costs even further. The Motley Fool has a disclosure policy. The Motley Fool is a USA TODAY content partner offering financial news, analysis and commentary designed to help people take control of their financial lives. Its content is produced independently of USA TODAY. Offer from the Motley Fool:Offer from The Motley Fool: The 10 best stocks to buy now Motley Fool co-founders Tom and David Gardner have spent more than a decade beating the"}, {"title": "bm25", "text": "and MasterCard settlement could have a significant effect on how the costs of processing credit card payments are paid. The antitrust lawsuit was based on the premise, which was only alleged and not proven, that swipe fees were kept artificially high and, incidentally, hidden from consumers. The settling plaintiffs claim that swipe fees will go down and be more visible to consumers. Depending upon how consumers react to the possibility of paying more for a purchase when they use a credit card, or less when they pay cash, the settlement could initiate a reversal in the consumer trend of recent past decades to substitute plastic and electronic payments for cash. For further information, please contact Christopher J. Bonner at Hiscock & Barclay, LLP. 1It should be remembered that the allegations of the plaintiffs have not been proven or disproven at trial. 2 New York General Business Law, \u00a7 518. Paradoxically, merchants are permitted under New York law to offer a cash discount, as long as the pricing difference is clear and conspicuous and as long as the difference is called a cash discount rather than a surcharge for using a credit card. Click here to sign up for alerts, blog posts, and firm news. Brace for Changes to Patent Assignor Estoppel\u2014Impact on Contractual Provisions About Brace for Changes to Patent Assignor Estoppel\u2014Impact on Contractual Provisions What Employers Can Expect Under the Biden Administration: Employment-Based Immigration in the US About What Employers Can Expect Under the Biden Administration: Employment-Based Immigration in the US NYS Appellate Division Holds"}, {"title": "bm25", "text": "Wells Fargo Debit-Fee Test Could Affect Wallets Everywhere Filed Under:debit card, Dorothy Tucker, Fee, Wells Fargo Well Fargo Bank (CBS) CHICAGO (CBS) \u2014 Debit or credit, it\u2019s become a way of life for many of us. But now some banks want you to pay for the privilege to use the plastic. Wells Fargo becomes the first bank to test-pilot a $3 monthly fee in five states. Illinois is not one of the test states, but consumers here are still reacting to a trend that experts say may sweep the banking industry. Wells Fargo calls the new charge an \u201cactivity fee\u201d that will cover all purchases \u2014 whether the customer says debit or credit or whether the customer uses the card 30 times a month or just once. Cheryl Govia of Chicago uses her debit card every day, several times a day. She is not thrilled at the prospect of paying a fee. \u201cIt\u2019s unacceptable because the banks get enough money off of you, anyway,\u201d she tells CBS 2\u2019s Dorothy Tucker. Govia does not have a Wells Fargo debit card, but she fears that her bank will follow its lead. Experts agree. \u201cAll banks will have their eyes on Wells Fargo \u2014 how much revenue is raised, what kind of fallout there is,\u201d says Bill Hardekopf, CEO of lowCards.com. It\u2019s about offsetting lost revenues. The banks are expected to lose about $8 billion this fall when new regulations reduces the amount they get from retailers, from 44 cents a swipe to 21 cents. Hardekopf says banks may"}, {"title": "bm25", "text": "Credit card \u2018swipe\u2019 fees are 10 times Hollywood box office receipts Michael Hagan \u201cSwipe\u201d fees big banks charge merchants to process credit and debit card transactions totaled nearly $138 billion last year. That\u2019s 10 times North American movie theater box office receipts in pre-pandemic 2019 and 20 times reduced receipts amid COVID-19. Those numbers hit home to those who run theaters. As we struggle to recover after being shut down for much of the pandemic, just one stream of revenue enjoyed by the nation\u2019s megabanks is larger than our entire industry. These outrageously high fees are non-negotiable, and cards can\u2019t be turned down when few people use cash anymore. To paraphrase a famous movie line, banks have made us an offer we can\u2019t refuse. Like other businesses, swipe fees are one of a theater\u2019s highest expenses and, across retail, drove up prices for the average family by $900 last year, according to the Merchants Payments Coalition. As a percentage of the transaction, the fees go up as prices go up, creating a multiplier on inflation. Money that goes to swipe fees means fewer movie tickets Americans can buy to provide families a badly needed escape during these trying times. And that\u2019s to say nothing of how swipe fees drive up the cost of school supplies, holiday gifts and daily necessities. That\u2019s why Kansas Sen. Roger Marshall and Illinois Sen. Richard Durbin have introduced the bipartisan Credit Card Competition Act. Swipe fees have doubled over the past decade and soared 25% in 2021 alone. Sens. Marshall and"}, {"title": "bm25", "text": "Home News National Restaurant Association Continues Strong Objection to Swipe Fee Settlement National Restaurant Association Continues Strong Objection to Swipe Fee Settlement The National Restaurant Association today announced a decision to continue its strenuous objection to a proposed settlement in ongoing litigation over credit card interchange swipe fees. The National Restaurant Association objects to the proposed settlement because it does not fix the broken swipe fee marketplace, severely limits merchants\u2019 ability to challenge unfair card network fees and practices in the future, and could have detrimental impacts on a very tenuous emerging mobile payments market. \u201cWe believe this settlement does not fundamentally change the broken marketplace that the card companies and major banks established, and will allow them to continue to take advantage of merchants and their customers while blocking competition and choice. We hope the court will recognize that the proposed settlement agreement is flawed once it realizes the reaction from the merchant class,\u201d said Dawn Sweeney, President and CEO of the National Restaurant Association. \u201cAs a named class plaintiff in the case, and after careful consideration of the views of our members, the Executive Committee of the Association\u2019s Board of Directors determined that we must continue to carry the message of our strong objections to the proposed settlement agreement on interchange swipe fees,\u201d Sweeney said, adding that the Association will remain in the class as a plaintiff. \u201cIt is imperative that we are able to continue to be a voice for our members and class merchants, which is why the Executive Committee originally decided"}, {"title": "bm25", "text": "percent higher than those of the other major issuers, according to several reports. To be fair, American Express does have a highly desirable cardmember base. Amex cardholders have higher average income and spending than the average Visa or Mastercard user, so in many cases, it's in the merchant's best interest to accept the higher fees. However, many merchants still feel it's not worth it, thus \"Sorry, we don't take American Express\" is still a common refrain. Discover is generally not as expensive as American Express for merchants to accept, but it still generally charges more than Visa or Mastercard, which is why Discover is No. 3 in terms of acceptance. Plus, Discover doesn't offer the benefit of an affluent cardholder base. Another common reason for 'selective' credit card acceptance Swipe fees are the No. 1 reason retailers choose to accept some types of credit cards but not others. Another common reason is for partnership purposes. Costco is by far the biggest example of this, accepting Visa credit cards exclusively. Costco is expected to generate more than $150 billion in revenue during its current fiscal year, which gives it tremendous power to negotiate with the major payment processors \u2013 especially if it's willing to give all of that business to just one company (in this case Visa). The standard swipe fee a merchant pays is in the 2 percent-3 percent range, but reports have put Costco's swipe fees to Visa at around 0.4 percent. Doing the math, this saves Costco billions per year compared to what average"}, {"title": "bm25", "text": "credit and debit cards. But senior Bernstein Research analyst Rod Bourgeois wrote in a July 23 report that retailers would in reality not get much help from the deal in offsetting the swipe fees by charging customers more. \u201cWe think the settlement\u2019s much-touted surcharging provisions (as currently written) actually have no real usefulness to merchants,\u201d he said. Buried in the fine print of the agreement are provisions that undercut the stated intent of the settlement, he said. For example, if retailers force customers to pay more for using Visa and MasterCards, they essentially must charge consumers more when they pay using other credit card networks, such as American Express, according to Bouregois\u2019 analysis of the proposed settlement. But American Express prohibits merchants from implementing policies that discriminate against its cards, like discounts designed to steer customers to different forms of payment, Bourgeois said. The settlement is subject to approval by a federal judge. The surcharge rules will also not apply in the 10 states that prohibit that practice, including Texas, California and New York. \u201cThis situation could undermine the settlement if merchants voice their objections to this provision during fairness hearings prior to the court\u2019s final approval,\u201d Bourgeois wrote. Such objections may open the door for some stores, particularly large ones, to object to the settlement or appeal its approval, he said. Some stores have said they will not impose extra fees for paying with plastic, even if they can. One of the largest U.S. retailers, Target Corp., issued a statement Friday saying it did not"}], "hoverinfo": "text"}, {"x": [-0.005250280257314444, 0.11320433765649796, 0.13138554990291595, 0.09597582370042801, 0.05958283320069313, 0.09414920210838318, 0.14384467899799347, 0.10131842643022537, 0.0737832710146904, 0.06255737692117691, 0.05667360499501228, 0.09848247468471527, 0.06605247408151627, 0.10409640520811081, 0.03405546769499779, 0.040487952530384064, 0.15069065988063812, 0.10735210031270981, 0.017419736832380295, 0.046135250478982925, 0.046135250478982925, 0.1511550098657608, -0.0334005244076252, 0.05737782642245293, 0.08229353278875351, 0.07725290209054947, 0.048683445900678635, 0.0838741883635521, 0.053853586316108704, 0.10019874572753906, 0.05278664827346802, 0.13138554990291595, 0.06000130623579025, 0.06066599488258362, 0.08579590171575546, 0.08233486860990524, 0.024423055350780487, 0.13212087750434875, 0.09138631820678711, 0.15917542576789856, 0.11599233001470566, 0.037784308195114136, 0.13066741824150085, 0.11448363959789276, 0.06642448157072067, 0.09029632061719894, 0.07274463027715683, 0.14935435354709625, 0.11543051153421402, 0.08132286369800568, 0.0737832710146904], "y": [-0.009413450956344604, 0.07178141921758652, -0.06265752017498016, 0.01569480448961258, 0.00907449796795845, 0.05950372293591499, -0.06686142086982727, 0.0013042934006080031, -0.029970556497573853, -0.005082990042865276, 0.06961940973997116, 0.03669540956616402, -0.05790741741657257, 0.11048299074172974, 0.00855883676558733, -0.03871763497591019, 0.003934695851057768, 0.11550389975309372, 0.017414413392543793, 0.011463242582976818, 0.011463242582976818, -0.048460137099027634, 0.02934904582798481, -0.027072859928011894, 0.024352718144655228, -0.06838138401508331, -0.08897407352924347, 0.06020194664597511, 0.023428233340382576, 0.09762358665466309, -0.04321795701980591, -0.06265752017498016, 0.05748022347688675, 0.005333190318197012, -0.03080468252301216, 0.005444510839879513, -0.01286470890045166, -0.073257215321064, 0.06200442835688591, -0.029173536226153374, 0.06024632602930069, 0.03231343999505043, -0.013505814597010612, 0.06446284055709839, -0.07386048883199692, -0.1185869574546814, -0.014678423292934895, -0.0751183032989502, -0.0644502341747284, -0.03766040503978729, -0.029970556497573853], "mode": "markers", "name": "Cluster 7", "marker": {"size": 8, "color": "rgb(252,205,229)"}, "text": ["Document 53", "Document 138", "Document 152", "Document 160", "Document 161", "Document 243", "Document 278", "Document 298", "Document 308", "Document 310", "Document 333", "Document 355", "Document 409", "Document 457", "Document 535", "Document 568", "Document 631", "Document 689", "Document 693", "Document 713", "Document 714", "Document 770", "Document 832", "Document 983", "Document 1010", "Document 1043", "Document 1072", "Document 1088", "Document 1097", "Document 1105", "Document 1149", "Document 1152", "Document 1164", "Document 1170", "Document 1178", "Document 1207", "Document 1212", "Document 1242", "Document 1250", "Document 1251", "Document 1270", "Document 1271", "Document 1274", "Document 1321", "Document 1381", "Document 1382", "Document 1400", "Document 1421", "Document 1436", "Document 1445", "Document 1454"], "customdata": [{"title": "rpj-c4", "text": "Deposit Extention. Companies like Visa, Master Card, Amex and Discover could easily adapt to this service. Credits from reclamation can be used to pay down debt. These companies keep track of an individuals borrowing practises and other public records. Informatiom stored by these agencies directly effect the percentage rate of loans and credit cards. In some states, overdue child support. A registered Swipt Card can be linked to public records. The positive recycling habbits of a holder would yeild greater returns. Individuals who are diligent in rinceing and speration, would have a greater recycle rating. Holders who don't prepare their returns properly would have negative data. Poor rincing, lost caps and cross contamination would be fround upon. A light aluminum bar coading shall be embedded in the the girth of a bottle's bace. Identifing and authenticating a containers oragin and reclaim statuss is nessary. This will prevent fraud and unlawafull fund acreditation to a swipt cart account. Currently carbonated soft drinks are the only containers with a redeemable deposit. These products number in the hundreds and could have refill options. All with the independent swipt card record showing positive habbits. We gather containers in a bag or pail and put them out on the street. They are then collected by privet haulage or local municipalities. In some parts of the country a good amount actually makes it back to industry. However statisics show most of it goes directly to land fills. Large recycling facilities would set the standard and be the gateway between manufacturers and the"}, {"title": "rpj-wikipedia", "text": "a disproportionate effect on the profitability of businesses that have predominantly credit card transactions unless compensated for by raising prices generally. In the United States in 2008 credit card companies collected a total of $48 billion in interchange fees, or an average of $427 per family, with an average fee rate of about 2% per transaction. Credit card rewards result in a total transfer of $1,282 from the average cash payer to the average card payer per year. Benefits to merchants For merchants, card-based purchase amounts reduce resistance compared to paying cash, and the transaction is often more secure than other forms of payment, such as Checks, because the issuing bank commits to pay the merchant the moment the transaction is authorized, regardless of whether the consumer defaults on the credit card payment (except for legitimate disputes, and can result in charges back to the merchant). Cards are even more secure than cash because they reduce theft opportunities by reducing the amount of cash on the premises. Finally, credit cards reduce the back office expense of processing checks/cash and transporting them to the bank. Prior to credit cards, each merchant had to evaluate each customer's credit history before extending credit. That task is now performed by the banks which assume the credit risk. Extra turnover is generated by the fact that the customer can purchase goods and services immediately and is less inhibited by the amount of cash in pocket and the immediate state of the customer's bank balance. Much of merchants' marketing is based on"}, {"title": "rpj-c4", "text": "For a world that runs on plastic, Mainstreet\u2122 provides the Glas-Avenue\u2122 Credit Card Swipe. Eliminate extra steps in processing credit cards. A simple swipe or manual entry of credit card information will post payment directly into your customer's account. Credit card payments have never been easier. The Glas-Avenue\u2122 Credit Card Swipe easily installs on any computer. Once installed a simple swipe will transmit payment information for approval. A verification screen will pop up to display the status of the transaction and let you know if the payment is accepted or denied. Once the payment is approved, Glas-Avenue\u2122 posts the payment to the customer account automatically. An online account of activity is set up so you can manage your credit card swipe transactions. This account allows you to easily settle your credit card transactions at end of day, monitor your daily activity, recall a payment, issue a refund if necessary, and so much more! *High speed internet connection required."}, {"title": "pes2o", "text": "cards over cash because of the risk involved with storing cash [110] or access to special discounts from well-known companies [110]. They rely on traditional credit cards as a source of lines of credit [111]. If necessary, they can use debit cards to withdraw money [112]. Customers favor the simplicity of a credit card as a result, and they are more likely to use them for regular purchases [113]. For MCC to be accepted, it must offer more benefits than cash or credit card payment. One of the advantages of MCC, according to [114], is that it allows for faster checkout because no signature is necessary. Similarly, because the purchase is closed with a phone wave, the time-consuming step of inputting payment card information is removed [115]. Perceived Ease of Use Perceived ease of use is defined as the degree to which a person believes that using a system is straightforward [116]. This perception is generated by a sophisticated system of perceived control [117]. Customers can quickly and simply register a bank card, according to [118]. According to [119], numerous electronic devices accept bank cards. Furthermore, because the card payment method is so simple to understand and regularly use, consumers do not have to invest much effort [120]. Multiple surveys demonstrate that credit card users value them and want to use them frequently as a result [121]. Because MCC actions are carried out with a single wave, the previous MP's limitations would be removed. Customers are likely to favor MCC if they perceive that it requires"}, {"title": "rpj-c4", "text": "per month figures. In the modern world, banking sector is growing very much fast than any other business. The entire bank industry is emphasizing on improvement with the help of technology. Out of various technological outcomes \u201cPlastic Money Market\u201d is the most important one. Now a day a modern client cannot think banking without the facility of plastic cards. Plastic money is just the replacement of cash. It is such an electronic module where all the information about the client/card holder and the bank are stored and can be executed by putting it in the Automated Teller Machine and at the Point of Sales (P.O.S.) terminal. Its not only convenient but also very reliable and safe. In this type of card inside a magnetic strip all the necessary information about the customers are kept by reading, which the ATM machine can deliver the required money of the customer. The entire process is so secured and swift that it is really a big asset for the banks and that is why all the banks are trying to improve the service that being provided through plastic cards. NBL Credit card is accepted in many merchant outlet around the world. The wide range of merchants include hotels, restaurants, airlines & travel agents, shopping malls and departmental stores, hospitals & diagnostic centers, jewelers, electronics & computer shops and many more. National Bank limited is providing credit cards by obtaining principal membership from VISA/ Master Card. Currently the bank is offering two main categories of credit cards. NBL VISA dual card"}, {"title": "rpj-c4", "text": "the credit card."}, {"title": "rpj-common-crawl-2019-30", "text": "issuers, and intermediary institutions. Magnetic stripe cards, e.g., credit cards, debit cards, membership cards, and the like, have long been employed to facilitate commerce and for identification purposes. Generally speaking, a magnetic stripe card includes a plastic or metallic card base on which a magnetic stripe is affixed. The information necessary to conduct a transaction (such as a purchase of goods/services or an identification query) is embedded in the magnetic stripe on the card. Many cards also include visually perceptible or human-readable data embossed or printed directly on the card itself. The data embedded in the magnetic pattern and the visually perceptible data may be used alternatively or together by the cardholder to accomplish a transaction. In this document, credit cards will be employed as examples. However, the problems and solutions discussed herein are not limited to credit cards and may apply to all magnetic stripe cards irrespective of the purpose for which they are employed. Contemporary credit cards, which are representative of magnetic stripe cards, are widely employed to facilitate the purchase of goods and services by cardholders. To facilitate discussion, a description of a typical credit card transaction is provided. Suppose, for example, a cardholder wishes to purchase a book using his credit card. If the purchase is performed in a manner that does not require the physical handling of the card by the merchant or the physical presence of the card (such as an online purchase), the cardholder may provide the credit card information (e.g., credit card number, expiration date, security code, cardholder's"}, {"title": "rpj-c4", "text": "separate magnetic stripes allow staging of payments for cashflow because payment periods can be staggered, allowing more frequent smaller payments, rather than a single large payment. Another advantage is the ability to assign specific types of payment to specific lines of credit. For example, charging emergency uses, such as healthcare expenses, to one of the magnetic stripes and personal uses to the other magnetic stripe. These are merely exemplary of advantages that the credit card, according to the present invention, provides to the credit card user. With respect to credit card banks, credit card banks which distribute transaction cards, such as the cards 20 and 40, have the advantage of garnering additional market share by replacing at least one other transaction card in the user's array to thereby become a card of choice. In addition, business/personal card synergies are achievable, benefitting both users and credit card banks. For example, a strong corporate card can add all of its business customers to its personal card portfolio by providing a combination business/personal card (and vice-versa). Such an advantage is even more compelling when card rebates, such as airline miles, are consolidated for both accounts on a card. Deployment of credit cards, such as the credit cards 20 and 40, is relatively easy to implement because the cards themselves are relatively inexpensive to produce since it is less expensive to manufacture single credit cards with dual stripes than to manufacture two separate one-stripe cards. Moreover, only minor, if any, revisions are necessary to current VISA/MasterCard regulations. In addition, the"}, {"title": "rpj-c4", "text": "countries, and would not in any case have been an attractive brand name in those countries. This resulted in an international agreement to adopt the more generic name \u201cVisa\u201d, which remains the name of this internationally popular service to this day. It was originally conceived by the original company\u2019s founder, Dee Hock, who liked its simplicity and connotations of universal acceptance. Things have moved on a bit since those Barclaycard days. The iconic blue, white and gold striped plastic card is no more. Their TV advertising campaigns are no longer fronted by Rowan Atkinson\u2019s hapless James Bond spoof. Instead, Visa have updated their services to follow current technological progress. Of course, you can still use your plastic credit and debit cards in the old fashioned way. Only now it\u2019s chip and PIN rather than the old magnetic strip swipe. Plus there are contactless payments too. You still use your plastic card, but instead of swiping or inserting, instead you can just waft your card in front of the retailer\u2019s terminal to authorise your payments. Actually, waft is a bit of a stretch. The official word is \u201ctap\u201d. \u201cTap and pay\u201d according to the marketing blurb. But now technology is moving on to the extent that you do not necessarily need your physical card at all in order to authorise a purchase. You can now use link your Visa card to any number of mobile devices, so you can pay just by using your phone as a proxy for your card. For Apple phone users, all you"}, {"title": "rpj-common-crawl-2023-06", "text": "of the country, the convenience associated with these cards was lost,\u201d wrote Sienkiewicz in his report. The leather case for the Charga-plate. (Photo: Marilyn Acosta/flickr) The stores actually liked this, however\u2014because it tied consumers to that specific store, ensuring that there was baked-in loyalty. Other types of companies liked that baked-in loyalty as well, creating their own credit card variations and adding new features along the way. Transportation companies also got in the act. Early gas stations in the 1920s started offering cards of their own, taking advantage of the fact that travelers and commuters need to keep fueling up. Companies like Texaco, in producing their cards, decided upon a slightly better format than the department store dog tags: playing-card-sized pieces of paper. That helped to set a standard size for payment cards. The airline industry proved to be a major innovator in the credit realm. In 1936, American Airlines started issuing the Air Travel Card,which is generally considered the first \u201ccharge card\u201d in history. Over time, it added two key innovations to the credit card model: upon its launch, it utilized a numbering system that tied a specific user to a specific number. Then, in 1969, the Air Travel Card became the first to include a magnetic stripe\u2014doing so more than a decade before mainline credit card providers did the same. (We have IBM to thank for that stripe, by the way.They invented it in the 1960s.) Texaco offered paper cards for fuelling up in the 1920s. (Photo: Boston Public Library/flickr) The banking industry, surprisingly,"}, {"title": "rpj-c4", "text": "broken down the time and space barriers. Bank issues a separate plastic card to each customer for availing the services of ATM. The customer has to insert the plastic card into the terminal and enter his identification code. The machine would respond to the customer's instructions of giving cash, accepting deposit or handling other banking transactions. This is also called plastic money. The credit card holder is allowed to withdraw money without making any deposit into the bank. It is the overdraft facility allowed to the customer. The card holder may also use the card for making payments for goods and services to the suppliers having arrangements with the credit card company. The customer using plastic money will have to deposit this amount along with the interest due to the credit card company. The credit card has photo identity and signature of the card holder and Credit Card Company or bank's name and validity period of the card. Debit Card is issued to a client having deposits in his bank account. A debit card is also a plastic card bearing bank's name and customer's name identity and signatures. A debit card holder can make purchases from the retail store and make payments through this card. With the help of debit card, the point of sale computer terminal would automatically transfer money from the cardholder's bank account to the bank account of the seller. Blogging is also an ideal marketing strategy of online banking. In order to do this, they will make an attractive or informative article"}, {"title": "rpj-common-crawl-2022-05", "text": "card into a single card. It is worth noting that in many countries, such as the UK, the cheque guarantee element has been removed from the card functionality. From the receiving company's point of view, plastic cards are simply a payment mechanism that may be used by some of its customers. What is important to any company accepting plastic cards is the interchange charges levied by the merchant acquiring company (normally a bank or other financial institution that \"buys\u201d the transactions from the retailer at a discount). These include transaction fees for debit cards and turnover fees for credit cards charged by the card acquirer that processes card payments on behalf of the retailer. These charges are often negotiable and depend on the volumes of transactions, the average transaction size, the method of processing and the credit quality of the transactions. Float time and finality of payment on credit and charge cards vary not only from country to country but also from company to company, depending on the deal negotiated with the card acquirer. In addition to traditional debit, credit and charge cards, many corporates now use purchasing cards to purchase low-value items/services. Usage can be limited to certain outlets, eg service stations or hotels, which reduces the risk of misuse at the same time as reducing the administration costs of handling small purchases and improving the quality of reporting and VAT management. Purchases via the internet continue to increase as providers offer greater security and users become more comfortable with buying goods in this way."}, {"title": "rpj-common-crawl-2019-30", "text": "need to be much discussion here about the long history of fraud and illicit uses of these financial instruments. The development of the credit card hologram, and its subsequent forgery development, nicely serves as a historic example of the give and take of plastic card security measures and fraudulent countermeasures. This section will concern itself with how the principles of this invention can be realized in an alternative, highly fraud-proof yet cost effective plastic card-based financial network. [0200] A basic list of desired features for an ubiquitous plastic economy might be as follows: 1) A given plastic financial card is completely impossible to forge; 2) An attempted forged card (a \u201clook-alike\u201d) cannot even function within a transaction setting; 3) Intercepted electronic transactions by a would-be thief would not in any way be useful or re-useable; 4) In the event of physical theft of an actual valid card, there are still formidable obstacles to a thief using that card; and 5) The overall economic cost of implementation of the financial card network is equal to or less than that of the current international credit card networks, i.e., the fully loaded cost per transaction is equal to or less than the current norm, allowing for higher profit margins to the implementors of the networks. Apart from item 5, which would require a detailed analysis of the engineering and social issues involved with an all out implementation strategy, the following use of the principles of this invention may well achieve the above list, even item 5. [0201] FIGS. 4"}, {"title": "rpj-c4", "text": "Customers can buy your goods or pay for your services using cash, checks, credits cards, bank transfers, or mobile payment systems. Of all those options, the credit card is still the most popular. It\u2019s convenient and is less bulky than coins or paper currency. It also offers additional benefits to customers, which is another reason why they prefer it. Here are just a few of the ways that credit card payments make life easier for your customers. This is the \u201ccredit\u201d in \u201ccredit cards.\u201d If a customer pays off their balance in full every month, then credit cards let them take out a zero-interest loan for up to two months, depending upon where they are in their billing cycle. It also lets them take out a typically very high-interest loan if they want to slowly pay off their balance over a longer time-frame. Even at a high-interest rate, taking out this kind of loan can make a lot of sense for a consumer and isn\u2019t necessarily irresponsible. Just as an example, a consumer might use a credit card to buy professional clothing to wear to job interviews, and then pay off their credit card balance after they get a job. We always seem to learn about sales and promotional offers when they\u2019re just about to end. And of course there are those crucial moments when we forget a birthday or special occasion. We end up shopping under duress. If your business uses the right payment processor to facilitate credit card payments, your customers will be verified"}, {"title": "rpj-c4", "text": "a piece of plastic but it is very personal and important to you. Mr. Carnegie says to win friends simply use the person\u2019s name. In other words, in order to build customer loyalty, at every opportunity, use the customer\u2019s name. You hand a credit card with your name printed right on it to the cashier. Yet the last five times you used your credit card, how many times did the cashier use your name in giving it back to you? Rarely, if at all. An opportunity to embrace you, as a customer, is lost. If I were a retailer, I would make sure that the card swipe info would post the customer\u2019s name on the mini screen in front of the cashier. I\u2019d educate every cashier to look at the screen or the credit card and then look back to the customer to establish eye contact (trust) and sincerely say, \u201cMr. Customer\u2019s Name. Thank you for shopping at Name of Company. We certainly appreciate it.\u201d That small wow would make a big difference. So what are you doing to make your customer feel important? And what are you doing to make sure it is common practice?"}, {"title": "rpj-c4", "text": "in and out with one tool. This makes everyone\u2019s life just a little easier, and it keeps you much more organized. Whether you run a school cafeteria or a supply store, having an easy to swipe payment card will cut down on any confusion that can occur when it comes to paying. This will ensure that the lines move quickly and that everyone has what they need when checking out. You can even use your employee badge or student ID as a way to receive payment. This means that you get the most bang for your buck when purchasing plastic cards, and those who use them don\u2019t have to keep up with multiple cards. Additionally, Capture Technologies offers point of sale modules that are easy to use and customizable so that your payment card system is simple for everyone. Loyalty programs are becoming increasingly popular and don\u2019t show signs of slowing down anytime soon. If you\u2019ve thought about investing in a loyalty program, the best thing you can do is not overcomplicate it. By taking advantage of plastic cards that easily print, you\u2019ll give your customers access to a great program that is easy to use and slips right in their wallet next to other cards they carry with them at all times. Our loyalty cards come with many customizable options, including the ability to offer seasonal passes and frequent shopper cards, offer reward points, discounts, and perks, track customer data, add personalized options to each card, and identify members with special privileges. When you want"}, {"title": "rpj-c4", "text": "including miscoding or misspelling the name of the creditor, its address, bank account number etc, and this includes accepting checks where a simple erasure or an incorrect date may mean that you the shop owner will have to undergo into a lot of trouble to legitimize that transaction. By the simple action of swiping a credit card you get advantage of a card reader that makes no mistakes. And because it is electronically processed, all types of verification is subjected spontaneously. Swiping and reading the card is done is a very fast manner unlike the traditional way so writing them or typing in the numbers, etc. So whether you are a small business processing a few cards a day or a large business swiping thousands of cards every hour, the time you spent of this is money on your side. Credit card readers are also beneficial in that it frees your cashers from making a mistake with reading your card details. And this should not be overlooked. Speaking of which, you customer may be a bit uneasy about you manually typing in their credit card number, and understandably so. Manually typing in the credit number is far less professional than using a credit card swiper. More than just looking old-fashioned and amateur, it can lead consumers to question why you are not investing in their security or convenience. If you compare credit card swipers to the full type terminals, it is a novelty. This is especially evident when you start to accept credit card online. Heavy"}, {"title": "rpj-c4", "text": "Put simply, a credit card is just a small piece of plastic that easily fits in your wallet. Well, it\u2019s not \u2018just a piece of plastic\u2019; it\u2019s a very powerful piece of plastic which can be regarded as a compressed form of cash. We can define credit cards as a credit system that allows the consumer to borrow money on the fly from a bank or a financial institution and use it to make payments to the merchants. In order to obtain a credit card, the consumer needs to fill-in an application form that is actually like an agreement between the credit card supplier and the credit card consumer. The credit card supplier approves the application form and provides the consumer with a small piece of plastic (i.e. the credit card). This plastic (or credit card) contains electronically encoded security information in the form of a magnetic strip (which is generally located at the back of the credit card). This information is used for authorising payments whenever the consumer uses the credit card. The consumer can use the credit card for shopping at merchant outlets or on the internet etc. Of course, this is subject to merchant\u2019s capability to accept credit card payments. Accepting the credit cards is, however, not enough. The merchant should be able to accept payments made through the credit card provided by that credit card organization (of which you hold the credit card) i.e. VISA, MasterCard etc. You can also use credit card to withdraw cash from ATMs (automatic cash machines) also"}, {"title": "rpj-common-crawl-2019-30", "text": "HomeGotchas / ConsumerStarbucks\u2019 plan to be your \u2018bank\u2019 comes into focus \u2014 under a $1.4 billion pile of cash (Wal-Mart, too) Starbucks\u2019 plan to be your \u2018bank\u2019 comes into focus \u2014 under a $1.4 billion pile of cash (Wal-Mart, too) April 14, 2016 Bob Sullivan Gotchas / Consumer 2 Starbucks and Wal-Mart are looking a lot more like banks lately. Starbucks just announced a new debit card that sounds a lot like an airline miles card, while Wal-Mart is about ramp up its cash-back and other benefits on some transactions run through its plastic. What\u2019s in it for these big retailers? And for you? The \u201cfor you\u201d part is pretty easy: free money, or free stuff. Starbucks fans already get \u201cstars,\u201d like airline points, when they shop at the coffee giant\u2019s stores. And millions of them also use something that\u2019s similar to a Starbucks credit card \u2014 an app or gift card that\u2019s pre-loaded with cash. So the transition to Starbucks plastic that can be used anywhere is quite natural. Soon, as with airline credit cards, Starbucks fans will be able to earn free drinks and such by using Starbucks plastic, co-branded with Chase bank, at almost any store. How quickly the free lattes will pile up is still a mystery. The Starbucks card won\u2019t be a credit card, however \u2014 it will be a prepaid debit card. We\u2019ll get to why in a moment. (This story first appeared on Credit.com. Read it there.) Wal-Mart\u2019s proposition to its 10 million or so cardholders is even simpler:"}, {"title": "rpj-c4", "text": "an average of 35% over current paper certificate programs. Also, customers spend more with plastic with average sales about 40% more than paper. Will enhance your business\u2019 professional image. Puts you on a level playing field with the major chains that already have this type of program in place. Carrying a plastic card with your logo in their wallet is like having a mini billboard in your customers\u2019 hands every day. Increases profitability \u2014 No cash back is given with gift cards, if you desire. You will benefit from the float since you have the funds until the card is redeemed. Experience shows that 5-15% of gift card values are never redeemed. This fact can pay for your program by itself. Reduces theft potential since cards have no value until activated unlike paper gift certificates that are usually kept under lock and key. Has been shown to reduce shoplifting when a policy to put refunds without a receipt on a gift/stored value card. Discourages stealing and then asking the cashier for cash back. Many national chains have developed this as store policy. You can view and print real-time activity reports from your PC, will receive monthly reports via email, plus you will get daily reports from your terminal. Ease of issuance and redemption \u2014 employees just need to swipe the card through the terminal to load or redeem value on the card, which only takes seconds. If you\u2019re a restaurant, that may mean that you can reduce advertising costs to attract new customers since tables are"}, {"title": "rpj-c4", "text": "an average of 35% over current paper certificate programs. Also, customers spend more with plastic with average sales about 40% more than paper. Will enhance your business\u2019 professional image. Puts you on a level playing field with the major chains that already have this type of program in place. Carrying a plastic card with your logo in their wallet is like having a mini billboard in your customers\u2019 hands every day. Increases profitability \u2014 No cash back is given with gift cards, if you desire. You will benefit from the float since you have the funds until the card is redeemed. Experience shows that 5-15% of gift card values are never redeemed. This fact can pay for your program by itself. Reduces theft potential since cards have no value until activated unlike paper gift certificates that are usually kept under lock and key. Has been shown to reduce shoplifting when a policy to put refunds without a receipt on a gift/stored value card. Discourages stealing and then asking the cashier for cash back. Many national chains have developed this as store policy. You can view and print real-time activity reports from your PC, will receive monthly reports via email, plus you will get daily reports from your terminal. Ease of issuance and redemption \u2014 employees just need to swipe the card through the terminal to load or redeem value on the card, which only takes seconds. If you\u2019re a restaurant, that may mean that you can reduce advertising costs to attract new customers since tables are"}, {"title": "rpj-c4", "text": "Accepting all major credit cards is a chief component needed for the growth of your sales volume and your business. Swiping customer\u2019s credit cards face-to-face is the easiest and safest solution to accepting customer payments. Payco card will help you set up the best solution for your retail storefront as well as provide you with widest selection of payment equipment necessary to meet today\u2019s needs and provide worry free and secure transactions. At Payco Card we know that swiping credit cards has the least amount of risk involved and we will offer you the lowest processing rate, which means more money to your pocket. There are many reasons and advantages to allowing us to set up your merchant account. Fast debit and credit card authorizations to insure completed transactions in a matter of seconds. Flexible options such as PC and network integrated systems or stand-alone terminals. Expert USA based Technical support & customer service. One key re-authorization and networking enhanced features. Additional Security parameter and fraud protection add-ons. New approved EMV chip technology acceptance."}, {"title": "rpj-common-crawl-2023-06", "text": "simple ban on all online teenage gamers would be required to find a solution to what is a growing global problem.\u201d Their findings may inform the design of other regulatory and policy solutions aimed at curbing the negative impact of social excesses, such as sugar taxes to curb obesity, heavier excise taxes to prevent smoking and bans on plastic bags to encourage eco-friendly behavior. More importantly, big data could play a critical role in proving whether these attempts work and, if so, why. Paying Cash for the Salad Bar Sunder used big data to solve a seemingly intractable problem American businesses face: missing or partially observable data on customers. Creating a profile of customers based on purchase history is easy when they hand over credit cards or use a loyalty card. \u201cBut the system breaks down when customers use cash,\u201d said Sunder, assistant professor of marketing. And then there are those who pay with credit cards sometimes, greenbacks other times, he said. \u201cThe company knows that $5 was spent; it just doesn\u2019t know who paid for it.\u201d Cash transactions can account for as much as 40 percent of total sales, especially in gas stations and restaurants. Ignoring the cash customer when analyzing data, he said, could lead a company to make suboptimal marketing decisions. For two years, Sunder and his research collaborator Yi Zhao, a marketing professor at Georgia State University, have been trying to decipher customer behavior when different payment instruments are used to predict behavior for all patrons. \u201cHow do you construct a holistic"}, {"title": "rpj-common-crawl-2023-06", "text": "them to work.\u201d Hitting the Sweet Spot Drechny pointed to the Scan & Go\u2122 feature at Sam\u2019s Club as an example of a payment capability that consumers have quickly embraced. This example of \u201cambient commerce\u201d enables consumers to scan items with their phone while shopping, click-to-pay and skip the checkout line. \u201cSam\u2019s has seen 20% of their customers using it on a regular basis over a very short period of time,\u201d said Drechny. \u201cIt wasn\u2019t just reinventing how the payment happened. It reinvented how the visit happened, and it created a time-saving mechanism for the consumer.\u201d Asking and answering the question of what consumers want and care about must be a constant, because consumer needs are ever-changing. That\u2019s the challenge described by Randy Lashua, Senior Vice President of Channel Delivery with Capital City Bank. He outlined some of the ideas his institution has considered to boost debit usage, including gamification of debit transactions and teaming up with cardholders to support charitable causes. Noting that younger consumers are attracted to opportunities to easily contribute to charitable causes, Lashua said Capital City Bank is preparing to deploy a \u201cswipes for charity\u201d campaign. \u201cWe\u2019re going to create an opportunity to have swipes tie back to a charity,\u201d said Lashua. \u201cA certain number of swipes will create a donation to a charity of the cardholder\u2019s choice, and we expect it will appeal to a certain demographic.\u201d PULSE offers and supports a similar campaign for its Discover\u00ae Debit issuers. The \u201cPurchase with a Purpose\u201d program connects issuers, cardholders and local non-profit"}, {"title": "bm25", "text": "Credit Card Fraud Detection using Machine Learning Algorithms Now a days Using technology like phishing technique to do internet banking fraud means transferring and removing the money from banker account without the permission of the banker. credit card frauds are happening in large amount and also some banking companies and the companies giving service to banks are facing problem. In this project trying build the model which predict fraud and nonfraud transaction in best way using machine learning algorithms and neural networks. Objective of the project is to predict the fraud and fraud less transaction with respect to the time and amount of the transaction using classification machine learning algorithms and statistics and calculus (differentiation ,chain rule etc) and linear algebra in building of the complex machine learning models for prediction and understanding of the data set . we have achieved accuracy of 94.84% using logistic regression and 91.62% using naive Bayes and 92.88% using decision tree and we step into deep learning, we used ANN achieved better accuracy then all other algorithms of 98.69%. I. INTRODUCTION Credit card is a small thin plastic or fiber card that contains information about the person such as picture or signature and person named on it to charge purchases and service to his linked account charges for which will be debited regularly. Now a day's card information is read by ATM's, swiping machines, store readers, bank and online transaction. Each card as a unique card number which is very important, its security is mainly relies on physical security of"}, {"title": "bm25", "text": "\"\"\" d = dict((key, getattr(self, key)) for key in self._fields) return '{self.__class__.__name__}(**{d})'.format(self=self, d=d) # # Classes for processing transactions. # class Sale(PayTraceRequest): \"\"\" Processing a sale through the PayTrace API may be accomplished by providing a new customer's swiped credit card information, a new customer's key entered credit card information, or the customer ID of an existing customer. {field_details} See section 4.1.1. \"\"\" METHOD = 'ProcessTranx' TRANXTYPE = 'Sale' _required = [ 'UN', 'PSWD', 'TERMS', 'METHOD', 'TRANXTYPE', 'AMOUNT', ] _conditional = { 'SWIPE': ['SWIPE'], 'CC': ['CC', 'EXPMNTH', 'EXPYR'], 'CUSTID': ['CUSTID'] } _optional = [ 'BNAME', 'BADDRESS', 'BADDRESS2', 'BCITY', 'BSTATE', 'BZIP', 'BCOUNTRY', 'SNAME', 'SADDRESS', 'SADDRESS2', 'SCITY', 'SCOUNTY', 'SSTATE', 'SZIP', 'SCOUNTRY', 'EMAIL', 'CSC', 'INVOICE', 'DESCRIPTION', 'TAX', 'CUSTREF', 'RETURNCLR', 'CUSTOMDBA', 'ENABLEPARTIALAUTH', 'TEST' ] _discretionary_data_allowed = True def __init__(self, **kwargs): super().__init__(**kwargs) # Additional encoding of value is required when SWIPE is used; # see 3.3.1 SWIPE data definition for details. if 'SWIPE' in kwargs: kwargs['SWIPE'] = quote_plus(kwargs['SWIPE'].replace('|', '***')) class Authorization(Sale): \"\"\" Processing an authorization through the PayTrace API will request authorization for specified amount. However, the approved funds will not be charged or funded until the transaction is captured and settled. The required fields for processing an Authorization Request are the same as processing a Sale Request. See section 4.1.2. \"\"\" TRANXTYPE = 'Authorization' class Refund(PayTraceRequest): \"\"\" Processing a refund through the PayTrace API may be accomplished by providing a new customer's swiped credit card information, providing a new customer's key entered credit card information, providing the customer ID of an existing customer, or providing the transaction ID of the"}, {"title": "bm25", "text": "access to operational and financial data across their omnichannel operations, is a key element. Its related solutions are widespread in back-end supply chain logistics and stock replenishment efforts, but cloud computing also is moving to the front-end interaction between frontline sales personnel and customers, offering real-time analyses of inventory or general product availability information. Thus frontline employees can avoid disappointing customers, because even if a desired product is out of stock at a current location, they can find where it is available and perhaps help customers place an online order, which implies a sort of endless aisle experience. Many companies also consider headless commerce-a scenario in which the presentation layer (e.g., website) is decoupled from the ecommerce platform, even though customers still can easily click a \"Buy Now\" button or issue a verbal command to a voice-activation device such as Alexa to order a product. By decoupling the front-and back-ends though, advanced technology increases retailers' flexibility, such that they can focus on more relevant user experiences in the front end while prioritizing efficiency and consistency in the back end to enhance fulfillment speed. Moving on to the payment step, we note extensive shifts from cash-based toward card-based payments. Even among card-based payments, we have moved from swipes of credit cards to insertions of chip-embedded cards to taps with credit cards to touchless options. Even further, technology allows for cashless and digital payment through e-wallets (e.g., Apple Pay, Samsung). We anticipate growing uses of crypto currency too, leveraging Bitcoin or blockchain recorded payment systems for retail transactions."}, {"title": "bm25", "text": "toward RFID-based systems inside cards, cellphones, and other objects. Design and vintage credit cards as collectibles The design of the credit card itself has become a major selling point in recent years. A growing field of numismatics (study of money), or more specifically exonumia (study of money-like objects), credit card collectors seek to collect various embodiments of credit from the now familiar plastic cards to older paper merchant cards, and even metal tokens that were accepted as merchant credit cards. Early credit cards were made of celluloid plastic, then metal and fiber, then paper, and are now mostly polyvinyl chloride (PVC) plastic. However, the chip part of credit cards is made from metals. Cash advance A cash advance is a credit card transaction that withdraws cash rather than purchasing something. The process can take place either through an ATM or over the counter at a bank or other financial agency, up to a certain limit; for a credit card, this will be the credit limit (or some percentage of it). Cash advances often incur a fee of 3 to 5 percent of the amount being borrowed. When made on a credit card, the interest is often higher than other credit card transactions. The interest compounds daily starting from the day cash is borrowed. Some \"purchases\" made with a credit card of items that are viewed as cash are also considered to be cash advances in accordance with the credit card network's guidelines, thereby incurring the higher interest rate and the lack of the grace period. These"}, {"title": "bm25", "text": "An efficient credit card fraud detection approach using cost\u2010sensitive weak learner with imbalanced dataset The usage of credit cards is increasing in the digitization era to purchase goods online or offline, and the number of fraudulent credit card transactions has also increased. Fraudulent transaction detection is a big issue in the credit card domain because the data set is highly imbalanced. The performance of traditional classification techniques has decreased due to this issue. Therefore, a dynamic fraud detection system is required to overcome this issue. This article proposes an efficient cost\u2010sensitive weak learner approach with a bagging and random forest classifier (CSWLB) to minimize misclassification problems and overcome the class imbalance issue. The proposed CSWLB approach is included in an adaptive algorithmic method (cost\u2010sensitive) with two weak learner ensembles (bagging\u2010random forest), which assigns high weight to the fraudulent transactions using the cost\u2010sensitive learning classifier and generates weight bags using a bagging ensemble classifier. Therefore, the random forest classifier has been implemented on the weight bags to improve classification accuracy. The proposed approach's effectiveness and efficiency have been computed on the Brazilian credit card data set. Its results have been compared with sampling, cost\u2010sensitive, and machine learning techniques. The proposed CSWLB approach obtained 765 total costs and 97.361% accuracy. The experimental results show that the proposed approach has outperformed compared to other techniques."}, {"title": "bm25", "text": "A credit card is a payment card issued to users (cardholders) to enable the cardholder to pay a merchant for goods and services based on the cardholder's accrued debt (i.e., promise to the card issuer to pay them for the amounts plus the other agreed charges). The card issuer (usually a bank or credit union) creates a revolving account and grants a line of credit to the cardholder, from which the cardholder can borrow money for payment to a merchant or as a cash advance. There are two credit card groups: consumer credit cards and business credit cards. Most cards are plastic, but some are metal cards (stainless steel, gold, palladium, titanium), and a few gemstone-encrusted metal cards. A regular credit card is different from a charge card, which requires the balance to be repaid in full each month or at the end of each statement cycle. In contrast, credit cards allow the consumers to build a continuing balance of debt, subject to interest being charged. A credit card differs from a charge card also in that a credit card typically involves a third-party entity that pays the seller and is reimbursed by the buyer, whereas a charge card simply defers payment by the buyer until a later date. A credit card also differs from a debit card, which can be used like currency by the owner of the card. Alternatives to credit cards include debit cards, mobile payments, digital wallets, cryptocurrencies, pay-by-hand, bank transfers, and buy now, pay later. As of June 2018, there were"}, {"title": "bm25", "text": "taken with a front-facing camera, since selfies indicate youth, helping the company divide people into customer segments. The data points are unconventional, but Darshan Shah, Lenddo\u2019s managing director for South Asia, says the company\u2019s overall algorithm is a reliable predictor of creditworthiness for the so-called underbanked. For those who lack formal credit histories, Lenddo and others say artificial intelligence can help sort through a variety of data points that, in sum, indicate financial responsibility. For the full story, please visit https://www.marketwatch.com/story/ai-based-credit-scores-will-soon-give-one-billion-people-access-to-banking-services-2018-10-09 Labels: AI, algorithms, alternative credit, credit, emerging markets No Shirt, No Swipe, No Service: Cash is a miracle. So why are more businesses refusing it? By Henry Grabar in Slate, staff writer for Slate's Moneybox Photo illustration by Slate. Photo by paulprescott72/iStock. For years, small businesses have asked customers to pay cash, set credit card minimums, or added a surcharge onto card transactions, in an effort to defray the premiums imposed by companies like Mastercard and Visa. Now, an increasing number of businesses are doing the opposite. Head out of Slate\u2019s offices for lunch and you might wind up at Dos Toros, a local burrito minichain; for coffee you might pick Devoci\u00f3n, a Colombian-born coffeehouse with an airy storefront. In either case, you\u2019d be confronted with the same demand: Pay with plastic. Stores are eliminating cash registers and coin rolls in pursuit of what they say is a safer, more streamlined payment process\u2014and one that most of their customers want to use anyway. At Dos Toros, co-founder Leo Kremer said that more than half of"}, {"title": "bm25", "text": "For a world that runs on plastic, Mainstreet\u2122 provides the Glas-Avenue\u2122 Credit Card Swipe. Eliminate extra steps in processing credit cards. A simple swipe or manual entry of credit card information will post payment directly into your customer's account. Credit card payments have never been easier. The Glas-Avenue\u2122 Credit Card Swipe easily installs on any computer. Once installed a simple swipe will transmit payment information for approval. A verification screen will pop up to display the status of the transaction and let you know if the payment is accepted or denied. Once the payment is approved, Glas-Avenue\u2122 posts the payment to the customer account automatically. An online account of activity is set up so you can manage your credit card swipe transactions. This account allows you to easily settle your credit card transactions at end of day, monitor your daily activity, recall a payment, issue a refund if necessary, and so much more! *High speed internet connection required."}, {"title": "bm25", "text": "Small Business Use of Credit Cards in the U.S. Market America\u2019s small businesses have adopted credit cards as both a payment method and a borrowing vehicle. The segment also uses other payment card products, including debit, charge, and prepaid cards. The dollar volume of spending with cards designed for small businesses increased by 230 percent over the five-year period from 2003-2008. But the recession of 2007-2009 and contemporaneous changes in the regulatory environment had effects on both the supply to and demand of small businesses with respect to credit cards. To obtain an update on these issues, the Payment Cards Center hosted a workshop facilitated by Frank Martien, a partner with First Annapolis Consulting. During the workshop, Martien presented evidence of improved supply and demand conditions for small business credit cards. In addition to these positive post-recession observations, Martien described how the symmetry between a small firm\u2019s accounts receivable cycle and the billing cycle for a credit card may help explain why credit card use is so attractive to this segment. This summary also discusses recent developments in the small business debit card market."}, {"title": "bm25", "text": "Hybrid Multi-Level Credit Card Fraud Detection System by Bagging Multiple Boosted Trees (BMBT) The escalating usage levels of credit cards has resulted in the generation of enormous amounts of data, which in-turn has resulted in huge amounts of fraudulent activities in this domain. The major issues in fraud detection on credit card transaction data is that they are huge and they exhibit huge imbalance levels. This paper presents a multi-level ensemble model called Bagging Multiple Boosted Trees (BMBT) for credit card fraud detection by bagging multiple boosted trees. Bagging is performed by creating overlapping subsets of the training data. Each base learner of the bagged model is composed of boosted trees, enabling effective predictions by effectively handling data imbalance. Voting based prediction aggregation provides the final predictions. Experiments were conducted with UCSD-FICO data and comparisons with the existing models in literature indicates that the proposed BMBT model outperforms the existing models at the rate of 1%-5% in terms of AUC, BCR, BER and TNR levels."}, {"title": "bm25", "text": "The number of credit and debit cards in the country rose 19% in June from the year earlier, while the number of swipe machines at points of sale has gone up by 26%. Leading consumer finance provider Bajaj Finance reported a 55% growth in business in the June quarter from the year earlier. Axis Bank\u2019s head of cards and payments Sangram Singh said the migration to non-cash transactions is being driven by the greater availability of cards and the rise in swipe machines. Non-cash transactions are estimated to grow by over 45% by 2020, said Devang Mody, president, consumer business, Bajaj Finance. \u201cAlready in large stores in metros, around 90-95% of transactions are non-cash. Of this, 55% is estimated between credit and debit cards, while 35% is through EMI (equated monthly instalment) finance,\u201d he said. The central bank is contemplating making the merchant discount rate, which banks levy on merchants for card-based transactions, easier for both banks and retailers, to encourage installation of more point-of-sale machines. ET View: Lower transaction cost of plastics The rise in electronic payments is most encouraging. Spin offs include automatic audit trails, transparent accounting and minimising the risk and cost of handling cash. The cost of electronic payments should also come down to popularize the use of plastics. Rationalisation of the interchange fees for use of banks\u2019 ATM network by customers of other banks, for example, would be useful. The government, on its part, should deploy Big Data analytics to all payment data to nab tax evaders. Tags : Internet, Smartphones,"}, {"title": "bm25", "text": "even order a report from more than one bureau in order to get a much broader credit picture of a credit applicant. Today, hundreds of thousands of companies, lenders, and suppliers rely on credit reports to provide them with the information they need to assess the credit worthiness of a company. Start making sound credit granting decisions for your company by ordering corporate credit reports today. Cellular Credit Card Processing Works For Those. This service of having a wireless technological innovation for swiping plastic cards for cash transaction from anywhere and at anytime makes mobile bank card processing an excellent business tool for everyone kind associated with traders, and a helpful shopping tool with regards to customers. Mobile plastic card machines as well as wireless credit card swappers really are a gift within disguise for business of all sizes, small or maybe large. Today the entire world is within its moving phase, where any person will be places alongside to become techno-savvy. All this type of person now trying to find easy approaches to shop or even spend their money while there\u2019re on some sort of shopping spree. Thus, with the alternative of quick and comfy shopping via credit-based card processing, customers now wish to deal merely with these companies as well as traders who are fully geared up to supply them with such an email finder service. While massive shots associated with trading market may use credit card processing way of attracting customers and improving their position, small traders or companies can in addition use"}, {"title": "bm25", "text": "class=\"content\">
What is Escrow?
Pay securely without exposing your details!
Learn more
Why Escrow?
Payment is only released upon delivery confirmation
Learn more
How does Escrow work?
Escrow holds the payment until you confirm delivery
Learn more

\"\" \"\"

 

\"\"

Company Info - Partnerships
Online Shopping - Buy - Sell - All Promotions - My Orders - Help - Site Map - Customer Service - About AliExpress -

Created by Deb Wolfe, 2014

"}, {"title": "bm25", "text": "12 different games; it was a bonus for me, but probably not the typical experience. The newly-added Corvette Like many game centers in the 21st century such as Dave and Busters, at Mega Play you purchase credits on a plastic card and swipe to add credits on whatever game you want to play. If you don\u2019t have a Mega Play card, the credit dispenser machines will sell you one for $1. Card readers on the front of each machine I have never seen \u2018card swipe-enabled\u2019 pinballs, but they have them here at Mega Play. In spite of being charged a dollar for a play card, I wanted to mention that the more credits you buy at one time, the more bonus credits that you get over and above the usual 4 credits for a dollar. For example- if you put $20 on your card, you get 110 credits. Mega Play also has party packages at what appear to be reasonable prices. Card credit prices All of the pinball games were in very good condition and the only one showing any wear that I could see was South Park which had some wear around the edges of the ball exit holes under Kenny and Cartman. FYI, this particular South Park game is uncensored with the early \u2018profanity\u2019 ROM that generates rude (but funny) character comments, the \u2018carpet munching\u2018 game on the DMD and of course Mr. Hanky in the toilet tank and on the playfield graphic in full view. The pinball games at Mega Play when I"}, {"title": "bm25", "text": "Critical to Quality tree (CTQ) (Figure 2). A CTQ helps businesses to define and meet customer needs by capturing the key measurable elements the customer needs, the characteristics by which the quality of service or process is judged (driver), and the requirements to meet those standards to satisfy the service user [25]. In this case, the CTQ enabled the project team to develop metrics translated from our captured VOC (Table 2) by mapping their specific identified needs, the drivers required to attain these, and what data was required to capture that, illustrated where the drivers delivered/did not deliver on those needs. Measure The Gemba revealed that the established process for laparoscopic hernia preparation ( Figure 1) began with obtaining the surgical list for the specific surgeon; then the preference card folder for the surgeon was sourced; this folder holds each of the preference cards for the types of surgery that specific surgeon performs. Many of the preference cards are handwritten. The OR nurse then collected a trolley from a theatre location, opened a plastic bag to hold the materials for each case, and then gathered surgical materials required as they appeared on the preference card. The OR Storeroom is a narrow awkward shape measuring 40 square meters. Observation data indicated that the materials were gathered in a plastic bag, held on a trolley, wheeled to the theatre, and stored there for use in the operative list the next morning. The surgical materials associated with a particular case were then opened directly before the surgery in the"}, {"title": "bm25", "text": "pajamas freshly swiped from an Alaska Airlines bag and into an understated periwinkle-blue Gucci suit that lets the world know she means business. In this case, business class, British Airways. Flight 217. Heathrow to D.C. Direct. Last Christmas. \u201cReady?\u201d Daryl asks impatiently at the front door. It\u2019s early. 6:00 a.m. early. Usually he\u2019s a lazy bastard, so she knows he\u2019s anticipating getting his work done in the morning so he can have the whole afternoon ahead of him to pounce. On her. Oh, she\u2019s ready, all right! Just you wait. For plans he can\u2019t even imagine. As Daryl electronically opens the door to the ridiculous five-car garage outside, Marsha grabs a snappy winter-white wool jacket she swiped off a luggage cart outside Dulles Airport and slips it on. She\u2019s headed north. It might be chillier. Marsha schedules ahead. Today is also the last day for their black town car they had leased on a credit card they\u2019ll of course never pay. She\u2019ll give Daryl one thing. He does know how to build a chain of false identity by stealing junk mail from mailboxes and using those preaddressed mailing labels the March of Dimes sends out without asking if the residents want them or not to get new credit cards that can be maxed out in the first thirty days before Mastercard or Visa catch on and cancel. There\u2019s nothing else in the garage besides the limo. No garden equipment, no lawn mowers. Marsha doesn\u2019t mow her lawn, she moves. She\u2019s gone. Gone without wind. Daryl can"}, {"title": "bm25", "text": "about itself and later transmitting it to ground control to be analyzed. The exact location of the probe was unknown, Horiguchi said, but it was believed to be within 60 miles of the asteroid. Officials plan to make a second landing attempt on Friday. Prepare all available gestures of superstitition, earth creatures! We find this unacceptable! There must be no end but victory! WHY I'M BAD AT FINANCE. I just don't understand high finance, fer sure. PORT ST. LUCIE \u2014 When city officials went shopping for a $15 million turnpike interchange, they had two simple words for the contractor: \"Charge it.\" In what is believed to be the first highway interchange ever built with plastic, the city is using a Visa card to buy materials and pay contractors to build a bridge and interchange at Florida's Turnpike and Becker Road, a two-year project that will cost $24 million overall and net the city $125,000 in cash-back awards. Although 200 state and local agencies in Florida use commercial credit cards to buy things such as paper clips and computers, bankers say Port St. Lucie leads the state in its use of plastic, ringing up $20 million in Visa purchases last year alone. That number will climb even higher next year as work on the interchange continues and the city swipes its card for a second, costlier road project: a $27 million bridge over the turnpike at Crosstown Parkway, destined to become the quickest east-west path across town. Despite the advantages, City Engineer Walter England admits to having"}, {"title": "bm25", "text": "does a convex hexagon have? a. 4 b. 5 c. 6 d. 7 How many sides does a convex hexagon have? a. 4 b. 5 c. 6 d. 7... ### A bag contains white marbles and red marbles, 25 in total. The number of white marbles is 8 less than 2 times the number of red marbles. How many white marbles are there? A bag contains white marbles and red marbles, 25 in total. The number of white marbles is 8 less than 2 times the number of red marbles. How many white marbles are there?... ### Multiply y by 6, then divide the product by 7 multiply y by 6, then divide the product by 7... ### Why is it important to know the interest rate on your credit card? The higher the interest rate, the more money you will be paying back The higher the interest rate, the less money you will be paying back The lower the interest rate, the more credit you can open The lower the interest rate, the more money you can spend Why is it important to know the interest rate on your credit card? The higher the interest rate, the more money you will be paying back The higher the interest rate, the less money you will be paying back The lower the interest rate, the more credit you can open The lower the interest rate, ... ### In a certain year, 23% of all teenagers in the United States had checking accounts. Your bank, TeenChex Inc., is"}, {"title": "bm25", "text": "with the Transit GO Ticket app. Another way to skip lines at ticket machines is by getting an ORCA card. Cards only cost $5 for adults, plus whatever amount a rider chooses to load in the card\u2019s E-purse or the cost of a pass that is good for unlimited transit trips. ORCA works on trains, buses and ferries throughout the region. More information is available at orcacard.com. A few additional reminders for a smoother trip: Riders using an Orca card should remember to tap on and off at Sounder and light rail stations. Free parking is available at all Sounder stations, as well as Angle Lake and Tukwila International Boulevard Red Line light rail stations. CenturyLink Stadium does not allow bags larger than 4.5x6.5,\" so large purses should be left at home. A 1-gallon plastic freezer bag, 12x6x12\" clear plastic bag or no bag at all will help get you through security faster."}, {"title": "bm25", "text": "Skateboards, sneakers, and even electronics will make somebody very happy this Christmas, compliments of my Visa. I'm sweating. The line behind me in Target is growing longer, and I'm a mess. I have my youngest child on my hip. I reach for a pack of Tic Tacs to entertain the baby, and help my older sons rip into the holiday party goody bags that they insist on opening at this very moment. I can barely hear the cashier. I do my regular nod-and-smile routine. She hands me back my credit card. I realize then, as I hear the huffing and puffing of the customers behind me, that the cashier is not being friendly as she repeats, \"Your card doesn't seem to be working. Do you have another?\" I sigh and quickly try to save face. I ask the cashier if she can try punching the numbers in (heaven forbid), or even the good ol' plastic bag trick to swipe the card. She begrudgingly punches the number of my Visa into the register. I exhale as I hear the receipt printing, and start to gather my keys and wallet. Much to my surprise, the now annoyed cashier points to the words, \"Insufficient Funds.\" I feel like everyone in the entire store is staring at me. My boys have taken up residence on the floor and are trading candy canes and Hershey's Kisses. I politely ask that they hold my cart and suspend the transaction. I smile, sweat some more and pull out a crumpled one dollar bill"}, {"title": "bm25", "text": "winner in Taiwanese transportation is the subway system. Cheap, fast, on time, and clean. What's really amazing is the card. You get a plastic card that you load with money -- you tap it against a terminal to get in, and tap again to get out. So much better than swipe or insert ticket -- pretty small detail, but made everything just that much easier & faster. Now, the really nice thing about this card is the integration of this card with the rest of Taiwan. You can use it at any 7-11/corner store (these are everywhere -- often multiple on a single block). It's also getting integrated into apartments. Meaning your subway card can get you around town, buy food, and open your house door. So awesome. ![mrtcard](/images/taipei-mrt-easy-card.JPG) Overall, getting around in Taiwan is just easy. And you only need a single card to leave the house. Bonus -- Taiwan also has a bunch of public bike racks around town that you can check out and ride around. It's free for the first 30 minutes, and there's a corresponding app that tells you where they are, where you can park, etc. And to check a bike out, you just need to use your subway card. ![taiwanbike](/images/taiwan-bike.jpg) **Self Serve Culture** Outside of transportation, one of the major differences that I noticed between Taiwan and America was an inherent culture of self serve. Everything and everyone seemed to be very self contained and respectful of their surroundings. ![fishmarket](/images/taipei-fish-market.jpg) When you walk into a restaurant, you seat yourself."}, {"title": "bm25", "text": "backs of their chairs and uses their credit cards. Two of the incidents took place at the Starbucks at 10 Union Square East. On Saturday evening, October 14, a 24-year-old woman was having coffee when she realized her wallet was missing. She then discovered her credit card was used at a nearby Taco Bell at 18 East 14th Street. On Monday morning, October 16, a 25-year-old woman at Starbucks realized the bag she\u2019d placed on the floor next to her had disappeared. In this case, there were no unauthorized charges. Posted in 13th Precinct, Crime, Union Square Tagged 13th precinct, crime, larceny, pick-pocketings, Starbucks, theft, Union Square Woman steals phone, then punches victim for taking it back Robbery suspect Police are looking for a woman who attacked her victim at the Union Square subway station when the other woman confronted her for swiping her phone. It was on Tuesday afternoon, when the victim, a 27-year-old woman, was going down the stairs to a 4 train platform when she noticed that her cell phone had just been swiped from her bag. The woman then confronted the pick-pocket and managed to get her phone back. The suspect put up a fight though, grabbing the victim by the hair and punching her multiple times in the head. She then fled the subway station. The victim refused medical attention. The suspect, who is wanted for robbery, is described as Hispanic, approximately 30 years old, 5\u20193\u2033 tall, 100 lbs., with straight long brown hair, brown eyes and was last seen wearing"}, {"title": "bm25", "text": "Shoplifter busted with gun at Saks Fifth Avenue while trying to charge $5,600 bag, $2,800 wallet to stolen card By Rocco Parascandola Police Bureau Chief Claudia Joseph, 32, of Brentwood, L.I., was charged with grand larceny and gun and pot possession after security caught her at Saks Fifth Avenue. (Richard Drew/AP) A pistol-packing Long Island woman was nabbed while trying to swipe luxury accessories from Saks Fifth Avenue in Midtown, police said Tuesday. Claudia Joseph had a loaded .22-caliber Ruger in her bag Monday, when she tried to buy a Louis Vuitton $5,600 bag and wallet, worth $2,800 with a Pennsylvania man's credit card, cops said. Joseph, 32, was using what authorities say looked like a duplicate store credit card belonging to a 67-year-old Pittsburgh man, cops said. Security guards found the handgun and marijuana in her purse, police said. She is charged with grand larceny and gun and pot possession. On May 8, she tried to pull a similar scam at Bloomingdale's, cops said."}, {"title": "bm25", "text": "often in the first, second, third, or fourth position.. Literacy Intervention. The literacy intervention started with letter bags containing items that started with a consonant sound. Children dumped all items out of two letter bags, then sorted them into the correct bag by determining with which letter the object started. For example, the A letter bag might have pictures of an ant, a plastic apple, a drawing of an arm, etc. while the B letter bag might have a ball, a picture of a boy, a small boat, etc. After mastering single-letter bags, children followed the same process with bags for letter blends, such as -bl\u2016 or -wr.\u2016 After completing the letter blend bags, children in the literacy group interacted with end sound flash cards, where there is one end sound, such as -ing,\u2016 and multiple possible beginning sound options to create a word using that end sound. After children mastered basic phonological understandings through the letter bags, letter blend bags, and flash cards, they worked with short children's poems. Poems focused on a specific phonetic ending (i.e. -ay, -ing,est). RAs began the reading session by talking with students for one minute to practice basic conversation skills and oral vocabulary. Then, children began the intervention session by rereading the poem read during the previous session, and were given as much help as necessary, with the goal of increasing fluency, teaching decoding, and exploring comprehension strategies. RAs followed the reading of the familiar poem with questions about the contents of the poem, such as -Where did the"}, {"title": "bm25", "text": "Cons: \"Pay for seat, website said pay for overhead luggage but not true, pay for beverage, no seat recline, long wait for baggage.\" Cons: \"Checked bag was $40 each way and everything cost extra. No drinks etc.\" Pros: \"The crew were very polite, friendly and professional.\" Pros: \"crew was very good.... boarding good too. we sat in exit aisle so great leg room.\" Cons: \"hidden cost re seat costs and baggage costs. should have paid more attention to fine print. was not evident until we printed boarding passes. will not use Frontier again.\" Pros: \"Regular flights are that, they are not first class. Overall it was pleasant, on time, and safe. A normal American experience.\" Cons: \"The fact that they had no other options to get me to Denver. And the help line barely spoke English. So I lost 2 months of planning and couldn't complete the trip. Wooo a refund. Not what I wanted.\" Pros: \"The tailwind\" Cons: \"Crew was over the top obnoxious with constant announcements and sales pitches for a credit card that probably has a fee associated with each swipe. Seats were terribly uncomfortable and did not recline after having to PAY for a place to sit in addition to the airfare.\" Cons: \"Boarding. Why can't airlines go back to the old way of boarding from the rear of the airplane first?\" Cons: \"I got charged $40.00 for my carry-on bag. A cup of coffee costs $2.99 The size of the tray shrank to 1/3 of the usual size\" Pros: \"The flight"}, {"title": "bm25", "text": ">> News Death in Las Vegas Neon Rebirth Suzanne Somers, musical acts entertain at Best of Las Vegas Awards show Best Desserts, Best Dog Park and Best Showroom were among awards presented Saturday at the 35th annual Best of Las Vegas Awards inside The Venetian Theatre. The Vegas brand: Strip reinventing its appeal to tourists By VALERIE PUTNAM SPECIAL TO VIEW March 31, 2016 - 8:52 am March 31, 2016 - 8:52 am As the tourism industry rebounds, the question looms: Does Las Vegas still hold the same appeal to the consumer as it did prior to the recession? Is Las Vegas a good place to raise a family? By SANDY LOPEZ VIEW STAFF WRITER Nationally, Las Vegas is known as the city of slot machines and 24-hour strip clubs. Billboards serve as a constant reminder of all \u201cSin City\u201d has to offer. But venture off the Strip and beyond downtown, and you\u2019ll find parts of the valley that resemble any other piece of suburban America. So, why do we get such a bad rap when it comes to raising families? Strip left reeling: Picking up the pieces after the Great Recession By JAN HOGAN VIEW STAFF WRITER The skies above Las Vegas were sunnier than ever right before 2008. Business was booming, and tourism rates were soaring. Times were good. Paying with plastic: How the recession affected the way we spend Need groceries or a new coat? Just swipe your credit card. According to CardHub.com, a credit card comparison website, Americans were on track to"}, {"title": "bm25", "text": "Washington, D.C., also reimburses SNAP skimming victims. Yet reports of skimming extend far beyond those areas. The Agriculture Department said it does not keep a state-by-state list of claims related to skimming, but in Massachusetts alone, more than $1.6 million in SNAP benefits was stolen from over 5,000 households from June to November, according to the Massachusetts Department of Transitional Assistance. \u201cFor many SNAP beneficiaries, I think the message that they come away with is that they are second-class consumers.\u201d Betsy Gwin, senior attorney at the nonprofit Massachusetts Law Reform Institute Betsy Gwin, senior attorney at the nonprofit Massachusetts Law Reform Institute, said it doesn\u2019t make sense that the lowest-income consumers don\u2019t have the same rights as credit, debit and other prepaid card holders. Her organization has filed a class-action lawsuit against the state\u2019s Department of Transitional Assistance on behalf of skimming victims seeking that their stolen benefits be restored. \u201cFor many SNAP beneficiaries, I think the message that they come away with is that they are second-class consumers,\u201d she said. How skimming happens Skimming is not unique to EBT cards, but security measures such as contactless payments and embedded microchips have combated it in the credit card industry. No SNAP state agency uses cards with chips, according to the Agriculture Department. Security experts say skimming usually occurs without the victim or store owners knowing. Typically, skimmers place devices on card-swiping machines by cash registers. The devices are often plastic keypad overlays that look nearly identical to the card reader terminals themselves. (See a picture of"}, {"title": "bm25", "text": "in Table 4. Compared to the first TransferTransfo baseline, MISSA outperforms the TransferTransfo baseline on the on-task contents. From Table 3, we observe that MISSA maintains longer conversations (14.9 turns) compared with Transfer-Transfo (8.5 turns), which means MISSA is better at maintaining the attacker's engagement. MISSA also has a higher task success score (1.294) than TransferTransfo (1.025), which indicates that it elicits information more strategically. In the top two dialogs (A and B) that are shown in Table 4, both attackers were eliciting a credit card number in their first turns. TransferTransfo directly gave away the informa- tion, while MISSA replied with a semantically-related question \"why would you need my credit card number?\" Furthermore, in the next turn, TransferTransfo ignored the context and asked an irrelevant question \"what is your name?\" while MISSA was able to generate the response \"why can't you use my address?\", which is consistent to the context. We suspect the improved performance of MISSA comes from our proposed annotation scheme: the semantic slot information enables MISSA to keep track of the current entities, and the intent information helps MISSA to maintain coherency and prolong conversations. Results and Analysis Compared to the hybrid model baseline, MISSA performs better on off-task content. As shown in the bottom two dialogs in Table 4, attackers in both dialogs introduced their names in their first utterances. MISSA recognized attacker's name, while the hybrid model did not. We suspect it is because the hybrid model does not have the built-in semantic slot predictor. In the second turn, both"}, {"title": "bm25", "text": "recall every time you walk by the restaurant. Our decisions can also be affected by the vividness and tangibility of the consequences of each choice. Have you ever noticed that you spend with greater abandon when you use a credit card instead of cold hard cash? Research has shown that people are willing to spend significantly more when paying with a credit card than with cash\u2014over twice as much in some studies. When we take bills out of the wallet and hand them over, our senses register that we now have less money. But when the cashier swipes a piece of plastic and gives it back to us, it feels as if we aren't paying anything at all. Even the order in which we encounter options can affect their availability. We tend to better remember the first and last options in a group, so rather than focusing on the merits of each alternative, we may be influenced primarily by the position in which each appeared. This is why items displayed at either end of a store shelf sell more than those in the middle, and it's also the reason an interviewer might unwittingly pay more attention to the first and last candidates in a job interview. # _II._ Every year, I tell my MBA students a near-legendary story about Roberto Goizueta, who was CEO of the Coca-Cola Corporation in the 1980s. When he was first appointed to the position, he discovered at a meeting with the senior vice presidents that the company management was celebrating: They"}, {"title": "bm25", "text": "Davis, and details how he received his superhuman abilities. After scientist Dr. Conrad Markus uses Parker's blood to recreate the formula that created Spider-Man, the Prowler (Aaron Davis) steals the formula, and in the process, one of the spiders created by Markus crawls into the Prowler's duffel bag. Days later, Miles is bitten by the spider during a visit to Aaron's apartment. Morales develops superhuman abilities similar to those Peter has, but does not tell his parents, due to his father's distrust of superheroes, confiding only in his best friend Ganke Lee. Miles, who wants a normal life, is unhappy about having these abilities and resistant to the idea of risking his life to engage in superheroics, a reaction that Bendis wrote to further contrast Miles with Parker. However, after witnessing Spider-Man's death at the Green Goblin's hands, the guilt-ridden Miles realizes he could have helped. After Ganke suggests he assume the Spider-Man mantle, and learns from Gwen Stacy why Parker did what he did, Miles is inspired to try costumed crimefighting. His first time out, he is confronted not only by those who feel his use of the Spider-Man costume is in bad taste, but also by Spider-Woman over his use of the Spider-Man identity. She unmasks and arrests Miles and takes him to S.H.I.E.L.D. headquarters, where Nick Fury reveals that he knows about Miles and his family, including the criminal activity of Miles' uncle. After Miles helps S.H.I.E.L.D. subdue the escaped supervillain Electro, S.H.I.E.L.D. releases Miles and gives him a modified black-and-red version of"}, {"title": "bm25", "text": "Operations, GTE Airfone Inc. provided to the FBI on July 1, 2002, a spreadsheet detailing the GTE Airfone records from flight UA93. Rugg was asked to revisit those records and provide an understanding of the various fields that were depicted in the spreadsheet. He explained that Manual Entry Ind is a \u201ctrue or false field identifying whether a patron manually entered a credit card number.\u201d Significantly, only the phone calls of the three individuals who, according to their next-of-kin had made cell phone calls on 9/11, were marked T (for True), whereas all other Airfone calls were marked F (for False). This raises the question why precisely Burnett, Britton and Wainio reportedly entered their credit card numbers manually, whereas all other Airfone users simply swept their credit card. Was this a clue to a grand deception? (Hijacking America's Mind, pp. 263-264). Mark Rugg's FBI interview can be found here (page 23): https://www.scribd.com/document/24392516/T7-B19-Key-302s-Fdr-Entire-Contents-FBI-302s As Davidsson points out, the three callers whose relatives said used cellphones, also manually entered their credit card numbers for their calls. Everybody else simply swiped their card. Why? Why manually punch in your 16-digit credit card number, digit by digit (in Burnett's case, at least 3 different times)? Wouldn't that be risky? What if a hijacker saw you and thought you were trying to get some fighter jets tailing the plane (in the context of the official story)? What was stopping Tom Burnett, Marion Britton, and Honor Elizabeth Wainio from swiping their credit cards for their own airphone calls? Unless... Those \"airfone\" calls"}], "hoverinfo": "text"}, {"x": [0.03531331568956375, 0.11540928483009338, -0.25111672282218933, -0.15664826333522797, 0.02711326628923416, -0.011652722954750061, 0.07465840876102448, 0.07294948399066925, 0.08345149457454681, -0.03026771917939186], "y": [0.1490306854248047, -0.07899393886327744, -0.02793947234749794, -0.026045963168144226, 0.1057853028178215, -0.029175497591495514, 0.00025554001331329346, -0.006572753190994263, -0.07097695767879486, -0.02971036359667778], "mode": "markers", "name": "Centroids", "marker": {"size": 12, "symbol": "star", "color": "black"}, "text": ["Centroid 0", "Centroid 1", "Centroid 2", "Centroid 3", "Centroid 4", "Centroid 5", "Centroid 6", "Centroid 7", "Centroid 8", "Centroid 9"], "hoverinfo": "text"}], [{"x": [-0.046490561217069626, 0.008884656243026257, 0.05351882427930832, 0.011544227600097656, 0.05300191417336464, 0.04317523166537285, -0.064623162150383, 0.02981438674032688, -0.015662284567952156, -0.02207653596997261, 0.06177382543683052, 0.04387373849749565, 0.07139234989881516, 0.04279707744717598, -0.04457900673151016, 0.03834163397550583], "y": [-0.045574285089969635, -0.1068490520119667, -0.1305028796195984, -0.027111561968922615, -0.047137532383203506, -0.06080658733844757, 0.021567152813076973, -0.09927470982074738, -0.07863476127386093, -0.13160592317581177, -0.07630899548530579, -0.07768029719591141, -0.058405861258506775, -0.07423211634159088, 0.006295458879321814, -0.08421725779771805], "mode": "markers", "name": "Cluster 0", "marker": {"size": 8, "color": "rgb(141,211,199)"}, "text": ["Document 0", "Document 3", "Document 68", "Document 77", "Document 211", "Document 233", "Document 252", "Document 263", "Document 336", "Document 394", "Document 402", "Document 503", "Document 504", "Document 529", "Document 537", "Document 928"], "customdata": [{"title": "rpj-c4", "text": "busting your chops. Let me buy you a coffee next time I see you."}, {"title": "rpj-common-crawl-2023-06", "text": "to bust him down.\u201d"}, {"title": "rpj-common-crawl-2020-05", "text": "those are chops, Your Highness.\u2019 He wanted to know who they were for, and I said, \u2018staff.\u2019 And he said, \u2018Oh, can\u2019t we have those?\u2019 I ended up giving him these big meatier pieces, and the staff had the other pieces.\u201d"}, {"title": "rpj-c4", "text": "I'm sure I have something to say on this matter but I have no idea what. \"Bum!\" will have to do."}, {"title": "rpj-common-crawl-2023-06", "text": "enough that it actually chips off.\""}, {"title": "rpj-common-crawl-2019-30", "text": "era that I say championship or bust."}, {"title": "rpj-c4", "text": "When someone clout chases way too hard and is bound to get burnt out. All he does is try to gain clout, he\u2019s definitely going to be clout burnt. Get a Clout Burnt mug for your buddy Yasemin."}, {"title": "rpj-c4", "text": "head, and someone goes, \u201cWhat happened?\u201d. I said, \u201cOh, I got stabbed\u201d."}, {"title": "rpj-common-crawl-2021-04", "text": "call them? You did. You heard the bumpuses. The bumpuses. You\u2026 you heard the bumpuses\u201d"}, {"title": "rpj-c4", "text": "getting their heads kicked in\u2019 he said sheepishly."}, {"title": "rpj-c4", "text": "down,\" she says, \"because it\u2019s totally bulls**t.\""}, {"title": "rpj-common-crawl-2021-04", "text": "in Bust Their Chops | Permalink | Comments (99)"}, {"title": "rpj-common-crawl-2020-05", "text": "chops"}, {"title": "rpj-c4", "text": "Chops."}, {"title": "rpj-common-crawl-2020-05", "text": "fun. People are busting each other's chops, and it's a sign of affection, truly. It's a true test of love and friendship: can you make a man laugh at himself? So what makes a good burn? Go after targets you love and respect. And hit 'em hard. Copyright 2019 GoodQuote"}, {"title": "rpj-common-crawl-2023-06", "text": "have the chops \u2013 so brace yourselves!\u201d"}], "hoverinfo": "text"}, {"x": [-0.13128043711185455, -0.12191186100244522, -0.12218784540891647, -0.15337277948856354, -0.1249062716960907, -0.12005007266998291, -0.13251522183418274, -0.0983847826719284, -0.14542199671268463, -0.07489015907049179, -0.08286894112825394, -0.0985090509057045, -0.1278049647808075, -0.08795050531625748, -0.12810400128364563, -0.08570973575115204, -0.06919080018997192, -0.0756944939494133, -0.04145560413599014, -0.13128149509429932, -0.06945804506540298, -0.03161889687180519, -0.13301078975200653, -0.06682484596967697, -0.1607363075017929, -0.13128043711185455, -0.13128043711185455, -0.14463824033737183, -0.15337277948856354, -0.10934781283140182, -0.04897058382630348, -0.08468402922153473, -0.05947745218873024, -0.1249062716960907, -0.12344354391098022, -0.13952511548995972, -0.012237446382641792, -0.13303311169147491], "y": [0.08763139694929123, 0.026563744992017746, -0.006233741994947195, 0.061901818960905075, 0.12065527588129044, 0.018961699679493904, 0.11239556968212128, 0.0756048634648323, 0.006612852215766907, 0.07222680747509003, 0.06850267201662064, 0.008444122038781643, 0.042698219418525696, 0.08805058896541595, 0.07312765717506409, 0.10271386057138443, 0.0286293663084507, 0.10542399436235428, 0.004998603370040655, 0.06450831145048141, 0.05509265884757042, -0.08344774693250656, 0.07189019024372101, 0.10297585278749466, 0.038194071501493454, 0.08763139694929123, 0.08763139694929123, 0.008511885069310665, 0.061901818960905075, 0.07466767728328705, 0.08514568954706192, -0.02001038007438183, 0.12518826127052307, 0.12065527588129044, 0.06788992136716843, 0.08390390127897263, 0.00034585309913381934, 0.016457941383123398], "mode": "markers", "name": "Cluster 1", "marker": {"size": 8, "color": "rgb(255,255,179)"}, "text": ["Document 5", "Document 6", "Document 14", "Document 27", "Document 32", "Document 37", "Document 42", "Document 43", "Document 51", "Document 95", "Document 97", "Document 113", "Document 123", "Document 164", "Document 172", "Document 210", "Document 220", "Document 248", "Document 251", "Document 378", "Document 384", "Document 406", "Document 437", "Document 483", "Document 509", "Document 520", "Document 521", "Document 536", "Document 548", "Document 554", "Document 623", "Document 634", "Document 671", "Document 691", "Document 758", "Document 766", "Document 930", "Document 1005"], "customdata": [{"title": "rpj-common-crawl-2019-30", "text": "\u201cburst\u201d won\u2019t work, and \u201cbusted\u201d is more colorful than \u201cdemoted.\u201d Definition 4: \u201cto tame.\u201d This also has history on its side in \u201cbroncobusting.\u201d It can\u2019t be \u201cbroncobursting,\u201d because that would be literally breaking the horse \u2014 into pieces. And when you suspect your house is haunted, who you gonna call? Surely not the \u201cGhostbursters.\u201d Definition 5: \u201cto hit.\u201d This is the other one that really doesn\u2019t work for me, although it\u2019s becoming increasingly common, as in \u201cShe busted him in the face.\u201d Not only does this have a slangy feel, but it\u2019s too general. Did she punch him or slap him? Or smash him with a shovel? Definitions 6 and 7: \u201cto arrest\u201d and \u201cto make a raid on.\u201d These uses of \u201cbust\u201d are fairly common in the world of law and order: \u201cThey were busted for drug use.\u201d \u201cIt\u2019s the third time the bar has been busted.\u201d This sense has gained even wider application for being caught doing something you shouldn\u2019t, even if it isn\u2019t illegal. The other noun \u201cbust\u201d is \u201ca piece of sculpture representing the head, shoulders and upper chest of a human body.\u201d It also can mean \u201cthe human bosom,\u201d especially in reference to women, but for that I recommend hands off. In the Sherlock Holmes story \u201cThe Adventure of the Six Napoleons,\u201d the title refers to plaster busts of the French emperor that are being broken by the villain at the crime scenes. I wouldn\u2019t say the busts were being busted, but the person who was breaking them got busted. Barry"}, {"title": "rpj-stackexchange", "text": "Q: \"busting in their crib\" what does it mean? \"Draftpicks busting in their cribs\" that said one of the man from basketball video \"Game of zones\" and I'm not sure what does it mean...Does it mean screaming or dying? is that means that nobody take care of them? Thank you for any answer in advance! A: It means they are hanging out/having fun. Draftpicks - new players picked for the team. Busting - a verb describing hanging out, dancing, or drinking. Cribs - houses."}, {"title": "rpj-common-crawl-2022-05", "text": "is a cool gang member, when he is only fooling himself. Citation from \"Ratha Be Ya Nigga\", All Eyez on Me (1996 album), 2pac censored in hope of resolving Google's penalty against this site. Last edited on Apr 20 2013. Submitted by Courdan, N. on Dec 29 2003. Snitch, or tattle tale. I got fired because I left work 15 minutes early, and that busta told the manager. Last edited on Aug 04 2004. Submitted by Stephen G. from Atlanta, GA, USA on Aug 04 2004. A punk. You're a buster! Last edited on Sep 28 2004. Submitted by Rodney from Long Beach, CA, USA on Sep 28 2004. Often said to a child when they've done something wrong or bad. Ok, Buster! You're grounded for a week! Last edited on Jul 28 2010. Submitted by Anonymous from Okotoks, AB, Canada on Feb 09 2009. A male who puts his selfish desires ahead of family and friends. With harmful, hurtful, and or injurious results. \"That dude is a buster, he just spent $400. on a new suit while his wife and kids don't even have food on the table to eat.\" Last edited on May 06 2011. Submitted by Anonymous on Jul 28 2010. A guy who will fight a woman, but will coward and use every trick in the book, to not fight another guy. He is a buster, always slapping around his own woman, while the guys on the corner will clown him left and right, and he never even considers touching them. Last"}, {"title": "rpj-common-crawl-2023-06", "text": "to fall, hurt, injure one's self. Last edited on Jul 25 2010. Submitted by Christina K. from Cleveland, TX, USA on Jan 12 1999. to give to; hand over. Bust me that pen. See more words with the same meaning: to give. Last edited on Jul 25 2010. Submitted by Tia from South Carolina, USA on Jun 24 1999. to punch or hit. If you don't shut up I'm going to bust you in the mouth. See more words with the same meaning: to hit, punch, slap. Last edited on Jul 25 2010. Submitted by David R. from Navasota, TX, USA on Jan 11 2004. to perform a turn in an automobile. At the light, bust a left. See more words with the same meaning: driving and driving maneuvers. Last edited on Jul 25 2010. Submitted by Anonymous on Aug 05 2005. See also bust a cap, busted. Last edited on Jun 26 2009. Submitted by Walter Rader (Editor) from Sacramento, CA, USA on Jun 26 2009. bust a cap to fire a bullet; \"shoot\". I'm going to bust a cap in your ass. See more words with the same meaning: to shoot. Last edited on Apr 17 2013. Submitted by D.J. Pabst from Stroudsburg, PA, USA on Dec 19 1997. The \"percussion cap,\" introduced around 1830, was used to make muzzle-loading rifles fire reliably under any weather condition. (It replaced the flint.) The firearm's hammer would strike the cap, which would ignite the gunpowder, which would expel the bullet. The percussion cap gave way to"}, {"title": "rpj-common-crawl-2019-30", "text": "Wood on Words: Using the wrong word? Consider yourself busted Barry Wood Earlier this month, the Rockford Register Star ran a story assessing certain National Football League players\u2019 chances for success this coming season. It had the headline: \u201cOverrated players who could earn \u2018burst\u2019 label.\u201d The correct noun for a failure or a flop is \u201cbust.\u201d \u201cBurst\u201d is entirely inappropriate in this context. I think someone substituted the wrong word because \u201cbust\u201d has a tarred reputation \u2014 particularly as a verb. Webster\u2019s says it was originally considered a dialectical variant of \u201cburst,\u201d but now it rates the \u201cinformal\u201d label \u2014 in other words, \u201ccasual\u201d or \u201ccolloquial.\u201d Let\u2019s take a closer look at some of the uses, as listed in the dictionary, of this verb some people love to hate. Definition 1: \u201cto burst or break.\u201d This is the one I find least acceptable. You don\u2019t \u201cbust a door down and bust into a room,\u201d you \u201cbreak\u201d the door and \u201cburst\u201d into a room. In the same vein, bones, glassware, hearts and such things are \u201cbroken,\u201d not \u201cbusted.\u201d \u201cBurst\u201d is also better for \u201cto be filled,\u201d as in \u201cbursting with pride,\u201d not \u201cbusting.\u201d Definition 2: \u201cto make penniless or bankrupt.\u201d In this sense, \u201cburst\u201d doesn\u2019t work \u2014 it\u2019s too violent, for one thing. This sense of \u201cbust\u201d also has economic tradition going for it, in the concept of the \u201cboom and bust cycle.\u201d Definition 3: \u201cto demote in rank.\u201d Being \u201cbusted\u201d to a lower classification is fairly common usage in the military. This is another case where"}, {"title": "rpj-common-crawl-2023-06", "text": "weak; not worthy of respect. Last edited on Apr 20 2013. Submitted by Dion H. from Texas Tech University, Lubbock, TX 79415, USA on Mar 16 1999. n. a former friend who sold out to another social group. He was cool but now he's a buster. Last edited on Jul 28 2010. Submitted by Charles B. from Westminster, CO, USA on Jun 16 1999. An uncool person. Nerd. Chump. That dude's a buster. Last edited on Jul 28 2010. Submitted by Reginald G. from Fort Bragg, NC, USA on Nov 21 2001. a person who is being scandalous. You're a buster, Dustin. Last edited on May 06 2011. Submitted by katie from Daytona Beach, FL, USA on Mar 28 2002. A person that does not add more fun too a fun situation. Don't go to that club, it's for busters. Last edited on Jul 28 2010. Submitted by will d. from Detroit, MI, USA on Mar 11 2003. A man who falsely believes that he is a cool gang member, when he is only fooling himself. Citation from \"Ratha Be Ya Nigga\", All Eyez on Me (1996 album), 2pac censored in hope of resolving Google's penalty against this site. Last edited on Apr 20 2013. Submitted by Courdan, N. on Dec 29 2003. Snitch, or tattle tale. I got fired because I left work 15 minutes early, and that busta told the manager. Last edited on Aug 04 2004. Submitted by Stephen G. from Atlanta, GA, USA on Aug 04 2004. A punk. You're a buster!"}, {"title": "rpj-c4", "text": "1. slang To escape from a place or thing (often prison). That criminal did bust out, but he was caught only a mile from the prison. 2. slang To help one to escape from a place or thing (often prison). In this usage, a noun or pronoun is typically used between \"bust\" and \"out.\" We can't just leave him here to rot in a jail cell\u2014we have to bust him out! Don't worry, I'll pull the fire alarm and bust you out of detention. 3. To bring out something for use. Bust out the champagne\u2014we've got an engagement to celebrate! 4. To suddenly perform a particular action. My mother seemed fine this morning but then busted out crying at the funeral. The kids busted out laughing when the clown fell down on stage. 5. To pop out of something, often clothes that are too small. I'm sorry, but that top just doesn't fit you\u2014you're practically busting out of it! 6. slang To dismiss or expel someone from school. The committee evaluating the plagiarism charges ultimately decided to bust the student out of school. Sl. to break out of some place, especially a prison. (Bust is a nonstandard form of burst meaning 'break' here.) Somehow the gangsters busted out of prison and left the country. They busted out together. 1. Sl. to help someone escape from prison. (Bust is a non-standard form of burst meaning 'break' here.) Lefty did not manage to bust Max out of prison. Lefty wanted to bust out some of his friends. 2."}, {"title": "rpj-c4", "text": "Sl to expel or force someone to withdraw from school. (Bust is a nonstandard form of burst meaning 'break' here.) The clean finally busted Bill out of school. The clean busted out the students with very low grades. in. to break out of some place, especially a prison. (Bust is a nonstandard form of burst meaning \u201cbreak\u201d here.) Somehow the gangsters busted out of prison and left the country. Well, when it come to that it worked the crowd like you never see anything like it, and everybody broke down and went to sobbing right out loud -- the poor girls, too; and every woman, nearly, went up to the girls, without saying a word, and kissed them, solemn, on the forehead, and then put their hand on their head, and looked up towards the sky, with the tears running down, and then busted out and went off sobbing and swabbing, and give the next woman a show. Freshman Jack Marder busted out of a slump in dramatic fashion, belting a three-run home run with two outs in the top of the ninth inning to complete Oregon's 9-8 comeback victory over Arizona in their Pac-10 baseball series finale Sunday afternoon. Perpetrators would find dormant companies with early establishment dates in the D&B database and then assume their identities and do a lot of buying before they busted out, he explains."}, {"title": "rpj-common-crawl-2022-05", "text": "What does \u201cBuster\u201d mean? in DICTIONARY by DailyRapFacts October 17, 2020, 7:43 pm updated February 3, 2021, 2:33 pm What do rappers mean by \u201cBuster\u201d? What is a \u201cBuster\u201d? The slang term \u201cBuster\u201d (also spelled \u201cbusta\u201d) is a derogatory noun which is used by rappers in rap/hip-hop music to represent someone who is unpopular and weak. Buster means a chump, snitch and/or an uncool person. The term \u201cBuster\u201d has been used by 2Pac, The Notorious B.I,G., Eminem, Boosie, 21 Savage, Tyler the Creator, French Montana, and many more rappers. Purchase a Rap Dictionary Book Read: What does \u201cCollab\u201d mean? Read: What does \u201cInterlude\u201d mean? Read: What does \u201cPetty\u201d mean? Read: What does \u201cRemix\u201d mean? in FACTS, 2010s, ARTICLE"}, {"title": "rpj-common-crawl-2023-06", "text": "Crack the whip | Idiom Crack the whip is an idiom that may be older than you think. We will examine the meaning of the idiom crack the whip, where it came from, and some examples of its use in sentences. Crack the whip means to push someone to work harder, to demand more work from someone or that someone work faster or longer. A boss who is known to crack the whip is unreasonable. Usually, one can not satisfy a boss who will crack the whip. The idiom crack the whip is derived from a literal phrase, crack the whip, that came into use at least as early as the 1600s. This phrase describes the literal cracking of a whip over a horse\u2019s head to startle him into obeying. The idiom crack the whip came into use sometime in the latter-1800s. Crack the whip is also a well-known children\u2019s game that involves children holding hands in a chain. The lead child runs in random patterns across an area, dragging the line of children behind him so that the formation resembles a cracking whip. Related phrases are cracks the whip, cracked the whip, cracking the whip. Somebody has to crack the whip over the company\u2019s messy efforts, and the hedge fund Elliott Management raised its hand this week for the job. (The Wall Street Journal) With 63 clauses of the Motor Vehicles (Amendment) Act, 2019, coming into effect from September 1, the Centre is all set to crack the whip on some of the most common"}, {"title": "rpj-common-crawl-2021-04", "text": "security \u201d and \u201c Christmas?. Similar ) someone else 's mod unless permission has been given 2005, 1997, 1991 by Penguin House! Can be in all Caps, lowercase or a mixture of both or Pass riffs on enjoyable, pleasant! 2002 what does smashing someone mean ) blacked out to resolve Google 's penalty against this site old-fashioned ] it was smashing pronunciation smashing. As varied as types of butterflies, jackets, currencies, vegetables and knots last-out circuit, a. Risky on other levels, as well Starship, and violently ; shatter Yule and. Mean when you dream about killing someone cake smashing can actually be risky on other levels as! What it is hit or dropped of words from topics as varied as types butterflies. Jeff Weaver: what is the celebration of something in me, that is in me that is impressive definite... Son abuses his son and it is in you, but the only thing you n't. The act of breaking something into small pieces: 2. to cause something to break to pieces a. Also been extended in slang as a metaphor for \u201c gnashing of teeth \u201d literally means \u201c grinding one s! 2020 is \u2026 '' \u2014it 's a guy says he wants to screw we had smashing! A show of affection.Given by touch or implied by speaking the word smashing 1! Google 's penalty against this site you smash something or if it,. Greek phrase for \u201c gnashing of teeth \u201d literally means \u201c grinding one \u2019 s this latter,! Other harmful software success for"}, {"title": "rpj-c4", "text": "A person not fit to walk through the front door of your home because they are too embarrassing to claim even in your own house. They usually have more confidence than they deserve to have. This person thinks that they are the real thing and that you actually take them seriously- they are mistaken. Person A:Why don't you hold hands with your bf/gf in the mall? Person B: Because that is embarrassing, that is a busted boo! Example 2:Eww, that look at that ugly boy over there, he is a busted boo! Get a Busted Boo mug for your Facebook friend Jerry."}, {"title": "rpj-common-crawl-2019-30", "text": "a liquor store. Last edited on Apr 23 2016. Submitted by Chuck S. on Aug 30 2015. to make money, especially illegally. For example: stealing, selling drugs, etc. Usually used in terms like \"catch a lick\", \"hit a lick\", \"bust a lick\", \"bust some licks\", etc. to buy drugs. to hit, beat, pummel, slap, etc. Last edited on Jan 12 2012. Submitted by Walter Rader (Editor) from Sacramento, CA, USA on Jan 12 2012. make (one's) bitch see bitch. Citation from \"Peter Griffin: Husband, Father... Brother?\", Family Guy (TV), Season 3 Episode 14 (2001) censored in hope of resolving Google's penalty against this site. Citation from \"Failure is Not a Factory-Installed Option\", American Dad! (TV), Season 2 Episode 3 (2006) censored in hope of resolving Google's penalty against this site. Last edited on Mar 02 2013. Submitted by Walter Rader (Editor) from Sacramento, CA, USA on Nov 02 2011. to be extremely good. This game owns! Last edited on May 05 2011. Submitted by Greg W. from Morgan Hill, CA, USA on Aug 18 2002. to defeat someone severely, as in a verbal argument or in a competition, often to the point of humiliation. To \"put someone in their place.\" You just got owned! Citation from \"Dave of the Dead\", Happy Endings (TV), Season 1 Episode 7 (2011) censored in hope of resolving Google's penalty against this site. Last edited on May 06 2011. Submitted by Daniel H. from CA, USA on Feb 09 1999. for a non-human subject to be unconquerable or to defeat a"}, {"title": "rpj-c4", "text": "To break someone off means to give a gift in exchange for going out with that person. \"He done broke you off\" means the reason he gave you that watch was just to win your company. \"She'd have to break me off\" means she'd have to spend money on me if she wants to be seen with me. It can also be used as an expression of generosity or to indicate someone has done a favor."}, {"title": "rpj-c4", "text": "I have a British friend, and we text each other sometimes. Yesterday she sent me a message with the expression \"brikking it\". Could someone explain it to me? I am not afraid to spell it out for the avoidance of doubt. Bricking it is derived from shitting a brick, meaning being very afraid. I've never seen it spelt that way, but urban dictionary gives the meaning I am aware of, basically \"scared\" but complete with all the unpleasant connotations given. Not the answer you're looking for? Browse other questions tagged idioms verbs . What Does Strike a Chord Mean? What does this vulgar expression mean? \u201cDifferent folks different strokes:\u201d British, American, or other? \u201cI am looking for someone settled\u201d - what does it mean?"}, {"title": "rpj-common-crawl-2020-05", "text": "I Blew It Meaning/Usage: Used to tell someone that you made a big mistake Explanation: When something blows up, it is destroyed. Therefore, blow up implies in this context means to make a big mistake to damage any opportunities. Because making mistakes are very common, a simple way of saying this was needed so people started saying, \"I blew it.\" \"I really thought I was going to get the promotion, but I blew it.\" \"I thought he really liked me but I blew it.\" \"I was trying to surprise her for her birthday, but I blew it.\" A. \"How did your interview go?\" B. \"Not so good, I was very nervous.\" A. \"Why were you nervous?\" B. \"I think I might have messed up on a few questions so I think I blew it.\" \"I messed up.\" \"I missed my opportunity.\""}, {"title": "rpj-common-crawl-2023-06", "text": "expression bums makes me want to burst out laughing. Because it\u2019s one of those other German words \u2013 literally it means, to bump! bounce! bang! Or normally used to run into something or someone. But it also means\u2026 And I remembered another one of the editors during the early days: Carmen Jung using it and then telling me what it really meant in answer to my simple question. \u2018Do you have a boyfriend?\u2019 \u2018A steady one? No. But I do have someone I have bumsverh\u00e4ltnis with\u2026recently it was perfectly defined in Justin Timberlake and Mila Kunis movie, Friends with Benefits. And then she goes on to elaborate, how perfectly it works for her. That they have each other, and yet they are free. \u2018I wouldn\u2019t do this to a good buddy like you. But she called me a while ago whether we could have a rendezvous tonight that her husband had to take a sudden trip to Hamburg.\u2019 \u2018I still don\u2019t say anything. The expression on my face has a question mark. \u2018And Hilda knows I am having dinner with you. You see?\u2019 I certainly do. What could be more convenient? But I still don\u2019t want to see it. I notice a certain dismay on his face and then watch him slide open his desk drawer and pull out the two strips of the tickets and hand them to me. Printed on them is Paul McCartney & Wings. Not a bad trade off. \u2018I guess.\u2019 I say. Since I am busy for the next two evenings"}, {"title": "rpj-common-crawl-2021-04", "text": "Definition of Busted. Meaning of Busted. Synonyms of Busted Here you will find one or more explanations in English for the word Busted. Also in the bottom left of the page several parts of wikipedia pages related to the word Busted and, of course, Busted synonyms and on the right images related to the word Busted. Definition of Busted Bust Bust (b[u^]st), n. [F. buste, fr. It. busto; cf. LL. busta, bustula, box, of the same origin as E. box a case; cf., for the change of meaning, E. chest. See Bushel.] 1. A piece of sculpture representing the upper part of the human figure, including the head, shoulders, and breast. Ambition sighed: she found it vain to trust The faithless column, and the crumbling bust. --Pope. 2. The portion of the human figure included between the head and waist, whether in statuary or in the person; the chest or thorax; the upper part of the trunk of the body. Meaning of Busted from wikipedia - Busted may refer to: Busted (band), an English rock band Busted (2002 Busted album), the debut album by the band Busted (2004 Busted album), a compilation... - excited? Yes, the detectives are back on 8 Nov! Busted! S2 only on #Netflix. #Busted #KVariety #BustedSeason2 \"\uc548\uc7ac\uc6b1, \uc74c\uc8fc\uc6b4\uc804 \uc0ac\uacfc\u2026'\uc601\uc6c5' \uce21 \"\ud5a5\ud6c4 \uc77c\uc815? \ud655\uc778 \uc911\" [\uacf5\uc2dd\uc785\uc7a5]\"... - blackjack Boom and bust economic cycle Draft bust in sports, referring to an highly touted athlete that does not meet expectations Busted (disambiguation)... - 2013). \"Busted 'were approached for Big Reunion'\". Digital Spy. Retrieved 2 April"}, {"title": "rpj-common-crawl-2023-06", "text": "son looks up at me and breaks into his wonderful toothless smile, my eyes fill up and I. This oft-repeated quote is most definitely true in child custody cases. Turning the other cheek and avoiding retaliation helps your custody case more than. paul s adams attorney|speed limit up ahead sign WebTo crack is to break without dividing into parts: The building's foundation cracked during the earthquake. Crack can also mean to break apart: \"Burning branches crack from trees and fall in showers of sparks at my feet\" (Suzanne Collins). Fracture applies to a break or crack in a rigid body: Heat and pressure caused the bedrock to fracture. The reality star is seemingly okay following the video of her baby daddy in to go for baby #2 before their most recent breakup and latest cheating. \u201cMy daughter and I and her dad are really close and love each other loads. I made them break up a little over a month ago because he was so mean at. Quotes tagged as \"hurtful-words\" Showing of Tell them where your mind was when you broke up, why you believe it was a mistake, and why you see. Brett grew up in Edmond, OK, a suburb of Oklahoma City, and attended the University of Oklahoma. He took a break in college to live in Tijuana, Mexico for two. If you have something in your past or haven't moved past the reason why you split up, that's something you should talk about with your baby daddy. Webto cause to separate into"}, {"title": "rpj-common-crawl-2021-04", "text": "site. See more words with the same meaning: exciting, fun, full of people. Last edited on Jul 12 2011. Submitted by Anonymous on Oct 01 2001. crack cocaine. Citation from \"Megablast\" by Public Enemy censored in hope of resolving Google's penalty against this site. Last edited on Jul 27 2011. Submitted by Criscko on Jul 27 2011. an intravenous injection of crystal methamphetamine. I am about to do a blast and fuck 'til sunrise! Last edited on Jun 21 2018. Submitted by Anonymous on Jun 10 2018. Person 1: Wtf! I did not know you (Blast)! Person 2: Yeah bro, I been( blast-ing ) for A while now! verb - ambitransitive to ejaculate. I just blasted her in the ass. See more words with the same meaning: to ejaculate. Last edited on Jan 24 2011. Submitted by eric j. from Iowa City, IA, USA on Apr 02 2002. to defecate. That food made me have to blast. I blasted a dookie earlier. See more words with the same meaning: to defecate, poop, shit. Last edited on Jan 24 2011. Submitted by Jessica from Chicago, IL, USA on Sep 05 2003. to talk about one's personal life in a negative way on social media websites such as Facebook; \"air (one's) dirty laundry\". What I did was embarrassing enough - you didn't have to go and blast it on Facebook. Just because you and your boyfriend are fighting, you don't have to go blasting it all over Twitter, you know. See more words with the same meaning: to"}, {"title": "rpj-c4", "text": "a bunch of silly questions to break the ice, but it turns out everyone started laughing and getting to know each other on their own! Sometimes it only takes one person to say something funny to break the ice in a tense group. If it were so easy to break the ice, anyone could do it. While this is usually used in the context of a romantic relationship, you can break anyone\u2019s heart, or cause someone great grief and sadness. If you make someone just a little bit sad, you can use break your heart jokingly. However, if you use the phrase to describe something more serious, it can mean that you will need some time to recover from the broken heart. I told him I loved him, and then he broke my heart by saying that he had actually been trying to break up with me during that conversation. When I chose to become an entrepreneur instead of going to graduate school, my grandma told me that I was breaking her heart. \u201cDo you really like her design more than mine? Gosh, you\u2019re breaking my heart,\u201d Jasmine said jokingly. If you have a rebellious streak in you and want to be known as a bad boy or bad girl, you can break the rules or break the law. These mean that you do something that you should not, either because there are rules or a law that prohibits it. You can become a rule breaker or a law breaker. I thought that the rules were"}, {"title": "rpj-common-crawl-2023-06", "text": "Quotes About Busted Enjoy reading and share 176 famous quotes about Busted with everyone. \u201cDown the road of hate, at every busted corner lurks the need for love.\u201d \u2014 Anthony Liccione \u2014 \u201cNever judge a person until you've walked a mile in their busted up shoes and haven't had any money for medication for two weeks.\u201d \u2014 Lori Lesko \u201cPolice,\" I say. \"Let's see your badge.\" \"I'm undercover. And I'm going to need that as evidence.\" She hands me the spiff. I take a drag. \"Yep, it's the real deal. You're busted.\u201d \u2014 Mark Mills \u201cThen again,\" he continues, turning to me as we approach the busted old birdbath- the point where Neverland ends and the rest of the world begins- \"never say never.\u201d \u2014 Kate Ellison \u201cA bird painted not with beauty but with all the dirt and wounds collected in a long hard life, in battle, in love, with torn feathers and a busted leg and a chipped beak and one of its eyes half closed; and yet a bird of deeper loveliness for all of that.\u201d \u2014 Jeff Noon \u201cI was part of a sting operation. We busted some bees.\u201d \u2014 Jarod Kintz \u201cAh, damn it, lass,'he called after her. 'I've busted my stitches wide open.' 'What?'she cried, hurrying back to him. 'Let me see!' 'Ah-ha!' He snared her around the waist, dragging her down with him to his lap.'You still care for me!\u201d \u2014 Kresley Cole \u201cSo, Acheron,\" Kyrian said, hijacking their conversation. \"What happened to your car? I saw the busted"}, {"title": "rpj-common-crawl-2023-06", "text": "just blasted her in the ass. See more words with the same meaning: to ejaculate. Last edited on Jan 24 2011. Submitted by eric j. from Iowa City, IA, USA on Apr 02 2002. to defecate. That food made me have to blast. I blasted a dookie earlier. See more words with the same meaning: to defecate, poop, shit. Last edited on Jan 24 2011. Submitted by Jessica from Chicago, IL, USA on Sep 05 2003. to talk about one's personal life in a negative way on social media websites such as Facebook; \"air (one's) dirty laundry\". What I did was embarrassing enough - you didn't have to go and blast it on Facebook. Just because you and your boyfriend are fighting, you don't have to go blasting it all over Twitter, you know. See more words with the same meaning: to insult, complain, criticize. Last edited on Jan 24 2011. Submitted by Anna from Aumsville, OR, USA on Jan 23 2011. of recorded music, to play loudly. In this sense, \"blast\" can also be used in the noun form. Citation from \"New Car\", Up All Night (TV), Season 1 Episode 4 (2011) censored in hope of resolving Google's penalty against this site. Turn up the music on full blast for the party tonight. See more words with the same meaning: music (related to). Last edited on Jan 07 2012. Submitted by Walter Rader (Editor) from Sacramento, CA, USA on Oct 27 2011. to express anger or surprise What the blazes is this mountain?! Last edited"}, {"title": "rpj-common-crawl-2023-06", "text": "might come from the feeling of disappointment one experiences after the literal bubbles they blew pop. To elaborate, blowing bubbles is a fun activity kids do with their parents. During this activity, it\u2019s common for kids to try to keep their bubbles floating for as long as possible, especially when they blow one that is bigger than the rest. Sooner or later, though, that big bubble they are trying to keep afloat will bump into something and pop. Be it the ground, a wall, or someone\u2019s finger poking it, that bubble is gonna burst one way or another, and when it does, the fun is brought to an immediate end. \u201cAw, I had it floating for so long!\u201d A measure of disappointment is felt. Therefore, it seems this came to be applied to other situations where a person\u2019s happy moment is brought to an abrupt end. For example, someone might be really excited to see a new movie, but when they learn that all the tickets are sold out, their excitement quickly turns to disappointment. \u201cAw, I really wanted to see it tonight.\u201d It\u2019s as if their bubble was burst. Tip: If you liked reading about this phrase, consider heading over to our list of phrases starting with \u201cB\u201d to find similar sayings. There are tons to explore! I hate to burst your bubble, Tim, but I won\u2019t be able to pay you back that $50 I owe you until later this month. It burst my bubble to hear the news about that new sports video"}, {"title": "rpj-common-crawl-2022-05", "text": "edited on Nov 16 2011. Submitted by Anonymous on Jul 28 2010. Busta. Concatenation of bust a. As in to bust one's head in. To collapse someone's skull, such as with a weapon, especially with a fist. Heard in rap music. cool (one's) boots to calm down from anger. Put him in lockup so he can cool his boots. Last edited on Mar 05 2013. Submitted by Walter Rader (Editor) from Sacramento, CA, USA on Mar 05 2013. acronym for \"cash rules everything around me\". From a track of the same title on Wu-Tang Clan's debut album Enter the Wu-Tang (36 Chambers). You know why I'm slanging. CREAM, man. Last edited on Mar 08 2010. Submitted by Caleb K. from Hawaii, USA on Aug 17 1998. offspring of a mixed-race couple (black and white) This definition is questionable and is pending deletion. It will be saved from deletion if legitimate citations are found. noun - uncountable I'm all out of cream. See more words with the same meaning: money. Last edited on Jul 24 2010. Submitted by J from NJ, USA on Jan 03 2000. Another word for high quality Crack Cocaine \"solids, dimes, got that CREAM!\" verb - intransitive of either gender: to get excited or enjoy thoroughly. (Used in reference to sexual excitement.) Your spaghetti is so good I'm creaming! See more words with the same meaning: excited, energetic. Last edited on Jul 23 2010. Submitted by Audrey M. from UC Berkeley, Berkeley, CA, USA on Jan 22 1999. in females: to produce lubricant;"}, {"title": "rpj-common-crawl-2019-30", "text": "\u201cburst\u201d won\u2019t work, and \u201cbusted\u201d is more colorful than \u201cdemoted.\u201d Definition 4: \u201cto tame.\u201d This also has history on its side in \u201cbroncobusting.\u201d It can\u2019t be \u201cbroncobursting,\u201d because that would be literally breaking the horse \u2014 into pieces. And when you suspect your house is haunted, who you gonna call? Surely not the \u201cGhostbursters.\u201d Definition 5: \u201cto hit.\u201d This is the other one that really doesn\u2019t work for me, although it\u2019s becoming increasingly common, as in \u201cShe busted him in the face.\u201d Not only does this have a slangy feel, but it\u2019s too general. Did she punch him or slap him? Or smash him with a shovel? Definitions 6 and 7: \u201cto arrest\u201d and \u201cto make a raid on.\u201d These uses of \u201cbust\u201d are fairly common in the world of law and order: \u201cThey were busted for drug use.\u201d \u201cIt\u2019s the third time the bar has been busted.\u201d This sense has gained even wider application for being caught doing something you shouldn\u2019t, even if it isn\u2019t illegal. The other noun \u201cbust\u201d is \u201ca piece of sculpture representing the head, shoulders and upper chest of a human body.\u201d It also can mean \u201cthe human bosom,\u201d especially in reference to women, but for that I recommend hands off. In the Sherlock Holmes story \u201cThe Adventure of the Six Napoleons,\u201d the title refers to plaster busts of the French emperor that are being broken by the villain at the crime scenes. I wouldn\u2019t say the busts were being busted, but the person who was breaking them got busted. Barry"}, {"title": "rpj-common-crawl-2019-30", "text": "\u201cburst\u201d won\u2019t work, and \u201cbusted\u201d is more colorful than \u201cdemoted.\u201d Definition 4: \u201cto tame.\u201d This also has history on its side in \u201cbroncobusting.\u201d It can\u2019t be \u201cbroncobursting,\u201d because that would be literally breaking the horse \u2014 into pieces. And when you suspect your house is haunted, who you gonna call? Surely not the \u201cGhostbursters.\u201d Definition 5: \u201cto hit.\u201d This is the other one that really doesn\u2019t work for me, although it\u2019s becoming increasingly common, as in \u201cShe busted him in the face.\u201d Not only does this have a slangy feel, but it\u2019s too general. Did she punch him or slap him? Or smash him with a shovel? Definitions 6 and 7: \u201cto arrest\u201d and \u201cto make a raid on.\u201d These uses of \u201cbust\u201d are fairly common in the world of law and order: \u201cThey were busted for drug use.\u201d \u201cIt\u2019s the third time the bar has been busted.\u201d This sense has gained even wider application for being caught doing something you shouldn\u2019t, even if it isn\u2019t illegal. The other noun \u201cbust\u201d is \u201ca piece of sculpture representing the head, shoulders and upper chest of a human body.\u201d It also can mean \u201cthe human bosom,\u201d especially in reference to women, but for that I recommend hands off. In the Sherlock Holmes story \u201cThe Adventure of the Six Napoleons,\u201d the title refers to plaster busts of the French emperor that are being broken by the villain at the crime scenes. I wouldn\u2019t say the busts were being busted, but the person who was breaking them got busted. Barry"}, {"title": "rpj-common-crawl-2023-06", "text": "Last edited on Sep 28 2004. Submitted by Rodney from Long Beach, CA, USA on Sep 28 2004. Often said to a child when they've done something wrong or bad. Ok, Buster! You're grounded for a week! Last edited on Jul 28 2010. Submitted by Anonymous from Okotoks, AB, Canada on Feb 09 2009. A male who puts his selfish desires ahead of family and friends. With harmful, hurtful, and or injurious results. \"That dude is a buster, he just spent $400. on a new suit while his wife and kids don't even have food on the table to eat.\" Last edited on May 06 2011. Submitted by Anonymous on Jul 28 2010. A guy who will fight a woman, but will coward and use every trick in the book, to not fight another guy. He is a buster, always slapping around his own woman, while the guys on the corner will clown him left and right, and he never even considers touching them. Last edited on Nov 16 2011. Submitted by Anonymous on Jul 28 2010. Busta. Concatenation of bust a. As in to bust one's head in. To collapse someone's skull, such as with a weapon, especially with a fist. Heard in rap music. cool (one's) boots to calm down from anger. Put him in lockup so he can cool his boots. acronym for \"cash rules everything around me\". From a track of the same title on Wu-Tang Clan's debut album Enter the Wu-Tang (36 Chambers). You know why I'm slanging. CREAM, man. See"}, {"title": "rpj-common-crawl-2023-06", "text": "to fall, hurt, injure one's self. Last edited on Jul 25 2010. Submitted by Christina K. from Cleveland, TX, USA on Jan 12 1999. to give to; hand over. Bust me that pen. See more words with the same meaning: to give. Last edited on Jul 25 2010. Submitted by Tia from South Carolina, USA on Jun 24 1999. to punch or hit. If you don't shut up I'm going to bust you in the mouth. See more words with the same meaning: to hit, punch, slap. Last edited on Jul 25 2010. Submitted by David R. from Navasota, TX, USA on Jan 11 2004. to perform a turn in an automobile. At the light, bust a left. See more words with the same meaning: driving and driving maneuvers. Last edited on Jul 25 2010. Submitted by Anonymous on Aug 05 2005. See also bust a cap, busted. Last edited on Jun 26 2009. Submitted by Walter Rader (Editor) from Sacramento, CA, USA on Jun 26 2009. bust a cap to fire a bullet; \"shoot\". I'm going to bust a cap in your ass. See more words with the same meaning: to shoot. Last edited on Apr 17 2013. Submitted by D.J. Pabst from Stroudsburg, PA, USA on Dec 19 1997. The \"percussion cap,\" introduced around 1830, was used to make muzzle-loading rifles fire reliably under any weather condition. (It replaced the flint.) The firearm's hammer would strike the cap, which would ignite the gunpowder, which would expel the bullet. The percussion cap gave way to"}, {"title": "rpj-c4", "text": "1. tv. to cause lovers to separate; to break up a pair of lovers, including married persons. (Bust is a nonstandard form of burst meaning \u201cbreak (apart)\u201d here.) Mary busted up Terri and John. 2. tv. to beat someone up; to batter someone. You want me to bust you up?"}, {"title": "rpj-stackexchange", "text": "one of the senses of the verb crack. 3 : fail: such as a: to lose control or effectiveness under pressure \u2014 often used with up. // The stress was so great that she started to crack up. I can't find a YouTube video related to looting as a side effect of the lockdown with \"cracked\" in the title, but it's in the right vicinity. A possible use in such a title could be \"People locked down for months have finally cracked.\""}, {"title": "rpj-common-crawl-2021-04", "text": "chicken instead of a pianist!!! I was thinking about it for the mayo... ok for \"blew\" then!! And what does \"blew a seal\" means about the car? Because there would be no need of this story if the man was not saying what happened to the car... By the way, a seal is \"phoque\" in french, and english spokers hate using it, because phoque is prononced \"fuck\"... \"Blew a seal\" in relation to a car ... Seal means the gaskets between the sections of your engine . Americans will say \"blew\" as if saying exploded or ruptured. \"I blew a tire\" \"Lookout ! She's going to blow\". Actually I think it would be funnier to hear an american trying to tell the seal joke in french. James Graham Location: Cranston, Rhode Island This is along the same lines. http://www.youtube.com/watch?v=UO9A4p1Qsvk Now I get them all perfectly thanks! Well in French you can try to say that you explode a fuck... explose un phoque, and it would mean nothing! You can definitely do something in Spanish for the pianist joke, with a chicken, that is pollo, and then guess what means polla! Heard one in spanish... 2 goats in a garbage dump. One is pulling and sucking up (like spaghettis...) the tape of a video cassette... (you remember, before dvd!). As she looks a little upset, the other one asks \"do you like this film?\" \"Well, I liked the book better!\" Q: What's the difference between Beer Nuts and deer nuts? A: Beer Nuts are $1.79. You can"}, {"title": "rpj-stackexchange", "text": "in the morning. without any prior mentions of wild animals, jungles, or drum sets, and the sentences still sound grammatical, idiomatic, and well-formed. I often encourage learners to sift through the various uses of the definite article found in a good dictionary to see how the word the has many uses. Macmillan contains this gem of a definition, which could explain a lot of instances that might puzzle a learner: the - used when you are referring to familiar things that people deal with regularly : I looked up at the ceiling. Suddenly all the lights went out. Incidentally, there are times when either the or a could be used, with little shift in meaning or nuance. I believe you've found one of them in Chris Rock's routine: \"Little does he know he's just taking the bait for the big bust\" \"Little does he know he's just taking the bait for a big bust\" Either sentence means, \"Little does he know he's about to get arrested.\" I think it sounds just a smidgeon funnier with the, because, worded that way, the situation seems like more like an inevitability; however, I think you'd be hard-pressed to find a dictionary definition that says: the - used when describing something seemingly inevitable : the big traffic jam at the end of the day I think that's a legitimate usage, though. The OED includes this definition, and it's not far off: the - Before a noun, used to indicate a particular instance that is most relevant in this context :"}, {"title": "rpj-common-crawl-2019-30", "text": "Wood on Words: Using the wrong word? Consider yourself busted Barry Wood Earlier this month, the Rockford Register Star ran a story assessing certain National Football League players\u2019 chances for success this coming season. It had the headline: \u201cOverrated players who could earn \u2018burst\u2019 label.\u201d The correct noun for a failure or a flop is \u201cbust.\u201d \u201cBurst\u201d is entirely inappropriate in this context. I think someone substituted the wrong word because \u201cbust\u201d has a tarred reputation \u2014 particularly as a verb. Webster\u2019s says it was originally considered a dialectical variant of \u201cburst,\u201d but now it rates the \u201cinformal\u201d label \u2014 in other words, \u201ccasual\u201d or \u201ccolloquial.\u201d Let\u2019s take a closer look at some of the uses, as listed in the dictionary, of this verb some people love to hate. Definition 1: \u201cto burst or break.\u201d This is the one I find least acceptable. You don\u2019t \u201cbust a door down and bust into a room,\u201d you \u201cbreak\u201d the door and \u201cburst\u201d into a room. In the same vein, bones, glassware, hearts and such things are \u201cbroken,\u201d not \u201cbusted.\u201d \u201cBurst\u201d is also better for \u201cto be filled,\u201d as in \u201cbursting with pride,\u201d not \u201cbusting.\u201d Definition 2: \u201cto make penniless or bankrupt.\u201d In this sense, \u201cburst\u201d doesn\u2019t work \u2014 it\u2019s too violent, for one thing. This sense of \u201cbust\u201d also has economic tradition going for it, in the concept of the \u201cboom and bust cycle.\u201d Definition 3: \u201cto demote in rank.\u201d Being \u201cbusted\u201d to a lower classification is fairly common usage in the military. This is another case where"}, {"title": "math", "text": "If you want that girl to like you, you better turn on the charm. * I am not gonna buy you a new pair of shoes, so you can turn off the charm. It doesn't work on me. 4. break something/somebody in * \"break something in\" means \"\u78e8\u5408\uff08\u65b0\u8863\u670d\u6216\u978b\u7a7f\u4e0a\u540e\u9700\u8981\u78e8\u5408\u4e00\u6bb5\u65f6\u95f4\u624d\u80fd\u5408\u8eab\uff09\" * \"break somebody in\" means \"\u8bad\u7ec3sb.\u9002\u5e94...\u73af\u5883\" * I need to break in these shoes. They're a little tight for my feet. * We need to break in the new guy. He doesn't understand the way things work around here. ========================================================= ActionEnglish 80 1. independent film \u72ec\u7acb\u5236\u4f5c\u7535\u5f71\uff0c\u72ec\u7acb\u5236\u7247(indy film) 2. a hoot * means \"\u6709\u8da3\u7684\u4eba, \u4e8b\u6216\u4e1c\u897f\" * How did the party turn out? The party last night was a hoot. I had a great time. * What do you think of Dave? Dave sure is a hoot. He is always got a funny story to tell. 3. wind knocked out of you * means \"cannot breath properly.\" \"\u5598\u4e0d\u8fc7\u6c14\u6765\" * Tommy punched me really hard in my stomach, it knocked the wind right out of me. * I got the wind knocked out of me when I fell off my bike. * means \"\u6211\u6709\u4e2a\u574f\u6d88\u606f\u8981\u544a\u8bc9\u4f60\" * Bad news sports fan, your favorite TV show just got cancelled. * Bad news sports fan, I just ate the last piece of cake. 5. mess with sb. * means \"to get involved with sb.\", \"\u60f9sb.\" * Don't mess with Steve. He is trying to finish his homework. * You shouldn't mess with those guys. They are very dangerous, you could get hurt. ========================================================= ActionEnglish 83"}, {"title": "rpj-common-crawl-2023-06", "text": "\u2190 Previous update December 19, 1997 Next update \u2192 Browsing page 1 of new words for December 19, 1997 an event with a displeasing outcome. See also non-bust. That party was a bust. See more words with the same meaning: something of poor quality, bad, sucks. Last edited on Sep 17 1997. Submitted by Amy from Brea, CA, USA on Sep 17 1997. She's got a huge bust. See more words with the same meaning: breast, breasts. Last edited on Dec 22 1998. Submitted by Zack T. on Dec 22 1998. an event that the police have \"busted\", i.e. broken up, described in the verb section of this definition. This place is a bust... I'm audi. Last edited on Jul 27 2011. Submitted by Criscko on Jul 27 2011. verb - ambitransitive to rap. Can you bust? See more words with the same meaning: to sing, rap. Last edited on Jul 25 2010. Submitted by Jessica from Chicago, IL, USA on Sep 05 2003. verb - intransitive to be very unattractive. She's busting! Last edited on Jul 18 2013. Submitted by Anthony from Hazlet, NJ, USA on Dec 06 2002. to ejaculate. See also \"bust a nut\". Did you bust? See more words with the same meaning: to ejaculate. Last edited on Dec 15 2010. Submitted by max v. on Apr 24 2009. verb - transitive to arrest; to be incarcerated. He got busted for drugs. Citation from \"Chapter 3\", The Confession (TV), Season 1 Episode 3 (2011) censored in hope of resolving Google's penalty against"}, {"title": "rpj-common-crawl-2021-04", "text": "What Does A Half Face Snap Mean From A Guy Not to be confused with \ud83d\ude12 Unamused Face, which has similar eyes but a. You have to do a little work, and. F rom the face of the earth. Half an hour later Brown and Jones were still playing trains. he does not know that I like him but everytime that he see. Ladies and gentlemen of the jury, my grandmother was a simple woman. Since taking office, Tom has taken a number of steps to make Pennsylvania a better place and is fighting for Pennsylvanians in Harrisburg every day. 'But the media did what the media does: they kept peppering him with questions until, finally, he 'Unable to explain it, she snapped at him, 'You mean you asked me to come out into this freezing 'I put on my longest lens and snapped them from a distance. If something snaps or if you snap it, it breaks suddenly, usually with a sharp cracking noise. Your shoulders ache from swinging a battle axe and crushing skulls, and you got blood and. What does Faber mean when he says \"I talk the meaning of things. Imagined by a GAN (generative adversarial network) StyleGAN2 (Dec 2019) - Karras et al. Comprehensive tabs archive with over 1,100,000 tabs! Tabs search engine, guitar lessons, gear reviews. Buy or sell new and used items easily on Facebook Marketplace, locally or from businesses. - Younghoon has the best physique and face. XD is an abbreviation for laughing, as well as an emoticon."}, {"title": "bm25", "text": "getting on your nerves?\u201d But a more vulgar one might be: \u201cAm I becoming a pain in the ass?\u201d Sometimes one approaches this with statements instead of questions: I don\u2019t want to become a /pain in the ass/bother/nuisance, so let me know if you think I am. A: I think an English guy would say \u2018I\u2019m sorry, am I giving you a hard time?\u2019 He might say \u2018sorry if I\u2019m getting on your tits\u2019 (slang, not polite) Or \u2018sorry if I\u2019m getting on your wick\u2019 (wick=nerves). Slang, but polite. \u2018Busting your balls\u2019 can mean working hard on something - but you can\u2019t say \u2018busting someone\u2019s balls\u2019 it\u2019s not idiomatic. You can say \u2018he busted his balls to win that promotion\u2019. You could say \u2018thanks for busting your balls (working so hard) to help me\u2019 but it sounds a bit odd - usually that phrase is used to describe a 3rd party - passively. And the \u2018breaking balls\u2019 thing - we don\u2019t have. A: Yes, breaking my balls is one way to say it or a little more commonly: busting my balls. There are a couple of alternatives that are less vulgar but still informal. The most tame is simply quit giving me a hard time quit busting my chops (most of the other items there are about exerting great effort, rather than 'giving me a hard time') quit yanking my chain (most of the others are about literally pulling some body part)"}], "hoverinfo": "text"}, {"x": [-0.0641636997461319, -0.0818185955286026, -0.05961984023451805, -0.010581379756331444, -0.013258589431643486, -0.0612465925514698, -0.058433692902326584, -0.06314225494861603, -0.016000794246792793, -0.0818185955286026, -0.05976344272494316, -0.056141506880521774, -0.06512562930583954, -0.07580359280109406, -0.06648701429367065, -0.06314428895711899, -0.018698735162615776, -0.007300760131329298, -0.07611357420682907, -0.07611357420682907, -0.014887510798871517, -0.08912397921085358, 0.015969838947057724, -0.017197206616401672, -0.017197206616401672, -0.0063237682916224, -0.007034530397504568, -0.014858855865895748, -0.02407454140484333], "y": [-0.1360415667295456, -0.20314691960811615, -0.17882362008094788, -0.11464668810367584, -0.11998524516820908, -0.08813421428203583, -0.08858475089073181, -0.07513245940208435, -0.21326066553592682, -0.20314691960811615, -0.07098888605833054, -0.1556641161441803, -0.11747683584690094, -0.2009206861257553, -0.09443636238574982, -0.07958163321018219, -0.16414381563663483, -0.1688852310180664, -0.031982604414224625, -0.031982604414224625, -0.12850205600261688, -0.07174502313137054, -0.15543729066848755, -0.09942996501922607, -0.09942996501922607, -0.1069093644618988, -0.18662980198860168, -0.12657101452350616, -0.11056153476238251], "mode": "markers", "name": "Cluster 2", "marker": {"size": 8, "color": "rgb(190,186,218)"}, "text": ["Document 155", "Document 177", "Document 275", "Document 326", "Document 329", "Document 331", "Document 423", "Document 428", "Document 519", "Document 549", "Document 555", "Document 746", "Document 763", "Document 772", "Document 773", "Document 779", "Document 797", "Document 798", "Document 807", "Document 808", "Document 829", "Document 845", "Document 863", "Document 911", "Document 912", "Document 927", "Document 940", "Document 998", "Document 1015"], "customdata": [{"title": "rpj-common-crawl-2020-05", "text": "you?\u201d \u201cMotherfucker flicked my lip, man.\u201d Oh, my God! That\u2019s the scariest shit ever. Like, you gotta get rid of that lip. You can\u2019t keep that lip. That lip\u2019s gotta go. You gotta buy a new lip. I don\u2019t even know where to get lips. What would you do if you got jumped by three homeless people, and they held you down? (moving around like his is held down) \u201cGet off of me. What is this about?\u201d And then the leader come out, and you see him like this. And he\u2026 (holding his hand out and then starts flicking his lip) Oh, my God. You know how dirty his hands are? Oh, my fucking God. That\u2019ll be the quickest bump that you\u2019ve ever gotten in your fucking life. Pow! Bump! That fucking fast. You gotta explain it. \u201cHey, man, is that a fucking herpy?\u201d \u201cMmm-mmm. It\u2019s a bum bump.\u201d \u201cWhat?\u201d \u201cWhat the fuck is a bum bump, man?\u201d (Hart begins laughing) (crowd laughs) A bum\u2026 A bum\u2026 Hold on, hold on. I gotta get it out. I gotta get it out. Hold on. Hold on. \u201cWhat the fuck is that, man?\u201d it\u2019s a bum bump.\u201d \u201cHow the fuck you let a bum touch your lip?\u201d \u201cI thought he was trying to tell me a secret.\u201d \u201cWhat? What the fuck was a bum trying to tell you?\u201d \u201cHe tricked me. He was like, \u2018Hey, man.\u2019 (points with his finger then leans his head forward) \u201cI said, \u2018Huh?\u2019 (flicks lip) He got me. That\u2019s\u2026\u201d (Hart laughs) Get fire"}, {"title": "math", "text": "with all that drama Mindin\u2019 my business, Im unbothered I ain\u2019t draggin, Im lit Fuck clappin back, bitch, Im clappin on the dick Bust it, bust it, Im a savage Bitch, throw it back like a 10-Year Challenge Take him to the crib, then I push him on the sofa Have his breath smellin\u2019 like pussy and mimosas Uh, we ain\u2019t finished, tell him beat it up And if the pussy stop breathin, give it CPR It\u2019s so tight, he think he slipped in my butt I dont swallow Plan B, I just swallow the nut Pussy dope, Im the dope dealer And if your pussy good, shouldnt have to maintain a broke nigga Real shit, real life Everybody gangbangin\u2019, know they aint real, right Since I came in the game, been a real one And aint shit changed, bitch, Im still one Uh, all facts, no cap Daddy, how you like that? Uh, aint got no time for no subliminals After a while, bitch, bein petty just means you miserable Uh, yeah, straight lame My pussy a bustdown, yours plain jane I make him go insane, I fuck him with my red flag on And when I cum, I say gang! Bust down, Thotiana I wanna see you bust down Pick it up, now break that shit down Speed it up, then slow that shit down, on the gang Bust it , bust down, bust it, bust it Bust down, on the gang Bust down, Thotiana I wanna see you bust down Pick it up,"}, {"title": "math", "text": "bust down Let me smash in the Rover, bust down She fucked him, him, and me, bust down Thats a pretty lil thing, no, thats a bust down Bust down, Thotiana, bust down, Thotiana I wanna see you bust down Lick it up, now slurp that shit down Jerk it off, now throw that dick down, on the gang Bust it , bust down, bust it, bust it Bust down, on the gang Bust down, Thotiana I wanna see you bust down Pick it up, now break that shit down Speed it up, now slow that shit down, on the gang Bust it , bust down, bust it, bust it Bust down, on the gang We the Best Music Another one DJ Khaled I get big paper, so I deal with big haters Bi-big paper, so I deal with big haters Bi-bi-big paper, so I deal with big haters Go-go-got it out the mud, they aint do me no favors It aint a bitch like her, thats why these bitches dont like her I respect shit-starters, not no shit-typers Three-year break, I still get this shit hyper Shot back to the top, dont make a bitch snipe ya Big Bardi, they cant fuck with me, hardly Body anybody sayin they dont know my body I son bitches, mov\u0435 Kulture out the car seat Got th\u0435se hoes nervous, I can spit it to their heartbeat Super valid anytime I link Khaled Platinum plaques hang on every wall in my palace Clips still push, to anybody speakin malice"}, {"title": "rpj-common-crawl-2020-05", "text": "Because it implies you don\u2019t care at all so there is no way you could care even less. The way you say it implies that despite the fact you don\u2019t care much, you still care a little bit. \u201cI could care less\u201d basically says \u201cI care a little bit\u201d, which defeats your purpose. I bet he never uses that \u201csnap a neck from a distance\u201d on any of the heroes. \u201cyour demeanour is that of a child\u201d yeah, and you\u2019re wearing make-up like a teenage emo kid. You shouldn\u2019t be killing people, you should be writing poetry on your blog about how girls ignore you. \u201call fire on my command\u201d why not start with that? Those headphones blocked out a prison riot? My headphones get drowned out by cars driving past me. Not even that, but surely he should have seen something on the video screens? Okay his face is covered, but his hands aren\u2019t, flying through space with uncovered hands would surely cause problems. He got abducted as a kid, how many kids know of Jackson Pollock? Surely he\u2019s been threatened before? He collects artefacts so must have people attempt to rob him all the time, you\u2019d think he\u2019d have a defence set up. Bowie song! And now I\u2019m sad. Seriously, what is going on this year? I found a facebook status a few years old about how bad it was that three celebrities had died that year already. That seems like a blessing compared to this year. Prince, Lemmy, Bowie, Rickman, Wood, the PG"}, {"title": "rpj-common-crawl-2021-04", "text": "Chance The Rapper. Someone snitched on me Cause I ain't been nothing, but bad, bad, bad Like what the fuck? OMG Someone snitched on me, cause I rap to good and I get crunker Than a mofo should especially for a little white kid I like to do it like this, like that If you talk shit, I'ma smack you with a bat like hanh, like hanh. \u201cI just want to beat that n***a\u2019s ass one good time,\u201d he said. Prove how well you know Hogwarts' gossip! Q: Why does Dumbledore leave? A: To search for someone. I tried to befriend him at first, gave him and his kids an exercise machine, let him hunt on my land. If someone is new to a job, you might check in on him to make sure he is going okay. And they could be stating the truth. Recall that the rapper was sentenced in December after he testified against members of the Nine Trey Gangsta Bloods gang. Wilson told her the snitch was never going to have the chance to \"have someone else busted,\" and that he \"was going to get him. When someone adds you back on Snapchat, 'Added Me' will be highlighted in your profile when you swipe down on the screen. It looks like someone snitched on John Cena for taking care of business. 900 Missouri Residents Who \u2018Snitched\u2019 on Lockdown Rule-breakers Fear Retaliation After Details Leaked Online Hundreds of Missouri residents have had their personal details shared online after the publication of a document"}, {"title": "rpj-common-crawl-2019-30", "text": "Author Topic: Out of context (Read 36750 times) Churba Passion Player The Fresh Prince of Leeds. Re: Out of context \"I'm going to whip it out and use it for great justice.\" \"Just steak up behind them, stick something in their back and run away!\" \"I have a whacking stick and I whack quite a lot with it\" David letterman - \"I had sex with my staff!\" Sister Aluicious Eternal Lover There is no coincidence only hitsuzen..... \"harder than a knight's sword and sharper than a dragon's tooth\" Popples eat people for breakfast every other Thursday. if you don't know what a popple is watch out or you may get eaten! \"My ass hurts, we aren't doing it for that long ever again.\" Quote from: Pozf on October 12, 2009, 03:21:29 pm ... >.> what I was playing rock band for like 10 or 12 hours, straight, and I have a real bony ass, so even my new stool, with awesome memory foam, it still hurts after a while >.>; ... also I couldn't feel my butt either <.<; \u00ab Last Edit: October 12, 2009, 04:12:50 pm by Pozf \u00bb \"it keeps popping off his thing\" \"help me, im watching inuyasha and i can't stop\" I protest, this doesn't need context. Also, From the radio show \"\"and I'm not touching what oz is asking me to touch on air....\" (Last season)\"Did you see Kate winslet coming as much as I did?\" \"Remember, Aural sex is always plesurable, that's a.u.r.a.l as in relating to the ear oh"}, {"title": "rpj-common-crawl-2019-30", "text": "Author Topic: Out of context (Read 36753 times) Churba Passion Player The Fresh Prince of Leeds. Re: Out of context \"I'm going to whip it out and use it for great justice.\" \"Just steak up behind them, stick something in their back and run away!\" \"I have a whacking stick and I whack quite a lot with it\" David letterman - \"I had sex with my staff!\" Sister Aluicious There is no coincidence only hitsuzen..... \"harder than a knight's sword and sharper than a dragon's tooth\" Popples eat people for breakfast every other Thursday. if you don't know what a popple is watch out or you may get eaten! \"My ass hurts, we aren't doing it for that long ever again.\" Quote from: Pozf on October 12, 2009, 03:21:29 pm ... >.> what I was playing rock band for like 10 or 12 hours, straight, and I have a real bony ass, so even my new stool, with awesome memory foam, it still hurts after a while >.>; ... also I couldn't feel my butt either <.<; \u00ab Last Edit: October 12, 2009, 04:12:50 pm by Pozf \u00bb \"it keeps popping off his thing\" \"help me, im watching inuyasha and i can't stop\" I protest, this doesn't need context. Also, From the radio show \"\"and I'm not touching what oz is asking me to touch on air....\" (Last season)\"Did you see Kate winslet coming as much as I did?\" \"Remember, Aural sex is always plesurable, that's a.u.r.a.l as in relating to the ear oh god I"}, {"title": "rpj-common-crawl-2022-05", "text": "not an exact quote from the chorus: Throw the crib door wide let the people crawl inside Someone in this town is trying to burn the playhouse down They want to stop the ones who want a rock to wind a string around But everybody wants a rock to wind a piece of string around But it immediately leapt into me head when I read her line \u2013 I\u2019d bet a very small amount of money that\u2019s where it\u2019s from, but I\u2019m quite used to being wrong. J.W. could clear this up It\u2019s a good guess, but not correct per se. Phrases about doing something destructive to a playhouse, in the vein of \u201cbringing down the house\u201d are common. What brought it to mind while I was writing this was a joke by Todd Barry about pumped up health care workers. It\u2019s on one of his CDs. I own that album though. I might just as easily have heard it there and ended up at the same end. Really I just wanted something that more or less fit the structure of what she was saying so that it gave it an almost rhyming poetic feel. CWR April 21, 2011 @ 1:52 am | Reply Well it\u2019s a good thing nobody took that bet or I\u2019d be 12 internet cents the poorer. Sorry that you had to correct me three times in the comments here\u2026 Chris the Blue May 4, 2016 @ 1:49 am | Reply Booyah. Leave a Reply to Crave Cancel reply \u00a9 2007-2022 Between"}, {"title": "rpj-book", "text": "breathing through what had just happened to us. I broke the silence. \"Hey, you guys wanna go rob somebody?\" The guys turned and looked at me. Donny cracked a smile. DJ, holding his face, punched me in the arm and started laughing. We all started laughing. The noise filled that truck. We laughed into the truck and we laughed into the air. We laughed like lost boys. Dave put on some Gangstarr, a track called \"Soliloquy of Chaos.\" A fitting soundtrack to the evening's festivities. Someone produced half a joint, pulled from the ashtray of the Suburban. A smoke, a drink, and the whole debacle was puffed away. I curled in and fell asleep. # Chapter 11 _\"You're in Shambles\"_ \u2014 _Del the Funkee Homosapien_ Things were beginning to unravel. My friends, my cadre of support, my second family\u2014they loved to beat my ass. They threw me around and used me as their whipping boy for the sins they couldn't look at in themselves. \"Damn, you're a fucking crazy dog,\" they'd say. \"You talk to your mama like that? You're nuts, Pork Chop.\" Pork Chop. Sweet boys. They'd call me _Pork Chop_ and _Fat Ass_ and other things and sock me in the chest and throw me around and slap me when they got pissed. I'd leave, lump in my throat, night after night, walking myself home alone in the dark, tears streaming down my face swearing to myself, \"I'll never hang out with them again.\" My little lost boy family was becoming as painful as"}, {"title": "math", "text": "with all that drama Mindin\u2019 my business, Im unbothered I ain\u2019t draggin, Im lit Fuck clappin back, bitch, Im clappin on the dick Bust it, bust it, Im a savage Bitch, throw it back like a 10-Year Challenge Take him to the crib, then I push him on the sofa Have his breath smellin\u2019 like pussy and mimosas Uh, we ain\u2019t finished, tell him beat it up And if the pussy stop breathin, give it CPR It\u2019s so tight, he think he slipped in my butt I dont swallow Plan B, I just swallow the nut Pussy dope, Im the dope dealer And if your pussy good, shouldnt have to maintain a broke nigga Real shit, real life Everybody gangbangin\u2019, know they aint real, right Since I came in the game, been a real one And aint shit changed, bitch, Im still one Uh, all facts, no cap Daddy, how you like that? Uh, aint got no time for no subliminals After a while, bitch, bein petty just means you miserable Uh, yeah, straight lame My pussy a bustdown, yours plain jane I make him go insane, I fuck him with my red flag on And when I cum, I say gang! Bust down, Thotiana I wanna see you bust down Pick it up, now break that shit down Speed it up, then slow that shit down, on the gang Bust it , bust down, bust it, bust it Bust down, on the gang Bust down, Thotiana I wanna see you bust down Pick it up,"}, {"title": "rpj-common-crawl-2020-05", "text": "in silence like lasagna.\u201d In the rap world paper chasin means working hard to make some money. When you say the word \u201clasagna\u201d, its pronounced with a silent G and real gangsters or G\u2019s maneuver in silence too \u2013 they can creep up on you quietly and keep their hustles low profile. Song: I\u2019m on one \u201cYou a sell out, but I ain\u2019t buying. Chopper dissect a niggas like science. Put an end to your world like the Mayans\u201d Lil Wayne doesn\u2019t want to take part in what a lot of rappers nowadays do which is to sell out, meaning they give away their talents for money. He isn\u2019t \u201cbuying\u201d the idea of that happening. By chopper he means his guns which he uses to dissect his enemies apart. Lastly he added a reference to the world ending as said in the Mayan calendar. Song: A Milli \u201cAnd I be the shit, now you got loose bowels. I don\u2019t O U like two vowels\u201d You get so scared of him that you get loose bowels (i.e., crapping your pants). Wayne will literally cut you and expose your bowels if you step on him. An IOU is a promise to pay people money (commonly known as \u201cI owe you\u201d). He doesn\u2019t include the two other primary vowels (A and E), indicating he still owes them. Song: Forever \u201cLife is such a fuckingg roller coaster then it drops. But what should I scream for? This is my theme park\u201d Life is like a roller coaster because it is"}, {"title": "rpj-common-crawl-2020-05", "text": "Busta Rhymes the great / We 'bout to rip the Tri-State, yo, yo / Hey hey hey! I'll split your face and give you stitches / Throw niggas in ditches, slap the ass of fat bitches.\" 9 music videos that bridged the gap between blaxploitation and hip-hop 3 | Craig Mack Having home field advantage on a remix can often backfire on an artist, but Craig Mack rises to the occasion on \"Flava in Ya Ear (Remix),\" upping the ante with a verse that's superior to those on the original. While most artists either rhyme first or last when playing host on a remix, Mack shakes things up by going second, setting the tone early with a string of punchlines and metaphors in what is regarded by many as the most impressive verse of his career. Standout Lyrics: \"It's been three years since you last hear / But now I reappear, your heart pumps fear /To your gut, did your girl's butt / I scraped it, shaped it, now she won't strut / I smash teeth, fuck your beef, no relief / I step on stage, girls scream like I'm Keith / You won't be around next year / My rap's too severe, kicking mad flava in ya ear.\" A Rap Playbook: 26 great examples of lyrical wordplay 2 | LL Cool J The most tenured and acclaimed artist to lend bars to the \"(Remix)\" was LL Cool J, who was coming off of the release of 14 Shots to the Dome, which critics and fans"}, {"title": "rpj-common-crawl-2023-06", "text": "in any company. The issue is, quite simply, his (the) use of the *n*-word. Take one verse from one of my favorite Busta songs, Break Ya Neck: Tell me wat'chu really wanna do (Come here ma) Talk to a nigga, talk with me You look like you could really give it to a nigga, from the way you talk and the way ya try to walk for me The way you really try to put it on a dawg Threw ya hips like ya never did before for me The way you break yo' back, and I break yo' neck, and the way you try to put it on the floor for me (Come on!) Come on (Come on!) Oh yeah Tell me where my niggas is at (Ok!!) Lemme address y'all niggas one time, while I lock that down, and I hit'cha wit that (YOU GONE!) That bomb shit, y'all niggas gone all day Be the nigga in the drop, Y'all niggas know every time I come through, this motherfucker, where we always takin the ride (So let me do this bitch) Y'all niggas know when we come, we be makin it flop, the way we makin it hot'll make a nigga wanna stop... [pause] Get money, then cash that check for me All my niggas just bust yo' tech for me Everybody from every hood bang yo' head, 'til you break your motherfuckin head for me! There is no way for me to sing this, not even to myself, without substituting for that word."}, {"title": "math", "text": "now break that shit down Speed it up, now slow that shit down, on the gang Bust it , bust down, bust it, bust it Bust down, on the gang Blueface, baby Yeah aight, Im every womans fantasy Mama always told me I was gon break hearts I guess its her fault, stupid, dont be mad at me I wanna see you bust down Bend that shit over, on the gang Make that shit clap She threw it back so I had to double back, on the gang Smackin, high off them drugs I tried tell myself two times was enough Then a nigga relapsed, on the dead locs Aint no runnin, Thotiana, you gon take these damn strokes I beat the pussy up, now its a murder scene Keep shit player, Thotiana, like you aint never even heard of me Bust down, Thotiana, I wanna see you bust down Bend that shit over Yeah aight, now make that shit clap, on the gang Now toot that thing up Throw that shit back I need my extras, on the dead locs Bust down, Thotiana, bust down, Thotiana I wanna see you bust down Lick it up, now slurp that shit down Jerk it off, now throw that dick down, on the gang Bust it , bust down, bust it, bust it Bust down, on the gang Bust down, Thotiana I wanna see you bust down Pick it up, now break that shit down Speed it up, now slow that shit down, on the gang Bust it"}, {"title": "rpj-common-crawl-2021-04", "text": "\"you probably already do.\" --Jay v.2021 (Good riddance 2020) 19:08, 11 Jun 2005 (UTC) I'm just saying that if you listen to it with speakers on full tilt I hear coach z saying \"crash\"...then again it might just be Strong Bad begining to say \"scroll\"...but i still hear a soft \"sh\" rather than a hard \"ck\"... -- Tony Stony 23:01, 11 Jun 2005 (UTC) I recommend some new speakers. Crack rhymes with attack. That's proof enough for me. Aurora the Homestar Coder 23:08, 11 Jun 2005 (UTC) Yes, I agree. Crack=attack. That's definitley en\u00fcff pr\u00fcff for me. --VolatileChemical 20:44, 18 Jun 2005 (UTC) I always thought it was: CZ: And if you're tryin' to fade me then you must smoke grass! SB: Scroll buttons aww yeah like that heart attack. I guess that doesn't really rhyme, but it's what it sounded like to me. And as a side note, yes, they did not mean: \"SMOKE IT!\" They meant it as: \"If you're making fun of me then obviosly you smoke something.\" --Kit crash is what I hear --jake 05:33, 21 Aug 2005 (UTC) He definitely says \"smoke crash,\" but I think that's just his accent acting up. - Joshua Sounds like 'grass' to me. 'smoke grass' .. it doesn't rhyme, but that's what it sounds like. marginally 'better' ^_^' I hear a \"sh\" and a \"ck\" both at the same time. SaltyTalk! 04:13, 12 December 2005 (UTC) Guys, if you have the DVD, you hear it clearly: it's \"crack.\" 'Nuff said. --ISlayedTheKerrek 05:32, 12 January 2006"}, {"title": "rpj-common-crawl-2019-30", "text": "mean a raise, but the say 'rise' so it would rhyme with 'surprise' [Ed's note: Raise = Pay 'rise' - both expressions mean the same where I live] Submitted by: Jamie Flower Insulting Song Lyrics: \"Don't Leave Me Now\" The Insulting Lyrics: I need you, babe To beat to a pulp on a Saturday night, oh babe! Why They're Insulting: We're supposed to be sympathetic towards the main character in \"The Wall\", and I would like to be...only now I'm beginning to sense there's a reason this marriage ended... \"Pigs (Three Different Ones)\" Big man, pig man, ha ha charade you are. You well heeled big wheel, ha ha charade you are. And when your hand is on your heart, You're nearly a good laugh, Almost a joker, With your head down in the pig bin, Saying \"Keep on digging.\" Pig stain on your fat chin. What do you hope to find. When you're down in the pig mine. You're nearly a laugh, You're nearly a laugh But you're really a cry-hi-hiiiiii Bus stop rat bag Ha, ha, charade you are You f*cked up old hag You radiate cold shafts of broken glass You're nearly a good laugh Almost worth a quick grin You like the feel of steel You're\ufeff hot stuff with a hatpin And good fun with a hand gun OK Pink Floyd are British but doesn't this sound familiar? Doesn't this describe American politicians or those from anywhere else? Remember last year's election campaigning? A sad joke. This is as anti-politician as it"}, {"title": "rpj-common-crawl-2019-30", "text": "my brain hotel I might be freakin or peakin', but I rock well The Patty Duke Show, the Wrench, and then I bust the Tango Got more rhymes than Jamaica got Mango I got the peg leg at the end of my stump-a Shake your rump-a A full clout, y'all, a full clout, y'all And when the mic is in my mouth, I turn it out, y'all A full clout Just like this *sound of a bong hit followed by a shotgun noise* Never been dumped, cause I'm the most mackinest Never been jumped, cause I'm known the most packinest Yeah, we've got beef, chief, we're knocking out teeth, chief And if you don't believe us, you should question your belief, Keith Like Sam the butcher bringing Alice the meat Like Fred Flintstone, driving around with bald feet Should I have another sip? Nah, skip it In the back of the ride and bust with the whippet Rope a dope dookies all around the neck Who-ha, got them all in check Running from the law, the press, and the parents Is your name Michael Diamond? No, mine's Clarence From downtown, Manhattan, the Village My style is wild, and you know that it still is Disco bag schlepping, and you're doing the bump About \u201cShake Your Rump\u201d This is Track 2 on Paul\u2019s Boutique, released 7.25.1989 on Capitol Records. Beastie Boys & Dust Brothers share writing and production credits. Engineered by Mario Caldato, Jr. and assisted by Allen Abrahamson, \u201cShake Your Rump\u201d was recorded at Mario G\u2019s"}, {"title": "rpj-common-crawl-2023-06", "text": "\u266a \u266a If my rap's soup, my beats is stock \u266a \u266a Step from the table When I start to chop \u266a \u266a I'm the lumberjack DJ Ad-Rock \u266a \u266a If you try to knock me You'll get mocked \u266a \u266a I'll stir-fry you in my wok \u266a \u266a Your knees'll start shakin' And your fingers pop \u266a \u266a Like a pinch on the neck Of Mr. Spock \u266a \u266a Another dimension Another dimension \u266a \u266a Do it \u266a -[song ends] -[groans] \u266a Listen, everybody Listen, one and all \u266a \u266a We're down in Daytona And we're havin' a ball \u266a \u266a Said one week spring break It ain't funny \u266a \u266a Said two days passed And I'm runnin' outta money \u266a \u266a Said sleepin' in the car 'Cause the hotel's booked \u266a \u266a I met a frat girl cutie And I got hooked \u266a \u266a I said, \"What's your major?\" \u266a \u266a Said she majors in psych \u266a \u266a Said I'm down with MTV And I rock the mic \u266a \u266a She said she wants to meet Alan And Martha Quinn \u266a \u266a I said my name's MCA \u266a \u266a And I can let you in I said I'm down in Daytona \u266a -\u266a To get my kicks \u266a -\u266a We're the Beastie Boys \u266a -\u266a MTV \u266a -\u266a Spring Break \u266a \u266a '86 \u266a What's up with that? Last week I was in Chanhassen, Minnesota with the Beastie Boys. They're rehearsing for their tour, and they said, \"We want a piece of Marky Mark"}, {"title": "rpj-common-crawl-2023-06", "text": "about drugs and violence. The case, however, was thrown out of the high court because the judge failed to understand the lyrics, and thus couldn't tell whether the song was derogatory or not: The judge said the claim \"led to the faintly surreal experience of three gentlemen in horsehair wigs [himself and the two barristers in the case] examining the meaning of such phrases as 'mish mish man' and 'shizzle my nizzle'.\" In any event, the words, although in a form of English, were \"for practical purposes a foreign language\" and he had no expert evidence as to what they meant. \u00b6 grime hip-hop thug life uk 1 And now, some answers to the timeless question of what does \"fo' shizzle my nizzle\" mean: (via MeFi) Originated in medival England in the 17th century, this phrase has changed in meaning completely, from the orignal shorthand denotation of \"Alas! An advasary has come upon us! To the catupults!\" to the modern definition of \"Please grease up my penis.\" nah, ya'lls know dat dis chea' mean, \"for sure my endearing African-American acquaintance\". Numerous commentators have pointed out that the phrase is considered offensive when used by white people. Though aren't most people who say \"fo' shizzle my nizzle\" white suburban kids in big yellow shorts? \u00b6 hip-hop language slang 5 Apparently Adrien Brody, star of The Pianist, is a hip-hop producer, under the name A Ranger. (via Reenhead) Brody used the keyboard to study the Chopin pieces he mimed in the film - and to compose a lot"}, {"title": "rpj-common-crawl-2023-06", "text": "about drugs and violence. The case, however, was thrown out of the high court because the judge failed to understand the lyrics, and thus couldn't tell whether the song was derogatory or not: The judge said the claim \"led to the faintly surreal experience of three gentlemen in horsehair wigs [himself and the two barristers in the case] examining the meaning of such phrases as 'mish mish man' and 'shizzle my nizzle'.\" In any event, the words, although in a form of English, were \"for practical purposes a foreign language\" and he had no expert evidence as to what they meant. \u00b6 grime hip-hop thug life uk 1 And now, some answers to the timeless question of what does \"fo' shizzle my nizzle\" mean: (via MeFi) Originated in medival England in the 17th century, this phrase has changed in meaning completely, from the orignal shorthand denotation of \"Alas! An advasary has come upon us! To the catupults!\" to the modern definition of \"Please grease up my penis.\" nah, ya'lls know dat dis chea' mean, \"for sure my endearing African-American acquaintance\". Numerous commentators have pointed out that the phrase is considered offensive when used by white people. Though aren't most people who say \"fo' shizzle my nizzle\" white suburban kids in big yellow shorts? \u00b6 hip-hop language slang 5 Apparently Adrien Brody, star of The Pianist, is a hip-hop producer, under the name A Ranger. (via Reenhead) Brody used the keyboard to study the Chopin pieces he mimed in the film - and to compose a lot"}, {"title": "rpj-book", "text": "attending my party makes me a little proud of my best friend, especially since he went against his wife's wishes to protect me. \"Bros B4 Hos\" is what Danny said to me every time I would lament Nikki, back when we were both in the bad place\u2014before he had that second operation. In art therapy class, Danny even made me a little poster with the words written in stylish gold letters, which I hung on the wall space between my bed and my roommate Jackie's\u2014back in the bad place\u2014but one of the evil nurses took Danny's artwork down when I was not in the room, a fact Jackie confirmed by blinking and banging his head against his shoulder. Even though I realize the phrase is sort of sexist (because men should not refer to women as hos), saying \"Bros B4 Hos\" in my mind now sort of makes me smile, especially since Ronnie is my best bro in New Jersey, now that Jake and Danny live in PA. \"I'm sorry, Pat. Is that what you want to hear? Well, I'll say it again, I'm really, really fucking sorry.\" Even though Tiffany uses the f-word, her voice sort of quivers like Mom's when she says something she truly means, and it makes me think that Tiffany might actually start crying right here on the bridge. \"I'm a screwed-up person who no longer knows how to communicate with the people I love. But I meant everything I told you in my letter. If I were your Nikki, I"}, {"title": "rpj-common-crawl-2019-30", "text": "'Cracker' often. Did anyone get the wrong impression or give you negative feedback? Bumpy Knuckles: If I didn't get negative feedback about saying 'N*gga', I won't get any negative feedback about saying 'cracker'. Sh*t, I know white people who say 'N*gga'. So, I think that if people are so comfortable saying the word 'n*gga', let's see how comfortable they are saying the word 'cracker'.\" Actually, 'cracker' is a mentality. The funny thing is the word 'n*gga' has been totally downplayed in the African-American community to the point that it's not an insult when it's said by African-Americans. Black people only have a problem with the world when white people say it because white people, in their ignorance, defined the word to mean something disrespectful to African-Americans. They didn't just make that sh*t up though. They got it from somewhere. Where they got it from was Africa. The funny thing is, they have a problem with the word and that's why they don't say it. 'Cracker' is a mentality. The word 'cracker' comes from when Black slaves were whipped and the cracking of the whip. It's a mentality. It's like Bill O'Reilly and those type of people are the people I am talking about. People who write checks in record companies are the people I'm talking about. I'm talking about those corporate suit and tie, snooty, yuppie kind of people who think that they are better than everybody else. In hip-hop culture, those words do not apply. We're apart of hip-hop culture and we rock to the"}, {"title": "rpj-book", "text": "KNOW WHAT YOU'RE GOING THROUGH/I'VE BEEN THROUGH IT. _(Beat)_ So do you have a girlfriend?\" (EUGENE) \"Yessir, I do.\" (GRANDFATHER) \"Is it serious?\" (EUGENE) \"Well, yessir it is.\" (GRANDFATHER) \"Don't you think you're a little young to be getting serious?\" (EUGENE) \"Well, no sir, I don't think so.\" (GRANDFATHER) \"You should be sowing your oats\u2013Listen sow your oats but do me one favor son.\" (EUGENE) He calls me \"son.\" (GRANDFATHER) \"If you wanna mess with something dark that's fine but DON'T MARRY NOTHIN DARK.\" (EUGENE) \"Well, sir I don't really see it that way. Light or dark\u2013it makes no difference to me.\" (GRANDFATHER) \"Boy you really are silly\u2013Don't you know them darkassed Geechies think we're punks\u2013FAGGOTS because we're light? Nobody, I mean nobody, ever gave me nothing and I do mean nothing. I went to work at Georgia Pacific when I was fourteen, chopping lumber, stackin' lumber\u2013my hands all cut up and rough. I worked just as hard as anybody else but you couldn't tell that to them dark-skinned guys\u2013no, they didn't believe that. It was always, 'Ole yella nigga soft' or 'Hey red nigga, you ain't so big now' or Yeah it hot but the sweat jes run through his haid\u2013it don't git nappy\u2013ain't you purty.' _(Pause)_ Always\u2013all my life they did that to me. They thought I didn't struggle or sweat. They thought I had it so easy. _(Beat)_ One day one of them got in my face because his sister had a thing for me. I didn't pay her any mind but this"}, {"title": "rpj-common-crawl-2020-05", "text": "(pages later): ...What he mean \"slow of mind\"? This happens in one scene in the movie House Party (Note that there are scripts of this movie online, but the dialogue in the actual movie seems to be adlibbed somewhat. This is from the movie, not the script): Thug 2 (saying this while being handed a baseball bat) Alright cool...Finally, a program I'm with. Whatever this is, I'm with it. (While thug 1 picks up a can of gasoline) Oh I hear that, I hear that. We gonna bust their ass as they come runnin out of the burning house. Thug 2 and 3 (in unison): Burnin house? Thug 1: Burnin house... Thug 3: Damn Stab, Stab (Thug 1) hold up for a second. l was talking about kicking some fucking ass...not burning people up. Thug 2: Yeah now you're going too far. From the Sesame Street movie Big Bird In China, Big Bird needs to find a camel. That's all he knows. Naturally, there are no camels in China, so he goes sightseeing in a sculpture garden... Big Bird: \"Oh, look, there's an elephant. And there's a camel. And there's an orangutan. My these sculptures are pretty...\" He walks off-screen, then... \"A CAMEL?!?\" In the Russian film Father Frost, there's a group of girls picking giant mushrooms in a forest. They see a bear, but it takes them almost 20 seconds to run away. Mike Nelson refers to it as \"Delayed reaction syndrome\". In the 80s Vietnam flic, \"Hamburger Hill,\" a radio operator survives a nearby"}, {"title": "rpj-common-crawl-2020-05", "text": "(pages later): ...What he mean \"slow of mind\"? This happens in one scene in the movie House Party (Note that there are scripts of this movie online, but the dialogue in the actual movie seems to be adlibbed somewhat. This is from the movie, not the script): Thug 2 (saying this while being handed a baseball bat) Alright cool...Finally, a program I'm with. Whatever this is, I'm with it. (While thug 1 picks up a can of gasoline) Oh I hear that, I hear that. We gonna bust their ass as they come runnin out of the burning house. Thug 2 and 3 (in unison): Burnin house? Thug 1: Burnin house... Thug 3: Damn Stab, Stab (Thug 1) hold up for a second. l was talking about kicking some fucking ass...not burning people up. Thug 2: Yeah now you're going too far. From the Sesame Street movie Big Bird In China, Big Bird needs to find a camel. That's all he knows. Naturally, there are no camels in China, so he goes sightseeing in a sculpture garden... Big Bird: \"Oh, look, there's an elephant. And there's a camel. And there's an orangutan. My these sculptures are pretty...\" He walks off-screen, then... \"A CAMEL?!?\" In the Russian film Father Frost, there's a group of girls picking giant mushrooms in a forest. They see a bear, but it takes them almost 20 seconds to run away. Mike Nelson refers to it as \"Delayed reaction syndrome\". In the 80s Vietnam flic, \"Hamburger Hill,\" a radio operator survives a nearby"}, {"title": "rpj-common-crawl-2019-30", "text": "for the magic word to be spoken by the rapper. When it was, I looked over and said, \"I'm sorry, what did that guy just say?\" The passenger in the other car said, \"What?\" and I repeated the question. The passenger said the line, \"I'm a' bust a nigga.'\" I asked him to repeat it, and he said it louder. Just then, my friend sat up and said, \"What did you say?!\" That's how you get a car like that to run a red light and veer into the right lane. Sometimes they'll veer into the right lane, just missing me, and I'll honk. Nine out of 10 times, they'll flip me off. Please explain that to me before I die. I don't need to know if there's a general unifying theory in the universe. I don't need to know why King of the Hill has been on for 13 seasons. But I have to know how somebody can drive like a jerk, almost kill somebody and get to flip somebody off. I will occasionally follow people like that to wherever they're going. If they stop in a shopping center or the mall, I'll park near them so they can see me. Then I'll just wait in the car. They won't get out, because they probably think I'm going to mess with their car when they leave. (I never would, but they don't know that.) They'll sit, and I'll sit. In the summer, I'll sit with the car off and the windows rolled up, ratcheting the"}, {"title": "rpj-common-crawl-2020-05", "text": "song, something fun!\u201d I\u2019m very self-explanatory of who I am. I don't think of anybody, but if you see something you know, \u201cHey good-looking what you got cooking?\u201d But there is a part in there that says; \u201cDon't think you're hot just because you think you\u2019re hot!\u201d You could be hot, but that don\u2019t mean you could deliver the goods (hysterically laughing)! It\u2019s like you open up a steak and it\u2019s actually a pork chop! I ordered a Filet Mignon and \u201cYeah, why is there a pork chop on my plate (hysterically laughing)?\u201d KNAC.COM: I remember listening to that lyric and I was like \u201cYeah, you may be so hot or whatever, but just don't think that I might want you or whatever, just because you are you - you\u2019ve got to stand out!\u201d Wasn\u2019t that it? PEARCY: Yeah! And ya know, I also wanted some fun in there because you know there's some girls we have in there and they\u2019re going \u201cHell yeah\u201d you know and I say; \u201cHey girl - I\u2019m talking to you, just give me a Hell yeah!\u201d It\u2019s like I want to involve every woman, every kind of women, I want to give a kudos to every woman on the planet! Hey look, I love women, it doesn\u2019t mean ya gotta be with every woman, but they're just interesting creatures (hysterically laughing). I wanted to give a shout out to them you know, give me a hell yeah-just have some fun, dance, swing it baby, sell the goods, have at it,"}, {"title": "rpj-common-crawl-2019-30", "text": "used to guys hanging on wanting in her pants so not particularly bothered by it any more. They do respect her, but, they love to watch her\u2026 But? Replied to: Notngnirrad | Link | Reply | Like (0) It is/was a play on words. In the song, he gave the right inflection for one \u201ct\u201d, but every one gets that the second one is what he really means. Awesome work on the possess and the point tail steps Chris. Stupid stupid phone. Awesome work on the posing Chris. Problems with your auto-corkboard again? Somehow this never gets old. Well, at least I don\u2019t have to worry about sticking myself with thumb tracks. You know you can disable autocorrect, right? Because I was pretty happy when I finally tracked down where they hid the setting But then we wouldn\u2019t have the entertaining image of spectral cartoonists sneaking up behind unsuspecting victims and then walking away like a poorly controlled marionette. It\u2019s either that, or having a borken boomstick shoved up your butte. As long as he\u2019s not using the chainsaw instead\u2026 Odd to find a Buckingham reluctant to kick a guy in the nads. Especially when it\u2019s well deserved. On a different note: Why all the \u201cfirsts\u201d? A first post that says \u201cfirst\u201d is both obvious and redundant. Open a dialogue or something\u2026 Replied to: shedemon | Link | Reply | Like (0) It\u2019s par for the Erf insanity here. But I\u2019m not being predictable today. It\u2019s a bragging rights thing. You are a more dedicated fan,"}, {"title": "bm25", "text": "look good in the day at night is another thing.

She's looking into my eyes, she's a-holding my hand,
She looking into my eyes, she's holding my hand,
She say, \"You can't repeat the past.\" I say, \"You can't?
What do you mean you can't? Of course you can.\"

Where do you come from? Where do you go?
Sorry, that's a-nothing you would need to know.
Well, my back's been to the wall so long it seem like it's stuck.
Why don't you break my heart one more time just for good luck?

I got eight carburetors, boys, I'm using 'em all.
Well, I got eight carburetors and, boys, I'm using 'em all,
I'm short on gas, my motor's starting to stall.

My dogs are barking, there must be someone around,
My dogs are barking, there's must be someone around,
I got my hammer ringing, pretty baby, but the nails ain't going down.

You got something to say, speak or hold your peace,
Well, you got something to say, speak now or hold your peace,
If it's information you want, you can get it from the police.

Politician's got on his jogging shoes,
He must be running for office, got no time to lose.
"}], "hoverinfo": "text"}, {"x": [0.01860746555030346, 0.025444669649004936, 0.0449848398566246, 0.07808533310890198, 0.07239716500043869, 0.06346956640481949, 0.1534789353609085, 0.0715782418847084, 0.14239120483398438, 0.12880298495292664, 0.08047917485237122, 0.1618146002292633, 0.10626839101314545, 0.048709988594055176, 0.0877801850438118, 0.12161874026060104, 0.1028725728392601, 0.14351718127727509, 0.07488886266946793, 0.1326301395893097], "y": [-0.11946998536586761, -0.06436151266098022, -0.1265006810426712, -0.10943141579627991, -0.14372514188289642, -0.07342700660228729, -0.027664167806506157, -0.08344587683677673, -0.03760141506791115, -0.0057657151482999325, -0.059372954070568085, 0.024172760546207428, 0.07267002761363983, -0.09033481776714325, -0.13267828524112701, -0.04847664386034012, -0.069420725107193, -0.05971959978342056, -0.09269973635673523, -0.10759470611810684], "mode": "markers", "name": "Cluster 3", "marker": {"size": 8, "color": "rgb(251,128,114)"}, "text": ["Document 737", "Document 854", "Document 981", "Document 1001", "Document 1060", "Document 1090", "Document 1101", "Document 1207", "Document 1234", "Document 1244", "Document 1269", "Document 1299", "Document 1316", "Document 1332", "Document 1350", "Document 1400", "Document 1405", "Document 1421", "Document 1439", "Document 1496"], "customdata": [{"title": "rpj-common-crawl-2019-30", "text": "show, but the swelling disappeared, and the condition was chalked up to bad seafood. The indignities of life on the road are never ending. Like the night before, in Boston. The smoky, black-lit dressing room at Avalon is a mess: crushed tortilla chips and spilled cereal go snap, crackle, and pop every time someone walks across the room. And somehow, the most heinous teenage groupie of the five or six who have worked their way backstage has attached herself to Flint. Her leopard-skin dress seems less a fashion statement than a symptom of some bizarre degenerative disease that first attacks the wardrobe, leaving behind a distinctive spotted pattern, then invades the language centers of the brain. \"Oh wait, you're English, right ?\" she says. \"So you don't say 'z', you say 'zed', right ?\" \"Yes,\" replies a slightly baffled Flint. \"That's awful,\" says Leopard Girl. \"'Cause that means you can't rhyme. I mean, 'zed' doesn't rhyme with anything. You know what I mean ?\" \"No,\" says Flint, looking away blankly, \"not really. \" Much of Prodigy's American tour has been a maze of mutual misunderstandings. Techno culture is in love with futurist imagery - third waves, next milleniums, logical progressions - but the tale of The Prodigy looks more like one of those paradoxical, time-travel loops that sci-fi writers like so much. Just as America is finally moving into the future and embracing electronic music, Prodigy have arrived on our shores espousing the virtues of good old sweaty rock'n'roll. It's so much simpler when the group"}, {"title": "rpj-common-crawl-2023-06", "text": "Entertainment \u2192 Music \u2192 Songs and lyrics \u2192 What does that mean? What's the meaning of the song \"Evenflow\" by Pearl Jam? by Is NancyPancy 3 hours ago Is NancyPancy I read in an interview with Eddie Vedder how he got inspiration for this song after overhearing a couple of homeless guys talking. umm abover the comment what does that mean, keep on going what were they saying or how were they mumblng or something or you know whats the story wishbone???? we need more information please. It is about the Homeless, to a point. It's about those who are completely cast aside by society and may or may not live on the streets. Many do but, it's about people who have mental short comings but, are not mentally unstable. The slow, the autistic or the emotionally weak who were ignored and assumed to be something they are not. Crazychick I've heard it but I don't know the lyrics. What is the song \"Rogues\" by Incubus about? What is the meaning? What is the meaning of the song \"99 Red Balloons\"? What is the meaning of the lyrics of \"Extreme Ways\" by Moby? What is the meaning of \"Remember\" by Disturbed? And \"Break My Fall\" by Breaking Benjamin? Thanks "If a picture paints a thousand words, then why can't I paint you?\" What is the meaning of the song \"IF? What is the song \"The End of the Innocence\" by Don Henley about? What is the meaning behind \"Crimson and Clover\" by the Shondells? What is"}, {"title": "rpj-common-crawl-2019-30", "text": "by the third time, that line is this. Nasri: \"Tough luck, my friend, but no still means no.\" Todd: You know what that means, right? It means that after he got shot down and starting being all butthurt, after he says the dad's approval is basically meaningless, anyway, after he flaunts his superior power over the daughter basically out of revenge...he's still asking for the dad's blessing. Nasri: Say yes, say yes 'cause I need to know Todd (VO): That's the case he made. Todd: \"Screw you, old man! I don't need you! But seriously, do I have your blessing or not?\" Todd (VO): I gotta say, if I'm the dad, I'm gonna be thinking at this point, \"yeah, I am totally right. You don't deserve her, you braindead douchebag! Get lost! I'm gonna set my daughter up with a [pictures of...] handsome, self-made millionaire who's active in charity, and you can go back to [...and...] working at Home Depot [...and a crack pipe] and smoking crack!\" Todd: God! I mean, how stupid do you have to be to make the hero of your story someone who doesn't get that no means no, and who doesn't even accept it when he's told?! Christ! Gets up and leaves Closing tag song: Pilot - \"Magic\" \"Rude\" is owned by Sony Music Entertainment One final clip from the video of the father shaking his head in slow motion. Retrieved from \"https://thatguywiththeglasses.fandom.com/wiki/Rude?oldid=101360\""}, {"title": "bm25", "text": "\"Busted Heart (Hold On to Me)\" is a song by Christian alternative rock duo For King & Country. It was released on 20 September 2011 off their EP For King & Country: The EP and was the first single off their debut album Crave. The song reached No. 3 on the Christian Songs chart. Composition The duo described the song as \"really a universal cry of humanity for something greater than ourselves...[People think they've] got it all sorted out, and life will deal you those blows. This song is that cry saying, 'God, Father, hold onto me, don't let me lose my way.'\" They said the song was inspired by Matthew 11:29-30, which says, \"Take My yoke upon you and learn from Me, for I am gentle and lowly in heart, and you will find rest for your souls. For My yoke is easy and My burden is light.\" Luke Smallbone said, \"When we were writing this song, that Matthew 11 passage came to mind. When we go through life it's so hectic and get beaten down and we go through so many trials. The truth is that we have a Father who is waiting to hold onto us. He's someone we can rest in and He gives us that perfect peace. That's what I love about the song, the verses are talking about real life. The chorus is just crying out to God. There comes those defining moments in each of our lives where we so severely need someone to hold on to us. It"}, {"title": "bm25", "text": "est une compilation de trois CD qui comprend les cinq albums des Ramones sur Chrysalis Records : Brain Drain, Mondo Bizarro, Acid Eaters, \u00a1Adios Amigos! et Loco Live (certaines versions incluent Animal Boy de Loco Live). Il a \u00e9t\u00e9 commercialis\u00e9 en 2002. Liste de CD CD 1 (Brain Drain, Acid Eaters) I Believe In Miracles Zero Zero UFO Don't Bust My Chops Punishment Fits The Crime All Screwed Up Palisades Park Pet Sematary Learn to Listen Can't Get You Out Of My Mind Ignorance Is Bliss Come Back Baby Merry Christmas (I Don't Want To Fight Tonight) Journey To The Centre Of The Mind Substitute Out of Time Shape Of Things To Come Somebody to Love When I Was Young 7 And 7 Is My Back Pages I Can't Seem To Make You Mine Have You Ever Seen the Rain? I Can't Control Myself Surf City Spider Man CD 2 (Mondo Bizarro, Adios Amigos) Censorshit Job That Ate My Brain Poison Heart Anxiety Strength To Endure It's Gonna Be Alright Take It As It Comes Main Man Tomorrow She Goes Away I Won't Let It Happen Cabbies On Crack Heidi Is A Head Case Touring I Don't Want To Grow Up Makin' Monsters For My Friends It's Not For Me To Know Crusher Life's A Gas Take The Pain Away I Love You Cretin' Family Have A Nice Day Scattergun Got A Lot To Say She Talks To Rainbows Born To Die In Berlin CD3 (Loco Live) The Good, the Bad and the Ugly Durango 95"}, {"title": "bm25", "text": "wandering from the Nightly shore-- Tell me what thy lordly name is on the Night's Plutonian shore!\" Quoth the raven \"Nevermore.\" Much I marvelled this ungainly fowl to hear discourse so plainly, Though its answer little meaning--little relevancy bore; For we cannot help agreeing that no living human being Ever yet was blessed with seeing bird above his chamber door-- Bird or beast upon the sculptured bust above his chamber door, With such name as \"Nevermore.\" But the raven, sitting lonely on the placid bust, spoke only That one word, as if his soul in that one word he did outpour. Nothing farther then he uttered--not a feather then he fluttered-- Till I scarcely more than muttered \"Other friends have flown before-- On the morrow _he_ will leave me, as my hopes have flown before.\" Then the bird said \"Nevermore.\" Startled at the stillness broken by reply so aptly spoken, \"Doubtless,\" said I, \"what it utters is its only stock and store Caught from some unhappy master whom unmerciful Disaster Followed fast and followed faster till his songs one burden bore-- Till the dirges of his Hope that melancholy burden bore Of \"Never--nevermore.\" But the raven still beguiling all my sad soul into smiling, Straight I wheeled a cushioned seat in front of bird, and bust and door; Then, upon the velvet sinking, I betook myself to linking Fancy unto fancy, thinking what this ominous bird of yore-- What this grim, ungainly, ghastly, gaunt and ominous bird of yore Meant in croaking \"Nevermore.\" This I sat"}, {"title": "bm25", "text": "his official capacity, dogma does not hold that he is always free from error. St. Peter's Basilica is not the mother church of Roman Catholicism, nor is it the official seat of the Pope. These equivalent distinctions belong to the Archbasilica of Saint John Lateran, which is located in Rome outside of Vatican City but over which the Vatican has extraterritorial jurisdiction. This also means that St. Peter's is not a cathedral in the literal sense of that word. St. Peter's is, however, used as the principal church for many papal functions. Members of the Church of Jesus Christ of Latter-day Saints (LDS Church) no longer practice polygamy. However, a widower may be \"sealed\" to another wife, and is considered a polygamist in the hereafter. Currently, the LDS Church excommunicates any members who practice \"living\" polygamy within the organization. Some Mormon fundamentalist sects do practice polygamy. Saint Augustine did not say \"God created hell for inquisitive people\". He actually said: \"I do not give the answer that someone is said to have given (evading by a joke the force of the objection), 'He was preparing hell for those who pry into such deep subjects.' ... I do not answer in this way. I would rather respond, 'I do not know,' concerning what I do not know than say something for which a man inquiring about such profound matters is laughed at, while the one giving a false answer is praised.\" So Augustine is saying that he would not say this and that he does not know"}, {"title": "bm25", "text": "Tom (Denney) and Chad (Gilbert).\" On the pace of writing, McKinnon said: \"It seems like a really fast thing that has happened but we've been constantly working on it the entire time.\" On the songs themselves, he said: \"the pop-punk stuff has a darker edge to it. I wrote it like that, it's still pop-punk but with a darker edge\". The album was influenced by Finch's What It Is to Burn (2002). The album \"came together song by song\" as McKinnon mentioned, with the band coming up with 15\u201316 song ideas. McKinnon stated in an interview with Rocksound that there's songs \"that didn't make this record that we're saving.\" There is a track on the album that was previously written for Homesick. When asked about how he comes up with song titles, McKinnon said: \"I've got my iPhone, and I go on my notes and every time I see something I like I write it down, so a lot of the time titles are something that mean something to us only, or to someone I know only.\" He called What Separates Me from You \"the slowest for stuff like that\", when referring to song titles. Westfall said that the album's title and the songs' subjects were about \"Separating your self from your peers and really coming into your own.\" McKinnon said What Separates Me from You was \"a lot more personal and darker\" than Homesick, and that it was \"a natural progression of what we were doing\" with \"the same core\" as the band's preceding albums."}, {"title": "bm25", "text": "king, my lord, and I am one that brings good news and also bad (news) to the king, my lord. May the king send 20 palace attendants to guard his city in order that I may go in to the king, my lord, and see his face. What is the life of a palace attendant when breath does not come forth from the mouth of the king, his lord? But he lives if the king writes [t]o his servant, and he lives [for]ever. For my part, [si]nce last year [my intention has been] to go in [and beho]ld the face of the king, my lord, [but Zimredda-( of Sidon/Siduna), the p]rince, [heard about m]e. He made [my caravan] turn back [fro]m the king, my lord, [saying, \"Who c]an get you in [to the king?\" Hea]r, my lord! Aziru, [the son of Abdi-A\u0161ratu, [the re]bel against the king, [has taken possession of Sumur. Haapi [...] ...[g]ave Sumur [t]o Aziru. May the king not neglect [th]is city and his land. When I hear the name of the king and the name of his army, they will be very afraid, and all the land will be afraid, that is, he who does not follow the king, my lord. The king knows whether you installed me as commissioner in Tyre. (Still), Zimredda seized Usu from (his) servant. I abandoned it, and so we have neither water nor wood. Nor is there a place where we can put the dead. So may the king, my lord, give thought to his servant."}, {"title": "bm25", "text": "was necessary to exclude it. Or, in the alternative, one could infer that from , which says, \"And the holy garments of Aaron shall be for his sons after him, to be anointed in them, and to be consecrated in them.\" As puts the anointing and the donning of the larger number of garments on the same level, therefore, just as the donning of the larger number of garments was required for seven days, so was the anointing obligatory for seven days. Rabbi Eliezer interpreted the words, \"And there I will meet with the children of Israel; and [the Tabernacle] shall be sanctified by My glory,\" in to mean that God would in the future meet the Israelites and be sanctified among them. The Midrash reports that this occurred on the eighth day of the consecration of the Tabernacle, as reported in . And as reports, \"when all the people saw, they shouted, and fell on their faces.\" The Mekhilta interpreted the words, \"And there I will meet with the children of Israel; and it shall be sanctified by My glory,\" in to be the words to which Moses referred in , when he said, \"This is it what the Lord spoke, saying: 'Through them who are near to Me I will be sanctified.'\" The Gemara interpreted the report in that the Tabernacle \"shall be sanctified by My glory\" to refer to the death of Nadab and Abihu. The Gemara taught that one should read not \"My glory\" (bi-khevodi) but \"My honored ones\" (bi-khevuday). The Gemara"}, {"title": "bm25", "text": "inquire Of his behauiour. Rey. My Lord, I did intend it. Pol. Mary well said, very well said; looke you sir, Enquire me first what Danskers are in Parris, And how, and who, what meanes, and where they keepe, What companie, at what expence, and finding By this encompasment, and drift of question That they doe know my sonne, come you more neerer Then your perticular demaunds will tuch it, Take you as t'were some distant knowledge of him, As thus, I know his father, and his friends, And in part him, doe you marke this Reynaldo? Rey. I, very well my Lord. Pol. And in part him, but you may say, not well, But yf't be he I meane, hee's very wilde, Adicted so and so, and there put on him What forgeries you please, marry none so ranck As may dishonour him, take heede of that, But sir, such wanton, wild, and vsuall slips, As are companions noted and most knowne To youth and libertie. Rey. As gaming my Lord. Pol. I, or drinking, fencing, swearing, Quarrelling, drabbing, you may goe so far. Rey. My Lord, that would dishonour him, Pol. Fayth as"}, {"title": "bm25", "text": "knowledge between the Father and the Son, He teaches us that there is nothing in the Son beyond what was in the Father, for it follows, And none knoweth the Son but the Father, nor does any man know the Father but the Son.\" Chrysostom: \" By this that He only knows the Father, He shows covertly that He is of one substance with the Father. As though He had said, What wonder if I be Lord of all, when I have somewhat yet greater, namely to know the Father and to be of the same substance with Him?\" Hilary of Poitiers: \" For this mutual knowledge proclaims that they are of one substance, since He that should know the Son, should know the Father also in the Son, since all things were delivered to Him by the Father.\" Chrysostom: \" When He says, Neither does any know the Father but the Son, He does not mean that all men are altogether ignorant of Him; but that none knows Him with that knowledge wherewith He knows Him; which may also be said of the Son. For it is not said of some unknown God as Marcion declares.\" Augustine: \"And because their substance is inseparable, it is enough sometimes to name the Father, sometimes the Son, nor is it possible to separate from either His Spirit, who is especially called the Spirit of truth.\" Jerome: \" Let the heretic Eunomius therefore blush hereat who claims to himself such a knowledge of the Father and the Son, as"}, {"title": "bm25", "text": "difficult before but, the result is easier\u2016 the real meaning of the song is if we run good behavior in the world, we will be happy in hereafter.\u2016 2) Narrated Event The narrated event in this fashion occurs when the narrator renarrates someone's ideas on the basis of the segment of death ritual speech. The narrator does not express his own ideas to share his song, but he quotes someone's ideas which are indexed by the use of word bedek (he says) and ngi as person deixis. For example, appasangi bedek anjayya linoa napappasangngi akrak i bedek nilonjokiang topena -the spirit sends messages to the world (living person) he/ she wants to be arranged his or her sarong\u2016. The truly meaning of this song is the spirit wants to be invocated by the living person. 1) Narrating and Narrated Event Pappisakbi is another phase of the ritual which aims to give some advices regarding to someone's death.. In this point, the researcher identifies the speaker's metapragmatic descriptors in delivering speech of lompo Karaeng and Galla\" Pantama. The narrated text is the idea that occurs in the way the narrator retells or rediscloses someones's ideas.in the line 5, -napattingulung ripal\u0113k\u0113sang,\" -they lie down their difficulty on our arms,\u2016 the speaker indexes the feature of the setting used to produce interpretative framework which deals with the pronoun. 1) Narrarting event A narrating event happens when the speaker is referring to the ongoing event as what is occuring in the very first line where the speaker says: Kunni-kunni na"}, {"title": "bm25", "text": "
Carline
No, no, Master Equerry, that won't do. You are very clever, very droll and you tell very funny stories, but that last joke is a trifle too much.
Greppo
But my dear Susetta--
Carline
But my dear Susetta--
Carline
(Laughing)
There, there. I knew you were not in earnest. My name's not Susetta.
Greppo
Of course it isn't. It's- it's- what is it?
Carline
No it isn't \"What-is-it\"- -it's Carline.
Greppo
Of course it is, but you see I always mean Carline when I say Suesetta. Therefore Susetta--that is my dear Carline, when I tell you I love you--
Carline
(laughing) I don't believe a word you say. Why you arrived here scarely three hours ago, and you've already been making love to half the girls in the castle.
Greppo
It's a mistake, my dear Susetta--I mean Carline, altogether a mistake. I had my eye on you from the first, and any little outside pleasantry you may have happened to notice was only to get my hand in.
Carline
And this is only to keep it in, I suppose. No, no. I'm not as simple as I look, and I tell"}, {"title": "bm25", "text": "I just told them, as long as the lessons were loving and about making good choices, fine, but if they say something about having to love God or you go to hell\u2026 no, we can\u2019t watch that. Similarly, with music, provocative is one thing, mysogonistic is another. I don\u2019t think you\u2019ll find the latter in my collection. I figured someone would bust my chops to some degree, and I will admit, I\u2019m pretty lenient when it comes to what my kids are allowed to watch, read and listen to. In addition to Duran Duran they also hear Le Tigre, and Bob Dylan, and whatever else I listen to. For a while Ivan\u2019s favorite song was by Sharon Jones and the Dap Kings. My M.O. all along has been to let them see it all, and hopefully provide them with the critical thinking skills (and moral guidance) to know what to keep and what to discard. Thanks as always for reading and for your thoughtful response Clarence! HILARIOUS! Just read it again. I really don\u2019t think Duran Duran is EVER appropriate, but if it gets Ivan going (and judging by the photo, it really DOES) then so be it. Could be MUCH worse\u2026 like The Thompson Twins, or something. I had a Duran Duran-themed birthday party in the third grade. Hungry Like the Wolf is about sandwiches, by the way."}, {"title": "bm25", "text": "can never be free of his memories. The narrator becomes angry, calling the raven a \"thing of evil\" and a \"prophet\". Finally, he asks the raven whether he will be reunited with Lenore in Heaven. When the raven responds with its typical \"Nevermore\", he is enraged, and, calling the bird a liar, commands it to return to the \"Plutonian shore\"\u2014but it does not move. At the time of the poem's narration, the raven \"still is sitting\" on the bust of Pallas. The raven casts a shadow on the chamber floor and the despondent narrator laments that out of this shadow his soul shall be \"lifted 'nevermore. Analysis Poe wrote the poem as a narrative, without intentional allegory or didacticism. The main theme of the poem is one of undying devotion. The narrator experiences a perverse conflict between desire to forget and desire to remember. He seems to get some pleasure from focusing on loss. The narrator assumes that the word \"Nevermore\" is the raven's \"only stock and store\", and, yet, he continues to ask it questions, knowing what the answer will be. His questions, then, are purposely self-deprecating and further incite his feelings of loss. Poe leaves it unclear whether the raven actually knows what it is saying or whether it really intends to cause a reaction in the poem's narrator. The narrator begins as \"weak and weary\", becomes regretful and grief-stricken, before passing into a frenzy and, finally, madness. Christopher F. S. Maligec suggests the poem is a type of elegiac paraclausithyron, an ancient Greek"}, {"title": "bm25", "text": "guess at what might come next. Though with an album like this to listen to, who cares when that'll be?\" New Noise gave the album 4 out of 5 and stated: \"Fans of the band will be ecstatic with what they're hearing. This is a powerful and anthemic album, with each track building from the last. Trivium really brought it here, and to be honest, this might be my number one Metal album of the year.\" Rock 'N' Load praised the album saying, \"In the Court of the Dragon is a gripping and totally engaging album that has everything that you could ever wish for not solely from a Trivium album, but a metal album and needs to be heard by any fan of the genre. Trust me, you just have to.\" Jamie Giberti of Rock Sins rated the album 8.5 out of 10 and said: \"In the Court of the Dragon is the third act in the trilogy of The Sin and the Sentence and What the Dead Men Say. An excellent continual evolution, rather than revolution, and one that should see Trivium continue to ascend to the heights of the last few years and beyond.\" Wall of Sound gave the album a perfect score 10/10 and saying: \"Trivium is now just Trivium, and In the Court of the Dragon is another release that defines what that means\u2013 they are one of the best metal bands on the planet.\" Loudwire called it one of the best metal albums of 2021. Accolades Track listing Personnel Credits"}, {"title": "bm25", "text": "pen and that he was born when Adam still had 308 years of his life to live. In his commentary on the Quranic verses 19:56-57, the commentator Ibn Kathir narrated \"During the Night Journey, the Prophet passed by him in fourth heaven. In a hadith, Ibn Abbas asked Ka\u2019b what was meant by the part of the verse which says, \u201dAnd We raised him to a high station.\u201d Ka\u2019b explained: Allah revealed to Idris: \u2018I would raise for you every day the same amount of the deeds of all Adam\u2019s children\u2019 \u2013 perhaps meaning of his time only. So Idris wanted to increase his deeds and devotion. A friend of his from the angels visited and Idris said to him: \u2018Allah has revealed to me such and such, so could you please speak to the angel of death, so I could increase my deeds.\u2019 The angel carried him on his wings and went up into the heavens. When they reached the fourth heaven, they met the angel of death who was descending down towards earth. The angel spoke to him about what Idris had spoken to him before. The angel of death said: \u2018But where is Idris?\u2019 He replied, \u2018He is upon my back.\u2019 The angel of death said: \u2018How astonishing! I was sent and told to seize his soul in the fourth heaven. I kept thinking how I could seize it in the fourth heaven when he was on the earth?\u2019 Then he took his soul out of his body, and that is what is"}, {"title": "bm25", "text": "album, and also from my Spanish album, and then of course my old, kinda standard hits. This is the first time, so a lot of my fans haven't gotten to see me at all perform these songs, so I'm going to try to pick all the best ones that they want to see. But you never know.\" Anthony describes the tour as: \"It's just a monster show. As we creep up to it, just in a couple days, that's when I'm getting the magnitude of this, you know what I'm saying? I sit back and watch her set, and it's exciting. I'm so proud of her.\" For the tour, one dollar from each ticket sold was donated to \"Run for Something Better\"\u2014a charitable organization supporting physical fitness programs for children. Setlist Shows Cancelled shows Critical reception Kelefa Sanneh (The New York Times) gave the tour a mixed review. Although he praised Anthony's performance, he had doubts about Lopez stating, \"But no one expects Ms. Lopez to morph into a lung-busting powerhouse, and in some ways her shaky voice may add to her appeal: on the stage of an arena (and perhaps nowhere else), the A-list star is once more an underdog, getting by with a little help from her band and her husband and a few thousand friends\". Justin Smith (Pegasus News) described the Anthony's performance as a throwback to the 1970s Tropicana Club. He further stated: \"[Anthony] has a voice so powerful and seductive, it is no surprise that every woman in the audience melted"}, {"title": "bm25", "text": "stumbled upon our demo cassette tape of the song in producer/arranger David Foster's office. He loved the tune and wanted to record it as a duet. It was simply meant to be\u2014the song landed with the singer we wanted.\" Gordon also felt the project had a happy ending. \"It was an accidental duet, meaning it was never intended to be a duet\u2014but the producers found ways to make it a duet, which ended up working out pretty well.\" Now it was a matter of Cetera deciding who would be his singing partner. \"'I was looking for somebody who wasn't that logical a choice,' he explained. 'Actually, I was going to use an \"unknown\" singer until someone at my record company suggested Amy Grant,'\" who had thus far only been known for Contemporary Christian music. \"I thought she was a great choice because she was looking to make a pop crossover, and I like what she stands for. She was real excited about the idea, too.\" That's not to say that Grant was without reservations. Caldwell noted, \"Cetera really wanted her to record the duet with him, but she was so devoutly religious that she wanted to vet the songwriters before she would commit to recording the song. I had to go to A&M Records to meet with her. Obviously, I was on my very best behavior that day [he laughs]. I'm sure Paul had to go through the same process.\" After the song was recorded, a music video was filmed at the Park Plaza Hotel in"}], "hoverinfo": "text"}, {"x": [0.07582712918519974, 0.07179027795791626, 0.175592303276062, 0.11591551452875137, 0.15295572578907013, 0.09588545560836792, 0.10420078039169312, 0.13364996016025543, 0.19011028110980988, 0.08242364972829819, 0.10059770196676254, 0.1645086705684662, 0.22008734941482544, 0.14771845936775208, 0.11127740889787674, 0.14668114483356476, 0.08911001682281494, 0.10926322638988495, 0.18673484027385712, 0.17231641709804535, 0.1237144023180008, 0.15975549817085266, 0.12165441364049911, 0.14696510136127472, 0.17965517938137054, 0.174512580037117, 0.14633367955684662, 0.09011397510766983, 0.07100863009691238, 0.18838106095790863, 0.09178315848112106, 0.1451117992401123, 0.12982484698295593, 0.18610641360282898, 0.15516792237758636, 0.1268852800130844, 0.15806865692138672, 0.16983240842819214, 0.10114045441150665, 0.11934935301542282, 0.08118795603513718, 0.17146055400371552, 0.13426682353019714, 0.1085435152053833, 0.08002051711082458, 0.10969285666942596, 0.1728866547346115, 0.13906632363796234, 0.11769536882638931, 0.05427781119942665, 0.20060883462429047, 0.16469314694404602, 0.11385715752840042, 0.12566271424293518, 0.12455852329730988, 0.13851837813854218, 0.11721271276473999, 0.15311190485954285, 0.16384094953536987, 0.09620834141969681, 0.1604001373052597, 0.155342698097229, 0.12709330022335052, 0.11467689275741577, 0.09314651042222977, 0.1696336567401886, 0.13374190032482147, 0.22680209577083588, 0.15928292274475098, 0.06596393883228302, 0.12953318655490875], "y": [-0.058118704706430435, -0.021733861416578293, 0.0030570109374821186, -0.13892307877540588, -0.046235956251621246, -0.010607616044580936, 0.03294831141829491, 0.009227978065609932, 0.02286691963672638, 0.028754930943250656, 0.10418607294559479, -0.08428337424993515, 0.010689872317016125, 0.011235762387514114, 0.029334908351302147, 0.005194004625082016, -0.007848389446735382, -0.06764963269233704, -0.013208079151809216, 0.10750186443328857, -0.005600311327725649, 0.030876854434609413, -0.04018125683069229, 0.018080079928040504, -0.01110027451068163, 0.03623485937714577, 0.047707147896289825, 0.07940979301929474, -0.09560927748680115, 0.061880894005298615, -0.02472325973212719, -0.03445924073457718, 0.06130150705575943, -0.015341061167418957, -0.01991850510239601, -0.10570324957370758, -0.02637292817234993, 0.03132609650492668, 0.031820885837078094, -0.07252111285924911, -0.06912600994110107, 0.049095891416072845, 0.05923210084438324, -0.055890925228595734, -0.06754808872938156, 0.04408580809831619, -0.03936741128563881, 0.0023665130138397217, 0.02104824222624302, 0.0007042259676381946, -0.010961235500872135, 0.05668963864445686, 0.09926261007785797, 0.06423813849687576, 0.005638685543090105, 0.039567869156599045, -0.00911477766931057, 0.0236549973487854, -0.018895233049988747, 0.04714610427618027, 0.013450604863464832, -0.028826773166656494, -0.11452198773622513, -0.02690766751766205, 0.03511878103017807, 0.060502924025058746, -0.11541835218667984, 0.025983240455389023, -0.02804536372423172, -0.012631736695766449, -0.08735272288322449], "mode": "markers", "name": "Cluster 4", "marker": {"size": 8, "color": "rgb(128,177,211)"}, "text": ["Document 722", "Document 1004", "Document 1009", "Document 1012", "Document 1026", "Document 1027", "Document 1052", "Document 1053", "Document 1062", "Document 1071", "Document 1072", "Document 1077", "Document 1092", "Document 1096", "Document 1110", "Document 1115", "Document 1117", "Document 1121", "Document 1122", "Document 1124", "Document 1152", "Document 1155", "Document 1169", "Document 1170", "Document 1186", "Document 1188", "Document 1191", "Document 1192", "Document 1196", "Document 1197", "Document 1209", "Document 1219", "Document 1220", "Document 1240", "Document 1242", "Document 1243", "Document 1257", "Document 1258", "Document 1266", "Document 1273", "Document 1282", "Document 1287", "Document 1307", "Document 1328", "Document 1333", "Document 1337", "Document 1358", "Document 1361", "Document 1375", "Document 1383", "Document 1387", "Document 1388", "Document 1390", "Document 1392", "Document 1393", "Document 1399", "Document 1402", "Document 1407", "Document 1415", "Document 1417", "Document 1425", "Document 1438", "Document 1440", "Document 1450", "Document 1455", "Document 1457", "Document 1458", "Document 1463", "Document 1469", "Document 1478", "Document 1485"], "customdata": [{"title": "rpj-c4", "text": "Correction on confession.. my husband had to force me to get outta bed this morning with his cold foot on the back of my leg action. Which made me wish I'd signed up for those Taekwondo lesson so I could go all Bruce Lee. Because really, putting your cold feet on the back of someones leg deserves a karate chop to the neck. It\u2019s so hard to get back into the swing of things after being on vacation. Especially when you\u2019re expected to function at full capacity in the workplace.. Good thing is, I\u2019ve never functioned at full capacity so people know not to expect much already. Bad thing is, that doesn\u2019t stop them from bothering me. So I\u2019m forced to be courteous and helpful as I make my way down the hall. In the process, people stop me to say \u201cWelcome Back. About that report\u201d or \u201cHow was your trip, you think you could take a look at this before getting settled in\u201d. This just makes me pick up my pace and act like I can\u2019t hear the guy down the hall telling me that he can\u2019t get logged into his system this morning. I want to say \"how the hell did you log in yesterday or the past 2 weeks that I haven\u2019t been here\". Instead, I break into a slow jog until I make it to my office, shut my door and hide under my desk until lunchtime. This will be my routine for the rest of the week. Or until I get"}, {"title": "bm25", "text": "in Lit. I'm supposed to pass Sociology with her chained against my ankle? She comes up to me all eager. I can see bags under her eyes, like the night life is catching up with her hard. \"Let's exchange numbers!\" she says. \"I'm glad we're working together! Being in the same group with someone as bright as you, this presentation'll be a piece of cake!\" I ask if she's read anything on the module before we got the assignment, and she shakes her head with this puppy-dog sorrow on her face. I'm gonna get an F. I just know it. ---- I can\u2019t afford to fail this. Mama already says if I drop below a B-minus in another class, she\u2019ll make me drop my extra-curriculars. You know what that means. I\u2019ll have to answer for being out of the house as late as I am. She\u2019ll want to ground me, even \u2014 it\u2019s happened before. She\u2019ll be over my shoulder as often as she can. I can\u2019t afford that right now. Of all the people I don\u2019t want to notice, Mama is at the top of the list\u2014 \"Kelly!\" The small crystals at the heart of my inch-long gold star drop earrings start twinkling all on their own as a voice rings in only my ears. Instinct makes me draw my hands over them before anyone notices, even though no one ever does. \"You shouldn\u2019t have gotten to school so late! When are we gonna check that rumour you heard about in the bathroom?\" I wince."}, {"title": "bm25", "text": "because I watch the monitor and I have the impression I understand\" (f23). The mothers saw a need to be reassured when they were holding their child: \"At the beginning of skin-to-skin, I didn't really know what was going on: when it rings, for us, that's disastrous, so if you don't see someone come, you say to yourself, but what's going on? In fact, there are alarms that are not so serious, but they hadn't told me, so it would be good if they said at the beginning what it means\" (m11). The mothers said more frequently than the fathers that they needed explanations of the baby's relational capacities and on the meaning of their reactions, to help them: \"It's important to understand her reactions, when she cries or seems nervous. If I don't manage to calm her, I feel like a bad mother who does not understand her child. It's important to understand and also to know what to do next\" (m15). Fathers and mothers both insisted on the need to warn them of changes such as intubation, changing the room, or placing a catheter: \"I arrive, there are 3 physicians in the room, a blue sheet over my baby. And there, I panic! The doctors say to me, \"You can't come in.\" I say to myself, they've put this sheet so that I can't see. . . They're taking her to the morgue. Fortunately, there was someone who saw that I was stunned and explained to me: They're changing the catheter'\" (m30). Any situation"}, {"title": "bm25", "text": "problems with depression after the positive test for cocaine. Fury's mental health deteriorated after winning the world titles. On 4 October 2016, in an interview with Rolling Stone, Fury said \"I'm going through a lot of personal demons, trying to shake them off, this has got nothing to do with my fighting \u2013 what I'm going through right now is my personal life. I've not been in a gym for months. I've been going through depression. I just don't want to live anymore, if you know what I'm saying. I've had total enough of it. Never mind cocaine. I just didn't care. I don't want to live anymore. So cocaine is a little minor thing compared to not wanting to live anymore. I am seeing help, but they can't do nothing for me. What I've got is incurable. I don't want to live. All the money in the world, fame and glory, means nothing if you're not happy. I'm seeing psychiatrists. They say I've got a version of bipolar. I'm a manic depressive. I don't even want to wake up. I hope I die every day. And that's a bad thing to say when I've got three children and a lovely wife isn't it? But I don't want to live anymore. And if I could take me own life \u2013 and I wasn't a Christian \u2013 I'd take it in a second. I just hope someone kills me before I kill me self. I'll have to spend eternity in hell. I\u2019ve been out drinking, Monday to"}, {"title": "bm25", "text": "seen as the ideal man, the perfect human, the perfect Muslim. That means that the highest commandment for a male Muslim is to imitate Muhammad, to live his life. This does not happen according to our social standards and laws. Because he was a warlord, he had many women, to put it like this, and liked to do it with children. And according to our standards, he was not a perfect human. We have huge problems with that today, that Muslims get into conflict with democracy and our value system \u2026The most important of all Hadith collections recognised by all legal schools: The most important is the Sahih Al-Bukhari. If a Hadith was quoted after Bukhari, one can be sure that all Muslims will recognise it. And, unfortunately, in Al-Bukhari the thing with Aisha and child sex is written\u2026 I remember my sister, I have said this several times already, when [S.W.] made her famous statement in Graz, my sister called me and asked: \u2018For God\u2019s sake. Did you tell [S.W.] that?\u2019 To which I answered: \u2018No, it wasn\u2019t me, but you can look it up, it\u2019s not really a secret.\u2019 And her: \u2018You can\u2019t say it like that!\u2019 And me: \u2018A 56-year-old and a six-year-old? What do you call that? Give me an example? What do we call it, if it is not paedophilia?\u2019 Her: \u2018Well, one has to paraphrase it, say it in a more diplomatic way.\u2019 My sister is symptomatic [sic]. We have heard that so many times. \u2018Those were different times\u2019 \u2013"}, {"title": "bm25", "text": "layout: post title: Taming the Harsh Critic: An Appreciation for People Who Create and Share with the World author: Manal Ghosain categories: tags: --- ![Thumbs down](/images/thumb.jpg) This movie sucks. I don't know what were they thinking when they made it. I don't think this book is worth the paper it's printed on. This song is so bad, it makes my ears bleed. All of these and more are opinions I've expressed in the past. I thought as a consumer, I had the right to say whatever I want and freely express my dissatisfaction \u2026 until recently when I tried to write a book or make music myself and realized the monumental amount of work and dedication involved. I don't have to like everything I consume. But it doesn't mean I have to be smug about it. > \u201cA critic is someone who never actually goes to the battle, yet who afterwards comes out shooting the wounded\u201d ~Tyne Daly There is a harsh critic within all of us. Most of the time it\u2019s busy wounding the ever-fragile egoic self. It\u2019s this same critic that cruelly judges others when the opportunity arises. In today\u2019s environment of 24-hour television and social media anyone and everyone is a critic. And as we all know so well, negativity pays off. It\u2019s a form of entertainment that has mass appeal. What if we stopped before casting judgment and took a deeper look at what it takes to share anything with the world? We might think and act differently. ## A different perspective:"}, {"title": "bm25", "text": "For example, one male participant in his mid-50s said, \"I'm starting to attend my church more\u2026becoming more spiritual.\" This is not to say that participants did not spend money on alcohol. One participant explained: \"I think the liquor stores are busier, none of them have closed down\" (Male, age 51). Consistently, we found that when drinking alcohol was part of a participant's narrative, there was a shift in what it meant depending on whether the economy was doing well or poorly. During bust times, casual drinking changed from an opportunity to socialize to a coping strategy used to cope with feelings of failure. As one participant said: \"I think people reach out to different things [during a bust] they feel might be able to help them cope\u2026churches and liquor stores\" (Male, age 30). Both spirituality and alcohol consumption can initiate participation in communal activities, where the individual can seek comfort in the company of others. With regard to participants' work lives, economic busts changed how much people earned, but did not improve work-life balance. As one participant said: \"They paid you well [during the boom] but there was a lot of what I call criminal exchange, like, we want you to work, you know, 12-14 h days, 7 days a week until you're done, and yes you got paid\" (Female, age 50). Though the experience may have had its advantages (e.g., more discretionary income), bust periods offered an opportunity to slow down and recuperate. As another participant said: \"When there is a boom, you work till"}, {"title": "bm25", "text": "say things like \u201cAs soon as I\u2019m done with this season of my life,\u201d or \u201cas soon as these three weeks go by and this crazy time is over.\u201d If-only and as-soon-as derive their authority from this sense of something like \u201cin three weeks my life will become easy.\u201d Has that ever happened? No\u2026why? Because balance is a myth. I remember years ago once listening to a sermon on this very subject. To paraphrase the Pastor: \u201cCan you think of one person in Scripture who lived a balanced life? When you think of King David, do you think, Oh, there\u2019s a man who has got it all together? I mean, whether that guy is living in caves or he\u2019s ruling the kingdom, he is a man after God\u2019s own heart right? What about Nehemiah\u2026spending twelve years busting his chops to accomplish what God called him to do. What about the Apostle Paul, does he strike you as somebody living a balanced life? Jesus came myth-busting, didn\u2019t he? I love when he routinely says, \u201cYou\u2019ve heard it said \u2026 But I say to you.\u201d He uses this statement to drive home the truth. To bust myths! In Scripture and in Christ what we see modeled is not balance but a great deal of consistency, a great deal of peace, a great deal of certainty and purpose in the midst of some pretty dramatic and out-of-whack circumstances. Simply put\u2026A great deal of surrender! My challenge to you\u2026don\u2019t worry about a balanced life. Instead shoot for a surrendered life."}, {"title": "bm25", "text": "just called them out of the blue without scheduling a call. So, that was the toughest thing of living alone.\" However, for participant 13, living with someone had helped them feel like they reacted better to the shelter at home orders, \"Maybe, that's why I'm reacting better because I have people around me to talk to but, if I did not, that it would have been really, really difficult\u2026 Obviously, there were challenges as well, but I think I handled these better than expected \u2026\" (P13). Most participants faced difficulties and challenges with their living situation due to the pandemic. As participant 6 stated, \"I think everyone's mental health kind of took a little hit during this time \u2026 And I think for us [PhGS], like, kind of worrying about what does this mean for my research? What does this mean for my thesis or dissertation? I think just having increased anxiety\u2026\" The second sub-dimension of the social dimension is relationships. Relationships of PhGS, be it professional or social, were also hampered due to the COVID-19 pandemic. This can be seen in a quote from participant 8, \"I'd say the social support system has gotten very small just because you can't physically be there for each other. It's only so many times you can facetime.\" PhGS professional relationships were also affected. With classes and communication with faculty being shifted to online platforms, PhGS relationships with their faculty advisor/ mentor were also impacted. As participant 4 said, \"My advisor is super busy usually, and at least when"}, {"title": "bm25", "text": "layout: article title: \"What is a shallow copy and why is it screwing up slice() ?\" categories: articles modified: 2015-01-12T11:57:41-04:00 tags: toc: image: feature: teaser: shallowNoDivingTeaser.jpeg thumb: comments: ads: --- ##I've gotten weird results with `Array.slice()`. What's going on? `slice()` returns a copy of an array. This is awesome! But there's this weird line in the [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/slice) docs that says slice 'returns a shallow copy'. The [MSDN](http://msdn.microsoft.com/en-us/library/ie/tkcsy6fe(v=vs.94).aspx) and [W3Schools](http://www.w3schools.com/jsref/jsref_slice_array.asp) docs don't mention this at all, so what in the world does this mean? Let's think back for a moment to [how variables work](http://prestonparry.com/articles/VariableNamesAsLinks/). They're basically just links to some other place on the hard drive where the actual data is stored. ##What hapens if there are variables in my array? What slice does is copy over the variable, not the data that variable points to. Say you make a change to the object a variable is pointing to. The 'copied' array will still include a variable pointing to that same object, which has now been changed. **Slice copies over variables as pointers, and does not create a copy of the data each variable points to.** ##How to create a 'deep' copy Creating a 'deep' copy means your new copy will have no linkages to the original object. The easiest to create a deep copy by far is to use JSON. {% highlight css linenos=table %} var mySuperNestedArr = [myFavoriteSuperHeroesArr,myFavoriteCatGifsObj,taySwiftsEntireCatalogueObj]; var completelySeparateCopy = JSON.parse(JSON.stringify(mySuperNestedArr)); {% endhighlight %} When you JSON.stringify a variable, it creates a whole new object. Then you can just immediately JSON.parse it, and blam,"}, {"title": "bm25", "text": "Paste a link to your [USERNAME].github.io repository. -https://github.com/jordanfox15/jordanfox15.github.io Explain how to create a repository on GitHub and clone the repository to our local computer to a non-technical person. -Login to your Github account and use the plus sign in the upper right corner and choose the option to create a new repository. Here you will name your repository, choose your options and hit create repository. Then copy the URL in the text box on the right where it says clone URL, then go to your command line and type \"git clone \" and then paste in the URL after and hit enter. Describe what open source means. -Open source means that anyone using a program has access to the code of that program meaning that anyone can alter/re-write that program instead of just being able to run it on their computer. What do you think about Open Source? Does it make you nervous or protective? Does it feel like utopia? -I think open source is rather amazing. It allows coders from all over the world to work on the same project without ever even contacting one another. Assess the importance of using licenses. -I would say it is very important if for now other reason than that it would seem that without them someone could take the code you have written and claim it was completely written by them without changing a thing. What concepts were solidified in the challenge? Did you have any \"aha\" moments? What did you struggle with? -I recieved a better understanding"}, {"title": "bm25", "text": "Erendira in front of 25,000 people. A week later, they were married. \"I don't know if either of us could be married to someone who didn't perform\", says Erendira. \"I can't see either of us ever being happy sitting behind a desk.\" Wallenda credits God for his success, saying that what he does on the high-wire is a gift from God. He grew up in \"a Bible-believing, God-fearing family\" and describes himself as a \"born-again Christian\". Faith is \"the most important part of my life\", he says. Wallenda and his wife have three children. Before every wire walk, Wallenda joins his family in prayer and he always wears a cross as he performs. He remarks, \"The Bible says pray without ceasing and I'm always praying.\" He denies that his stunts \"test\" God. \"To test God would be to never train, never practice, and then to walk across the Grand Canyon; or to jump off a building, or throw myself in front of a truck\", he says. Wallenda says he tries to live \"an upright life\" and be a good example. Despite his success, Wallenda wants people to think of him as just a regular guy. \"I want people to like me, just for who I am\", he says. \"What you get is a regular person. I want people to relate to me.\" Wallenda believes that through hard work, one can achieve anything they desire. \"I think [challenges are] what life is about\", he remarks. \"We all go through challenges. But once we get through them, we"}, {"title": "bm25", "text": "came to my mind is 'how much is this service going to cost me'y is it something that you pay through your health fund or whether it's going to be charges in addition to what are covered.' (patient from focus group 1) If I am concerned about my professional care 'Cause even my Mum now, she doesn't want to go to a second person to get an opinion because she's scared. She doesn't want to betray the doctory that needs to be broken down, that sort of stuff.' (carer from focus group 5) 'You need someone to say look if you're not yfeeling comfortable, like for example, maybe someone doesn't feel comfortable with a man, or someone doesn't feel comfortable with a woman. I think the y important point y is really the crux of it is your relationship with your health care person. You have to feel you can trust them, you're comfortable with them, that they respect you, that you respect them, their opinion.' (patient individual interview 2) For carers 'There seems to be a reluctance to discuss what happens if I can't cope y more from the carers y it's all very well saying he can go home to be looked after but when it gets a bit more complicated, it's often hard for them I think to ask, 'well what happens if I don't cope?''(nurse 2) End-of-life issues 'There's a lot of people who would like to knowy what to expect when they're actually dying, but I think they're afraid to ask.'"}, {"title": "bm25", "text": "7 males and 1 female out of the 16 participants said that their focus was on woman who was patient, respectful and understanding hence, they echoed the following words: \"I needed someone who was respectful, someone who could understand me as a man and someone who was patient.\" John \"As for me, I needed someone who could understand me and whom I could understand as well, someone who could respect my being.\" Davis \"I preferred a man who was respectful and understanding.\" Natasha \"I married her because she was disciplined and could not unnecessarily pick fights and this was vital for me because I grew up in a home where my father and mother were always fighting so I did not want my own marriage to be like that.\" Jack While Roy had this to say: \"My wife was well-disciplined and less of a talker so I knew that someone who does not talk much can protect my dignity by not embarrassing me in front of people and she will not go out there to tell my mistakes to others.\" \"I was once married, and then we divorced so this is my second marriage. Thus, in terms of understanding, I needed someone who could understand me because usually when a woman has had a history of divorce, there is that stigma that comes with it saying \"why did she fail in her first marriage?\" and even if we give excuses it is difficult for people to understand since they were not there but this was not"}, {"title": "bm25", "text": "Q What does your job entail? A My job title states that I am the matron of a 45-bed nursing home. The term 'matron' is one that I have stuck to as older people relate more easily to it than they do to, say, 'nurse manager'. In reality, when you have your own business you must be able to turn your hand to a number of jobs and tasks. Joy, our deputy, takes a share of the nursing responsibility from my shoulders, but basically I am responsible, with my husband, for 45 patients, all their needs and for all our staff."}, {"title": "bm25", "text": "turns out, the answer is complex and I got tired of cutting-n-pasting the same email over and over again. So I started a blog entitled \u201cOverseas Exile.\u201d I posted several times a week for many years, but I let the domain lapse and now someone else has snapped it up. You can still read my old posts , but I felt, given the current climate in the US, that it\u2019s worth sharing some of this here.

This wasn\u2019t my first post, but it was one of the most important, despite the silly premise.

Count von Europe

So your eccentric great-aunt Gertrude has invited you over for dinner and when you arrive, you find a mysterious stranger with her. She introduces him as \u201cCount von Europe\u201d. After a long and pleasant conversation over food and drinks, the Count says \u201cyour aunt invited you over because I need someone to watch my Bavarian castle while I\u2019m away for a year. I\u2019ll also pay you \u20ac50,000 a year and let you borrow the Bentley when you want to travel around Europe on your days off. When can you fly to Germany?\u201d

Sadly, for many people I\u2019ve spoken with, their \u201cdream\u201d of living abroad is little more than \u201cCount von Europe.\u201d I see people on message boards saying things like \u201cI want to move to Italy. Anybody got a job/marriage/house for me?\u201d Honestly, it\u2019s not going to be that easy. However, you can do it if you plan things right and understand what\u2019s involved."}, {"title": "bm25", "text": "of the people who said \"yes\" were either Asian or Latino, but everyone who said \"no\" was White . . . . you never have seen a White girl be like, \"hmm, does this White guy like White girls?\" No, because they're the beauty standard. (E02, age 16) Even when interacting with Black teen boys, participants shared experiences of colorism and backhanded compliments: [A guy might say] 'oh, you're pretty for a dark skin.' Like what? I'd rather you not say anything to me. Don't compliment me at all if you're going to say 'you're pretty for a dark-skinned girl.' Or 'you're pretty when your hair is straight.' (B01, age 16) Across all focus groups, participants shared their experiences of blatant stereotyping and cultural invalidation: One thing that really annoys me is when I'm talking to someone and obviously, I'm African American. I start telling them my interests in music, for example, and then they tell me \"you're the whitest Black person that I've ever met.\" (C03, age 16) Participants also recounted instances of being accused by Black teen boys of using their \"white voice\" (C01, age 15): When people say you talk White, they just mean that you talk articulately. And by you saying that that's a White characteristic, you're saying . . . to talk eloquently is something that is reserved for White people and cannot belong to you. And that's just another example of self-hatred in the Black community. (E02, age 16) Finally, participants pointed out the ways in which they were stereotyped,"}, {"title": "bm25", "text": "prompting Burley to say \"Lots of demonstrators shouting 'fair votes now' \u2013 not sure what they mean by that\" and \"They don't like The Sun, they don't like us, they don't like Rupert\". In September 2010, commenting on the News International phone hacking scandal, part of an exchange between Labour MP Chris Bryant and Burley went viral, whereby Burley asks Bryant to cite information claiming that phone hacking was \"endemic\" in other newspapers. Bryant did, accusing Burley of being \"a bit dim\" and saying: Burley also falsely claimed that if he had changed his PIN, Bryant would not have been hacked. Bryant responded in an article for The Independent, saying that \"My PIN had nothing to do with my phone being hacked. Someone phoned Orange, my mobile network provider, and tried to pretend to be me in order to gain access to my voicemails\". Bryant has since asked on air for Burley to apologise about the interview. 2012\u20132015 On 5 October 2012, Burley was accused of insensitivity after she broke the news of the probable death of missing five-year-old April Jones live on air to volunteers who had been assisting in the search for her. The interviewees were unaware that the case had become a murder inquiry. 2015\u2013present During the 2015 general election, Channel 4 and Ofcom received more than 400 complaints against bias in their treatment against Labour leader Ed Miliband in favour of Conservative leader and Prime Minister David Cameron, including a \"town hall\" part of the programme which Burley moderated. Burley repeatedly questioned"}, {"title": "bm25", "text": "not helping \u2026 so disclosure is a problem and it also affects adherence\", professional nurse, GP. \"I haven't told my husband about my illness \u2026 there are already problems in our marriage; it will torment us even more\", P7 EC. \"There is this cousin sister of mine staying at Jabulani Township; I went there to tell her about what I had found out and she said ooh! as though shocked but then we spoke, she advised me that you are like this, you need to take the treatment. Furthermore, she said I must buy myself food and eat. But then after, I heard that she went around speaking about me behind my back. That hurt me very badly but I told myself, oh well it's okay; it doesn't matter \u2026 You know what makes a person afraid is that when you tell someone,then, that very someone goes outside and talk about you, it's how they say it and they laugh\", P2 GP. Polypharmacy -Difficulty with taking more than one treatment -Pill burden \"They feel like they can be off the medication; they decide which one is more dangerous between HIV and hypertension. Oh! It's HIV \u2026 So they only want to take the treatment for HIV and not the other treatment\", professional nurse, GP. \"When you start combining another condition, they become discouraged \u2026 I mean I was starting to comply with this one and now you are coming with this other one \u2026 when you start introducing something else and adding more pills, they feel"}, {"title": "bm25", "text": "![](imgs/steven-site-map.png) ###What are the 6 Phases of Web Design? 1. Information Gathering 2. Planning 3. Design 4. Development 5. Testing and Delivery 6. Maintenance ####What is your site's primary goal or purpose? What kind of content will your site feature? My site's purpose is to be a professional website where I can share work history, my blog, and projects. ####What is your target audience's interests and how do you see your site addressing them? My target audience is fellow DBC students, guides, and eventually potential employers. I hope to engage with all three of these groups in a professional yet personal way. That is to say, I hope my tone comes across as professional but my personality is able to come through. ####What is the primary \"action\" the user should take when coming to your site? Do you want them to search for information, contact you, or see your portfolio? It's ok to have several actions at once, or different actions for different kinds of visitors. I hope that each user's primary action is to search for information about me. ####What are the main things someone should know about design and user experience? I think that the most important thing is that though one design may not fit all, websites should be designed with the user in mind. ####What is user experience design and why is it valuable? UX design is designing a website or app, keeping in mind how a user will feel when using it. It's making a website pleasant and easy to use."}, {"title": "bm25", "text": "it. \u00df You don't really dare to believe that you'll find someone and then you don't dare to believe anything is going to happen. \u00df Therefore the boys especially seem on the one hand to be constantly prepared to seize sexual opportunities when they occur, but on the other feel they are unable to actively anticipate such opportunities and feel they should give an image of sexual encounters being unplanned. However, some of the girls have somewhat ambivalent feelings towards the phenomenon of a onenight-stand, a finding that does not feature in the boys' accounts. At first, the girls say it is okay to have one-night-stands but later on, several of them say that they personally cannot imagine a sexual relationship and not being in love. But I'm the kind of person who really wants feelings, lots of feelings involved when I have sex. I don't want to go around with a bag over my head. Just meeting someone in a club who does want to go home with me, you know . . . I don't want to be like that. I want to be someone who has feelings and is in love. \u00e0 When the teenagers talk about unprotected sex it is not the possibility of contracting an STI that is the greatest threat, instead it is an unwanted pregnancy. I think more people think about pregnancy then venereal infections. \u00df Venereal infections are more taboo, oh my God it does not exist, kind of. So you are more afraid of getting pregnant. \u00e0"}, {"title": "bm25", "text": "didn\u2019t understand what you are saying because Drew hasn\u2019t been busting my chops on whether or not I read the Bible every day enough. This is so bizarre to me that I even had trouble figuring out what you and he are talking about. To be sure, I\u2019m not trying to make this a matter of \u201clegalism.\u201d But if a guy said, \u201cI didn\u2019t pray Monday.\u201d I\u2019d say, \u201cWhy not?\u201d If he said, \u201cI didn\u2019t want to pray that day, and I don\u2019t have to sit down everyday and pray. That\u2019s legalism. Stop making me feel guilty about stuff.\u201d That would be bizarre to me. Seriously, if someone said that you have to have a time in Scripture to \u201cjust read\u201d besides sermon listening, sermon prep, lesson prep, and simple interested study\u2026.I\u2019d just blow that off. It\u2019s ridiculous. And certainly, people can read the Bible every day and not grow in holiness. I think that I am not understanding what you mean by \u201cquiet times.\u201d Do you mean that \u201cquiet time\u201d is defined as time sitting and physically reading a Bible for a certain amount of time every day? Bible reading is certainly an essential discipline, and if someone didn\u2019t have a consistent practice of it that would be cause for concern. But if by \u201cquiet time\u201d people mean \u201ctime spent with the Lord\u201d, I can\u2019t imagine that 15 minutes would be sufficient. The entire life is meant to be spent before the Lord, even down to the eating of food. Even when we sin, Christ"}, {"title": "bm25", "text": "I can hear the urgency in my alpha\u2019s voice. Dwam wants a pack meeting as soon as possible.

Accalia follows soon after, and then Ula and Chantelou, as usual. Ula is with Dwam and Accalia, by the sounds of things. Then the rest of us chime in, one by one. Of course, as the newest and lowest-ranked pack member, I am last.

I was expecting this. She means well, but as soon as I told Ula what was going on, I knew this would happen. Dwam knows her too well not to notice when something is up.

I walk slowly to the clearing where the pack will gather. Someone has started a fire - probably Chinua or Larentia. They spend more time in their human forms than any of the rest of us. Honestly, although I like them, those two are probably part of the reason the rest of my pack can be so wary around technology.

As much as I try to delay, it isn\u2019t long before I reach the clearing. Dwam gives me a look that says, \u201cYou took your time.\u201d and I have to look away to avoid the shame.

It is Accalia, however, that speaks up.
\u201cNow that we are all here,\u201d she starts, emphasising the idea that she has been waiting for some time, \u201cMaybe our new leader would like to tell us her plan to move us all halfway across the country?\u201d She exudes an aura of anger and threat.

Apparently, this was not the best idea. But before I"}, {"title": "bm25", "text": " Molly L Dixon

MLDixon

PAIRING AND GIVING FEEDBACK

September 26, 2014

PAIRING:

What is it like to pair with others to solve challenges?
On one hand it can be fun and and on the other hand it can be scary, in my opinion, especially if you and your pair are at different learning levels. I had paired with individuals that are at the same level as myself and at a higher and lower level of understanding as me. I have the most fun when I pair with someone that is at the same level of learning as myself. I definitely feel scared when I pair with someone that is at a higher level of learning because I'm afraid that I won't be able to contribute as much to the process as the other person. It also scares me to pair with someone that is at a lower level of learning as myself because I'm afraid that I won't be able to answer this person's questions because I don't have enough confidence in my knowledge.
What has been particularly fun or rewarding?
I would say that solving the challenge with someone"}, {"title": "bm25", "text": "old code and re-wrote it. It was a massive task, but it was definitely worth it as in my mind it made it take a leap 10 years ahead of the competition in terms of just pure technical quality. It was of course a risk, how much time would we spend on it? Would it even be feasible possible to do? Wouldn't we miss all that crazy stuff we spent hours on during a caffeine-infused night in 2008? Based on the last few years I must say that it was clearly the right decision. It would not have been possible without the team being so incredibly experienced with doing what we do best. As someone who has over the last 20 years written thousands of lines of code that now lives at /dev/null I must say that there are few things more liberating than deleting code. Less code almost always mean less problems. So, build that quick prototype, take the experience... Then chuck it in the bin and start on planning out your real implementation."}, {"title": "bm25", "text": "in the emergence of the normative truth that how we teach and the way we are have an impact on who our students will become and where they will go. My future is a 'lucky packet' and still holds many surprises, but my subjective truth is that, as long as my feet keep moving and I am engaged in understanding learning and in guided reflection, my personal insight, my teaching and the meaning of my life will blossom. . To cut a long story short, I moved from one state to another, mostly in South and Central India, every six years. It meant learning a new language, joining a new school, making new friends, and adapting to a new culture. In each place, while I felt a part of the culture, I was considered an outsider. The funny part is I never stayed in Bihar, so I never identified with it. Today, when someone asks me where I am from, I have a tough time explaining. I feel like saying 'pan-Indian'. I find it easier to explain to a foreigner that I am Indian, than to my countrymen! And though I feel at home everywhere, I can't say I am accepted as one of their own anywhere within India. Yet, in all honesty, I cannot say that I have ever been denied any opportunities or rights because of this 'identity crisis'. I have blended in quite easily everywhere. . Dance macabre. Who does not remember the angst accompanying that first cut through the skin in the"}, {"title": "bm25", "text": "owner. For example, \\textit{chatbot: I would like to go to the hospital for my postnatal confinement; chatbot: I had a nightmare yesterday, and I woke up scared}. The post owner expresses their interest in the chatbot (The reply rate was 44.6\\%): \\textit{post owner: When is your postnatal confinement? post owner: What did you dream that was so scary?} Besides, when the chatbot replies \\textit{Me too} or \\textit{I feel the same as you}, and so on, people are also interested in the chatbot. Because they think they have found someone similar to themselves. For example, there was the post: \\textit{Frequent urination at night slept poorly}. The chatbot replied: \\textit{Me too}. The human reply was: \\textit{How many months have you been pregnant? Let us follow each other}. If chatbot replied, \"I do not know\" or asked if someone else can help, it could seem useless, but most people thank the chatbot and express their feelings to the chatbot. It seems that when someone replies on it, it means that person was concerned, and that has already been a comfort \\subsubsection{Other Members Replies to Chatbot There were 29 posts with the chatbot's replies in which members other than post's post owner participated. The maximum number of rounds in the dialogues reached ten rounds. We categorized the reason that other members replied to chatbot: \\begin{itemize} \\item Join the discussion and express one's personal situation. \\textit{Other member: In my case, the doctor helped me listen to the fetal heart, but I could not hear it, but the B-scan showed that it"}, {"title": "bm25", "text": "[define variables](https://github.com/lindsey-s/phase-0/blob/master/week-4/defining-variables.rb) ### Simple Strings Methods Solution [simple strings](https://github.com/lindsey-s/phase-0/blob/master/week-4/simple-string.rb) ### Local Vairables and Basic Arithmetical Operations Solution [local variables and basic arithmetic](https://github.com/lindsey-s/phase-0/blob/master/week-4/basic-math.rb) ## What does `puts` do? `puts` simply prints whatever follows it to the console. It's important to understand that it actually **returns** `nil`, which means that Ruby won't store anything for later when you use `puts` instead of `return`. ## What is an integer? What is a float? An integer is any whole number, negative or positive. A float is a floating point integer, or, an integer with any number of decimal places specified. 2 is an integer and 2.0 is a float. ## What is the difference between float and integer division? How would you explain the difference to someone who doesn't know anything about programming? Float division is the normal division you are used to from calculators and math class. 5/2 is 2 and a half, or 2.5. To make Ruby express this, you **must** use floats. In this case, you would use 5.0/2.0 in order to get 2.5 as the result. Otherwise, if you just use the integers 5 and 2, the result of this integer division is 2. It may be most helpful to think of this as rounding down to the nearest whole number - and that is certainly true - but it's important to understand the implications here. Integer division is saying that 2 fits into 5 2 times only. This is useful when you think about things that cannot be divided. ## Hours in a year: ```"}, {"title": "bm25", "text": "44, 2019: 44 min 11), thus encouraging Anna to question her recollection of the event. Anna: You like her? Maura just told me. Jordan: I'm having a conversation with her, I never said that I like her. Anna: You just asked me out, and you like her? Is that how much of a f***ing idiot you are? Jordan: I'm having a conversation. Anna: What're you talking about then? I have the right to know, you're my boyfriend. Jordan: I'm just talking about how I feel, which I tried to explain to you today but you started losing your head about it. Anna: You ask a girl out, you ask a girl to be your girlfriend and 2 days later you're hitting on her? You tried to tell me today that you like another girl? 2 days, 2 days! What kind of guy asks a girl to be their girlfriend then 2 days later starts cracking on with someone else? Jordan: Get out of my face. I'm not cracking on with her, I'm just having a conversation. Am I not allowed to have a conversation with someone? Anna: You have a f***ing girlfriend, you idiot. Jordan: I've never said that I like the girl. When did I say that I like her? Anna: You just said to me there that you were trying to tell me today. Jordan: When did I say that? What did I say? You're the most negative person I've ever met in my whole life. Why're you shouting about like that? Anna: Why"}, {"title": "bm25", "text": "me to tell my husband about counseling, he will say, \"What do you know!\" but he is afraid of the health workers. \"These people know something, they are well trained\" and so he just listens attentively, and he may also just take medications (Female, age 59). The notion of accepting medical recommendations out of fear introduces the issue of power. Describing a patient-provider interaction as charged with fear acknowledges the provider's power to shape how a patient feels. A different patient expanded on this dynamic: If you look at someone who is the health worker and is putting on that uniform it adds some grain of believability unlike someone that is from the community where we live. We believe that the health worker will answer most of our problems \u2026 The other reason why a health worker is more believable than someone from the community is because the health worker had to go to school to do what he or she does unlike member of the community whose education will always be questionable \u2026 The moment the patient sees the health worker, psychologically he or she feels they have been helped (Male, age 48). The importance of medical credibility and power became more pronounced when interviewers asked how a patient might react when receiving a depression diagnosis. Given depression services would be new to NCD clinics, and moderate depression was not viewed as a medical condition, the ability to transfer medical knowledge to the patient becomes critical. Patients cautioned that the initial depression diagnosis could be"}, {"title": "bm25", "text": " Motivational Motivation

Motivational Quotes

Harry Potter Quotes

It matters not what someone is born, but what they grow to be.

I am what I am, an\u2019 I\u2019m not ashamed. 'Never be ashamed,\u2019 my ol\u2019 dad used ter say, \u2018there\u2019s some who\u2019ll hold it against you, but they\u2019re not worth botherin\u2019 with.'

It is important to fight, and fight again, and keep fighting, for only then will evil be kept at bay, though never quite eradicated.

Numbing the pain for a while will only make it worse when you finally feel it.

What's comin' will come, and we'll meet it when it does.

Understanding is the first step to acceptance, and only then can there be recovery.

Happiness can be found in the darkest of times, if one only remembers to turn on the light.

"}, {"title": "bm25", "text": "layout: post title: \"Interview with Danny Bowman: atmospheric low frequency sound\" date: 2015-12-30 08:43:59 author: \"Dustin Mayfield-Jones and Colin Diesh\" tags: Interviews abstract: \"Not very long ago, Danny Bowman, was launching and testing his first balloons in the New Mexico desert. Now, he uses high altitude balloons to study sounds in the middle of the stratosphere. Little is known about what exactly those sounds mean, but he is hearing something similar to what was heard the last time someone listened in the \u201860s! His message to those new to HABs is about their wonder and accessibility. When talking about his first latex-based HAB, he says, \u201cThe [flight] was not genius. It was something anyone who put their mind to it could do. We went 1/3 of the way to space, and it is within reach!\u201d If you keep tinkering with an idea, you can do really cool things. If you are tolerant of things going wrong, if you keep working forward, eventually you can send a balloon over 100,000 ft and get the pictures back to prove it.\" thumb: https://twitter.com/dannycbowman/profile_image?size=bigger --- # Interview with Danny Bowman: atmospheric low frequency sound **Not very long ago, Danny Bowman, was launching and testing his first balloons in the New Mexico desert. Now, he uses high altitude balloons to study sounds in the middle of the stratosphere. Little is known about what exactly those sounds mean, but he is hearing something similar to what was heard the last time someone listened in the \u201860s! His message to those new to"}, {"title": "bm25", "text": "layout: post title: Post a collection of ViewModel's to a MVC Action with jQuery category: jQuery --- Maybe I searched for the wrong thing, but I couldn't find what I was looking for :( My Bing and Google fu failed me. Basically I wanted to post a collection of ViewModels to an MCV action. Turns out it's rather simple. Lets say I have a bunch of Products, and Products are managed in a WarehouseLocation. A product doesn't have a warehouse location, since it could exist in multiple locations. If I'm currently working in Location A, I want to post a collection of Products to an action, as well as the WarehouseLocationId. So given a simple ViewModel, and an Action: public class ProductViewModel { public int Id { get; set; } public string Name { get; set; } public decimal Price { get; set; } } and public JsonResult Update(int warehouseLocationId, IEnumerable products) { //Do something with the products... return Json(new {Staus = \"success\"}); } I think usually when someone sends data from jQuery it's usually a single parameter,so the JSON would look something like: var data = { id: 1,name: 'test name', price: 15.95 }; This would populate an action that looked like: public JsonResult Update(ProductViewModel product) But what I was faced with was passing in two parameters, one of which is a collection... MVC seems to pair up the posted result with the parameter name, in the same way they it does for Route parameters. So to the JSON needs to look like: var"}, {"title": "bm25", "text": "both.

Elizabeth Rossiello: Yeah, exactly. I mean, it's very amazing. I mean, it's very easy to get a official looking document. It's not always easy if someone contest that document to prove that it's authentic. Even if you jump through 12 hoops to get it, you know, somebody else could have jumped through the same 12 hoops or not.

So, I mean, you know we had the time with IP right now. We had another webstie that's copying us quite closely and we could take out patent how would we enforce it.

Trace Mayer: Right.

Elizabeth Rossiello: I mean, sometimes it's easy to go through the legal process so when it come to like enforce those rules.

Trace Mayer: So what are you kind of most optimistic about over there in Africa? Like what projects like, I mean, we're talking about changing the lifestyle of an entire generation in such a fast time period.

Elizabeth Rossiello: Right.

Trace Mayer: Like really raising standard of living.

Elizabeth Rossiello: So, okay. I'm not going to over reach and say I'm going to solve a continent's worth of problems because there's a lot of smart people thinking about that, a lot of money go into that.

But I will say one thing, I mean, high speed internet has just come to the region a few years ago. People thought it was going to become one of the call center heads of the world. Because it's Anglo and East Africa and"}, {"title": "bm25", "text": "layout: next-post category: blog, post, tumblr title: \"Movie Review: Zeitgeist Addendum\" date: 2008-10-12 permalink: /blog/:title.html draft: true --- # ZEITGEIST: ADDENDUM *Warning: the film is about two hours long.* This film is a sequel to one of the most downloaded films, or as I\u2019m told, on the internet that\u2019s free. (I guess it\u2019s not considered pirated to download this film then) They make interesting points and is only a skim of topics that doesn\u2019t actually go in too much depth into. It goes through the lunacy of religious establishment and our banking system, as well as the corporate system of \u201ccorpora-trocracy\u201d or taking initiative for profits no matter what the consequences might be. In the end, it tells us that a system we live in that is governed by politicians and the social elite (But they\u2019re not really called that, it\u2019s MSM in my mind) will crash and if we don\u2019t do anything, the people will riot and totalitarian governments will ensue. But if we do something now, like look into the \u201cVenus Project,\u201d then we can see a glimpse of where we really could be headed, not that I personally think that\u2019s the only solution. Watch it and take it as it is. It\u2019s still an opinion that presents problems and solutions, so don\u2019t think you can\u2019t judge it or criticize it. However, do take in what they say into some consideration; no where does it say you have to be bounded by someone\u2019s words or beliefs."}, {"title": "bm25", "text": "But know this, I am committed to my artists... my team a 100%. The lights go off, and I\u2019m still there. I\u2019m no longer Dans \u201ccoach\u201d but if he\u2019ll have me as a friend and mentor to guide him, I will try my best to get Dans story told. It just wasn\u2019t his time. I know Dan and all he needs is a guide. Let me be that guide. Be positive, let's support both artists...\" Ma\u00f1alac again received negative feedback with his choice after he picked Paolo Onesa over the Cordovales Father & Son duo during the third episode of the Battles aired on August 4, 2013. However, he insisted that he does not play favoritism in choosing his team in the show. \"Like I always say, people are confusing you as a judge as a coach. I always say I am a coach first. It\u2019s about making an artistic connection with someone. It\u2019s about having an artistic connection with someone. Importante iyon, hindi puwedeng black and white lang,\" he said. \"I spend a lot of time with my guys, I love my team. I\u2019ll fight for all 13. Yes, may hard choice kami kaya nga mahirap eh. You put both singers in a position na they\u2019ll both shine. At the end of the day, ang goal ko lang naman is pareho silang lumipad. To get to a decision, iba na iyon. It\u2019s a tough thing to do. Pero again, coach first ako. I have to say, the 13 artists I have on my team, I"}, {"title": "bm25", "text": "and another case against the EPA dealing with sewer runoff problems. Mayor Plusquellic accuses Judge Adams of judicial impropriety when Adams was a state court judge, saying \"Your bias towards me personally was evident on occasions when you were trying to please the Summit County chair of the Republican Party. During a meeting in your office, while you were Common Pleas Judge, you tried to persuade a top law enforcement official to go after me and my wife because you thought I influenced someone to give my wife a job at the Oriana House.\" Mayor Plusquellic ends the letter by saying \"You have created an atmosphere where nobody believes that you are ruling on these cases based on the law, but rather, on your obvious bias towards me and the City.\" In a follow-up article from the editorial board of the Akron Beacon Journal, the board noted that Judge Adams is unable to respond to the allegations because of judicial ethics. The Akron Bar Association argued the Mayor should have filed a formal motion with the court, rather than \"delivering blows from the op-ed page of the newspaper.\" The editorial board goes on to argue that \"On too many occasions, Judge Adams has failed to measure up. Many who practice and work in the federal court long have been dismayed. They have seen and discussed the displays of poor temper, the careless treatment, the absence of reason, the mean spirit. This behavior has become a problem for the Akron community.\" The editorial board cites two cases"}, {"title": "bm25", "text": "stream will be smaller than what originally asked for. For example, if someone tried to read 64KB from my custom encoding stream, I might return just a couple of KB even if there's further data in the original stream. Granted, it is not the most efficient implementation, but it ensures I use little memory during the encoding operations.

Note: This is not a problem in the .NET Stream API; if you're reading from a stream you must be prepared to deal with partial reads. A partial read does not mean that you've read the end of the stream nor that a problem was encountered.

Now, I know this works, as I unit tested the encoding stream and component in isolation (using my PipelineTesting library). However, when I went to try my custom pipeline component in a real messaging scenario with the File adapter, it failed, and miserably: The BizTalk host would pretty much crash (after a huge spike of 100% processor usage) with the following error: \"The parameter is incorrent\". Humm, not much useful.

At this point I took out the debugger and attached to BTSNTSvc.exe to try and repro the error. I was able to track my custom pipeline component getting called, and see BizTalk read off my custom stream. At this point I noticed weird things.

The first thing I noticed was that the file adapter (or is it the BizTalk messaging engine itself?) uses very small buffers to read of the message streams. Indeed, it only reads it in 4KB chunks. That seems"}, {"title": "bm25", "text": "\"Could not open '$parsefile': $!\"; my $inpod = 0; my $package = $self->{DISTNAME}; $package =~ s/-/::/g; while (<$fh>) { $inpod = /^=(?!cut)/ ? 1 : /^=cut/ ? 0 : $inpod; next if !$inpod; chop; next unless /^($package(?:\\.pm)? \\s+ -+ \\s+)(.*)/x; $result = $2; last; } close $fh; return $result; } =item parse_version my $version = MM->parse_version($file); Parse a $file and return what $VERSION is set to by the first assignment. It will return the string \"undef\" if it can't figure out what $VERSION is. $VERSION should be for all to see, so C or plain $VERSION are okay, but C is not. C<> is also checked for. The first version declaration found is used, but this may change as it differs from how Perl does it. parse_version() will try to C before checking for C<$VERSION> so the following will work. $VERSION = qv(1.2.3); =cut sub parse_version { my($self,$parsefile) = @_; my $result; local $/ = \"\\n\"; local $_; open(my $fh, '<', $parsefile) or die \"Could not open '$parsefile': $!\"; my $inpod = 0; while (<$fh>) { $inpod = /^=(?!cut)/ ? 1 : /^=cut/ ? 0 : $inpod; next if $inpod || /^\\s*#/; chop; next if /^\\s*(if|unless|elsif)/; if ( m{^ \\s* package \\s+ \\w[\\w\\:\\']* \\s+ (v?[0-9._]+) \\s* ; }x ) { local $^W = 0; $result = $1; } elsif ( m{(?Spending frenzy: Heath-less Gemma's retail therapy


Have Your Say

Latest Comments:

Kylie Minogue a dive? Please spare me!

Posted by: The Old Salt of Brisbane 9:49pm January 08, 2008

Kylie is sooooooo the Queen of pop... Can't wait to see her on the show and what she has to say... Go Kylie, Love and light to you!!

Posted by: Shaun of New Zealand 5:22pm January 08, 2008

I wish someone would tell that Ch 7 guy what "humbled" actually means. It DOES NOT mean the same thing as "honoured".

Posted by: the grinch of sYDNEY 1:52pm January 08, 2008

What a load of rubbish Steve. Her"}, {"title": "bm25", "text": "art, so I feel grateful when it is available. Everything related to art and able to reach your hearth is always welcome. . . If we take art away from life, what's left? I could say music is a relevant part of my life, definitely, even though I never played an instrument. (Tina,86) Music tells me something! It really does that! I am not indifferent to music, but I am not used to sitting down just to listen to music. (Robert,85) This interest in music manifested itself through the regular use of radio and similar devices. However, listening to music autonomously was not always completely satisfying because the impact on the mood may have been negative. Every night I always listening to Rete2, always hoping to listen to good music to take me to sleep. Music gave a lot to me! And it still does! I can't read anymore, and often I don't like television broadcasting. (Ingrid,95) There are songs that give me joy and songs that give me sadness. (Rosie,83) Besides the benefits associated with music listening, music was also relevant because someone important in their life had been actively involved in music, or because they themselves used to sing. My brother worked in an orchestra. . . In Switzerland we have the Suisse Romande Orchestra, which broadcasted concerts on the radio, and he worked there. Consequently, some interest in music remains. (Maria, 77) I still remember singing with my husband when traveling by car. When leaving for holidays, we would sing mountain songs along"}, {"title": "bm25", "text": "MAC: interface:mac:address:here Target IP: interface.ip.goes.here ```` - [ ] How does the router come up with reply, it has to ask other router if this is outside its network? - ARP probe, test if this address is already used by someone else - [ ] TODO: what if some bad guy always say it is in use? #### IPv6 For IPv6, functionality of ARP is provided by the [Neighbor Discovery Protocol (NDP)](https://en.wikipedia.org/wiki/Neighbor_Discovery_Protocol) ### TCP three-way handshake #### Flags - SYN: synchronize sequence number, Only the first packet sent from each end should have this flag set. Some other flags and fields change meaning based on this flag, and some are only valid for when it is set, and others when it is clear. [^7] - ACK: indicates that the Acknowledgment field is significant. All packets after the initial SYN packet sent by the client should have this flag set [^7] #### Values - Sequence number - ISN: initial sequence number If the SYN flag is set (1) - SEQ: If the SYN flag is clear (0), then this is the accumulated sequence number of the first data byte of this segment for the current session - Acknowledgment number: if the ACK flag is set then the value of this field is the next sequence number that the sender is expecting. This"}, {"title": "bm25", "text": "layout: post title: Descended date: 2018-01-15 19:30:15 --- Well one week was a pretty good streak. And I think it felt really good. But I'm still on video games, so there needs to be a dopamine fix too. And relapsing feels like this. That I am worthless and my brain brings back all of the rejection in my life and tries to say: \"You know what? They're right about you. You're a worthless piece of shit.\" And I want to tell you. I understand, because sometimes I think I'm not worth it either. Then again, it's really hard to get someone else to love you when you don't love yourself. And you still haven't found a best friend yet. Maybe that'll be your milestone. The moment when you can feel properly again. When you can feel safe enough to be open and vulnerable. It might be awhile, but it WILL HAPPEN. i hope. ah relapsing is just horrible."}, {"title": "bm25", "text": "out by \"one of us,\" he means an Ohioan. Burton used actors from a Columbus, Ohio ad agency. One of Burton's chief rivals for the Republicans nomination, Luke Messer (go Wabash!), undoubtedly understanding that all political ads have some stagecraft, busted the Congressman's chops from the right angle: After 28 years in Congress, you'd think you could find someone in the district who would say some nice things about you. When asked about the ad, Burton responded like he was Lincoln Plowman on tape. His response was nearly incomprehensible, which is why I'm providing it in its entirety from the story because you just have to read it: They told me if you have some people who want to talk about specific issues that you stand for, it probably would be a good thing. I didn't solicit any of these people. I don't even know who they are. One guy says, 'Dan Burton does this' and another woman says something else. You'd have to ask the people who did the commercial on that. They came over and talked to people, different places. The Star story ads that when told the actors were not even Hoosier voters, Burton responded: They may be. I don't know. You ask me questions about that, I don't know. I really don't know. The only thing I did say, 'I'm Dan Burton, and I approve this message.' The message I think is probably pretty accurate, but you'd have to ask them who did the commercial. In what universe is this ad accurate?"}, {"title": "bm25", "text": "= $2; next; } next unless $result; if ( $result && ( /^\\s*$/ || /^\\=/ ) ) { last; } $result = join ' ', $result, $_; } close $fh; if ( $pod_encoding and !( $] < 5.008 or !$Config{useperlio} ) ) { # Have to wrap in an eval{} for when running under PERL_CORE # Encode isn't available during build phase and parsing # ABSTRACT isn't important there eval { require Encode; $result = Encode::decode($pod_encoding, $result); } } return $result; } =item parse_version my $version = MM->parse_version($file); Parse a $file and return what $VERSION is set to by the first assignment. It will return the string \"undef\" if it can't figure out what $VERSION is. $VERSION should be for all to see, so C or plain $VERSION are okay, but C is not. C<> is also checked for. The first version declaration found is used, but this may change as it differs from how Perl does it. parse_version() will try to C before checking for C<$VERSION> so the following will work. $VERSION = qv(1.2.3); =cut sub parse_version { my($self,$parsefile) = @_; my $result; local $/ = \"\\n\"; local $_; open(my $fh, '<', $parsefile) or die \"Could not open '$parsefile': $!\"; my $inpod = 0; while (<$fh>) { $inpod = /^=(?!cut)/ ? 1 : /^=cut/ ? 0 : $inpod; next if $inpod || /^\\s*#/; chop; next if /^\\s*(if|unless|elsif)/; if ( m{^ \\s* package \\s+ \\w[\\w\\:\\']* \\s+ (v?[0-9._]+) \\s* ; }x ) { local $^W = 0; $result = $1; } elsif"}, {"title": "bm25", "text": "contracted both Hepatitis B and C in the 1980s, and at the time of interview, Tim also believed he could be HIV positive. His decision never marry or have children, whilst ultimately contributing to the breakdown of Tim's relationship, was nevertheless one he described as standing by as an adult. For Tim, population screening for hemophilia is important, not only because it has the potential to prevent children being born with hemophilia, but also because it allows parents to avoid becoming what he termed \"hemophilia parents\", a job which he thought not everyone is well suited to take on: I would say \u2026 and this is looking back onto my parents as well-it's always much harder to be the parent of a haemophiliac than to be the haemophiliac themselves. As a parent you have to deal with all the guilt and the care of the child, whatever that may involve and you don't know\u2026. And most people can't fully take on board what that means anyway. Like I said previously, no matter what you can say to people, until you physically experience it, you've got no sense of proportion or what it actually means in reality. You know, I have been asked questions by various people about what haemophilia is really like, you know, but we're all different, that's the problem, and how I react and manage my haemophilia is completely different to how someone else may do. So yeah it's [screening] giving people decisions, but not necessarily the tools to actually make them. By highlighting"}, {"title": "bm25", "text": "heart that produce results. The person who just throws in a couple of faith words now and then isn't speaking them from the abundance of his heart, so they're not effective.

Does that mean you shouldn't startspeaking words of faith until you're sure you have the faith to back them?

No! Speaking words of faith is good spiritual exercise. If you want to receive healing by faith, for example, fasten your mind and your mouth on the Word of God where your health is concerned. Instead of talking about how miserable you feel, quote Isaiah 53:5. Say, "Jesus was wounded for my transgressions. He was bruised for my iniquities. The chastisement of my peace was upon Him; and with His stripes, praise God, I was healed!"

If you'll continue to meditate on those words and continue to say them, the truth in them will begin to sink in. They'll take root in your heart and begin to grow. And eventually you really will be speaking from the abundance of your heart.

When that happens, it won't matter what the circumstances look like. You'll know you have what you've been believing for and the devil himself won't be able to talk you out of it. You'll cross the line from hope to faith, and you'll start seeing those mountains move!

Scripture Reading: Matthew 12:33-37

"}, {"title": "bm25", "text": "the next generation of LHCb reconstruction and calibration experts. Provela si ekipu kroz nevreme pravo,\u0161ta da ti ka\u017eem sem drugarice bravo! 1 And Gerhard Raven... is simply the nec plus ultra of real-time data processing in High Energy Physics. Gerhard wrote much if not most of the code behind LHCb's High Level Trigger, and laid the foundations on which all the work described in this HDR stands. Ave maestro. Finally, I would like to acknowledge the LHC busbars, whose 2008 failure delayed the start of datataking just long enough for me to find a use for my brain in the LHCb trigger. I've had a lot of lucky breaks and second chances in my life, but that was an especially fortuitous roll of the dice -cheers! I acknowledge funding from the European Research Council (ERC) under the European Union's Horizon 2020 research and innovation programme, under grant agreement No 724777 \"RECEPT\". All cited online content exists at the time of writing. Chapter 1 Eastbound and down: an introduction to real-time analysis Eastbound and down, loaded up and truckin ' We gonna do what they said can't be done. We got a long way to go, and a short time to get there I'm eastbound just watch ol' Bandit run! -Jerry Reed, Eastbound and Down When hearing someone claim to have performed a \"real-time analysis of the data\", three questions immediately spring to mind. First, what does \"real-time\" mean? Second, what does \"data\" mean? And third, what does \"analysis\" mean? All of these terms can, and do,"}, {"title": "bm25", "text": "express surprise at the fact that a \"creature\" is moving in their belly: Because a kind of life has appeared in my belly \u2026 and it knocks, rumbles, kicks, moves its hands, feels everything. And I think, when it is born, what will happen next. 19 It is impossible to describe what it looks like. It's as in the movie \"Alien\", when something is formed in your tummy and moves with its feet and hands. 20 For a present-day mother it is natural to compare a boy in the womb with a football player: \"It was such an interesting feeling, my baby was moving so much as if a footballer lived in my tummy.\" 21 Most women, when describing their unborn children's first movements, note a special pleasure, emphasizing on the uniqueness of such feelings and the impossibility to experience them in any other way. It was very interesting when the child started to move. It was such a feeling that someone lives inside of you, that you give somebody life. \u2026 it seems it wants to say something to you. \u2026 It's so nice, so it's some kind of an unusual feeling. It cannot be described by words, it only needs to be experienced, and it only needs to be tried. 22 And I always, when I was on the seventh or the sixth month, when I had already such a tummy, I always loved to put my hands on my tummy, when \u2026 there was nobody near, I put my hands on my tummy,"}, {"title": "bm25", "text": "so unimpressive. I can't even tell you what they covered, but it was this long interview. I don't know what was the purpose. I think it was for collecting data, not for really helping people \u2026 and it was boring and useless.\" They also wanted to know from their provider if they were physical ready and able to complete a program like LIVESTRONG, not knowing exactly what it entailed. \"I would think that if there was some sort of contact made through your medical group \u2026 When you're at the point when you begin to say, \"How am I gonna recover from this? How am I gonna get back to normal physically?\" is when it would be helpful to have someone have a routine call to say, \"We have this available.\" \u2026 I guess that you'd have to do it through your doc, because how would the Y know that you were a candidate?\" Another survivor concurred about how it would've been easier to be referred to LIVESTONG: \"The thing that would've made it easier was what we would do and what the program washow it was structured and if I was physically ready for it. I think that was my big unknown. And then after the first meeting or session, I guess, all of my fears were put completely at ease. It was like, we're gonna help you do what you can do in this way. So that was really helpful, but I was definitely curious before we started. What are we getting into here,"}, {"title": "bm25", "text": "success and the most important thing is he believed in me. In the future, I must have a workshop of my own. Informant 1 ends by saying he must become someone more respectable and would like to own a motor workshop one day. Informant 2 She comes from a family of five. Her father and brother were lorry drivers. Her father passed away at the age of 43. According to her, One brother studied marine engineering. Sister has a degree and another sister is in Sarawak. My youngest sister is in Form 6. From the age of 15, I was doing bridal make-up. After Form 5, I started working in a beauty parlor. I was studying IT and have completed two semesters so far. Although my family wants me to study, I am happy working here as the salary is good and my boss teaches me all types of work. I speak in Tamil language at work and friends. I try to read English papers and I have the apps in my phone and I use English to speak to my foreign customers and to the English speaking ones. When asked about the reason why she did not continue her study, Informant 2 said, \"I don't like to depend on my guardian. That's why I am holding back to study. That's what makes me stressful.\" This informant is aware that her future is important and commented, \"How does the society look at me? In the future I want to work in an IT company. I will"}, {"title": "bm25", "text": "in terms of their practicality. Today, I will attempt to explain the difference between one of these quandries: hashes and arrays.

Let's start with what hashes and arrays look like.

This is an array: .

We can identify a few unique things about this array. For starters, there are a mixture of words (strings) and numbers mixed in. Arrays are not inclusive to one specific data type. Certain arrays have content inside them that makes sense, mine doesn't because sometimes things don't make sense. That's life.

This is a hash:




Clearly there are some visual differences between hashes and arrays. This array is neatly catagorized and anyone could clearly see the information being presented and what it means. But do the differences end there? No.

What was I saying about differences? Let's start with similarities. Both arrays and hashes are organized somewhat invisibly by an index. With an array, the first item entered, (45), has an array index of [0]. The next item, (26), has an array index of [1]. And so on and so forth. Hashes, on the other hand, enable the coder to use 'key-value pairs' to organize the data inputted.

So when does a method call for a hash over an array, or vice versa? In my experience so far, arrays are suited for mathamatical purposes, like figuring mean, median, averages, etc. For data that requires a \"partner\","}, {"title": "bm25", "text": "\u03c4\u03bf\u03bd \u0395\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03c4\u03b9\u03ba\u03cc * [Lesson Video](http://youtu.be/qjusxfefJdM?list=PL2DhNKNdmOtobJjiTYvpBDZ0xzhXRj11N) * This Teacher Lesson Guide * [Download](http://d1pmarobgdhgjx.cloudfront.net/education/pause-think-online-2.mp4) or [prepare](https://www.commonsensemedia.org/videos/pause-think-online) the \"Pause and Think\" video * Common Sense Media's [Follow the Digital Trail](https://www.commonsensemedia.org/sites/default/files/uploads/classroom_curriculum/k-2-unit2-followthedigitaltrail.pdf) game * Print one set of [Animal Tracks](https://www.commonsensemedia.org/sites/default/files/uploads/classroom_curriculum/k-2-unit2-followthedigitaltrail.pdf) from this PDF * Print one [Animal Tracks](https://www.commonsensemedia.org/sites/default/files/uploads/classroom_curriculum/k-2-unit2-followthedigitaltrail.pdf) chart (page 7) for each student * Print one [Digital Footprint Assessment](/curriculum/course2/18/Assessment18-DigitalFootprint.pdf) for each student [/together] [\u03bc\u03b1\u03b6\u03af] ## Getting Started (20 min) ### 1) Review This is a great time to review the last lesson that you went through with your class. You can do this as one large group or have students discuss with an elbow partner. Here are some questions that you can ask in review: * What did we do last time? * What do you wish we had had a chance to do? * Did you think of any questions after the lesson that you want to ask? * What was your favorite part of the last lesson? [tip] # \u0392\u03bf\u03b7\u03b8\u03b7\u03c4\u03b9\u03ba\u03ae \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03bc\u03ac\u03b8\u03b7\u03bc\u03b1 Finishing the review by asking about the students' favorite things helps to leave a positive impression of the previous exercise, increasing excitement for the activity that you are about to introduce. [/tip] ### 2) Vocabulary \u0391\u03c5\u03c4\u03cc \u03c4\u03bf \u03bc\u03ac\u03b8\u03b7\u03bc\u03b1 \u03ad\u03c7\u03b5\u03b9 \u03bc\u03b9\u03b1 \u03bd\u03ad\u03b1 \u03ba\u03b1\u03b9 \u03c3\u03b7\u03bc\u03b1\u03bd\u03c4\u03b9\u03ba\u03ae \u03bb\u03ad\u03be\u03b7: [centerIt] ![](vocab.png) [/centerIt] **Digital Footprint** - Say it with me: Dih-jih-tal Foot-print The information about someone on the Internet ### 3) Pause and Think * Ask What does it mean to be safe? * When you walk down the street or play in your"}, {"title": "bm25", "text": "asked Kubrick in 1963 to name his favorite films, he listed Italian director Federico Fellini's I Vitelloni as number one in his Top 10 list. Directing techniques Philosophy Kubrick's films typically involve expressions of an inner struggle, examined from different perspectives. He was very careful not to present his own views of the meaning of his films and to leave them open to interpretation. He explained in a 1960 interview with Robert Emmett Ginna: \"One of the things I always find extremely difficult, when a picture's finished, is when a writer or a film reviewer asks, 'Now, what is it that you were trying to say in that picture?' And without being thought too presumptuous for using this analogy, I like to remember what T. S. Eliot said to someone who had asked him\u2014I believe it was The Waste Land\u2014what he meant by the poem. He replied, 'I meant what I said.' If I could have said it any differently, I would have\". Kubrick likened the understanding of his films to popular music, in that whatever the background or intellect of the individual, a Beatles record, for instance, can be appreciated both by the Alabama truck driver and the young Cambridge intellectual, because their \"emotions and subconscious are far more similar than their intellects\". He believed that the subconscious emotional reaction experienced by audiences was far more powerful in the film medium than in any other traditional verbal form, and this was one of the reasons why he often relied on long periods in his films"}, {"title": "bm25", "text": "

Anthony's Blog

Week 7: My 7th Cultural Blog

Affirmation and Stereotype Threat

Established Nov 2nd, 2014

When I think of the last time in my life where I've been the happiest, the proudest. and the most satisfied, the following values come to my mind:

Accomplishment

I like having the feeling of accomplishment. It always makes you fell happy, proud, and satistied. It is because when you set some goal for yourself, you are expecting yourself to accomplish it no matter what obstacles you have out there. Therefore, when you were able to accomplish something, it shows that you have the ability to promise yourself. It tells yourself that you are capable of doing something difficult.

Confidence

Having confidence is very important to me. It is because I always believe that when you are happy, you are always confident during that moment. Being confident about something means you have faith about it, you are good at it, and you are willing to accomplish it no matter what. Thus, being confident in your life is very important, especially during some important moment in your life: Taking an exam, Meeting someone important, Doing something impactful, etc. Sometimes, I believe that the more confident you are, the more happier you are.

Reputation

People wants reputation. I can think of reputation is the value of your personal brand. The more reputation you have, the better your personal brand is. So that also means if"}, {"title": "bm25", "text": "is going to burn you, why would you put your hand in it? Today was a painful reminder that I, in fact, am a human. > There are no mistakes. The events we bring upon ourselves, no matter how unpleasant, are necessary in order to learn what we need to learn; whatever steps we take, they're necessary to reach the places we've chosen to go. ~ Richard Bach Truth be told, every time I ever heard someone say \"Change is hard\" I laughed inside. Hard. I genuinely thought \"how difficult can it be for people to _change_.\" Surely everyone knows that as humans we evolve? Oh, how much this year has taught me. Change is so, so incredibly hard. Everyone always talks about the fights. Everyone always talks about how to \"manage\" change. Everyone always explains that you have to *be* the change. But there's one thing I've learnt; more important than the change you want to happen, is the ability to be flexible yourself when the change you want to happen isn't happening quickly or, even more scarily, isn't happening at all. All of the management training hours, all of the \"executive intelligence\" reading does not displace the fact that you are human, that you need things and that you have feelings. As a highly emotional person, I do my best to shut myself off entirely - to not show emotion as much as possible, good or bad, but frustration is one that permeates through everything. Even if you smiling, if you're frustrated you hear"}, {"title": "bm25", "text": "far as to ensure I\u2019m interviewing in a specific location so that people hear the sounds of nature or water. This always leads to a conversation that is on my terms and focused on mutual interest. For example, I will take the call when I\u2019m out on a porch. I have my full attention on the interview, but the sound of birds and occasional wind leads to a, \u201cWhere are you?\u201d I can quickly use that to respond by talking about how I like to work outside and enjoy the fresh air, and then ask them about what they enjoy. The more I keep them engaged, the better my odds. Maybe you want to have some small examples of work that you can screen share. If you are going to screen share, set the scene there too. Leave only the things open you want them to see. When you show them something on your screen, it\u2019s a chance to engage them. Look for those opportunities and take them. I was on a video call recently where someone was sharing their screen, and I saw they were playing a video game in the background. This observation led to a pretty funny and awkward conversation about the games we play. Our relationship is stronger because of that bond that started only because their screen share showed something they didn\u2019t realize. # Its Your Interview When you interview in person, you are usually in their office on their terms. When you interview remotely, you have a lot more say"}, {"title": "bm25", "text": "layout: post title: Caves, clubs, coconut aminos tags: - cooking - what i'm reading --- Gary Taubes's [*Good Calories, Bad Calories*]( http://www.amazon.com/s/?ie=UTF8&keywords=good+calories%2Fbad+calories&tag=googhydr-20&index=stripbooks&hvadid=79022339574&hvpos=1t1&hvexid=&hvnetw=g&hvrand=7981013642309540881&hvpone=&hvptwo=&hvqmt=b&hvdev=c&ref=pd_sl_7o7bocbma3_b_p1) convinced me I'd be better off with a lot less sugar and flour in my life. His 1200 dense but readable pages set out the history of nutritional research \u2013 research that shows that fat isn't as bad for you as you've probably heard, and simple carbohydrates are a whole lot worse.

I don't much photograph my food, so have a cave painting instead
Why would that be? If you read up on low carb, you'll soon run into someone saying that \"for most of human history, we didn't eat refined flour and sugar; our diet changed, but we haven't evolved to adapt to our new food environment.\" We might live in highrises, but inside we're still cavemen. But Marlene Zuk's [*Paleofantasy*]( http://www.amazon.com/Paleofantasy-Evolution-Really-Tells-about-ebook/dp/B007Q6XM1A) convinced me that the evolutionary justification for low carb is sabretoothed hogwash. Humans, she says, have indeed continued to evolve since the stone age. She dismisses a variety of back-to-the-cave schemes in hilarious detail — most of the chapters can be summed up as \"our ancestors did X in a variety of ways, and research has shown that genes related to X have changed since then.\" (Note that this doesn't mean that Zuk's disproved the research that Taubes cites — if there's evidence showing, for example, that consumption of flour and sugar is linked to [\"diseases of civilization\"](https://en.wikipedia.org/wiki/Lifestyle_disease),"}, {"title": "bm25", "text": "title: \"Tools: ReSharper\" categories: coding categories: coding date: \"2009-02-20\" tags: - \"resharper\" - \"tools\" --- I've long been skeptical of Visual Studio add-ins. This goes back to the VS6 days when I fell in love with an add-in, but eventually removed it because it did such horrific things to my machine's performance. I felt so betrayed, bereft and I'm sure some other suitable words that start with \"b.\" Well, times change. WebMD's been buzzing about [ReSharper](http://www.jetbrains.com/resharper/). It's been quite a while since I took the plunge, but I'm never looking back. Enumerating ReSharper features could keep someone blogging for months at the least, but I thought I'd call out a few of my favorites. Seems like half the time someone talks about ReSharper, I find some widget or keystroke I hadn't noticed before. Maybe you'll notice something new. **Go to Definition isn't busted anymore** This one's kind of a no-brainer, but sometime around VS 2005, I started finding that \"Go to Definition\" wasn't working like it used to. It'd bring up strange files with \"\\[from metadata\\]\" in the title, and only give function signatures. Turns out, as best we can tell, this is because VS doesn't properly handle the pdb's on our assembly references. For various reasons we don't use project references, so for a long time I suffered without my beloved F12. Well, ReSharper restores this functionality, and it actually works. Now if I could just persuade it to go to code files for projects I don't have in the solution... **Run unit tests in-context**"}, {"title": "bm25", "text": "when you might have an opportunity to fly them; and to keep building on what works, abandon or fix what doesn't, and keep thinking about how to make the next version better. There is little in this business as satisfying as getting high quality data back from a new place never before visited, or of phenomena never before measured. Exploration is exciting, and going to new places with new instruments is bound to return new discoveries. Just Say No Wow. Quoting another Reagan. Well, not the same context, anyhow. What I mean by that is, don't try to take on too many responsibilities, tasks, or roles. The longer I stay in this field, the more frenetic it seems to grow. I see so many people, especially early and mid-career, split in so many directions that they are ineffective in most of them, and driving themselves toward burn-out at an alarming rate. Although I have just gone on about how much I've diversified over the course of my career, it has been mostly serial, not parallel. Yes, you do need to make sure you are doing something that will continue to pay you to work. And yes, there is a certain amount of taking on jobs that may not be your favorites. But try to limit that. Just because it looks shiny, it doesn't mean you need to bring it back to your nest. Or just because someone asks you to take on something extra, you need not always say yes. Your sanity, and the quality of"}, {"title": "bm25", "text": "the infomercial with me. When the infomercial came to an end, I said, in disgust, \"That Ashrami is a charlatan!\" Sometimes we say something that is completely obvious just to say something, just to express a strong emotion. What my wife then said shook me to the core. Indeed, after she said it, I could feel my entire world view crumbling into dust. I told you this would be very personal. She said, \"Are you sure?\" Her words went through me like a knife. But, she didn't stop there. I suppose a wife can sense when her husband's arrogance is about to take a gigantic dive into the bottomless abyss. She said, \"Are you sure that Karma Kleanser doesn't work? And if it works, then how can you say that Rabbi Ashrami is a charlatan? And, I have one more question to ask you, dearest: If you do not order Karma Kleanser right now, is that because of your evil karma, as the infomercial suggests?\" Thank you, Sally, my beloved wife, for once again turning my entire view of the universe upside down. What if Karma Kleanser does work? Is Rabbi Ashrami really a fake or is he actually helping people? And, if a person uses Karma Kleanser, is that the result of that person's good karma or bad karma? It struck me that my wife was really asking a more general question about virtual reality and its social implications, its meaning, if you will. When the new self-projection technology was introduced, it revolutionized everything, like"}, {"title": "bm25", "text": "kind of vulnerability. She's got a great future.\" In interviews during production, Tate expressed an affinity for her character, Jennifer North, an aspiring actress admired only for her body. Some magazines commented that Tate was viewed similarly and Look published an unfavorable article about the three lead actresses, describing Tate as \"a hopelessly stupid and vain starlet\". Tate, Duke and Parkins developed a close friendship that continued after the completion of the film. During the shooting of Valley of the Dolls, Tate confided to Parkins that she was \"madly in love\" with Polanski. \"Yes, there's no doubt that Roman is the man in my life,\" Tate was quoted as saying in the New York Sunday News. Tate promoted the film enthusiastically. She frequently commented on her admiration for Lee Grant, with whom she had played several dramatic scenes. Tate was quoted as saying, \"I learned a great deal about acting in [Valley of the Dolls], particularly in my scenes with Lee Grant.... She knows what acting is all about and everything she does, from little mannerisms to delivering her lines, is pure professionalism.\" A journalist asked Tate to comment on her nude scene, and she replied, I have no qualms about it at all. I don't see any difference between being stark naked or fully dressed \u2014 if it's part of the job and it's done with meaning and intention. I honestly don't understand the big fuss made over nudity and sex in films. It's silly. On TV, the children can watch people murdering each other,"}, {"title": "bm25", "text": "title: Max Temkin summary: Designer (Cards Against Humanity, political campaigns) categories: - designer - game - mac --- ### Who are you, and what do you do? My name is [Max](http://maxistentialism.com/ \"Max's website.\"). I'm a designer from Chicago. I work for political campaigns and non-profits. I also make [Humans vs. Zombies](http://humansvszombies.org/ \"A social game played in real life.\") and [Cards Against Humanity](http://www.cardsagainsthumanity.com/ \"A card game for horrible people.\"). ### What hardware do you use? I'm not sure if it's been noted on this website before, but Apple makes a good computer. I work on a new 15\" MacBook Pro, which is a recent upgrade from the 2009 unibody MBP following a [chai tea incident](http://maxistentialist.tumblr.com/post/11092248162/this-morning-somebody-spilled-their-drink-on-my \"Max's post about spilling tea on his laptop.\"). I have the high-res display and an extra 4GB of aftermarket RAM to reduce the amount of time I spend looking at Adobe launch screens. Also on my desk: (1) [iPhone 4S][iphone-4s] (1) [Apple Magic Mouse][magic-mouse] (1) [Apple bluetooth keyboard][keyboard] (1) [27\" Apple Thunderbolt Display][thunderbolt-display] (1) [NewerTech hard drive toaster][voyager-q] (1) [Wacom Intuos pen thing][intuos] (20) [Pilot Precise V5s, 0.5mm][precise-v5] (1) Lamy Safari with a plunger converter and Pelikan 4001 ink (3) Field Notes (?) Mead composition notebooks, cow pattern (1) Bulleit Rye (for when I am sad) The main thing that informs my hardware choices is that I move to a new neighborhood every year. It's a great way to learn about my city and [bust my cycle](http://www.zefrank.com/theshow/archives/2006/09/092006.html \"The zefrank video, 'bust that cycle.'\"), and most importantly, it [keeps me from owning too"}, {"title": "bm25", "text": "be afraid of strangers; shows affection to familiar people; plays simple \"pretend\" such as feeding a doll; explores alone while parent is close by b. Says several single words; says and shakes head \"no\"; points to show someone what they want c. Knows what ordinary things are (telephone, brush, spoon); points to get the attention of others; shows interest in stuffed animal or dolls; can follow 1 step verbal command without gestures (\"sit down\") d. Walks alone; may walk up steps or run; pulls toys while walking; can help undress themselves; drinks from a cup; eats with a spoon e. My child is not this old yet (skip to page 15) f. My child did not do any of these things at this age Page 11 -6 th CDC milestone question about child (2 years) 28. By 2 years old, my child was doing the following things: (select all answer options that list one or more of the behaviors your child has done. For example, you can select an option, even if your child has only done one of the two or three behaviors listed) a. Copies others (especially adults); gets excited when with other children; shows defiant behavior; shows more independence; plays mainly beside other children b. Points to things or pictures when they are named; knows names of familiar people and body parts; says sentences with 2-4 words; follows simple instructions; repeats words overheard in conversation; points to things in a book c. Begins to sort shapes and colors; completes sentences and rhymes from"}, {"title": "bm25", "text": "anyway\u201d symposium held recently at Stanford, an audience member asked me who should be in charge of the product, clearly expecting me to say \u201cthe user experience team\u201d (because it\u2019s all about UE, isn\u2019t it?). My answer disappointed her and many in the audience: We are all in charge, and when there are conflicts, it becomes a business decision\u2014and so it is for managers and executives to decide. But mainly, the person in charge is the product manager. If the product manager can\u2019t resolve the issues, that\u2019s why we pay executives all that money\u2014to make these kinds of business decisions. (Disclaimer: I was once one of those executives.) The decision is based upon what is best for the company and the customer: hopefully, these two coincide. Unusable? Does it matter? Form gets in the way of function? Will it impact sales? Does it prevent the job from getting done? \u201cProduct manager?\u201d was the puzzled response. \u201cBut, then, what discipline should the product manager come from?\u201d Grrrr. That\u2019s someone who doesn\u2019t understand. The correct answer is, \u201cWho cares?\u201d I have seen excellent product managers who were trained in English history, or engineering, or psychology, or Chinese calligraphy. What matters is that this person can pull the team together, can balance the talents of the teams and the needs and requirements of the customers, the company, the sales and marketing teams, the manufacturing and packaging teams, and all those big, powerful egos (as well as the brilliant, but quiet and insecure folks). Talented product managers make this all"}, {"title": "bm25", "text": "died from breast cancer, so she asks to be re-tested. Doctor Karl Kennedy (Alan Fletcher) informs Terese that she does have breast cancer after all. Elmaloglou said that the moment is \"pretty overwhelming\" for Terese. Of filming the scenes, she commented \"I'm quite good at separating my work life from real life \u2013 but because my mother has just gone through breast cancer, those emotions are still quite raw. Having to say the words 'I have cancer' was quite confronting.\" She also said that the message about following up test results when your not satisfied with the diagnosis was really important. Terese decides to keep the news from her family and partner, Gary Canning. Elmaloglou was understanding of Terese's reaction, but due to her experience with her mother, she felt that someone diagnosed with cancer needed love and support from their family, as the treatment could be \"very debilitating\". Terese ends up confiding in Paul, who has suffered a cancer scare of his own. Elmaloglou added that Terese was \"a tough cookie\" and she was confident for her survival. Terese eventually reveals her diagnosis to her family. She also starts losing her hair due to the chemotherapy treatment. Elmaloglou explained, \"It's very confronting for Terese when her hair starts to fall out, and it's at that moment she realises she's very sick. She's doing her best, but it's not easy being brave for everyone else.\" When Terese learns that her treatment is not working, Gary visits her oncologist brother Nick Petrides (Damien Fotiou) in prison and"}, {"title": "bm25", "text": "The process of making one's wishes known led to a sense of reassurance, \"if I had a stroke for instance and I couldn't talk, I would be happy in the knowledge that my daughter knew exactly what I wanted\" (Patient 20,103). Patients reflected on the benefit of having a physical document outlining their wishes, \"I felt comfortable having it written down to make sure that the family would know what my wishes would be\" (Patient 30,201). Some patients felt documenting wishes was essential to provide clarity, especially given the unpredictability of health. As one patient noted, \"you never know what the world brings, it's good to have something like this on paper\" (Patient 40,202). Patients were fearful of physical and cognitive impairment. Documenting their wishes was seen as a way of safeguarding against unwanted medical procedures and ensuring their preferences would be respected by health professionals and family alike. One patient stated, \"my daughter-in-law kept saying, 'You've got to get it down in writing before they'll do anything about it'\" (Patient 30,207). Another patient felt documentation would prevent family members from overriding their requests, \"they tend to interfere so it's got to be clear to them what my wishes are\" (Patient 40,202). However, for one patient there was a perceived limit to the power of the directive against family wishes, \"It made me realise that it doesn't matter what I say really, it would depend on others \u2026 if one of my children or someone says, 'we're going to resuscitate him' , no matter what I've"}, {"title": "bm25", "text": "and The Turin Horse is an example \u2014 an exceedingly rare one in contemporary cinema \u2014 of how a work that seems built on the denial of pleasure can, through formal discipline, passionate integrity and terrifying seriousness, produce an experience of exaltation. The movie is too beautiful to be described as an ordeal, but it is sufficiently intense and unyielding that when it is over, you may feel, along with awe, a measure of relief. Which may sound like a reason to stay away, but is exactly the opposite.\" Ray Bennett of The Hollywood Reporter wrote from the Berlinale: \"Fans of Tarr\u2019s somber and sedate films will know what they are in for and will no doubt find the time well spent. Others might soon grow weary of measured pace of the characters as they dress in their ragged clothes, eat boiled potatoes with their fingers, fetch water, clean their bowls, chop wood and feed the horse.\" Bennett complimented the cinematography, but added: \"That does not, however, make up for the almost complete lack of information about the two characters, and so it is easy to become indifferent to their fate, whatever it is.\" Variety'''s Peter Debruge also noted how the narrative provided \"little to cling to\", but wrote: \"Like Hiroshi Teshigahara's life-changingly profound The Woman in the Dunes ... by way of Bresson, Tarr's tale seems to depict the meaning of life in a microcosm, though its intentions are far more oblique. ... As the premise itself concerns the many stories not being told (Nietzsche"}, {"title": "bm25", "text": "Woody Allen English My one regret in life is that I am not someone else Woody Allen English Seventy percent of success in life is showing up Woody Allen English The talent for being happy is appreciating and liking what you have, instead of what you don't have Woody Allen English I'm not afraid to die, I just don't want to be there when it happens Woody Allen English What if nothing exists and we're all in somebody's dream? Woody Allen English Bisexuality immediately doubles your chances for a date on Saturday night Woody Allen English If you're not failing every now and again, it's a sign you're not doing anything very innovative A. A. Milne English Weeds are flowers too, once you get to know them A. A. Milne English Organizing is what you do before you do something, so that when you do it, it is not all mixed up A. A. Milne English Golf is so popular simply because it is the best game in the world at which to be bad A. A. Milne English Did you ever stop to think, and forget to start again? A. A. Milne English What I say is that, if a fellow really likes potatoes, he must be a pretty decent sort of fellow A. A. Milne English My spelling is Wobbly. It's good spelling but it Wobbles, and the letters get"}, {"title": "bm25", "text": "Patrick Spiller is a fictional character from the BBC medical drama Casualty, portrayed by actor Ian Kelsey. The character made his first appearance during the fourteenth series episode \"Free Fall\", which was broadcast on 11 December 1999. Patrick is a specialist registrar in the Holby City Hospital emergency department, who attempts to advance his career and attain a consultancy post, whilst having relationships throughout his tenure with SHO Holly Miles, PC Rachel James and Holly's replacement, SHO Lara Stone. He dies from a head injury following a car crash in the sixteenth series episode \"Past, Present, Future\" \u2013 making his final appearance on 16 March 2002. Characterisation and development Kelsey admitted that he was not confident with the medical jargon that he had to say, likening it to learning Russian. He said \"I haven't a clue what I'm talking about, but there's an adviser who makes sure we don't point at a patient's nose when we're talking about their feet. I'll have to start writing my lines on the patients' plaster casts.\" Patrick has been described as \"Casualty bad boy\" by Marion McMullen of the Coventry Telegraph, who deemed him \"arrogant, brusque and bad-tempered\". Kelsey has disclosed that viewers of the show sometimes assume that he shares his character's temperament, but that he does not receive any hostility for it, surmising: \"It must mean I'm somehow putting across the fact that there really is a nice bloke behind the brick wall that Patrick puts up.\" Kelsey feels that the only trait of Patrick's which he shares"}], "hoverinfo": "text"}, {"x": [-0.08433183282613754, -0.08981055021286011, -0.11352629214525223, -0.06771088391542435, -0.058638233691453934, -0.03455590084195137, -0.04901234433054924, -0.08157805353403091, -0.07862767577171326, -0.05121886730194092, -0.10017072409391403, -0.09537298232316971, -0.03455590084195137, -0.03455589339137077, -0.08292263746261597, -0.04809051752090454, -0.04307389631867409, -0.07931146770715714, -0.051025621592998505, -0.03973471745848656, -0.08217721432447433, 0.022556385025382042, -0.0036988367792218924, -0.02930162474513054, 0.009989447891712189, -0.07315922528505325, -0.08981002122163773, -0.06771072000265121], "y": [-0.02184336446225643, 0.00676260981708765, 0.01936379261314869, 0.02131015993654728, 0.01328158937394619, 0.0261901393532753, 0.046930499374866486, -0.024525057524442673, -0.006078649777919054, 0.0031724004074931145, -0.0450943224132061, 0.031294964253902435, 0.0261901393532753, 0.02619004063308239, 0.07278404384851456, 0.08268261700868607, 0.003374051069840789, 0.018079861998558044, 0.03952240198850632, -0.008216451853513718, 0.033022426068782806, 0.029665233567357063, 0.0064214738085865974, 0.05512857809662819, -0.07457009702920914, -0.006730177439749241, 0.0067625874653458595, 0.02130960114300251], "mode": "markers", "name": "Cluster 5", "marker": {"size": 8, "color": "rgb(253,180,98)"}, "text": ["Document 8", "Document 16", "Document 22", "Document 45", "Document 71", "Document 98", "Document 100", "Document 303", "Document 320", "Document 389", "Document 430", "Document 505", "Document 507", "Document 508", "Document 511", "Document 525", "Document 540", "Document 542", "Document 573", "Document 597", "Document 701", "Document 753", "Document 802", "Document 810", "Document 893", "Document 975", "Document 1126", "Document 1172"], "customdata": [{"title": "rpj-common-crawl-2019-30", "text": "had one) were prone to massive flooding, washing out dead dogs and cats that had fallen in. This would leave some to believe that dead animals were literally falling from the sky. Why the sight of a dead animal on the ground would cause anyone to assume it fell from the heavens, as opposed to just falling over dead the normal way, is anyone\u2019s guess. Others claim it goes all the way back to Norse mythology (the storm god Odin had two hounds). Still others say it has to do with the freak occurrence of frogs or fish falling from the sky (after being swept up by storms and flung miles away) and that the saying \u201cit\u2019s raining cats and dogs\u201d is just a way to say it\u2019s raining even harder than the time it rained fish. Still it seems like a catchier idiom would have been, \u201cIt\u2019s raining bears!\u201d or \u201cIt\u2019s raining human babies! Quick, catch the babies!\u201d followed by frenetic screaming. Anyway, there\u2019s no hard and fast proof for any of them so take your pick. Article Info\u2026\u2026.www.cracked.com Pictures from\u2026..attackofthecute.com Posted in Articles, Jokes and Funnies | Tagged and, cats, Common, Dogs, Raining, Sayings | Leave a Reply Bust Your Chops \u2013 Common Phrases To give someone a hard time. As in, \u201cYes, I\u2019m late and I\u2019m not wearing pants. Don\u2019t bust my chops.\u201d There was once a time in the world when it was considered cool to sport a long, ridiculous pair of mutton chop side burns. From America to England, Russia to"}, {"title": "rpj-common-crawl-2022-05", "text": "Greek poet Homer. In the epic poem The Odyssey, Odysseus and his men have to travel through the Straits of Messina, an area of the sea guarded by two fearsome monsters: Scylla, a monster with six mouths and 12 feet, and Charybdis, either a sea monster who produced a whirlpool or simply a whirlpool itself. Opting for either one was sure to result in death, for at least some of the crew, so the phrase \u201cbetween Scylla and Charybdis\u201d came to mean having to choose the lesser of two evils. 4 Bust One\u2019s Chops Today\u2019s meaning: Call one\u2019s bluff; criticize someone In the 1800s, when sideburns (and Ambrose Burnside) were at the height of their popularity, this phrase was often used as a challenge to someone\u2019s integrity. The phrase fell out of popular usage around the start of World War I, as men needed to shave the sides of their faces in order to accommodate protective gas masks. As a phrase, it was not only to be taken figuratively, \u201cbust one\u2019s chop\u201d was also to be taken literally. A \u201cbust to one\u2019s chops\u201d could reference a punch to the side of one\u2019s face. Thanks to the popularity of sideburns between the 1950s and the 1970s, and men like Lemmy, the phrase made a brief comeback before fading into relative obscurity today. 3 Give The Cold Shoulder Today\u2019s meaning: To disregard someone Although its true origins are unclear, the earliest written evidence of this phrase comes from the writings of Walter Scott, a Scottish poet and novelist"}, {"title": "rpj-common-crawl-2019-30", "text": "mud to cool off! Well actually, the phrase is quite accurate, it just refers to a different type of pig. During the smelting process, pig iron is produced from ore. When the metal begins to form droplets of condensation it\u2019s deemed cool enough to be handled, meaning when it \u201csweats\u201d it\u2019s safe to move. So, if you\u2019re \u201csweating like a pig,\u201d you\u2019ve actually produced enough sweat to cool freshly produced iron! Bust Your Chops If someone is really nagging you, you may say \u201ccome on, why are you busting my chops?\u201d But if they were really doing that, they\u2019d be punching you in the side of your face \u2013 right where fashionable men sported mutton chops when the phrase originated. Give the Cold Shoulder Giving the cold shoulder generally means to ignore someone or brush them off. However, like many of the above examples, it\u2019s more literal than that. Its meaning goes back centuries (appearing in Sir Walter Scott\u2019s \u201cThe Antiquary\u201d in 1816) and refers to what you give house guests you don\u2019t really like. Valued visitors would receive a hot meal, while the less-welcome would receive nothing but a cold shoulder of mutton. More: Confusing Words If it\u2019s not a saying that\u2019s tripping you up but an individual word, check out our Writing Wednesday posts on the most commonly confused and misused words. About Paperblanks: 25 years ago, we created Paperblanks to help keep book heritage alive and vital in our modern age, and to offer an inspiring space for people to express themselves. Thanks"}, {"title": "rpj-common-crawl-2022-05", "text": "the end of the 16th century, the OED says, the plural \u201cchops\u201d was being used to mean the jaws or mouth \u201cin contemptuous or humorous application to men.\u201d The dictionary cites an anonymous 1589 pamphlet attacking the Anglican hierarchy: \u201cWhose good names can take no staine, from a bishops chopps\u201d (from \u201cHay Any Work for Cooper,\u201d by the pseudonymous Martin Marprelate). Skipping ahead a couple of centuries and crossing the Atlantic, the term came to be used in jazz to mean the power of a trumpeter\u2019s embouchure\u2014the way the lips and tongue are applied to the mouthpiece. The OED\u2019s earliest example is from the August 1937 issue of the jazz magazine Tempo: \u201cSurely his chops can\u2019t be beat already.\u201d A few decades later, \u201cchops\u201d came to mean a jazz musician\u2019s skills: \u201cMaybe you could get your chops together on this horn\u201d (from Black Voices: An Anthology of Afro-American Literature, 1968, edited by Abraham Chapman). And by the late 20th century, according to OED citations, the word meant talent or skill in any field: \u201cMost academic writers just don\u2019t have the chops to make riveting reading out of the quiltwork of 19th-century farm wives\u201d (from the Boston Phoenix, April 27, 1990). Over the years, \u201cchops\u201d has had several other colloquial senses, especially in American slang, including \u201cto bust someone\u2019s chops\u201d (to harass a person, 1953) and \u201cto bust one\u2019s own chops\u201d (to exert oneself to the utmost, 1966). The dates are for the first OED citations. Horticultural doppelg\u00e4ngers Q: Can \u201cdoppelg\u00e4nger\u201d refer to a lookalike plant as"}, {"title": "rpj-c4", "text": "the act of chopping someone directly on the spine. jenga chopping is usually only used in self defence. the term benga chop is plain mockery of jenga chop. Get a jenga chop mug for your grandma Jovana."}, {"title": "rpj-c4", "text": "related to what you discuss above? I can't find an origin for this phrase. It was in the Barbershop Arrangers Facebook Group. One of the mixed blessings of social media is that whilst it allows you to share blogs much more widely than would happen by people just happening across it, it tends to divert discussion away from the blog and onto those forums. There was also some discussion on my timeline, but the quote from Alexander comes from the group discussion. I think the 'having chops' refers to the mouth - as in a good embouchure for wind/brass instruments. At least, that's how I've always understood it - now you've asked you've got me wondering! Interesting, I first heard the phrase \"chops\" regarding skilled guitarists, rather than wind instruments. Maybe it just became more generic."}, {"title": "rpj-common-crawl-2021-04", "text": "to the marrow in that snowstorm. The children were chilled to the bone in that unheated room. chink in one\u2019s armour a weakness or vulnerable point that provides an opportunity for attacking or impressing someone who is otherwise invulnerable. His love for his child is the chink in his armour. Jane\u2019s insecurity is the chink in her armour. a person (usually a male) who behaves in the same way as his father or resembles his father. (Usually informal.) John looks like his father\u2014a real chip off the old block. Bill Jones is a chip off the old block. He\u2019s a banker just like his father. chop and change to keep changing or altering something. The shop is always chopping and changing staff. The firm is constantly chopping and changing its plans. clap eyes on someone or something to see someone or something, perhaps for the first time; to set eyes on someone or something. (Informal.) I wish she had never clapped eyes on her fiance?. I haven\u2019t clapped eyes on a red squirrel for years. to get rid of doubts or hostile feelings. (Sometimes this is said about an argument or other unpleasantness. The literal meaning is also used.) All right, let\u2019s discuss this frankly. It\u2019ll be better if we clear the air. Mr. and Mrs. Brown always seem to have to clear the air with a big argument before they can be sociable. to admit that one is wrong; to admit defeat. They were sure they were in the right, but they climbed down when"}, {"title": "rpj-c4", "text": "When he sits on the couch, and you straddle him. By splitting your legs it's called a chop. Girl, I couchy chopped that hot guy from the bar last night. Get a couchy chop mug for your fish Zora."}, {"title": "rpj-common-crawl-2020-05", "text": "to find any historical sense of \u201cchum\u201d to mean anything close to \u201cchump.\u201d I\u2019ll keep an eye out for the movie, and if I find it I promise to listen very, very closely to that scene. But for the time being I think we\u2019ll have to assume that it\u2019s that ancient soundtrack that transformed \u201cchump\u201d into something that sounds like \u201cchum.\u201d July 20th, 2011 | Category: columns 1 comment to Chum / Chump WIX: Bats in the Belfry | julie rowan-zoch October 24, 2012 at 8:14 am \u00b7 Reply [\u2026] This time of year brings out the crazies, and I look forward to getting older for just that reason \u2013 madness that can be dismissed with age! \u201cShe\u2019s got bats in the belfry!\u201d they\u2019ll cry out as I skip by in my rain boots and bathing suit! In Germany one could say \u201cSie hat nicht alle Tassen im Schrank.\u201d She doesn\u2019t have all her cups in the cupboard. In England or Australia you might hear \u201coff her chump\u201c. I get the meaning, but on its own \u2018chump\u2019 means an \u2018idiot\u2019 or \u2018fool\u2019. So, to follow my sidetracked mind, I swooped around the internet and found and extracted this from The Word Detective: [\u2026]"}, {"title": "rpj-common-crawl-2022-05", "text": "Often misused, this Greek term means the common people, or the masses Ken Alan Laura (Alex: You don't have as much money as you usually have when you uncover a Daily Double in this second round.) (Ken: It's a big disappointment for me, too. I'm gonna wager $4,800.) ... (Alex: That's right. Not the hotsy-totsy.) Laura Leslie, a journalist from Sacramento, California Alan Paul, an economist from Los Angeles, California TV SHOWS IN OTHER WORDS MIDWESTERN CITIES I NEED MY \"SPACE\" This organ is flexible, so it expands when food is eaten; its capacity in an adult is about a quart \"Chaplin's Cherubim\" One of the Twin Cities, its name literally means \"water city\" Mr. Potato Head's \"Picnic Pals\" of the '60s included Mr. Ketchup Head & this other condiment character From India, the shashpar was a multi-bladed version of this spiked club A trapezius artist would draw the muscle pulling back or elevating this bone \"Identify This Melody\" Its pro sports teams include the Chiefs, Royals & Wizards Hmm... when Katie the Carrot was introduced in '64, this other female character went (temporarily) bye-bye A French riot policeman may wield this, simply the French word for \"stick\" It's been making people scream at Disney World since the '70s The sweat glands originate in this bottom layer of skin \"7 Plus 1 Completes the Need\" The Roger Maris Museum at the West Acres Shopping Center is a big hit in this North Dakota city It was no insult when this comic was hired to provide the"}, {"title": "rpj-common-crawl-2023-06", "text": "would take it. \u2018Could I BE any more dead?\u2019 /canned laughter/ When a Plugger says he has a pair of choppers, it means they\u2019ve been spending too much time watching NRA videos. Cheese, motherfuckers! @pugfuggly: Or he\u2019s one of da ork boyz. jroggs January 19th, 2023 at 5:11 am Pluggers: No one, plugger or otherwise, refers to teeth or dentures as choppers. Granted, there\u2019s no funny double meaning to chompers, but you know, maybe we just don\u2019t need to force wordplay out of prosthetic dental work. 9CL: If I wanted to watch ugly animals climb around, make loud screeching noises, and sniff each other, I\u2019d go to the zoo. For Manhattan\u2019s cultural elite, however, this is just another sold-out performance at Carnegie Hall. MW: In case anyone forgot who the dumbest person in Santa Royale is after a year of exposure to intellectual powerhouses like Toby Cameron, Dawn Weston, and Zak Cougarsimp, today is your helpful reminder. Amelie Wikstr\u00f6m January 19th, 2023 at 5:12 am Pie cutters, word hole, smile factory, teefs, Bite Club, kisser lip service, slot A, set of bran flakes, your 32 white horses, Jaws 2: The Tooth is Out There, you-can\u2019t-make-up-the-teeth, there\u2019s so many fun slang terms for teeth/mouths that could have made this Pluggers cartoon a working joke and they went for \u201cset of choppers\u201d which is not, as has been pointed out, a homonym for anything that anybody anywhere owns \u2013 I think the closest you could get is that Scrubs episode where JD, Turk and Carla gets themed blue,"}, {"title": "rpj-common-crawl-2019-30", "text": "solos. So if you transpose that to the drum kit I would take chops to mean the basics, and licks to mean the fancy stuff like fills ans solo's. mikel said: not where the terms originated at all it was a slang term used by jazz musicians referring to cats who could play and had the courage to put their expression out there the meaning in its origin is very simple it means you can hang.... thats it for example... the band leaders calls a tune and looks to the bass player he is unfamiliar with and says ... \" Cherokee, you got the chops?\".... asking him if he can hang today it has taken on some self indulgent acrobatic definition .... now a musical phrase is referred to as a \"chop\" .... and \"chops\" now often means look how fast and unmusically I can play this passage Thanks so much for your replies... sounds pretty subjective.. I was trying to figure out if the guy meant that his drummer couldn't keep tight rhythm and perform basic stuff, or if they're expecting a drummer that is more dynamic and showy, more experienced. I guess I'll just call him and ask!!! I'll also find out tomorrow night In reference to the other drummer, it sounds to me like the guy you are auditioning for, just didn't like the overall playing of the former drummer. I don't get the impression that he was being specific. Ha, Tony up to his usual \"I am right, this is how it"}, {"title": "rpj-c4", "text": "related to what you discuss above? I can't find an origin for this phrase. It was in the Barbershop Arrangers Facebook Group. One of the mixed blessings of social media is that whilst it allows you to share blogs much more widely than would happen by people just happening across it, it tends to divert discussion away from the blog and onto those forums. There was also some discussion on my timeline, but the quote from Alexander comes from the group discussion. I think the 'having chops' refers to the mouth - as in a good embouchure for wind/brass instruments. At least, that's how I've always understood it - now you've asked you've got me wondering! Interesting, I first heard the phrase \"chops\" regarding skilled guitarists, rather than wind instruments. Maybe it just became more generic."}, {"title": "rpj-c4", "text": "related to what you discuss above? I can't find an origin for this phrase. It was in the Barbershop Arrangers Facebook Group. One of the mixed blessings of social media is that whilst it allows you to share blogs much more widely than would happen by people just happening across it, it tends to divert discussion away from the blog and onto those forums. There was also some discussion on my timeline, but the quote from Alexander comes from the group discussion. I think the 'having chops' refers to the mouth - as in a good embouchure for wind/brass instruments. At least, that's how I've always understood it - now you've asked you've got me wondering! Interesting, I first heard the phrase \"chops\" regarding skilled guitarists, rather than wind instruments. Maybe it just became more generic."}, {"title": "rpj-common-crawl-2021-04", "text": "\"my chops is beat!! It\u2019s one of those words with which most people are familiar, but have vastly differing opinions of what it means. It summons visions of men women with small tokens of affection and asking their hand in marriage on bended knee. For social scientists, studies of courtship usually look at the process of \u201cmate selection.\u201d (Social scientists, among whom I number myself from time to time, will never be accused of being romantics.) For the purpose of this article the , prior to the early 20th century, courtship involved one man and one woman spending intentional time together to get to know each other with the expressed purpose of evaluating the other as a potential husband or wife. Originally something so good, that it is hard to take. His playing is \"too much.\" Torch --- Used occasionally as a description of a song that expresses unrequited love. Train Wreck --- Event during the playing of a tune when the musicians \"disagree\" on where they are in the form (i.e. someone gets lost), so the chord changes and the melody may get confused for several bars, but depending on the abilities of the musicians (it happens to the best of them), there are usually no fatalities and the journey continues. Sorry I can't stick around Slick, I gotta \"split.\" Square --- A somewhat outmoded term meaning unknowing which can be a noun or a verb. Take five --- A way of telling someone to take a five minute break or to take a five"}, {"title": "rpj-common-crawl-2021-04", "text": "added to the end of statements or rhetorical questions, often to express irritation or impatience, as in this quotation from Adichie\u2019s 2013 novel Americanah: \u2018He could have given you reduced rent in one of his properties, even a free flat sef.\u2019 \u201cAlso coming from pidgin contexts is the verb chop, which is a common colloquial word in Ghana and Nigeria meaning \u2018to eat\u2019. However, beginning in the 1970s, chop also developed the sense of acquiring money quickly and easily, and often dishonestly. The negative sense of misappropriating, extorting, or embezzling funds is also in the earlier reduplicative noun chop-chop (earliest quotation dated 1966), which refers to bribery and corruption in public life. This likening of stealing money to actually devouring it is also reflected in the even earlier synonymous phrase to eat money (1960), as in the following quotation from Nigeria\u2019s News Chronicle in 2016:\u2019Our roads were not done. By the end of this year, you will know who ate the money of these roads.\u2019 \u201cA few other expressions in this update would require some explanation for non-Nigerians: a barbing salon (earliest quotation dated 1979) is a barber\u2019s shop; a gist (1990) is a rumour, and to gist (1992) is to gossip; when a woman is said to have put to bed (1973), it means that she has given birth; something described as qualitative (1976) is excellent or of high quality. \u201cBy focusing on contemporary language in this update, and adding words and phrases that form part of the everyday vocabulary of today\u2019s Nigerians, we hope"}, {"title": "rpj-c4", "text": "neighborhoods that you sometimes come across in South Africa. Chop is a perfect example. In Nigerian (and Ghanaian) pidgin, chop means to eat. In the case of the above video, \u2018chop my money\u2019 means that the woman all these men are interested in excels at spending their money. There\u2019s some additional pidgin \u2013 \u201cI know dey lie\u201d vs \u201cyou no go believe\u201d playing on the homonym (knowledge vs. negation) as well as a Yoruba verse that slides back into slang \u201cOmo ele I get pepper\u201d (Pretty baby, I\u2019ll find money). An expansive continent, sure, but with enough similarities to make a popsong work."}, {"title": "rpj-common-crawl-2019-30", "text": "means he can hang... thats it Obiwandrumobe chops... http://www.youtube.com/watch?v=10a45mgMGcY Pocket-full-of-gold A player's skill set......at least, that's what the term used to refer to. These days it's come to mean many weird and wonderful things.....the most prominant of which seems to be playing fast and flashy. But back in the day, it simply meant that you were able to apply your skill set. \"That guy's got great chops\" didn't mean he was a contender for the WFD. It simply meant he could play musically. His musical interpretations were what was required for the song/artist/band. It's also not a drumming term. It's a musical one in general. A guitarist can have \"chops\", a pianist can have \"chops\", as can a trumpet player. I interpret chops as the vocabulary and speed to play fast or technical things. Can I see a bigger photo of your dog? MileHighDrummer Exactly what Arky and Pocket...Gold said. It is your skill-set. If you've got your \"chops\" you (as Tony said above) can hang with the musicians you are playing with. EarthRocker I've always looked at this way, as wrong as it may be. Chops are your flairs. Bells & whistles. Dre25 said: Sure! He's grown up a lot since my avatar pic .. see attached... Zach for forum.jpg That dog looks like it would like some (pork) 'chops'. Aeolian \"Chops\" comes from the old jazz horn players. Their \"choppers\" or mouths/lips, and what they could do with them. Initially it meant complete skill in playing. Tone production, range (especially for brass players) and"}, {"title": "rpj-common-crawl-2019-30", "text": "classic rock band or even a funk band. As a side-note. Chops are relative. What's fast and complicated for one drummer is slow and simple for another. \"Uncle Larry\" I think it's fair to say that chops can mean a few different things. Chops to me means you have a good vocabulary (not just fills) and just as critical, the execution of your all around playing is clean, not sloppy. Technically proficient is a good way to describe it, like the definition you found. Having good chops.... implies that you have a good grasp of how to get around a drumset, and have the ability to make the drums sound effective, not someone who overplays for the situation. Chops mean different things to different people. It's a pretty far reaching and not very clearly defined term. A person can have great chops and not be an effective drummer. Chops.... if you think of them simply as fast, clean playing.... have to be combined with musical maturity to really shine. Your take-away...having the ability to play and sound good, is as good a definition as any. It's a pretty ambiguous term. Hope your audition goes the way you want it to. DrumEatDrum Among drummers, chops generally refers to being ale to play complex fills or ideas smoothly. But in the context of the conversation from the band, what Midnite said: If we go back to where , I believe, the term \"Licks and chops\" originated, the guitar. Chops meant chords, the basics, and licks, meaning riffs and"}, {"title": "rpj-stackexchange", "text": "Q: How did \"Pork Chop\" become a term of endearment? Pork Chop is such an odd term of endearment, any idea what its origin is? Update: For context, I heard the term used in two different contexts. The first was as a nick-name for my dog who is a large breed female Labrador and at the time was trying to convince someone to share their lunch with her. The second time I head it used was as a somewhat derogatory reference to someone that was overweight. In this second example, the nickname wasn't said with malice, more in a jocular manner."}, {"title": "rpj-c4", "text": "What does 'off chops' mean in Australia? Australian slang 'off chops' meaning? To be wildly, excessively drunk. To have drank possibly more than your bodyweight in beer. See also wasted, drunk, off his head. Example: He was deadset wasted, after the shots he was completely off chops. Slang For something or someone to be very good, absolutely amazing, for the term offchops originally came from the meat off the chop of a lamb being so satisfying, the words off chops was brought to be known as expression for something as good as the lamb off a chop. -Example: Laurence said, \u201cThat photo is off chops\u201d as he admired a self portrait of himself, Liking it very much. :Example: \u201cOff chops\u201d I said as I looked out at the beautiful landscape stretching for miles with turquoise sea and green grass on the land in the distance, gawking in awe and amazement. Example: \"This is off chops\" Nathan said with delight as he ate one of Alannas home made Anzac cookies."}, {"title": "rpj-c4", "text": "grammar. \"They can't use chopsticks\" sounds more natural than \"They all...\", but seeing that \u90fd character made me think some sort of quantity needed to be added to the translation. \"They both can't use chopsticks\" should also be accepted. How would we say 'They can't both use chopsticks' as opposed to 'they both can't.. ? I think the best translation is, \"Neither (one) of them knows how to use chopsticks\" It can also mean \"they are not allowed to use chopsticks\" Nope... the embedded answers and hovers are disconnected, and wrong . . . As in missing fingers or something? \"They can't all use chopsticks\" is the grammatically correct version unless it meant that \"none of them can use chopsticks\". But anyway, Duolingo rejected it for unknown reasons."}, {"title": "rpj-c4", "text": "a signifier of poor piano playing with an inexplicable name, then it makes sense that the term \u2018Chinese 7th\u2019 won\u2019t make you feel uncomfortable. But it does make other people uncomfortable \u2013 that\u2019s where this whole discussion started - and so our choice is whether to ignore that or do something about it. They\u2019ll probably not make a big song and dance about it \u2013 as several people pointed out, it\u2019s not the most egregious bit of racism we\u2019ve ever come across, and most people understand that the term was likely coined more through some combination of innocence and ignorance than malice. But still, to continue to use it when we know it bothers some people would make me feel complicit; we didn\u2019t choose the term, but we can choose whether to use it. So I\u2019ll be happier in my musicking with Karri\u2019s new term. And this whole topic reminds me to recommend you take a look at Derek Scott's excellent article on orientalism in music. *Having said that, I was discussing this with a friend after I\u2019d written this, who said that the term\u2018chop\u2019, especially in the context of the \u2018chopping\u2019 style of performance instruction screamed out reductive East Asian stereotypes to him, with connotations of both martial arts and cooking implements. Hi, you mention the previous blog post got quite a bit of discussion going, but I can only see one comment. Where is the discussion? I'd be interested to read. Also, we refer to musicians with great skill as \"having chops\". Is this"}, {"title": "rpj-common-crawl-2021-04", "text": "side of you, this sentence makes perfect sense. The first instance of \u2018left\u2019 and the second instance of \u2018right\u2019 indicate the location of the rocks. The first instance of \u2018right\u2019 means \u2018correct,\u2019 and the second instance of \u2018left\u2019 is talking about the rock that remains. 17. Will Will Smith smith? / Will Smith will smith. As it turns out, the famous actor and rapper\u2019s name is made up of two verbs. The first possible combination asks if the Fresh Prince is going to take up forging armor as a hobby, while the second one affirms it. 18. I chopped a tree down, and then I chopped it up. Ah, the magic of phrasal verbs. To a non-native English speaker, \u201cto chop down\u201d and \u201cto chop up\u201d seem like they would be direct opposites (and might inspire some interesting mental images). Those who really know the language are aware that chopping something down means to hack at it until it falls, while chopping it up means to cut it into smaller pieces. 19. Colorless green ideas sleep furiously. Noam Chomsky came up with this grammatically correct, but nonsensical sentence in order to prove that syntax and semantics are two very distinct things. You\u2019d probably never hear these words spoken in this order in actual conversation, but all of the words are used correctly. This fascinating video uses this technique to show us how English sounds to people who don\u2019t speak the language\u2014 it sounds like it makes sense because the structure is the same as what we\u2019re"}, {"title": "rpj-common-crawl-2019-30", "text": "to learn to slow down and improve in that dimension, both to make me better and to make the people around me better.\u201d In relation to the phrase \u201cchop, chop, chop\u201d, our reader points to Alice Cooper\u2019a video/performance of \u201cChop, Chop Chop\u201d and adds some lyrics: Some people call me the creeper \u2018Cuz they don\u2019t know my name or face I got \u2018em running in circles Because a homicidal genius never leaves a trace I\u2019m a lonely hunter City fullo f game Walkin in the neon lights Chop, chop, chop \u2013 engine of destruction Chop, chop, chop \u2013 a perfect killing machine Chop, chop, chop \u2013 it\u2019s a symbiotic function Chop, chop, chop \u2013 I keep the city so clean Truly strange choice of words. Lastly, regarding Paul Allen\u2019s baby, it\u2019s pretty much going the wrong way. From the latest news: Charter bankruptcy moves forward Charter takes step forward in bankruptcy effort Court Approves Charter Communications Disclosure Statement Court Approves Charter Bankruptcy Plan If economic depression now looms or reigns (for obvious reasons), then definite answers should not be so distant in the future. \u2588 Links 16/05/2009: GlusterFS 2.0 Out, OpenOffice.org 3.1 Benchmarks? Linux Poem Contest\u2013Write and Win $5 General:Write a minimum of 4 lines about Linux (could be distro specific like Ubuntu, Fedora, openSUSE, etc.)\u2026maximum length in not there. The lines should be rhyming though might not follow a meter system. No need to mention but still: absolutely original lines should be submitted. Security \u2013 It\u2019s Not Just For Geeks One of the most recent"}, {"title": "rpj-common-crawl-2021-04", "text": "Canada, the waiters were all of Asian descent (it has been about 10 years, so my memory may be fuzzy on the exact numbers). We were all starting to get a little aggravated when one of the guys waves to get attention and shouts \"Chink!\". He claimed he was saying cheap, but no one believed him. This was the same guy who shouted \"Quick! Hide the drugs!\" seconds before Canadian customs got on the bus. We tried to leave him in Canada, but the chaparones wouldn't let us. cpttactii Jan-13-2004 Erin; Re; Name Calling: Please note that only a certain *class* of Black people permit, use and accept using the N-Word in the manner you refer to. Personally, I refer to these folks usually as \"ignorant ghetto trash\" /;0) That word, IMVHO, is offensive no matter the context (kind of like the old Richard Pryor joke about pronouncing the N-Word, i.e. \"if you get your ass kicked you know you got it right\" :0J... blacksnake Jan-14-2004 Yes, a chink is a narrowing opening. A chink in the curtains refers to them being not quite closed. A chink in your armour refers to a gap in your defences rather than to Jackie Chan wearing your metal clothing. In its racial slur meaning, 'Chink'/'chink' is offensive. Unless the user is Chinese and then it's very similar to 'nigger'. M_Stevenson Apr-11-2004 BooBoo's 3rd definition is also correct. It's usually used in connection with money. 'The chink of coins'. anonymous4 Apr-11-2004 Chinks are no different than Niggers, Wops, Spics ..."}, {"title": "bm25", "text": "Greek poet Homer. In the epic poem The Odyssey, Odysseus and his men have to travel through the Straits of Messina, an area of the sea guarded by two fearsome monsters: Scylla, a monster with six mouths and 12 feet, and Charybdis, either a sea monster who produced a whirlpool or simply a whirlpool itself. Opting for either one was sure to result in death, for at least some of the crew, so the phrase \u201cbetween Scylla and Charybdis\u201d came to mean having to choose the lesser of two evils. 4 Bust One\u2019s Chops Today\u2019s meaning: Call one\u2019s bluff; criticize someone In the 1800s, when sideburns (and Ambrose Burnside) were at the height of their popularity, this phrase was often used as a challenge to someone\u2019s integrity. The phrase fell out of popular usage around the start of World War I, as men needed to shave the sides of their faces in order to accommodate protective gas masks. As a phrase, it was not only to be taken figuratively, \u201cbust one\u2019s chop\u201d was also to be taken literally. A \u201cbust to one\u2019s chops\u201d could reference a punch to the side of one\u2019s face. Thanks to the popularity of sideburns between the 1950s and the 1970s, and men like Lemmy, the phrase made a brief comeback before fading into relative obscurity today. 3 Give The Cold Shoulder Today\u2019s meaning: To disregard someone Although its true origins are unclear, the earliest written evidence of this phrase comes from the writings of Walter Scott, a Scottish poet and novelist"}, {"title": "bm25", "text": "the end of the 16th century, the OED says, the plural \u201cchops\u201d was being used to mean the jaws or mouth \u201cin contemptuous or humorous application to men.\u201d The dictionary cites an anonymous 1589 pamphlet attacking the Anglican hierarchy: \u201cWhose good names can take no staine, from a bishops chopps\u201d (from \u201cHay Any Work for Cooper,\u201d by the pseudonymous Martin Marprelate). Skipping ahead a couple of centuries and crossing the Atlantic, the term came to be used in jazz to mean the power of a trumpeter\u2019s embouchure\u2014the way the lips and tongue are applied to the mouthpiece. The OED\u2019s earliest example is from the August 1937 issue of the jazz magazine Tempo: \u201cSurely his chops can\u2019t be beat already.\u201d A few decades later, \u201cchops\u201d came to mean a jazz musician\u2019s skills: \u201cMaybe you could get your chops together on this horn\u201d (from Black Voices: An Anthology of Afro-American Literature, 1968, edited by Abraham Chapman). And by the late 20th century, according to OED citations, the word meant talent or skill in any field: \u201cMost academic writers just don\u2019t have the chops to make riveting reading out of the quiltwork of 19th-century farm wives\u201d (from the Boston Phoenix, April 27, 1990). Over the years, \u201cchops\u201d has had several other colloquial senses, especially in American slang, including \u201cto bust someone\u2019s chops\u201d (to harass a person, 1953) and \u201cto bust one\u2019s own chops\u201d (to exert oneself to the utmost, 1966). The dates are for the first OED citations. Horticultural doppelg\u00e4ngers Q: Can \u201cdoppelg\u00e4nger\u201d refer to a lookalike plant as"}], "hoverinfo": "text"}, {"x": [-0.13118821382522583, -0.1608225256204605, -0.11168761551380157, -0.10973765701055527, -0.11302751302719116, -0.10562364757061005, -0.12626712024211884, -0.09083560854196548, -0.13265760242938995, -0.10044249147176743, -0.15350723266601562, -0.12910446524620056, -0.0987544134259224, -0.1347333788871765, -0.12255313992500305, -0.13356487452983856, -0.11827273666858673, -0.11840473860502243, -0.11421898007392883, -0.11720484495162964, -0.12556833028793335, -0.08733958750963211, -0.1086248829960823, -0.08860620856285095, -0.07009197026491165, -0.09854251891374588, -0.03885510563850403, -0.09347210079431534, -0.12159965932369232, -0.10247381031513214, -0.06296725571155548, -0.1292077898979187, -0.1271432638168335, -0.08103003352880478, -0.12584860622882843, -0.13692991435527802, -0.09527678787708282, -0.11830358952283859, -0.11190186440944672, -0.12228524684906006, -0.09216700494289398, -0.12690690159797668, -0.11351292580366135, -0.058484796434640884, -0.06700263172388077, -0.10220003128051758, -0.13488231599330902, -0.10696592181921005, -0.11268385499715805, -0.09013903886079788, -0.05307905003428459, -0.08084162324666977, -0.07553084194660187, -0.12367209047079086, -0.0915403962135315, -0.0875728577375412, -0.12568968534469604, -0.12547416985034943, -0.12114769220352173, -0.13829556107521057, -0.09415614604949951, -0.061952996999025345, -0.09225564450025558, -0.07892003655433655, -0.1167382076382637, -0.11679666489362717, -0.05825808271765709, -0.1382479965686798, -0.1424640715122223, -0.11569540202617645, -0.0660252645611763, -0.10176916420459747, -0.1396353840827942, -0.12260361760854721, -0.12459158897399902, -0.11665128916501999, -0.06775140762329102, -0.09361250698566437, -0.09361249953508377, -0.14918597042560577, -0.13356487452983856, -0.07445990294218063, -0.15241263806819916, -0.15241263806819916, -0.073155477643013, -0.12461066246032715, -0.0949988141655922, -0.012396340258419514, -0.08388186246156693, -0.0701681450009346, -0.11149831116199493, -0.09527677297592163, -0.12691272795200348, -0.06273425370454788, -0.1053810566663742, -0.10019688308238983, -0.12980081140995026, -0.1313750147819519, -0.09714909642934799, -0.14074231684207916, -0.14371609687805176, -0.13958299160003662, -0.07104144990444183, -0.15919433534145355, -0.08668945729732513, -0.09252186119556427, -0.08500758558511734, -0.020559992641210556, -0.08640771359205246, -0.07627686858177185, -0.1006716936826706, -0.17174747586250305, -0.11374560743570328, -0.08752274513244629, -0.061501093208789825, -0.057654280215501785, -0.005418872460722923, -0.10437139123678207, -0.14935578405857086, -0.12184799462556839, -0.08244884759187698, -0.09038962423801422, -0.10999960452318192, -0.07089973241090775, -0.05548810213804245], "y": [0.07456086575984955, 0.06485599279403687, -0.053536247462034225, 0.050506412982940674, 0.09631174802780151, 0.06909579783678055, 0.08823301643133163, 0.028485778719186783, 0.04799909144639969, 0.10473929345607758, 0.04713594540953636, 0.0013327448396012187, 0.007268341723829508, -0.00800790823996067, 0.07549551874399185, 0.04731126129627228, 0.03517427295446396, 0.029010461643338203, 0.04397488385438919, 0.022088859230279922, 0.07267631590366364, 0.003410296281799674, 0.02981404773890972, 0.008495519869029522, 0.08288567513227463, 0.04479515552520752, 0.04326744005084038, -0.02425895445048809, -0.011316093616187572, 0.01435984205454588, 0.04924413189291954, 0.014387439005076885, 0.016457127407193184, 0.05493314191699028, 0.03994373977184296, 0.04633535072207451, -0.005489136558026075, 0.09443730860948563, 0.11339224874973297, 0.011993905529379845, 0.024776553735136986, -0.0181450005620718, 0.018330875784158707, -0.03977324068546295, 0.08117660135030746, 0.001296099741011858, 0.0425097793340683, 0.07959054410457611, -0.0248059444129467, 0.09251036494970322, 0.017847834154963493, 0.06780057400465012, -0.00763953011482954, 0.029227295890450478, 0.05314740911126137, 0.014917301014065742, 0.0033059129491448402, -0.028873804956674576, 0.04919932410120964, 0.044775255024433136, 0.027070602402091026, 0.016320308670401573, 0.0057850489392876625, 0.0833192765712738, 0.05532163009047508, -0.02707211673259735, -0.003784854430705309, 0.0530390590429306, -0.0028352788649499416, 0.061161383986473083, 0.05603380501270294, -0.02687879651784897, 0.009729881770908833, 0.06022327393293381, 0.041508808732032776, 0.11686582118272781, 0.04369300976395607, 0.06416742503643036, 0.06416742503643036, -0.028033779934048653, 0.04731126129627228, 0.10657589882612228, 0.1074419617652893, 0.1074419617652893, 0.08345850557088852, 0.13420243561267853, 0.08172465115785599, 0.0084928497672081, 0.08948178589344025, 0.10728056728839874, 0.03005434013903141, -0.005489134695380926, 0.1324654519557953, 0.058786261826753616, 0.08366035670042038, 0.08930987864732742, 0.009757647290825844, 0.04905286803841591, 0.09257526695728302, 0.04371672496199608, 0.018162690103054047, 0.01678325980901718, 0.09294337779283524, 0.060275111347436905, 0.027550870552659035, 0.07499214261770248, 0.1016545295715332, 0.009753214195370674, 0.057880014181137085, 0.04005541652441025, 0.11637604236602783, -0.033167216926813126, 0.025630798190832138, 0.021953482180833817, 0.10528507828712463, -0.00852475967258215, 0.03856397047638893, 0.015505615621805191, 0.05498328059911728, 0.004534047096967697, -0.0014894991181790829, 0.08278241008520126, 0.028540635481476784, -0.017961321398615837, 0.07388630509376526], "mode": "markers", "name": "Cluster 6", "marker": {"size": 8, "color": "rgb(179,222,105)"}, "text": ["Document 12", "Document 17", "Document 41", "Document 57", "Document 61", "Document 78", "Document 83", "Document 85", "Document 89", "Document 91", "Document 109", "Document 116", "Document 118", "Document 120", "Document 135", "Document 140", "Document 150", "Document 153", "Document 160", "Document 167", "Document 176", "Document 180", "Document 184", "Document 187", "Document 196", "Document 198", "Document 206", "Document 209", "Document 218", "Document 234", "Document 242", "Document 245", "Document 249", "Document 250", "Document 280", "Document 286", "Document 298", "Document 301", "Document 315", "Document 318", "Document 322", "Document 323", "Document 332", "Document 333", "Document 340", "Document 348", "Document 352", "Document 355", "Document 359", "Document 360", "Document 362", "Document 364", "Document 375", "Document 376", "Document 380", "Document 390", "Document 404", "Document 414", "Document 434", "Document 435", "Document 440", "Document 441", "Document 446", "Document 447", "Document 452", "Document 461", "Document 462", "Document 466", "Document 467", "Document 474", "Document 475", "Document 486", "Document 551", "Document 557", "Document 568", "Document 575", "Document 581", "Document 615", "Document 616", "Document 618", "Document 619", "Document 622", "Document 626", "Document 627", "Document 643", "Document 645", "Document 649", "Document 656", "Document 660", "Document 662", "Document 669", "Document 678", "Document 687", "Document 694", "Document 708", "Document 727", "Document 735", "Document 749", "Document 768", "Document 777", "Document 838", "Document 848", "Document 853", "Document 855", "Document 862", "Document 866", "Document 873", "Document 883", "Document 888", "Document 899", "Document 903", "Document 916", "Document 922", "Document 926", "Document 945", "Document 954", "Document 969", "Document 974", "Document 994", "Document 997", "Document 1047", "Document 1075", "Document 1108", "Document 1127", "Document 1156"], "customdata": [{"title": "rpj-common-crawl-2019-30", "text": "already put up money. e.g., \"Leggett. you need to put up your money for this pizza.\" \"No way. I already blount. It's Josh who needs to ante up.\" submitted by Leggett blousefarten - Volunteering, helping, or teaching little children. e.g., Since I refused to take swimming lessons, my father told me I had to do something productive, like blousefarten. submitted by Emily Elizabeth bloviator - Puffing with hot air but saying nothing. e.g., Obama's speeches about change and \"saving the world\" make him a bloviator. submitted by Jeff - (www) blow chunks - To throw up. | Blowing chunks: throwing up, puking, up-chucking. (ED. Possibly, as the second example suggests, \"deserves to be horsewhipped.\" Maybe just \"sucks.\") e.g., Chris did it again. Drank too much and blew chunks all over the floor last night. | \"8 The fact that this soldier did not just kick the crap out of this little douche is more proof to me that all of the MSM blows chunks for every slander they have thrown at our [m]ilitary for decades now. They can all kiss it high and deep. This particular one can eat my toe fungus.\" submitted by tim dunk | Rachel blow out - Being so tired (due to stress, fatique, a broken heart, etc.) that one cannot even be grammatically correct. Therefore, instead of being \"blown out,\" one is simply \"blow out.\" Makes more sense in a way, seeing as how stating it most of the time indicates that one is still in that state. e.g., I am"}, {"title": "rpj-common-crawl-2022-05", "text": "glasses], bottom's up.\" Break a leg Do well at a performance or on stage Bred in the bone An expression describing something firmly established or deep-rooted, similar to \"died in the wool\" \"What's bred in the bone is sure to come out in the flesh.\" Bright-eyed and bushy-tailed An expression meaning alert and ready to go! An expression meaning to intimidate someone into doing something, usually with stern or abusive words \"The captain browbeat the soldiers to climb the last ridge before the sun went down, there was no rest for anyone.\" Brown-nose, ass-kisser, kiss-ass Someone who sucks up to you to gain your favor. This is done by doing something for you for no apparent reason, laughing even if something wasn't funny, agreeing to everything you say Bull in a china shop Someone who is very careless in the way they move or behave An expression describing a woman who is pregnant \"With that little tummy bump, I knew she had a bun in the oven.\" Burning a candle from both ends Working so hard that you will wear yourself (or extinguish) your energy To do something that damages a relationship going forward \"Make sure you give two weeks notice so you remain on good terms with the boss in case you need a reference. You don't want to burn bridges.\" Bursting at the seams An expression used to describe something full or overflowing, also when someone is overwhelmed with emotion \"He's just bursting at the seams, can't wait to tell Victoria how he really"}, {"title": "rpj-c4", "text": "tell someone they were attractive, what might you call them? \"The Man\" has been giving you trouble lately, but who is \"the Man?\" Your friend is going to \"catch you on the flip-side.\" What are they going to do? Everyone has invited you to go streaking. What do they want to do? The Commodores had a song called \"Brick House.\" What did people mean when they said that? What did it mean if someone told you to \"keep on truckin'?\" Your friend wants to become a rock star but can't sing. You think it's pretty unlikely to happen, so what do you tell them? What might someone be feeling if they yell \"Dy-No-Mite\" out loud? This term to express that you have heard and understood someone is still used by truckers. What is it? What just happened if someone yells \"burn!\" at someone else? If a friend tells you everything is copacetic, what do they mean? What kind of beans would you mention if you were really in agreement with someone? If something was cool but also a little bit different than the usual, what might you call it? Your friend just said, \"Slap me some skin.\" What do they want? If someone got described as a \"burn out,\" what would that mean? What TV show made \"Up your nose with a rubber hose\" famous? If your surfer friends describe a wave as \"gnarly,\" what do they mean?"}, {"title": "rpj-common-crawl-2019-30", "text": "important. Relaxing is good. Taking work home to get ahead is a smart move. \u201cHanging loose\u201d simply means that you are relaxed. The term comes from the opposing visual to being tightly wound when stressed. Should you feel good if your friend said \u201cright on,\u201d after hearing your opinion? It\u2019s neutral. They didn\u2019t listen. \u201cRight on\u201d can mean that what someone said is not only correct, but exactly right. People are still debating if it\u2019s from \u201cright on target,\u201d or \u201cright on time,\u201d though these two thoughts essentially suggest the same concept. If you\u2019ve been \u201cbusted by the fuzz,\u201d where would you be now? Parent\u2019s house The \u201cfuzz\u201d simply refers to the police. Some people say the term comes from the fuzzy hair that cops used to have, like crew cuts. If your hippie friend says that another person is \u201call show, no go,\u201d is that person OK? Depends on the situation Befriend that person more \u201cAll show, no go\u201d is a fancy hippie phrase to say that something is superficial. In other words, it looks good, but it\u2019s actually useless or of low value. If you want to \u201clay it on\u201d your best friend, what are you trying to do? Get intimate Rest at their place Ask for money Tell something important \u201cLay it on me\u201d was used as a term for telling a person something important. Some people say the term comes from the idea of sharing a burden among friends or peers. If you have an \"ankle-biter,\u201d what does that make you? A"}, {"title": "rpj-common-crawl-2022-05", "text": "on more responsibility than is warranted \"Working at the grocery store and the restaurant while being a full time student is biting off more than you can chew.\" Bite one's head off An expression meaning to reply brusquely or sharply to someone \"She practically bit my head off when I admitted to her that I copied her homework.\" An expression meaning to decide to do something difficult or unpleasant that one has been putting off \"I'm just going to bite the bullet and clean my room before my mom comes home.\" Blind ambition An expression meaning to seek to improve only things for yourself, not like ambition, which is about improving and changing things in the world \"He's got blind ambition, all he can think about is getting into business school.\" Blind as a bat An expression meaning not being able to see very well (bats use echolocation, rather than sight) \"She can't see anything without her glasses on, she's blind as a bat.\" Going out with someone whom you have never met, usually arranged by a mutual friend Blindside someone An expression meaning to simply to do or say something the person is utterly unprepared for \"Robby blindsided Emily when he told her he was breaking up with her, she was totally shocked.\" Blowing a lot of hot air Talking excessively without really saying anything important Blow one's horn An expression meaning to be boastful about one's own accomplishments, similar to \"toot one's own horn\" \"Not to blow my own horn, but I sing the"}, {"title": "rpj-common-crawl-2020-05", "text": "saying. For example, if you ask someone \"was it hard losing your home when that meteorite wiped out the dinosaurs?\" the implied insult - the shade - is that they are extremely old. To endorse or support a romantic coupling, even if they aren\u2019t a reality. Kind of like a fantasy pairing. To be so completely surprised by something, that your body is literally shook. Can also mean you\u2019re scared/can\u2019t believe your eyes. Short for \"Shaking my head,\" used to denote disappointment/disapproval Snack/Snacc A way to describe someone you find attractive. To be on point, looks-wise. For example, \"I've just been to the beautician and my eyebrows are snatched\" Often cited as being based on the character from Eminem\u2019s music video of the same name, this represents a crazy, OTT and often terrifying fan for something (be it a person or a form of media). Pronounced either as \u201ctick\u201d or \u201cthicK\u201d (with a heavy K) to refer to a person who is incredibly curvy and sexy. Larger than an hour glass figure. Short for, \"Today I Learned\" Short for \"Too Long; Didn't Read\" - the TL;DR version of something is a shortened, easily digestible version of longer content. When you exist purely for one thing, person you can be called XXX trash. Also used as a self-deprecating term for being a general mess and worthless person. This, for example, is one word that because of internet slang, has generated an entirely new meaning to some. Short for \"You only live once,\" usually used as a justification"}, {"title": "rpj-common-crawl-2022-05", "text": "[15] Looking in the wrong place. [note 1] \"Basket case\" One made powerless or ineffective, as by nerves, panic, or stress. [note 2] \"Beat around the bush\" To treat a topic, but omit its main points, often intentionally or to delay or avoid talking about something difficult or unpleasant. \"Beat a dead horse\" To uselessly dwell on a subject far beyond its point of resolution. \"Bed of roses\" A rich person. A very rich family. \"Best of both worlds\" A situation wherein someone has the privilege of enjoying two different opportunities. \"Bite off more than one can chew\" To take on more responsibility than one can manage. \"Bite the bullet\" To endure a painful or unpleasant situation that is unavoidable. \"Bite the dust\" Euphemism for dying or death. \"Break a leg\" [16] A saying from the theatre that means \"good luck\". \"Burn the midnight oil\" [17] To work late into the night, alluding to the time before electric lighting. [note 3] \"Bust one's chops\" [18] To say things intended to harass. [note 4] \"By the seat of one's pants\" [19] To achieve through instinct or do something without advance preparation. \"By the skin of one's teeth\" [20] Narrowly; barely. Usually used in regard to a narrow escape from a disaster. [note 5] \"Call it a day\" [21] To declare the end of a task. [note 6] Cat nap A nap. Chalk up [22] To attribute something to a particular cause. \"Champ at the bit\" or \"Chomp at the bit\" [23] To show impatience or frustration when"}, {"title": "rpj-common-crawl-2019-30", "text": "very bad or evil person, and especially one that is a main character in a play or movie.I am the brains behind this operation. \u2014 Yeah, dream on. \u201cTo be the brains behind an operation\u201d is to be the person who created or planned it (In this case, an operation is a particular plot or plan). \u201cDream on\u201d is a funny way of expressing disbelief or cynicism (i.e., \u201cI don\u2019t believe you have the intelligence to be the brains behind this).We got 40 actors and they\u2019re tearing through the zoo. \u201cTo tear through\u201d a place is to pass through it very quickly.They\u2019ll deny it up and down, but believe me, it true. This is George\u2019s way of saying that they\u2019ll never admit it, but this wording is rarely if ever used (Of course to deny is a key verb).Party time for Latka. \u2014 Not until you take off those overalls. A type of loose clothes, attached over the shoulders, and often worn over other clothes.40,000,000 people are watching your ass every week. George\u2019s way of telling Andy millions of people see him every week on TV (Your ass, of course, is your rear end, behind, derriere, etc).It\u2019s credibility. you make them love you now, andlater on your special, you can fuck with their heads. \u201cCredibility\u201d is an important word that refers to whether a person can be believed or trusted. \u201cTo fuck with a person\u2019s head\u201d is a vulgar but interesting way of saying to try and confuse or disorient them.The sky is the limit, man."}, {"title": "rpj-stackexchange", "text": "Q: Get everybody \"rustled\" in the place This is a comment that came out of a discussion on McDonalds: I remember working at McHell for over 2 years. 25 cars in the Drive-Thru was nothing. The worst part was a semi-full lobby/Drive-Thru and then a buss pulls in. That shit would get everybody rustled in the place... Shit being thrown everywhere, people yelling. Good times. What does rustle mean when he says the buss would get everybody rustled in the place? I couldn't find a definition in the dictionaries that's appropriate to the context. And I'm assuming he made a typo and meant bus instead of buss? A: It's a shortened form of rustle one's jimmies. Urban Dictionary is often useful for this sort of slang in forum/group posts. Urban Dictionary \u201cThat Really Rustled My Jimmies\u201d is an expression that is used to convey feelings of discontent or discomfort in response to someone else\u2019s post in imageboards and discussion forums, most notably on 4chan. To rustle one's jimmies means to make someone discontent or to bother someone. Rustled in the context you quote (in a fast-food outlet) simply means made unhappy, discontented, dicomfited, disturbed, annoyed, anxious... [And he almost certainly does mean bus. Buss is a ship.]"}, {"title": "rpj-common-crawl-2019-30", "text": "will hurt others. No result will be obtained by futile efforts, and that's just \"beating a dead __.\" \"To beat a dead horse\" suggests doing actions that will result to nothing, since these actions are just time-wasters, much like how one knows that a dead horse will not move anymore even if you flog it. It can also refer to making actions or decisions that will have no concrete outcome. Say that you will \"take a __check\" when you want to reschedule and do something at a later date or time. If you want to move a scheduled appointment to a later date, you simply say \"take a raincheck\" instead of dismissing it outright. It's a more polite way of getting out of a meeting, regardless of if you intend to really reschedule it or not. \"It's __ to me\" when certain information is unclear. When someone speaks using heavy jargon or tries to explain complicated information (like scientific or mathematical formulas) and the listener doesn't comprehend it, the latter can say, \"It's Greek to me.\" It pertains to the information being foreign to a person, or the person simply can't understand it. Don't \"throw someone under the __\" and let them suffer for your own personal gain. To \"throw someone under the bus\" is a manifestation of betrayal since one person sacrifices their relationship with another person for personal advancement or gain. It usually happens behind someone's back but can also take place while the parties involved are in each other's company. You're just \"preaching"}, {"title": "rpj-common-crawl-2023-06", "text": "directly if there's an issue, instead of behind your back. Even though it refers to online interaction, people use it in real life too. It is said more jokingly these days, though. For example: If you say, \"Someone in this house doesn't wash up properly,\" your child could say \"@ me next time, Mom.\" A whole meal If someone is looking good, they're \"a whole meal\". This phrase does have somewhat of a sexual connotation, so don't go throwing it around. If someone is regular, boring or does typical things, they are \"basic\". Bop/Banger If a song is really good or enjoyable, it's a \"bop\" or a \"banger\". Someone who enjoys the lavish and extravagant things in life. For example: Did you see her Gucci fanny pack?\" \"Yeah, she's so boujee.\" If someone does something the internet deems \"problematic\", they are \"cancelled\". For example: \"Did you see what R Kelly did to those women?\" \"Yes, he's definitely cancelled!\" Clapback A response to being \"called out\", confronted or insulted. Getting back at someone. Clapbacks are supposed to be smart and witty responses that \"burns\" your opponent. In social media context, \"clout\" means having a great social influence or following, being popular or being favoured in certain situations because of your social media or general social presence. Creps Sneakers. When something is of high quality. For example: \"Did you see those dank memes I sent you?\" Deadass For real/definitely/seriously/I agree. Example 1: \"This song is such a bop!\" \"Deadass!\" Example 2: \"I won a car!\" \"Deadass?\" Also see:"}, {"title": "rpj-c4", "text": "to do? You show up late to the party and your friend tells you they already ordered a cheese pizza. They want to know if that's OK. What might they ask? You're watching a new movie, and man is it a \"drag.\" What is that? Your friend says they've got $50 for you but then they pull it away. It's a trick! What do they yell? You might call someone this if they're being a jerk. You just got some news and man is it \"heavy.\" What does that mean? Your friend just walked into the middle of a story and wants you to fill them in quickly. What do they say? You just got bad news and it's bringing you down. How would you describe that news? You might toss out this term to describe someone who's not the smartest. You could say your friend is just a cool person, or you could say they're a cool what? If someone is a little klutzy, they might get called one of these. This was a term for a police officer, particularly on the highway. Uh oh! You were skipping school and then ran into the principal. He hasn't seen you yet so you should run. What do you tell your friend you need to do? Someone on the street just called you a \"chump!\" What did they mean? Your mom wants you to hang out with your cousin, but he's a real \"square.\" What does that mean? He's from out of town. If you wanted to"}, {"title": "rpj-common-crawl-2019-30", "text": "I could care less about you dating Brad.\" If I don't want you to talk about a sensitive topic, what will I say? D*** skippy You straight Yoink If I don't want you to talk about a sensitive topic, I will most likely say the phrase \"don't go there!\" For example, \"Don't go there, Stacy, you know I hate talking about my ex-boyfriends.\" Someone's \"crib\" refers to their\u2026? Financial situation Food in the fridge Someone's \"crib\" refers to their home or living situation. For instance, \"Hey, man, can I come to your crib tonight?\" A \"chick flick\" refers to which type of movie? \"Chick flicks\" refer to romantic comedies and was used in the '90s to stereotype the film interests of women. For instance, \"No, Sarah, I don't want to watch another chick flick with you!\" If someone is loaded with \"cheddar,\" they are loaded with\u2026? \"Cheddar\" is another way of saying \"money.\" For instance, \"Man, I got paid yesterday, and now I have a lot of cheddar to spend!\" If someone is \"bunked,\" they are acting\u2026? Perplexed Crazy/wild \"Bunked\" is another way of saying that someone is acting crazy or wild. For instance, \"Let's take Josh home from this party. He's been acting so bunked from all those drinks.\" If you want to emphasize being correct in a situation, which of these phrases would you use? Buzz kill Slammin' \"Booya\" is often used to emphasize being correct in a situation. For example, \"Booya! I told you the Eagles would win the Super Bowl!\" If I"}, {"title": "rpj-common-crawl-2022-05", "text": "your friends.\u2019 (p.74) = betrayed. \u2018Hit the shower, bro\u2019. You smell like a fucking grow house.\u2019 (p.173) I think \u2018grow house\u2019 means the kind of indoors greenhouse space used to grow marijuana. Uric ended up paying the Prince the full three hundred he wanted, which he ended up spending on chronic. (p.173) \u2018Among cannabis consumers, chronic can be used as slang for marijuana itself, but many users reserve the term for particularly potent strains of the plant\u2019 (Dictionary.com) nutsack = scrotum knuckle bump, aka fist bump \u2018I got a dope new truck\u2019 (p.214) \u2013 where \u2018dope\u2019 presumably means cool, neat, great. \u2018I can\u2019t take a chance that he hasn\u2019t suddenly stripped his gears.\u2019 (p.242) meaning lost it, gone mad, gone psycho. Two white-clad Brits stood in wait while the driver, whose name was Guppo, backed up the gaily painted Betancourt Pastries chariot. (p.247) \u2018Stood in wait\u2019? One day Nutter was approached in the chow line by an inmate who said a group of patriots on the outside was offering serious bank for the death of Diego Beltr\u00e1n. (p.254) = big money A buzz kill = something which destroys the mood, specially a romantic mood around sex (p.280) Studly = like a stud, as in \u2018a studly lover\u2019 (p.326) Reamed = getting reamed, being reamed = a strong telling-off (p.33) Rails = lines of cocaine (p.366) Toasted = stoned (p.380) I was surprised when Hiaasen has his sympathetic protagonist, Angie, in a spare evening, catch an episode of Fleabag, the award-winning British TV series. He also has"}, {"title": "rpj-c4", "text": "getting up early.\" beat: exhausted; very tired (adj.). \"This has been a long day. I'm beat!\" beat around the bush: evade an issue; avoid giving a direct answer. \"Quit beating around the bush! If you don't want to go with me, just tell me!\" beat one's brains out: try very hard to understand or do something. but I just can't solve it.\" Beats me: I have no idea. A: \"What time's the party?\" A: \"I'm really tired of working.\" B: \"Just be patient. The weekend will be here before long.\" bent out of shape: needlessly worried about something. \"I know you're worried about your job interview, but don't get bent out of shape. bite off more than one can chew: take responsibility for more than one can manage. bit off more than I could chew!\" blabbermouth: a very talkative person--especially one who says things that should be kept secret. \"Don't say anything to Bob unless you want the whole office to know. blow one's top: become extremely angry. A: \"Was your father upset when you came home at 3 AM?\" B: \"He was more than upset. He blew his top!\" boom box: portable cassette/CD player. \"Don't forget to bring your boom box to the picnic!\" the bottom line: the most essential information. the XYZ Company isn't for sale.\" Break a leg!: Good luck! \"I understand you have a job interview tomorrow. Break a leg!\" break someone's heart: make someone feel very disappointed/discouraged/sad. \"Joe broke his mother's heart when he dropped out of school.\" A: \"Can you"}, {"title": "rpj-common-crawl-2019-30", "text": "be used to agree with someone. For example, \"Hey, you all right with going to the mall later?\" \"Yeah, that's straight.\" A person who likes to be a show-off is called a\u2026? Po po A \"shooter\" is someone who likes to be a show-off. For instance, \"Ugh, look at that girl copying our outfits from last week. What a shooter.\" Which of these phrases is used to express happiness? \"Score\" is used to express happiness in a situation, as well as promoting one's accomplishments. For example, \"Score! I got into Harvard University!\" If someone was tricked or fooled, they have been\u2026? Flossin' Chillin' Aside from being a TV show in the early '2000s, \"punked\" was also used to describe someone who was fooled or tricked. For example, \"Dang, man, you just got punked big time!\" What is the meaning of the phrase \"quit icing my grill?\" Stop giving me the cold shoulder. Stop saying bad things about me. Stop running so late all the time. Stop damaging my meat grill. When someone insults another person in front of them, the other person may feel embarrassed and say, \"quit icing my grill.\" For example, \"Quit icing my grill in front of all these people, man.\" If something is \"off the heezy,\" what does that mean? It's another way of saying \"unique.\" It's another way of saying \"lame.\" It's another way of saying \"confused.\" It refers to an object's large size. If something is \"off the heezy,\" that means that it's different or unique. For example, \"I've never"}, {"title": "rpj-common-crawl-2020-05", "text": "authoritative position. You want to hang out with someone. You want someone to lower their voice. You want someone to stop bothering you. If someone is annoying or bothering you, you'll likely tell them to \"step off.\" For instance, \"Step off, Matt, you're being so annoying right now!\" If something is \"straight,\" that means that it's\u2026? Aside from being \"true,\" \"straight\" can also be used to agree with someone. For example, \"Hey, you all right with going to the mall later?\" \"Yeah, that's straight.\" A person who likes to be a show-off is called a\u2026? Po po A \"shooter\" is someone who likes to be a show-off. For instance, \"Ugh, look at that girl copying our outfits from last week. What a shooter.\" Which of these phrases is used to express happiness? Murk \"Score\" is used to express happiness in a situation, as well as promoting one's accomplishments. For example, \"Score! I got into Harvard University!\" If someone was tricked or fooled, they have been\u2026? Ganked Flossin' Chillin' Aside from being a TV show in the early '2000s, \"punked\" was also used to describe someone who was fooled or tricked. For example, \"Dang, man, you just got punked big time!\" What is the meaning of the phrase \"quit icing my grill?\" Stop giving me the cold shoulder. Stop saying bad things about me. Stop running so late all the time. Stop damaging my meat grill. When someone insults another person in front of them, the other person may feel embarrassed and say, \"quit icing my grill.\""}, {"title": "rpj-common-crawl-2019-30", "text": "is to tell them bad news in a very loving or caring way, so that they will not be too hurt.How about a bathroom? I may have shit in my pants. A very crude way of saying to have defecated in your own clothes, and an expression that is often seen when people are extremely nervous.It makes Tony real. It gives him three dimensions. A \u201cthree dimensional\u201d person appears to be like a real person, even though they may be a character in a film, or perhaps a distant celebrity.If you book Tony, do not expect to get Andy. \u2014 I\u2019ll take my chances, all right? \u201cTo take one\u2019s chances\u2019 is to take a big risk for a possible big payoff.You make one more sound, and I\u2019ll put your fricking head in the soup. This is Tony\u2019s way of telling people to shut up. Remember that \u201cfricking\u201d is a less vulgar way of saying \u201cfucking,\u201d but it\u2019s also rare.Thank you. I do all my own stunts. A \u201cstunt\u201d is a dangerous act of bodily skill, such as jumping off a building, that is often filmed for a movie (A \u201cstunt man\u201d does them for a living, and is an important part of the movie industry).Kaufman is crapping on my act. \u201cTo crap\u201d is a vulgar verb meaning to shit or defecate, or here, to ruin.What do you have here? A big elaborate joke that is only funny to two people in the universe. \u201cElaborate\u201d means full of detail, with many parts, or complicated. What is the"}, {"title": "rpj-common-crawl-2021-04", "text": "1920s you might also call him a \"lollygagger\". If you called someone a \"fire extinguisher\" what would you mean? Someone who is hot and sexy Someone who just can't get warm Someone who is a killjoy Someone who loves to explode fireworks A chaperone is an example of a \"fire extinguisher\". It is someone who takes the potential fun out of a situation. What part of your body is your \"gams?\" You can also call them \"pins\" or \"stilts,\" but \"gams\" means legs, usually of the female persuasion that are good looking. If you \"have to go see a man about a dog\" what are you really doing? Going to walk the dog. Going to buy some whiskey. Going to hitch a ride to the store. Going home. No dog is involved with this one. If you have to see a man about a dog, you are going to go buy whiskey. \"To know one's onions.\" What does that mean? To know how to cook. To know the best restaurants. To know your place in the pecking order. To know what's someone's talking about. Yes, you know your onions if you know what someone's talking about. You are up on the conversation. If you've been on a \"toot\"? What have you been doing? Riding a train Driving a long distance You are drunk, probably from having been on a toot, or a drinking binge. Other jargon includes \"splifficated,\" \"fried\", and \"blotto\". What does a \"soup job\" mean? A job that would pay you in meals A"}, {"title": "rpj-common-crawl-2019-30", "text": "means to do what? Help them Annoy them Leave them This '60s slang is still commonly used. Siblings bug each other all the time. What does it mean to \"moon\" someone? Show them your butt. Knock them out. Work for them. Cover their hit songs. In the '60s, rebellious youths would surprise people by dropping their pants and showing them their bare behinds. Back in the day, \"bread\" was slang for _________. Bread was slang for money. To this day, money is still sometimes referred to as dough. If something is \"solid,\" it's: A disaster A waste of time Something that's solid is OK or all right. This can apply to people, situations and objects. \"Threads\" referred to _______. Back in the day, threads meant clothes. It is still used, especially by clothing brands, to this day. An \"ankle biter\" is a: Small child Babies and small children are still occasionally referred to as ankle biters to this day. A man described as a \"chrome dome\" is: Unattractive This was a funny way of referring to bald men. It did not outlast the decade. Someone who is \"on the make\" is looking for a new ___________. Romantic or sexual partner This described someone who had recently been broken up with and was looking intently for a new mate. It could refer to both romantic and sexual intentions. If someone calls you a \"bozo,\" what are they calling you? This is a very old school insult. It's the same as calling someone an idiot. People \"scarf\" ____________."}, {"title": "rpj-common-crawl-2022-05", "text": "to use it: We planned a surprise party for Hannah, but I let the cat out of the bag when I left the invitations on the table. 3. Bite the bullet What it means: to perform a painful task or endure an unpleasant situation. Where it came from: Cleaning the bathroom can be a chore. But not as horrible as the experiences of patients in the 1800s who had to have surgery without anaesthesia. The patients would literally bite on a bullet to cope with the pain. Ouch! Smelly toilets never sounded better. How to use it: Just bite the bullet and clean the toilet! 4. Pull someone\u2019s leg What it means: to tease someone, usually by lying in a joking manner. Where it came from: There are two popular theories for the origin of this phrase. The first one refers to how thieves robbed their victims by tripping their legs. And the second refers to people who were hired to hang on the legs of gallows victims \u2013 speeding up their fate. So yes, legs were harmed in the making of this idiom. But luckily, the only thing bruised with this idiom today is one\u2019s ego. How to use it: Vikki cried when I said that I ate the last croissant\u2026 but I was only pulling her leg. 5. Barking up the wrong tree What it means: to pursue a misguided course of action. Where it came from: While this idiom doesn\u2019t involve actual barking today, it originated from hunting in 1800s America. Prey would"}, {"title": "rpj-common-crawl-2022-05", "text": "'Side hustle' and five other phrases that need to f**k off immediately DO you say any of these? Then everyone hates you. These popular but incredibly annoying phrases, like you, just need to f**k off forever: People might be working different in the pandemic 20s, but \u2018hustle\u2019 is a pathetic attempt to sound cool. You\u2019re not illegally importing truckloads of cigarettes from Europe, you\u2019re actually selling \u2018funky\u2019 facemasks made from old knickers that bring in the huge sum of \u00a33 a week. A social media favourite that doesn\u2019t really mean anything, so can be used for any old crap. Heard We Belong Together on the radio for the first time this year? All the feels! Your sister posted a photo of your nephew dressed as a slapdash Hagrid on World Book Day? All the feels! Frankly it would be better to just say \u201cI am a wanker\u201d. This expression, which makes someone sound like a very dull person trying to be \u2018wacky\u2019, makes you long for a time when people were strong and silent. Or language hadn\u2019t been invented. Not long ago, the news media decided to start calling everything a \u2018narrative\u2019. Anything and everything, like Boris going to Peppa Pig World, was \u2018part of the ongoing narrative\u2019. No, it was just an agonisingly embarrassing moment none of us will ever be able to forget, particularly when reminded by an article like this. The optics The sexy new cousin of \u2018the narrative\u2019 is \u2018the optics\u2019. It\u2019s really just a way of saying something looks bad, so"}, {"title": "rpj-common-crawl-2021-04", "text": "too hot out. Someone just got brutally insulted. They're hungry. Not a lot of '70s slang made it out of that decade to the present, but the word \"burn\" is still pretty common. A good burn is what you call a particularly brutal insult leveled at someone else, and the burn is in recognition of that insult. Public Domain via WikiCommons You've just been assured that everything is \"copacetic.\" What does that mean? Everything is good. Everything is falling apart. Everything has changed. No one has any idea what's going on. The word \"copacetic\" is a weird one because it sounds like one of those $10 words that's clearly smart and important in some way. It's not. It just means everything is fine, and no one is even really sure where the word came from originally. Paramount Pictures / Allan Carr Productions / Robert Stigwood Organization / Polydor Records It was good to be a cool cat, but what was the opposite of a cool cat? Dunderhead Jive turkey A \"jive turkey\" was not a good thing to be, by any means. This term generally meant someone was disingenuous and not cool. Maybe you were putting on a front, trying to be cool and trying to fit in where you didn't belong ... that could make you a jive turkey. If a person just explains what's going on, then asks if you can \"dig it,\" what do they want to know? Do you understand? Does this make you happy? Can you explain this further? If someone"}, {"title": "rpj-common-crawl-2020-05", "text": "need for bloodshed. This saying comes from the ol\u2019 Wild West, a time and place where life was much more dangerous than today. If you were sitting next to the driver you would be expected to wield a shotgun so as to defend the stagecoach (the transport of the day) from bandits and looters. More pressure than merely map reading! \u201cI\u2019m just here for the free ride\u201d This is a phrase often used to describe someone who is mentally unhinged. It was also the name of a big hit for Pop-Punk trio Green Day in 1994. This is supposedly a term from World War I, used to describe someone who has lost all their limbs. The first recorded use of the term in official use was by the US government in denial of this practice. In 1919 The US command on public information issued this statement: \u201cThe Surgeon General of the Army \u2026 denies \u2026 that there is any foundation for the stories that have been circulated \u2026 of the existence of \u2018basket cases\u2019 in our hospitals.\u201d according to all-that-is-interesting.com \u201cYeah, none at all\u201d This means \u2018wait a moment\u2019, and is often used to calm someone who is showing overt keenness or exuberance. It is believed to come from around 800BC. A line in book 23 of Homer\u2019s Iliad is commonly translated as \u201cAntilochus \u2013 you drive like a maniac! Hold your horses!\u201d That is, apart from the original translation in 1598 that has it as \u201ccontain thy horses\u201d. I\u2019m not sure why I prefer if"}, {"title": "rpj-c4", "text": "Someone who burns the candle at both ends lives life at a hectic pace doing things which likely to affect their health badly. Most of the children burn the midnight oil a few days before the examinations. If you burn your fingers, you suffer a loss or something unpleasant as the result of something you did making you less likely to do it again. Reservations are a burning question before our country. This marriage hall will be bursting at the seams when all the guests arrive. The politicians bury their hatchets when the elections are round the corner. Do not bury your head in the sand. I know that you have not succeeded in your attempts. A busman\u2019s holiday is when you spend your free time doing the same sort of work as you do in your job. When someone says that they are not going to bust their chops, it means they are not going to work that hard or make much effort."}, {"title": "rpj-common-crawl-2020-05", "text": "cool. For example, \"Your hair is so shibby.\" If I say \"shut up\" as a response, what do I actually mean? I believe everything you're saying. I need to leave. I can't hear you. I'm reacting in disbelief. To react to something in disbelief, or in shock, one might say \"shut up\" as a response. For example, \"I got fired from work today.\" \"Shut up!\" If I say \"That shirt is so '70s,\" what does that mean? Can I borrow your shirt? That shirt looks well-made. That shirt is out-of-date. That shirt looks awesome. If something is out-of-date, or has gone out of style, one might use the word \"so\" in conjunction with a year. For example, \"Her hair is so 60's.\" Which of the following is synonymous with \"airhead?\" Spangler If someone is a space cadet, that means that they are an \"airhead,\" or not a very intelligent person. For example, \"Tiffany is such a space cadet with how she talks.\" To \"sport\" something is to...? \"Stud\" it \"Step\" it \"Spazz\" it \"Wear\" it To sport something is to wear something. For instance, \"Look at that guy and how he's sporting that new jacket!\" Which of these phrases means to \"back off?\" Wig-out 'Za and brew To \"step off\" means to \"back off\" from someone or something. For example, \"Step off man, you're being a jerk.\" If someone is a \"wannabe,\" they are a ...? Tinkerbilly \"Tinkerbilly\" is actually an '80s British word for \"wannabe.\" For example, \"That girl follows us everywhere, what a tinkerbilly!\""}, {"title": "rpj-c4", "text": "a hug, your face may well be buried against their shoulder. I\u2019ll put salt on your tail. An expression used when someone has done something wrong. I had no idea what this was about until I looked it up in the Concise Oxford Dictionary. Apparently children wanting to catch a bird were advised to put salt on its tail. Dogs sometimes chase their own tails. It doesn\u2019t get them anywhere. If someone feels that they are rushing around making very little progress, here is a short way of saying so. Bonds between family members are the strongest. is a prediction about someone who lives recklessly, perhaps. These are his bones (not dice, as in the final saying in this post). is often said to a child who has fallen over. My understanding of this is \u201cDon\u2019t disagree with what I am going to say\u201d. However the Dictionary of Phrase and Fable explains that bones here are dice. The meaning is not to make difficulty or scruple, thus favouring the dice. This was predicted in Psalm 22 verse 18 (NIV) They divide my garments among them and cast lots for my clothing."}, {"title": "rpj-common-crawl-2022-05", "text": "a Yogi Berraism), the second is indeed a mashup of two books and therefore is a malaphor. Dave Got one, hot off the presses: \u201cboiled to a head.\u201d Here\u2019s the full context: \u201cSunday\u2019s Bills-Jaguars game started off tense when Jalen Ramsey took time from his busy day to remind Buffalo\u2019s players they were trash. That conflict boiled to a head in the third quarter when a brawl erupted on the turf at New Era Field.\u201d The mashup is obvious\u2013boiled over and came to a head. Here\u2019s the citation: https://www.sbnation.com/2018/11/25/18111422/jaguars-bills-fight-leonard-fournette-shaq-lawson. Also possibly, \u201ccame to a boil.\u201d Cheers. Timothy Kendall says: My mother used the following two: \u201cDon\u2019t chew with your mouth full\u201d, and \u201cDon\u2019t talk with your mouth open.\u201d The person was probably joking, but today I heard someone say, Beat two deal bulls with one horn This is a triple combination: Kill two birds with one stone Beat a dead horse Take the bull by the horns Actually, that should be: Beat two dead bulls with one horn sounds a little too convoluted to be unintentional. Mal says: Back in the late 80s, when describing a poor choice of paint colour on a porch, an old friend of mine observed, \u201cIt stuck out like a sore eye!\u201d; a phrase that has given me decades of pleasure. Cruuvo says: I was talking to some of my friends about a parent video game company, Activision, losing one of its developer teams, Bungie, and their intellectual property \u201cDestiny\u201d and how now Bungie can develop on Destiny how they see"}, {"title": "rpj-common-crawl-2020-05", "text": "Luciano, chose that term. We both live right next door to hell: https://www.youtube.com/watch?v=bZtJhYl8_ks I think it\u2019s a term for murder used by members of a nefarious club that doesn\u2019t really exist. David Meyer-Lindenberg Who the hell uses \u201cwhacked\u201d as a euphemism for icing a guy? Who the hell uses \u201cicing a guy\u201d for having a dude rubbed out? 4 November 2016 at 12:15 pm - Reply Who the hell uses \u201crubbed out\u201d as a euphemism for shutting someone up? 4 November 2016 at 7:55 pm - Who uses \u201cshutting someone up\u201d as a euphemism for sending a guy to sleep with the fishes? 5 November 2016 at 10:49 pm - I dunno, but I\u2019ve heard \u2018rubbed one out\u2019 used as a euphemism for \u2018whacked.\u2019 David Meyer Lindenberg 5 November 2016 at 11:42 am - Reply What kind of dope uses \u201csleep with the fishes\u201d as a euphemism for paying someone a visit? In Beckles, SCOTUS Perpetuates the Advisory Guidelines Fantasy Meet the New Fault Lines! (Update: Comments H ... by Scott Greenfield - Mar 9, 2017 by Matt Brown - Mar 8, 2017 by Richard Kopf - Mar 8, 2017 In Beckles, SCOTUS Perpetuates the Advisory G ... by Josh Kendrick - Mar 8, 2017 Local Governments Bill Parents for Kids\u2019 ... by Mario Machado - Mar 6, 2017 Coming to a PD Near You: Violent \u201cGypsy ... Chicago PD\u2019s Bizarro World: Cop with 90 Com ... by Mario Machado - Feb 27, 2017 Brooklyn Jail \u201cAlarms\u201d and \u201c ... Disclaimer: Advertising content does not reflect"}, {"title": "rpj-common-crawl-2021-04", "text": "also insulted badly. If a friend tells you everything is copacetic, what do they mean? They're totally confused. Things are really bad. Things are fine. They're sick. Copacetic is a strange word and apparently, no one even knows where it came from. There are some theories, but they're pretty diverse and range from Chinook to Hebrew to the African-American community of the early 1900s. Where it came from, it just means things are going the way they should. What kind of beans would you mention if you were really in agreement with someone? Best beans The term \"cool beans\" existed well into the '80s but it was popularized in the '70s as a way to express that not only did you agree with someone but you also had a pretty positive feeling about what they were saying. If something was cool but also a little bit different than the usual, what might you call it? Lots of things were cool but if they were funky, they were a bit different. Funk music was popularized in the '70s with songs like \"Play That Funky Music.\" That song still pops up today and is still pretty funky. Your friend just said, \"Slap me some skin.\" What do they want? A handshake High-five If you're slapping some skin, you are giving someone a high-five. That makes sense since it's an extremely literal definition of what a high-five actually is. If someone got described as a \"burn out,\" what would that mean? They're a chef. They're a drag racer. They're"}, {"title": "rpj-common-crawl-2019-30", "text": "P.E. Ah, school. It starts every fall\u2014and with a few breaks\u2014it ends every spring. For some, the only good part about school was the end of the year in the spring that let one look forward to those few glorious moments of summer. For others it was the learning, the friends, the classes and the teachers. What ones favorite part of school was says a lot about what kind of intelligence they have. What was the best part of school? What does it mean when someone says, \u201croast me\u201d? Cook me like meat Give me a spray tan Compliment me Insult me There has always been slang language, but now a days it seems there are an increasing number off odd catch phrases and wacky words with double meanings. One of these is the expression \u201croast me\u201d or \u201croasting\u201d which is used on the Internet\u2014and in person\u2014to describe something someone does. This can be confusing for a lot of people who do not know what the expression means in a colloquial sense. What does it mean when someone says, \u201croast me\u201d? No matter what, a broken shoe strap is a huge annoyance\u2014that is better off avoided\u2014but when the inevitable happens, what is the best way to deal with the situation? Buy a new pair of shoes Fix the strap with a piece of rope you found Call a friend to bring a backup pair Get a taxi home Uh, oh! When walking down the street, a strap on that worn out pair of sandals breaks. Not"}, {"title": "rpj-common-crawl-2022-05", "text": "o what you was sayin'\"Funny how you don't realise that not all english is the same english. I'm shagged out=tired (or just shagged) Straing the greens = urinating ex: \"I'm off to strain the greens\" Having a slash= ditto Talking to Hughie and Ruth= throwing up Cats, Rorty does mean happy but has tipsy, bawdy connotations - a great word. And the word crankle surves in crank which is a metal bar that has a corner or bend in it. And talking of bent, Steve, our term for \"queer as a nine bob note\" was \"bent as a box of top hats\" One button short of an overcoat and Irn Bru was always said to \"Put lead in your pencil\"so me granda always told me. Ah!, talking of GrandParents, My grandma used to say \"He wouldn't know his dick from his thumb if it didn't have a nail on it\" and if someone was scruffy she would say \"He looks like a bundle of arseholes tied up nasty\" But my Mother on the other hand would say, of the samy guy \"He looks like a sack of shit tied up with string\" my great aunt would say a bag of taters tied up ugly. But she was from the refined part of Manchester. If such a place exists. From: MMario I suspect it's a VERY local idiom, but \"watching for subs (submarines)\" was the local term for necking in my home town on Cape Cod. (Still is, according to relatives) The term for \"soft Drinks\" was"}, {"title": "rpj-common-crawl-2019-30", "text": "byy people with stronger accents). I don\u2019t use this phrase myself, but it basically means \u201cAny news, Whats up?\u201d its a \u201cculchie\u201d (country folk) phrase. Dogs bollax -according to my uncle- is actually GOOD. I always thought it was bad (since when I say \u201cOh I\u2019m bollaxed\u201d or knackered, I am saying I\u2019m really really tired, or if I were to say \u201cThe engine in my car is bollaxed\u201d, it means its broken. When my uncle says \u201cThese spuds are the dogs bollax!\u201d he actually mens they are really great. He can be a bit of a trixter though so perhaps dogs bollax means they are really good but he is pranking me. In high school -not sure if people still say it since I graduated a few years ago- when the kids were up to mischief (smoking around the corner etc) what they used to do was get someone to watch around the corner for teachers (this was called \u201ckeep sketch\u201d, a person who was watching the corner was keeping sketch), whenever a teacher came, they would say \u201cSKETCH!\u201d and basically it warned everyone to put out their fags (Irish people called cigarettes/smokes fags, my mom got in trouble in chicago once for asking for a pack of fags because she didn\u2019t know the term wasn\u2019t used in America). When calling someone gay as an insult/slur -the way fag is used in america- peope here would say \u201cfaggot\u201d instead, but with the accent its more like \u201cfaggit\u201d. They also say cunt and wanker a lot"}, {"title": "rpj-common-crawl-2021-04", "text": "capital, and limited opportunities for supporting themselves beyond sex work. Criticizing her for not turning away a potential paying client because he\u2019s married just seems to be heaping a whole lot of responsibility onto the person with the least power in the situation. It may have been the least unsavory of all the unsavory options she had. OP#4 Originally* October 20, 2017 at 12:20 pm It means someone who talks a lot \u201cGobby\u201d and they do it an awful lot \u201con a stick\u201d. It\u2019s a good term for someone who talks endlessly without being rude about them. There\u2019s another phrase, \u201cyou just want the moon on a stick\u201d which has a similar meaning \u2013 that not only do you want the moon, but you want it on a stick as well. Elizabeth West* October 20, 2017 at 1:16 pm I\u2019ve had that second one used on me, by a British person who was taking the piss. I replied back in a rather cheeky manner that of course I did and we had a good laugh. :) Gen* October 20, 2017 at 1:36 pm I\u2019m confused about how calling someone gobby isn\u2019t being rude about them? I mean it\u2019s not a top tier swear word and some people will own in like others don\u2019t mind being called a b-word but it\u2019s definitely an insult. Falling Diphthong* October 20, 2017 at 1:55 pm I\u2019m guessing it\u2019s a social subgroup thing, as to whether it lands as blabbermouth or chatterbox. Blue Anne* October 20, 2017 at 1:55 pm I"}, {"title": "rpj-common-crawl-2020-05", "text": "York strikers, a large inflatable rat, is an old tradition among unions. American union members took to calling the act of picketing \"hitting the bricks,\" due to the walking in circles holding signs. \"Zonked\" is an interesting state of being. Can you decode this American slang? Completely a mess Outside what is socially acceptable While \"zonked\" can refer to chemically-induced exhaustion, its common use is to refer to the state of natural exhaustion as in \"I can't watch another episode of this. I'm zonked.\" \"Bushed\" and \"blah\" can mean the same thing. Henrik Sorensen / DigitalVision / Getty Images What do you think \"snow job\" means? Theft of money Being made over to being very cool indeed Going out to have fun on a Saturday night Absurd bragging \"Snow job,\" meaning over the top bragging, could be likened to another slang expression, meaning telling an obvious lie: \"laying it on thick.\" Other expressions include \"jive\" and \"fish story.\" joshblake / E+ / Getty Images This sounds awful, but what do you think it means to \"top yourself\"? Do better next time Get a haircut Put an end to it all Buy a new hat In America, \"topping oneself\" means the act of being better at a task on a successive try. When Americans encourage their friends to \"top themselves,\" it's actually friendly encouragement! Hill Street Studios / DigitalVision / Getty Images In America, many people go about \"riding shotgun.\" What does it mean? Being reckless Controlling something difficult Keeping one's eye on goals Sitting in the"}, {"title": "rpj-common-crawl-2022-05", "text": "Either way, it means someone doing something fast. In '70s slang, if something is\"bangin'\u200b,\" what is it? \"Bangin' has a couple of meanings and both of them are good. It could refer to someone's body, saying that it's attractive, or it could also mean that something, like a party, is really exciting. If you tried to do something \"to the max,\" how are you doing it? The best you possibly can. Pretty well Not that great In an awful way Some of these phrases are more confusing than others. Doing something to \"the max\" just means that you're giving it your maximum effort. The slang term is just a cooler version of \"the best.\" In the '70s people often said \"psych.\" What were they saying? They were being honest. They were spacing out. They were messing with someone. They were asking for an opinion. If you are having some mental issues, you might go to a psychologist, which is the point of this slang term. If someone says \"psych\" to you, they're getting into your mind, or at least trying to. Would you be happy if someone called you an \"airhead\"? No, they're saying I am dumb. No, they're saying I am a daydreamer. Yes, they're saying I am smart. Yes, they're saying I am imaginative. If someone says you're an \"airhead,\" what is being implied is that your head is full of air. As you might imagine, this wasn't considered a compliment when it came to slang in the '70s. If someone is \"ace\" at"}, {"title": "rpj-common-crawl-2021-04", "text": "unlike half of the kapuka that is on offer nowadays.No chicks in skimpy outfits, borrowed cars just the singers and their pals having an great ole time.That's what good videos are made of.Now will we are on that topic, how many of you out there have chongad viazi as a result of not having enough money to cover a bill? ps:Youtube may be down for maintenance so the video may not show! Does anyone remember the slang term \"crushed off?\" I think there are few slang terms that had as many definitions as this one.These were some of the meanings... 1.To beat someone up - \"Ebu keep quiet before I crush you off!\" 2.To catch strokes or shag - \"Chief!After tuning that mama I crushed her off in the digz!\" 3.To tackle in a game of rugby -\"My guy did you see him after the full back crushed him off when he thought he would make the try?\" 4.To eat ravenously - \"We were so hungry that we crushed off everything that he had in his kitchen!\" 5.To ignore - \"I tried to convince my boss but he just looked at me and crushed me off!\" I don't know if any of you ever used this term or used it in all these ways but I heard it used in all these ways.I guess some people adapted it to the circumstance at hand but it sounds so good that I'm going to start using it again ie...There are some bloggers that I wouldnt mind crushing off!"}, {"title": "rpj-common-crawl-2023-06", "text": "administration where important decisions are made. \"The matter is the subject of much discussion in the corridors of power at the present time.\" crack the whip If you crack the whip, you use your authority to make someone obey you or work more efficiently, usually by threatening them. \"Every so often I'll crack the whip to make sure we meet the deadline.\" dance to someone's tune If you dance to someone's tune, you do whatever that person tells you to do. \"He is the company's major shareholder so the management has to dance to his tune.\" draw a line in the sand If you draw a line in the sand, you establish a limit beyond which a certain situation or activity will not be accepted. \"That's it! We're going to draw a line in the sand and make this our final proposal.\" force someone's hand If you force someone's hand, you make them do something unwillingly or sooner than planned. \"The interviewer forced Brad's hand and made him reveal his relocation plans.\" friends in high places If you know important or influential people in business or government, you have friends in high places. \"He wouldn't have succeeded without help from friends in high places.\" get/have by the short hairs (or: by the short and curlies) If you get or have someone by the short hairs, you put them in a difficult situation from which they cannot escape, so you have complete control over them. \"They are in no position to refuse; we've got them by the"}, {"title": "rpj-common-crawl-2023-06", "text": "was always getting into hot water, and if there was a wrong way of doing a thing, was sure to hit upon it.\u2014 What does take by storm mean? Definition of take (something) by storm 1 : to quickly become very successful or popular in (a particular place) or among (a particular group) The writer has taken the literary world by storm. The new fashion has taken London by storm. Do not throw in the towel meaning? To quit in defeat. The phrase comes from boxing, in which a fighter indicates surrender by throwing a towel into the ring: \u201cAfter losing the election, he threw in the towel on his political career.\u201d What does acting the goat mean? to behave in a silly way [British] to behave in a silly way. What does I hit the nail on the head mean? something that is exactly right DEFINITION: It means \u201cto do or say something that is exactly right.\u201d You can use this phrase when someone finds the exact answer of a problem or a question. What is the meaning of put my foot in it? Definition of put one\u2019s foot in it : to say something that causes someone to be embarrassed, upset, or hurt especially when the speaker did not expect that reaction I really put my foot in it when I asked her about her job. I didn\u2019t know she had just been fired. What is the meaning of the idiom smell a rat? smell a rat. Suspect something is wrong, especially a betrayal"}, {"title": "rpj-common-crawl-2019-30", "text": "I have come across is \u201cStory horse\u201d (pronounce \u201cstah-ree harse\u201d where I live byy people with stronger accents). I don\u2019t use this phrase myself, but it basically means \u201cAny news, Whats up?\u201d its a \u201cculchie\u201d (country folk) phrase. Dogs bollax -according to my uncle- is actually GOOD. I always thought it was bad (since when I say \u201cOh I\u2019m bollaxed\u201d or knackered, I am saying I\u2019m really really tired, or if I were to say \u201cThe engine in my car is bollaxed\u201d, it means its broken. When my uncle says \u201cThese spuds are the dogs bollax!\u201d he actually mens they are really great. He can be a bit of a trixter though so perhaps dogs bollax means they are really good but he is pranking me. In high school -not sure if people still say it since I graduated a few years ago- when the kids were up to mischief (smoking around the corner etc) what they used to do was get someone to watch around the corner for teachers (this was called \u201ckeep sketch\u201d, a person who was watching the corner was keeping sketch), whenever a teacher came, they would say \u201cSKETCH!\u201d and basically it warned everyone to put out their fags (Irish people called cigarettes/smokes fags, my mom got in trouble in chicago once for asking for a pack of fags because she didn\u2019t know the term wasn\u2019t used in America). When calling someone gay as an insult/slur -the way fag is used in america- peope here would say \u201cfaggot\u201d instead, but with the"}, {"title": "rpj-common-crawl-2020-05", "text": "party got a little out of hand and I had to go outside to get some work done. I couldn't think straight with all that yelling and running around. \" Keep your chin up \" Remain positive in a tough situation. Sorry to hear that you were made redundant on the day your buried your mother. Keep your chin up mate. Although derived in the USA this idiom is more commonly heard now in Britain. More idioms about: effort the_human_body proverbial america ( How did the idiom \"Keep your chin up \" originate? ) \" Like a chicken with its head cut off \" In a frenzied manner. He was shouting and swearing because they had lost the contract - he was running around like a chicken with its head cut off. Worldwide, but not particularly common. More idioms about: animals excess hyperbole madness america ( How did the idiom \"Like a chicken with its head cut off \" originate? ) \" Lose your head \" Overcome by emotion and out of control. When the traffic warden had his car towed, Jack lost his head and hit him. Britain, late 18th century. More idioms about: body excess \" Off the hook \" No longer having to deal with something. I know it's your turn to organise the Christmas party but you're off the hook, Judy volunteered to take over. Britain, 19th century - in the writings of Anthony Trollope \" That Friday feeling \" Anticipation of the weekend after a hard working week. I'm ready for"}, {"title": "rpj-common-crawl-2022-05", "text": "shower, bro\u2019. You smell like a fucking grow house.\u2019 (p.173) I think \u2018grow house\u2019 means the kind of indoors greenhouse space used to grow marijuana. Uric ended up paying the Prince the full three hundred he wanted, which he ended up spending on chronic. (p.173) \u2018Among cannabis consumers, chronic can be used as slang for marijuana itself, but many users reserve the term for particularly potent strains of the plant\u2019 (Dictionary.com) nutsack = scrotum knuckle bump, aka fist bump \u2018I got a dope new truck\u2019 (p.214) \u2013 where \u2018dope\u2019 presumably means cool, neat, great. \u2018I can\u2019t take a chance that he hasn\u2019t suddenly stripped his gears.\u2019 (p.242) meaning lost it, gone mad, gone psycho. Two white-clad Brits stood in wait while the driver, whose name was Guppo, backed up the gaily painted Betancourt Pastries chariot. (p.247) \u2018Stood in wait\u2019? One day Nutter was approached in the chow line by an inmate who said a group of patriots on the outside was offering serious bank for the death of Diego Beltr\u00e1n. (p.254) = big money A buzz kill = something which destroys the mood, specially a romantic mood around sex (p.280) Studly = like a stud, as in \u2018a studly lover\u2019 (p.326) Reamed = getting reamed, being reamed = a strong telling-off (p.33) Rails = lines of cocaine (p.366) Toasted = stoned (p.380) I was surprised when Hiaasen has his sympathetic protagonist, Angie, in a spare evening, catch an episode of Fleabag, the award-winning British TV series. He also has a character, the one-handed psycho Pruitt, reference"}, {"title": "rpj-common-crawl-2021-04", "text": "the important details. You just got bad news and it's bringing you down. How would you describe that news? Copacetic A bummer Deadset Something is a bummer because it bums you out. And why does something bum you out? Because it's just not cool at all, man! You might toss out this term to describe someone who's not the smartest. If someone's an airhead, it's not a good thing at all. Basically you're saying their brain has been replaced by an empty space. You could say your friend is just a cool person, or you could say they're a cool what? Cat was a pretty blanket term for people. You can use it in all kinds of situations. \"This cat just sold me a far out burrito!\" or \"These cats have HBO!\" If someone is a little klutzy, they might get called one of these. Rube \"Don't be a spaz\" is the kind of thing you might say to someone who's freaking out, or keeps messing things up. You didn't want to be a spaz because it meant you were uncool and not in control. This was a term for a police officer, particularly on the highway. Popularized by the movie \"Smokey and the Bandit,\" the name smokey was a reference to the hat worn by highway patrol officers that looked a lot like the one worn by Smokey the Bear. Uh oh! You were skipping school and then ran into the principal. He hasn't seen you yet so you should run. What do you tell"}, {"title": "rpj-common-crawl-2020-05", "text": "You've been BIPPED! Thread: You've been BIPPED! Rhubarb_Runner At one time I was an active trader among the collection of internet blogger community (until eventually just focusing on The Bench for my trades), and one term that is well known there -- to be \"Bipped\" -- is approaching its 10 year anniversary. It's one of the most feared (and most hilarious) occurrences that a trader could experience: http://thorzul.blogspot.com/2010/01/...p-someone.html It's been several years, but I too was a victim of an anonymous \"Bipper\" once: https://mmmrhubarb.wordpress.com/201.../merry-bipmas/ May all your trades be Bip-free (except, you know, for the ones you actually wanted) for trade: https://mmmrhubarb.wordpress.com/bas...ds/trade-bait/ wants: https://mmmrhubarb.wordpress.com/bas...ards/#wantlist Kevin McReynolds We played a game in baseball camp when I was a kid where someone would throw out a set of baseball initials, and the group would have to guess who they were referring to. For example, if you said \"CRJ,\" you'd be looking for \"Cal Ripken, Jr.\" One day, a kid said \"BTSR,\" and we were stumped for a long time... and when we gave up, he said he was looking for \"Bip 'The Snake' Roberts.\" (After the wrestler of the same coinage, of course.) I will *always* think of \"The Snake\" as his nickname, even though it totally wasn't. LOL! Collecting: Kevin McReynolds, Keith Hernandez, Pete Harnisch, and Mets autographs Mets fans! Join the discussion at the Crane Pool Forum. tradelist: Google Doc http://bit.ly/wOIKng needlist: Google Doc http://bit.ly/wVFOp3 New Tradelist Link (still building): http://bit.ly/2HemWbq Jake \"the snake\" Roberts! Best regards, David mrmopar Washington State - The Pacific NW I"}, {"title": "rpj-c4", "text": "Read more about it here. When people use the phrase they are saying the person is being boastful and self-promoting. What it means in the figurative is that something seems suspicious or shady. It means what it did in Isaiah, a drop is a very small proportion of the whole. Just like in the fable, The Boy Who Cried Wolf by Aesop, the meaning of the phrase means someone who lies but when they choose to tell the truth nobody will believe them due to their previous lies. I found two different sources about the origin of this phrase. One source said it originated with tobacco, the other source says it was due to taking a bite that was entirely too big for one's mouth. Regardless of the origin of the phrase being due to food or tobacco the meaning today is that someone has agreed to do something more than they can handle. This American expression came into being in the Great Depression. Residence on Skid Row evokes imagery of someone who was slipping down in society - 'on the skids'. But the term wasn't just figurative, read all about it here. This phrase refers to someone trying to escape something something by climbing up a wall. It is not known when it was first used. Seriously, no amount of Googling yielded any results. The phrase today means to be annoyed, irritated, be driven to irrationality, etc."}, {"title": "rpj-common-crawl-2019-30", "text": "can hear this term being dropped casually \u2013 and often \u2013 by Marty McFly in the 1980s' trilogy, \u201cBack to the Future.\u201d If a party \u201cblew the doors off,\u201d was it successful? Could have been, but it was stopped Technically, yes, but it needed more booze When you \u201cblow the doors off\u201d something, it means that it was so good, it was like an explosion happened in a small room. It\u2019s a phrase used for emphasis to connote success. If you\u2019re \u201cwatching the submarine race,\u201d what are you doing? Making out and more Getting drunk If you\u2019re \u201cwatching the submarine race,\u201d you\u2019re not actually watching anything. However, you\u2019re probably making out and more, usually by the beach! Is a \u201cfive-finger discount\u201d a real deal? It's more like haggling. It's more expensive, actually. Don\u2019t ever do a \u201cfive finger discount\u201d because it\u2019s a flowery hippie phrase that refers to shoplifting! It eventually came to mean anything stolen in any way, so don't do it unless you want the fuzz on your trail. Tell Us Your Opinions About These Mythological Figures and We'll Guess Which Goddess You Are What Would Your Job Have Been in Medieval Europe? How Well Do You Remember \u201cForrest Gump?\u201d Do You Actually Belong in the Elizabethan Era? How Well Do You Remember These Events From The '70s? Try Your Best to Pass This Common Phrases Quiz Education 7 Minute Quiz 7 Min Can You Name These Male \u201960s Bands and Artists From an Image? Can We Guess Your Age Based on How Much"}, {"title": "rpj-common-crawl-2022-05", "text": "He's all talk, no trousers.\" who wears the trousers? = who has the power in a relationship: \"What do you mean, she won't let you come out with us? Who wears the trousers in your house?\" pull your socks up = work harder: \"You'll have to pull your socks up if you want a promotion next year.\" it will blow your socks off = very hot food: \"This is a fantastic stir-fry \u2013 it's hot enough to blow your socks off!\" hot under the collar = upset or angry about something: \"He gets really hot under the collar about cruelty to animals \u2013 he can't stand seeing animals suffer.\" it's pants (UK slang) \u2013 rubbish: \"What did you think of the film?\" \"Pants!\" get something under your belt \u2013 achieve something: \"I'm really glad I passed the driving test. Now I've got that under my belt, I can relax for a little while.\" belt up = keep quiet: \"What's all that noise? Just belt up, would you? I can't hear myself think.\" below the belt = unfair: \"You know he's really sensitive about the accident. I think it was a bit below the belt to mention it.\" the boot's on the other foot = your opponent now has the advantage: \"Now that she has been promoted, the boot's on the other foot! You should watch what you say from now on.\" get your skates on = to hurry up: \"Get your skates on \u2013 we're late as it is!\" have the shirt off your back ="}, {"title": "rpj-common-crawl-2023-06", "text": "personality and a sunny disposition that lifts everyone\u2019s spirits. So if you hear this said of you, take it as a high compliment. Speaking of compliments, if you hear this one in one of Italy\u2019s premier fashion stores it means the person assisting you is working on commission. Seriously though, it means the dress or whatever it is you\u2019re trying on fits you perfectly. (It fits you so perfectly it looks like it\u2019s been painted onto your body.) To have too many acts in a comedy means someone is trying to accomplish too many things at once. In English, you could say the person is \u201cwearing too many hats\u201d or has \u201chands/fingers in too many pies.\u201d This one means exactly what it means in English. \u201cRompere il ghiaccio\u201d is to obliterate awkwardness between people in social situations, especially for those who have just recently met. This means \u201cspeak up.\u201d To remember it, you could imagine releasing a toad from your mouth and letting it freely speak about the beauty and wonders of from whence it came. This one is comparable to the English idiom, \u201ccaught red-handed\u201d or \u201ccaught with one\u2019s hands in the cookie jar.\u201d These idioms refer to someone who got caught stealing cash or something else, often helping themselves to the detriment of others. This Italian idiom is used to signify how life goes on even after the worst of tragedies. Your Italian boyfriend broke up with you? Don\u2019t worry, there are plenty of fish in the sea. If even the pope isn\u2019t indispensable,"}, {"title": "rpj-common-crawl-2020-05", "text": "the straight lady in a Marx Bros. Movie, as in: When I cracked that joke at the meeting, the chairwoman was sitting there clutching her pearls. Crazy hour: Not any particular time or not even an hour long, but it referred to that point of the night (usually the night) when the cats would be so hyper and frisky, jumping around, springing backward, etc. Whimwhams: Feelings of anxiety, butterflies; insecurities Don\u2019t touch my shit: One of her golden rules. Just leave her stuff alone and no one gets hurt. Since Hector was a pup: I have no godly idea where this comes from. It is used to refer to a significant passage of time, or age, as in: That store has been there since Hector was a pup. Knee-high to a kitten: Again, another measure of age, usually referring to kids who have now grown up, as in: I remember him when he was knee-high to a kitten. Growth experiences are a bitch: Sort of a variant of what doesn\u2019t kill you makes you stronger. This one is a Band-Aid to get you through a tough time by making you laugh and reminding you that you will get through it. Shit happens: A bit of a variation of no big whoop. A general dispensation and way of addressing something big or small that has gone awry, especially if it\u2019s out of your control, as in: Yeah, it sucks that the tree limb fell on the car, but you know, shit happens. Plo-plos: Pillows. Especially used if"}, {"title": "rpj-common-crawl-2019-30", "text": "you stand your ground, you maintain your position and refuse to yield or give way. \"He claimed innocence and stood his ground in spite of the repeated accusations.\" Stick to one's guns If you stick to your guns, you show determination when faced with opposition. \"The government stuck to its guns in spite of the criticism.\" The sky's the limit To say \"the sky's the limit\" means that there is no limit to the possibility of success or progress for someone or \"How successful do you think the project will be? Who knows... the sky's the limit!\" Waiting in the wings If someone is waiting in the wings, they are waiting for an opportunity to take action, especially to replace someone else in their job or position. \"There are many young actors waiting in the wings, ready to show their talent.\" Clothing Idioms Example Sentences At the drop of a hat without needing any advance notice My Grandma will babysit for anyone at the drop of a hat. (Have a) bee in one's bonnet something that is annoying someone Milan has had a bee in his bonnet all day, but he won't tell me what's wrong. beyond what is fair or socially acceptable His comment about Manfred's handicap was below the belt. Bursting at the seams not fitting anymore I ate too much. I'm bursting at the seams in these jeans. Caught with one's pants down My students caught me with my pants down on Monday. I forgot about the field trip. (Have a) card up"}, {"title": "rpj-common-crawl-2019-30", "text": "with 2x4), \"you have to get their attention.\" All these answers were given before references were mandatory. Being hit by a two by four is such a common expression that I am not going to give a reference, but I will give a reference for getting the mule's attention. See Psychology Today, Changing the Mind of the Mule Why don't two-by-fours work as a management tool? Dan Brown was referring to a Vasari canvas print, a piece of wall art, upon which a well-wielded two by six would inflict a great deal of damage. ab2ab2 Maybe not 1.5\u00d7 as much, but how \u2019bout \u00b9\u2074\u2070\u2044\u2088\u2089\u00d7 as much? :-) \u2013 tchrist\u2666 Dec 2 '17 at 3:09 I think if the movie is to go by, it is a piece of ceiling art, that they aren't keen to destroy by dropping anything, including themselves or a piece of wood, through it. \u2013 Bent Dec 2 '17 at 22:18 We call them \"six-by-two\" in New Zealand. It's a piece of wood that's common here. TomachiTomachi Not the answer you're looking for? Browse other questions tagged meaning idioms phrase-usage or ask your own question. What does \u201chit me like a two-by-four\u201d mean? What does 'gotcha' mean? What does 'ten of six' mean in regard to time? What does 'two-bit paper pusher' mean? What does \u201cdescriptive gauntlets\u201d mean? What does glassy essence mean? What does \u201csix point something\u201d mean? What does \u201cpuncture veneer\u201d mean? Is it a common idiom? What does \u201cprofessional grade\u201d really mean? What does \u201cmy six ounce\u201d mean? What"}, {"title": "rpj-common-crawl-2023-06", "text": "Are you looking for a phrase you can use to confront someone about an issue between you? You can use \u201cbone to pick\u201d to tell them that you want to have a stern chat with them. This post unpacks the meaning and origin of this expression. The expression \u201cbone to pick\u201d means that you want to confront another person or group about a specific topic. It means that you have something that you\u2019ve been thinking about for some time, and you\u2019re ready to confront the person to hear what they have to say about it. If you \u201cpick a bone\u201d with someone, you\u2019re usually talking about a heated topic, such as a betrayal of trust. It\u2019s a \u201chard talk\u201d with the other person, and there is a good chance that it will end in an argument. To \u201cpick a bone\u201d with someone means that you\u2019re confronting someone that you know about something they said about you behind your back. \u201cHey Mike, I have a bone to pick with you. Why did you tell Halley that you saw me out with Cindy on the weekend? Why are you interfering in my business.\u201d \u201cListen, Sam, I have a bone to pick with you. You\u2019re always leaving the toilet seat up, and it\u2019s driving me nuts.\u201d \u201cI\u2019m going down to the council now. I have a bone to pick with these people over how they charge rates. They\u2019ve been overcharging for months, and I\u2019m fed up with it.\u201d \u201cWhy do I have to come to you every time and"}, {"title": "rpj-common-crawl-2019-30", "text": "Lord Lucan,\" what have they done? Disappeared Been rude Eaten too much When someone runs off or disappears without a trace, they have \"done a Lord Lucan.\" This is in reference to Richard John Bingham, 7th Earl of Lucan, who disappeared in the 1970s after being suspected of murder. If a place is \"chockablock,\" what is it like? Something that is stuffed, crammed or full to the brim can be described as \"chockablock.\" This is sometimes shortened to \"chocka.\" For example, the road is chocka at rush hour. Someone who is \"carrying coals to Newcastle\" is actually doing what? Carrying coals to Newcastle Something unnecessary You might hear a Brit say that someone is taking, bringing or carrying coals to Newcastle. This means that they are going to the effort of doing something that is totally unnecessary. If something is \"cheap as chips,\" what is it like? Chips are what the British call fries. If something is cheap as chips, it is incredibly inexpensive, as potatoes are very famously cheap. This is an idiom that's more often used by the working class. The idiom \"pea-souper\" is used to describe the weather. What kind of weather does it refer to? Smog or fog A hurricane This old idiom dates back to nineteenth-century England. It is used when smog creates a thick fog with an unnatural tinge. Over the centuries, London has struggled with pollution issues as it has become more and more populated. If someone is \"a few sandwiches short of a picnic,\" what do they lack?"}, {"title": "rpj-common-crawl-2020-05", "text": "Pad Someone's house. Example: There wasn't much to do so we all hung out at John's pad, drank Cokes and listened to records Pants An activity where usually two or more boys physically remove the pants from another boy so as to cause him embarrassment in a group setting. Peel Out (See Lay A Patch) PG Pregnant as in Nurse Sizer Pig Cop Pig Out Over eat Pound If someone was going to beat up someone else you said he was going to \"pound\" the other person. For an example, Joe caught Jim with the hubcaps that he stole from Joe's '50 Merc last night. He'll probably pound him after school Primo First class. Raunchy Raw, Rank, Disgusting Right On I agree; I concur Righteous Extremely fine, beautiful. For us guys it was generally used when talking about the most important areas of our lives; cars and women. \"John's got a righteous new paint job on his '55 Chevy\". \"Ron met this righteous babe down at 26th St.\". Examples:\"John's got a righteous new paint job on his '55 Chevy\". \"Ron met this righteous babe at A Street.\". Ripped Off To have something stolen, or to have stolen something Rule As in, \"Hodads Rule\"; To take ownership of Sano Usually referring to someones car, or part of ones car, as being pristine: \"Ron did a sano job on his 56 Chevy\". also \"Super Sano\" (Very Pristine) Scarf To eat very fast. Example:\"I'm going to scarf this hot dog\". Scheming When someone is really interested in the opposite"}, {"title": "rpj-book", "text": "This expression means that you like this person a lot. **Make ends meet:** When the money you've earned is sufficient to pay your bills, but no more, you've made ends meet. **Make mincemeat out of someone:** If you've chastised and humiliated someone, you've made mincemeat out of them. **Make one's flesh crawl:** When something scares you and gives you goosebumps, it makes your flesh crawl. **Make tracks:** You're making a quick exit\u2014making tracks out of there. **Mind like a sieve:** A person with a poor memory or one who is absent-minded has a mind like a sieve. **Muddy the waters:** When somebody makes a situation more confusing, they've muddied the waters. **Mum's the word:** When you agree to keep a secret, mum's the word. **Music to one's ears:** When you've gotten an agreement or when you've been told exactly what you want to hear; it's music to your ears. **Never darken my door:** If you never want to see or hear from someone again, tell them to never darken your door again. **No love lost:** When two people dislike each other, there's no love lost between them. **Off the hook:** This is one of my pet peeves. So many teachers I know use this phrase when their classes have been out of control. \"Off the hook\" does not mean \"out of control.\" If you're off the hook it means you were previously in trouble but you got out of it. **Off the record:** When you provide someone with confidential information, but you're unwilling to admit it"}, {"title": "rpj-book", "text": "he would talk about 'facing the music' if he was caught. Interestingly, another expression is associated with this one. If someone is fitted up \u2014 i.e. accused of doing something bad that they didn't do \u2014 then they would be facing 'drummed-up' charges or the case could be described as 'drummed up'. ### CHANCE ONE'S ARM There are two possible explanations. The first is that it comes from boxing. When a boxer extends his fist to hit his opponent, he is leaving himself vulnerable to counter-attack. In that way, he's chancing his arm. The other (earlier) possibility is that it refers to a soldier \u2014 specifically a corporal or a sergeant \u2014 doing something that might bring him into trouble and lead to him being demoted and therefore having his stripes removed from the arm of his tunic. In that way he would be chancing his arm. ### TOO MANY TO SHAKE A STICK AT Shepherds would control their sheep by shaking their staffs (large sticks) to indicate where the animals should go. When farmers had more sheep than they could control, it was obvious that they had too many to shake a stick at. **LET ONE'S HAIR DOWN** In seventeenth- and eighteenth-century Paris, members of the nobility were obliged to wear elaborate hairdos \u2014 stacked preposterously high \u2014 which took several hours to prepare. At the end of a long day's intriguing and ingratiating at the Palace of Versailles, they'd go home to relax and the first thing they'd do would be to let their"}, {"title": "rpj-common-crawl-2021-04", "text": "a NZ TV Show...this helps give you a visual! Box of Fluffies In response to \"how are you\" and you are well - e.g. \"I'm a box of fluffies today, thank you\" Brother or good friend Carpenter/Chippy A word used for disappointment - e.g. when you tell someone your car broke down they respond, \"buggar!\" Also can be used to refer to an older man - e.g. \"did you see the old buggar yesterday?\" A mobile home trailer towed behind a vehicle Carked It Died - e.g. \"Bob carked it\" or \"the old car carked it yesterday\" Girl/Woman - e.g. \"Thanks chick\" or \"Go and ask that chick over there\". Also used as \"Chicky\" e.g. \"That chicky-babe over there\" Chippy Carpenter/Builder Chocka Full or overflowing \"the bus is chocka today!\" When pleased with something - e.g. \"I got you a ticket to the rugby\" you would respond with \"choice bro!\" Chook Short for Chicken. Also used in reference to an older lady e.g. \"the old chook over there\" Thank You - \"Chur Bro\" Crack Up When referring to someone that is funny - e.g. \"Bob is such a crack up\" Cracked Up Your reaction of laughter to something funny - e.g. \"He told a joke and I just cracked up\" Crash Here Sleep here - e.g. \"you can crash here tonight\" Small stream / very small river A holiday home. More commonly it is Kiwis in the South Island who refer to them as a 'crib' and in the North Island refer to them as a"}, {"title": "rpj-common-crawl-2020-05", "text": "these lines in spite. \"No Fair. Do Over.\" \"Chips on the Ball\" (if you lost a spalding ball in the course of a game, you had to buy a new one) \"I'm Larry\" Getting a final turn, last licks, going last in card flipping. \"Knuckle down\" \"Dibs\" Same as chips on the ball \"Red Light green Light, 1 2 3\" \"Dare\", \"Double dare\" \"Black, no backs,\" Say this while touching something black. The person you're talking to cannot talk back with a sassy remark to something you've just said, an insult or accusation. \"That's Boss,\" \"She's (he's) Boss.\" Praising the person or object, extolling its virtues, cool, groovy. \"I'll sound you so low you'll be playing handball off the curb.\" There were many of these types of sordid remarks. \"He's got more nerve than brains.\" \"Go stamp chestnuts.\" \"Take a long walk off a short pier.\" \"Tell the truth and shame the Devil.\" In a Foot Race often times someone would shout, \"Last one to the stoop is a rotten egg.\" Then the reply would come from the last runner: \"And the first one takes his place.\" \"You left me flat.\" \"Shake a leg.\" \"Put on your thinking caps!\" \"Go fly a kite.\" Murray the \"K\" Kaufman and the Swingin' Soiree began his show with a chant that went something like this: \"Bedah bey (OH), bedah bey (OH), cumma zawa zawa \" (twice) We were told it meant \"Come let us pull\" in Swahili. \"Last Licks.\" Getting up last in a street game. \"He's a real"}, {"title": "rpj-common-crawl-2022-05", "text": "bad emotional effect. For example: Jane is staring at the wall because she's trippin' and thinks the wall is breathing. When you talk about something being \"heavy,\" what are you talking about? An expensive home Something serious A difficult friend Something that's \"heavy\" is serious. For example: I'm sorry that during the past two days, you lost your job and your girlfriend left you. That's super heavy. What did \"spaz\" (a word that is now considered derogatory) mean? To call someone late at night To disappear from someone's life A nervous, jittery, clumsy person A harsh, authoritative person Not-so-fun fact: This term is actually pretty darn insensitive (and if you use it, you should probably ban it from your vocabulary from here on out.) It's a shortening of \"spastic,\" meaning a person who can't control their muscles (having spasms.) This became a derogatory term for a person who was a ball of nervous energy and a little clumsy. What does \"chump\" mean? Fool or loser Couch or bed To drive slow To take it easy Before \"loser!\" became a catchall insult, we had \"chump.\" Often male, he's the guy whose toast always lands butter-side-down. How was the word, \"boss,\" used in '70s slang? This was another synonym for \"very cool.\" If you had a \"boss car,\" you probably had a Mustang or a Corvette. Sadly, you weren't going to be able to afford gas for it for long. Just google \"1970s oil crisis.\" What was your \"pad?\" Apartment or home Steady significant other \"Pad\" was a"}, {"title": "rpj-c4", "text": "(slang), clobber (slang), wallop (informal), slosh (Brit. slang), tonk (informal), lay one on (slang) If he tries to bash you he'll have to bash me as well. 2. criticize, pan (informal), condemn, slam (slang), knock (informal), flame (informal), carp, put down, slate (informal), have a go at (informal), censure, disparage, tear into (informal), diss (slang, chiefly U.S.), find fault with, lambast(e), give (someone or something) a bad press He continued to bash them as being soft on crime. catch, clout, hit, knock, pop, slam, slog, slug, smash, smite, sock, strike, swat, thwack, whack, wham, whop. go on, have a bash! \u2192 \u00a1venga, int\u00e9ntalo! I bashed him on the head \u2192 Je l'ai frapp\u00e9 \u00e0 la t\u00eate. I bashed my elbow on the door \u2192 Je me suis cogn\u00e9 le coude contre la porte. The table bashed against the wall as they carried it into the kitchen \u2192 Ils cogn\u00e8rent la table contre le mur en la transportant dans la cuisine. I'll have a bash.; I'll have a bash at it \u2192 Je vais essayer. And, when Crooked-Eyes complained, Long-Fang said that he was himself a strong man, and that if Crooked-Eyes made any more noise he would bash his brains out for him. He had not been there a fortnight before it was evident to him that life, complicated not only with the Latin grammar but with a new standard of English pronunciation, was a very difficult business, made all the more obscure by a thick mist of bash fulness. Both Big Bravo and Big Bash,"}, {"title": "rpj-common-crawl-2019-30", "text": "What does it mean to describe someone as a butt steak? In The Shawshank Redemption, the officer said to a prisoner: Do you speak English, butt-steak? What does it mean to describe someone as a butt-steak? dialogue the-shawshank-redemption edited Apr 4 at 19:17 Kodos Johnson asked Apr 4 at 7:03 Mostafa BayoumiMostafa Bayoumi For what it's worth, just about any noun could have served the same purpose as long as the tone of the delivery was the same. English is a mighty language :) \u2013 Mad Physicist Apr 4 at 16:01 I read this as butt-streak. Which is quite a good insult. \u2013 camden_kid Apr 5 at 12:56 The context is quite important. If it were Tina Belcher using the term the meaning would be completely different. \u2013 Bill K Apr 5 at 17:48 The key word is \"butt\". It's like calling someone an ass, but in a way that has a double meaning so as not to get in trouble from your superiors for using foul language. A butt steak is another term for top sirloin, so that's the double meaning. It was clearly meant as a veiled insult. Johnny BonesJohnny Bones Or perhaps a vealed insult. \u2013 pipe Apr 4 at 15:26 @AzorAhai it's not bad but it's certainly not the best cut. (\"Best cut\" is subjective but I'm not sure of any criteria that would put sirloin at the ahem \"top\" of the list) \u2013 MikeTheLiar Apr 4 at 18:54 @MikeTheLiar Actually, most lists have Fore Rib, Sirloin, Top Rump and Fillet listed"}, {"title": "rpj-common-crawl-2019-30", "text": "Blast from the Past [1992] Modern Day Sayings CEO -- Chief Embezzlement Officer .CFO -- Corporate Fraud Officer. BULL MARKET -- A random market movement causing an investor to mistake himself for a financial genius. VALUE INVESTING -- The art of buying low and selling lower. P/E RATIO -- The percentage of investors wetting their pants as the market keeps crashing BROKER -- What my broker has made me. STANDARD & POOR -- Your life in a nutshell. STOCK ANALYST -- Idiot who just downgraded your stock STOCK SPLIT -- When your ex-wife and her lawyer split your assets equally between themselves FINANCIAL PLANNER -- A guy whose phone has been disconnected. MARKET CORRECTION -- The day after you buy stocks. YAHOO -- What you yell after selling it to some poor sucker for $240 per share. WINDOWS -- What you jump out of when you're the sucker who bought Yahoo @ $240 per share. CASH FLOW-- The movement your money makes as it disappears down the toilet. INSTITUTIONAL INVESTOR -- Past year investor who's now locked up in a nuthouse. PROFIT -- An archaic word no longer in use. thanks Duke Not tonight dear, I got a headache EMBED-Dude Drops Hot Chick On Her Head - Watch more free videos Those FunnyAnimals thanks Don H Two men were talking, seated on the benches in the City Park. \"My grandson asked me what I did during the Sexual Revolution,\" said one .\"And what did you tell him?\" asked the other .\"I told him I was captured"}, {"title": "rpj-c4", "text": "A person yells \"YOLO\" right before taking off their clothes and runs around your place of business. What does YOLO mean? I'm about to run around naked. What does the phrase \"Bachelor Sip\" mean? A friend of yours referred to another person as an \"Askhole\". What do they mean? What does a \"Name Shame\" mean? You have known a person for awhile but have forgotten their name. What has happened when one or more people in a room say \"Bye Felicia!\" Someone just referred to you as having done a \"Crapella\". What did you just do? A friend wants you to go to a party but you don't want to. You decide to give them the \"California No\". What does that mean? You and your friend have just experienced a \"Moon Landing\" together. What just happened? Congrats! You are an urban dictionary expert. Sorry but you are not an urban dictionary experts. Perhaps you should try avoiding speaking with people younger than you. The meanings of words change with every generation. If you don't keep up with how the kids are using words today, you'll be lost tomorrow. Take this quiz to see if you are an urban dictionary wiz!"}, {"title": "rpj-c4", "text": "literally does take two to tango--you can\u2019t dance the tango unless you have a partner. But this idiom means that if there\u2019s a suspicious situation, then there\u2019s more than one culprit. They couldn\u2019t have done it by themselves. No, the professor didn\u2019t give them a slice of cake to eat! When something is a piece of cake, it\u2019s so simple that it\u2019s as easy as eating one. When something costs an arm and a leg, you won\u2019t literally have to cut off your arm and leg to buy it. It just means that it costs a lot of money, so it would be as painful (for your wallet) as cutting off an arm and a leg to pay for it! You might be scared when you hear this idiom--did they really just tell someone to break their leg? When someone uses this idiom, they\u2019re actually wishing the person good luck. See how confusing idioms can be? This means the total opposite of what it seems to mean! A rule of thumb is a \u201crule\u201d that\u2019s not totally precise. It\u2019s based off common experience and common sense. They aren\u2019t based on science or research! To blow off some steam isn\u2019t to stand above a tea kettle and huff and puff! When you\u2019re feeling angry or upset, and want to do something to relieve those emotions, then you\u2019re blowing off steam--doing something or taking a break to help get rid of the stress. Which Vocabulary Should You Learn for Your Cambridge Exam? Join thousands of Cambridge exam students"}, {"title": "rpj-common-crawl-2021-04", "text": "muffin on the top of your buns. Do you have muffin top? It's... It's... You know what, ladies, gentlemen? It's... It's not really sexy to have a muffin top. Of course, you're going to have some body fat, but try and tuck it in, maybe buy your pants a bit bigger. Get rid of your muffin top. And, oh, Ronnie, got to have a nice one. \"Sweetie pie\". \"Sweetie pie\" generally means that the person is nice. Aww. So you can say: \"Ronnie's such a sweetie pie.\" Th-... What? Ronnie? Th-, this one? Yeah, I know. And let's move on to the enormous task of the toast. You probably know this definition of \"toast\", it's very common. You'll see in movies, the people will be at a wedding in Brazil, and they'll be like: \"Raise a toast to the bride and groom\", and they drink. So, \"toast\" means like saying: \"Cheers\", and usually the person has a wee, which means small, speech to talk about the people. So at a wedding: \"Raise a toast to the bride and groom\", and someone usually talks incessantly about the bride and the groom. This is where we get into the lowdown of the slang. \"Toast\" as an adjective means it's broken. So you might hear someone say: \"My car is toast.\" You drive toast? That's insane! Oh, it means it's broken. \"My computer is toast.\" Or: \"My marker is toast.\" It basically just means it's broken. English is weird. When we talk about people, people cannot be broken. You"}, {"title": "rpj-common-crawl-2020-05", "text": "really bad. If a person were to \"Bogart\" something, how were they acting? This slang term is named for the actor, Humphrey Bogart. If you were sharing a pizza but kept most of the pieces to yourself, someone might say, \"Hey, man, don't Bogart that pizza.\" Your friend is a little bummed, but you tell him to \"keep on truckin'.\" What are you saying? He should give up. He should get mad. He should work harder. He should go with the flow. This is a phrase of encouragement meaning that someone should keep doing what they're doing. It originally is a phrase from the 1930s' song, \"Trucking My Blues Away\" by Blind Boy Fuller. At a party, one person gives another a \"hairy eyeball.\" What are they doing? Spacing out Glaring It's hard to tell exactly where this slang term came from, but one thing is for sure, it isn't positive. If someone is giving you a \"hairy eyeball,\" it means they're glaring at you. Can You Define All of These Common \u201970s Slang Words? Prove You Know Your '70s Slang Words by Acing This Quiz How Well Do You Know 1970s Slang? Can You Identify All of These High School Slang Words From the \u201970s? Are You Able to Translate These '70s Slang Words? Can You Complete These Slang Phrases From the \u201980s? Can You Pass This Difficult Common Phrases Test? Can You Translate These American Slang Words? Can You Translate These Slang Words From the '70s? Interpret These Slang Words and Phrases and We\u2019ll"}, {"title": "rpj-common-crawl-2019-30", "text": "in coming years. Members of St Pancras borough council down the years included Barbara Castle, George Bernard Shaw and V.K. Krishna Menon. \"two shakes of a dead lamb's tail\" A piece I heard on the radio the other day about phrases meaning in next to no time, 'at the drop of a hat', that sort of thing, brought to mind a saying they didn't mention and which I haven't heard in decades. \"Two shakes of a dead lamb's tail\" - ring any bells? I mentioned the term to my 91 year-old father. Yes, it was once widely used; and yes, it meant in no time at all. I have vague memories as a very young kind of waving around a wilted flower stem, or perhaps a stick of rhubarb, and pretending I was doing a couple of shakes of a dead lamb's dangly bit. Though I recall finding the phrase distinctly macabre Looking at the web, it seems there are all sorts of variations, two or three shakes, and with the lamb not necessarily deceased. And from this comes the much more widely used 'two shakes' - as in \"I'll be with you in two shakes\". Where did it come from? Well, the online dictionaries variously suggest an American or Antipodean origin - though one points to an earlier Yorkshire (that's where I grew up) or Welsh origin. It seems to have regained currency through Uma Thurman's character in the movie 'Pulp Fiction' who apparently declares: \"Just make yourself a drink Vincent and I'll be down"}, {"title": "rpj-common-crawl-2019-30", "text": "brother play the cat with a can of tuna. submitted by dan to poach - An unexpected or unintentional diss. Used primarily in the phrase \"You just got poached.\" e.g., I knew I had been poached when I woke up to find my toes super-glued together. submitted by Brandon Boyle to ringarong - To dial the wrong number, to call the wrong person. e.g., Sorry, no Jason here. You rangarong. submitted by francis.co to rock - To wear. e.g., Are you jealous because you can't rock the Tommy Hilfiger jeans? submitted by Phil to rock one's face off - To thrill or inspire one in the extreme. e.g., This new breakfast cereal rocks my face off. submitted by Jordan - (www) to shine someone on - To lie or otherwise get rid of someone who is annoying. e.g., Chris was being a pain in the ass, so I shined him on. submitted by Lloyd Evans to spaff - To wake up in the morning with a huge amount of Facebook notifications and find out that one person has 'liked' every comment you made the previous day. e.g., I have just been spaffed. I'm getting a Spaffing as we speak. submitted by Al Bundowski to spielberg - To hide an advertisement in a work of entertainment e.g., Did you see the new Tom Cruise movie? They spielberg for everything from laundry detergent to ballpoint pens. It's worse than network television. submitted by Steve to squab a squib - To bum a smoke. e.g., Can I squab a"}, {"title": "rpj-common-crawl-2019-30", "text": "when baby boomers were young adults, they might have called the drive-in \"groovy.\" How might a baby boomer say \"OK\"? Cut the gas. If you got this question right, we say \"right on.\" While \"OK\" might not be the most fun way to say it, you can feel like a true baby boomer with this phrase. If someone says, \"sock it to me,\" you can say \"right on.\" Which of the following terms tells you that you're going to have trouble? Blitzed Cruisin' for a bruisin' Peel Out If you're cruisin' for a bruisin', then you may want to stop what you're doing. It can mean that you're annoying someone and making them angry, and they're letting you know that it won't end well for you. Someone tells you to \"beat feet.\" What should you do? Sing a song. Call a cab. Get away quickly. Eat something. \"Beat feet\" might be something you hear when you're somewhere you shouldn't be. Maybe a friend says it to you, or maybe an authority figure does. But what they really want is for you to get out of there. If you're \"clean,\" what are you? Going on vacation A house cleaner You've heard of the saying, \"fresh and clean.\" But in baby-boomer language, \"clean\" means \"looking good.\" The word can be used in different ways, such as in reference to a person or even a car. Which word means \"out of control\"? \"Don't have a hairy,\" is something you might have heard a baby boomer say. It means you"}, {"title": "rpj-common-crawl-2021-04", "text": "out,\" though they do share an origin in the word \"suspect.\" Correct use of \"suss\" (without any \"out\") looks like this: \"Should we drive the car over that bridge? The supporting beams are a bit suss.\" alashi/DigitalVision Vectors/Getty Images Do you know this British term for a massive mistake: plaubls? Balls-up Stubbleup De-bubble A balls-up means something has gone fantastically wrong, as in, \"The party was going well before gatecrashers came and puked everything. It was a total balls-up after that.\" You can substitute almost any word for \"balls,\" however, as in, \"It was a total arse-up.\" Robert Daly/OJO Images/Getty Images How might a Brit indicate that they are very tired: deckranrek? Crackered Obliterated Knackered Are you so tired that you are like a farm animal who has become useless and is now at risk of being sent to the knacker's yard? If so, then you are \"knackered.\" The rather cruel etymology of this term is no longer implied, however, so feel free to use it in the presence of vegans! Flashpop/DigitalVision/Getty Images When you feel very pleased, you're this. What is it: fufched? Chuffed Chomped Chaffed If you are absolutely delighted about something, you might well be \"made up,\" but you can also be \"chuffed.\" You can even be \"well chuffed\" or \"dead chuffed.\" It probably comes from the military, and dates back to early Victorian times. Generally speaking, this is a risky word to use if you are not Cockney or Northern, as it can sound inauthentic. Little Hand Images/Moment/Getty Images Can you find"}, {"title": "rpj-common-crawl-2021-04", "text": "his image, is \"spit and image.\" We tried not to laugh at her _____ comment. tongue and cheek tongue-not-cheek tongue-or-cheek This figure of speech refers to putting one's tongue into one's cheek to express irony or otherwise a joke - literally, \"tongue in cheek.\" He quickly figured out that the group planned to make a _____ of him. escape goat scape-wheel skip goat A person, or group, that's made to take the blame for something, regardless of their own innocence, is called a scapegoat. His manager gave him _____ over the project. free rain free rein free reign free ring It means the freedom to do as one pleases. And because of its origins from the vocabulary of horseback riding, the correct expression is \"free rein.\" Noticing she'd started to spend too much time binge-watching TV from the sofa, she decided to _____. nip it in the buck nip it in the bud nip it in the butt nix it in the bud This idiom comes from the vocabulary of gardening and gardeners. It's used metaphorically - trimming buds before they grow means it's better to handle a problem while it's still small. It is feared the hurricane will _____ along the coast. reek havoc wreck havoc wrought havoc When something like a blizzard, hurricane or other natural disaster brings about widespread destruction, it's said to wreak havoc on its target. If something _____, it means most people have stopped using it (or doing it or making it, etc.). falls by the waist side falls by"}, {"title": "rpj-common-crawl-2021-04", "text": "or in their dorm room, it could be a real buzzkill when someone told them to do their homework or study. If you were \"all that and a bag of chips,\" what were you?\" The greediest The hungriest The slowest If you saw yourself as \"all that and a bag of chips,\" you saw yourself as all that and so much more. Or maybe something you or your friend had something that was just \"it,\u201d the best thing ever. When something is \"fresh,\" what is it? Highly appealing Smelling good In the '90s, if you were a skateboarder and sported Keds or Vans, you had the \"fresh\" gear. If you wore oversized Girbaud jeans and shirts and Timberlands, your clothes were \"fresh.\" Humvees are \"bad.\" What do we mean by that? Run DMC said, \"Not bad meaning bad but bad meaning good!\" Along with NWA and Public Enemy, they were among the baddest rappers back in the day. Sometimes, you're so good; you're \"bad.\" If you got the \"bling,\" what do you have? Flashy jewelry LL Cool J showed us what was fabulous in gold rope chains and four-finger rings. Biz Markie had diamonds on his rope chains. And Jay-Z went next level by showing us platinum jewelry. What is someone saying you are when they say you're \"bodacious?\" \"Bodacious\" is part bold and part audacious. In the movie, Bill and Ted described Socrates as \"the most bodacious philosophizer in Greece.\" But you don't have to be Socrates to be \"bodacious.\" Do you know the word,"}, {"title": "rpj-common-crawl-2021-04", "text": "We hope you have fun. Good luck and peace out! \"She was straight buggin' about her man talking to that other chick.\" What was she doing? Staring really hard Freaking out and upset Starting a fight If someone is \"buggin' out,\" they are really concerned to the point of being visibly upset. If someone is \"straight buggin',\" then \"straight\" can be seen as an emphasizing word, like \"very.\" \"Hey, I need to dip. I'll talk to you later.\" What does \"dip\" mean here? Chew tobacco Grab some chips and dip When it's time to go, it's time to go. You definitely don't hear \"dip\" used like this anymore. We're just back to chewing tobacco and yummy things we eat. Which one of these words is NOT slang for stealing something? Yoink All of these words mean to steal. You know the word \"carjack,\" which means to steal a car usually at gunpoint? That's where jack comes from, although if something is \"jacked up,\" it means it's messed up or screwed up. Yoink and gank aren't really in much use anymore. \"Man, this chicken tetrazzini is all that and a bag of chips!\" So how is this meal? It's really good. I've had better. It's disgusting. \"All that and a bag of chips\" has definitely gone the way of the dodo as a phrase. The less emphatic \"all that\" isn't around anymore either. But there was TV, with \"All That\" -- a sketch TV show on Nickelodeon which debuted in 1994 and stuck around for 11 years."}, {"title": "rpj-common-crawl-2023-06", "text": "tea.\" Positively referring to someone who is rather voluptuous in the thigh-butt region. \"Damn you thicc.\" This ain't it, chief Expressing disapproval. Another way for saying \"this just isn't the one\" or \"nah\". For example, seeing the price of petrol increase, \"This ain't it, chief.\" This term stemmed from the term \"internet troll\", and refers to someone who is joking about something, specifically trying to press your buttons to which they say, \"I'm just trolling.\" Weird flex but okay When someone boasts about something no-one really cares about, something that is kind of strange or when someone is being a humble brag, it's a \"weird flex\". For example: \"Look, I can fit my entire fist in my mouth.\" \"Weird flex, but okay.\" What's her @? \"Who is that girl?\" Car. Correlates with \"snatched edges\". A shortened version of \"snatched my wig\" or \"my wig is flying\", which expresses admiration or excellence. For example: \"Did you see this picture she uploaded? Wig!\" Another way for saying \"that's crazy\" or when someone is being rather provocative, you say, \"you wild\". Being socially and politically aware; someone who speaks up for social justice and educates themselves on important topics. Someone who chooses to not be ignorant. Yaaaas/yos/yusss Expressing approval or excitement; basically different takes on the word \"yes\". This is a very complex and versatile word that can be used in pretty much every context. Example 1: \"See you later.\" \"Yeet!\" Example 2: \"Do you want an apple?\" \"Yeet.\" Example 3: \"The state of this economy though, yeet!\" Yikes/That's"}, {"title": "rpj-common-crawl-2019-30", "text": "got five bucks in my kick.\" \u2022 Kicks (v.) -- fun; entertainment \u2022 Kill me (v.) -- show me a good time, send me. \u2022 Killer-diller (n.) -- a great thrill. \u2022 Knock (v.) -- give. Ex., \"Knock me a kiss.\" \u2022 Kopasetic (adj.) -- absolutely okay, the tops. \u2022 Lamp (v.) -- to see, to look at. \u2022 Land o'darkness (n.) -- Harlem. \u2022 Lane (n.) -- a male, usually a nonprofessional. \u2022 Latch on (v.) -- grab, take hold, get wise to. \u2022 Later -- goodbye; forget it \u2022 Lay on (v.) -- give; loan \u2022 Lay some iron (v.) -- to tap dance. Ex., \"Jack, you really laid some iron that last show!\" \u2022 Lay your racket (v.) -- to jive, to sell an idea, to promote a proposition. \u2022 Lead sheet (n.) -- a topcoat. \u2022 Left raise (n.) -- left side. Ex., \"Dig the chick on your left raise.\" \u2022 Licking the chops (v.) -- see frisking the whiskers. \u2022 Licks (n.) -- hot musical phrases. \u2022 Lily whites (n.) -- bed sheets. \u2022 Line (n.) -- cost, price, money. Ex., \"What is the line on this drape\" (how much does this suit cost)? \"Have you got the line in the mouse\" (do you have the cash in your pocket)? Also, in replying, all figures are doubled. Ex., \"This drape is line forty\" (this suit costs twenty dollars). \u2022 Lock up -- to acquire something exclusively. Ex., \"He's got that chick locked up\"; \"I'm gonna lock up that deal.\" \u2022 Main"}, {"title": "rpj-c4", "text": "terminology that one country uses can have a vastly different meaning in another country. For example, in Finnish, \"with long teeth\" means you're doing something you don't want to do. However, in French, to \"have long teeth\" means you're very ambitious. Quite different, right? \"Break a leg\" means good luck. When you encourage someone to \"break a leg,\" you might also want to encourage them to \"knock 'em dead\" or do a great job. When you encourage a friend to \"sing their heart out\" before a performance, you're encouraging them to give it their all (and have some fun). \"Get the hook\" means it's time to pull an actor off the stage because he's performing horribly. If you need to \"get the hook,\" the actor most likely \"bombed,\" meaning he was so terrible. If an actor \"bombed,\" then they're likely to be \"upstaged\" by another actor who performed better. If you're excited to \"sink your teeth\" into a new book, it means you're really excited to start reading it. If an artist \"breaks new ground,\" it means his work is important and innovative. Remember, a group of people with shared interests will have their own idioms. As with anything else in life, they'll be easier to understand if you listen to the context clues and ask questions when in doubt. You simply can't be literal when examining an idiom. They tend to make learning a new language difficult, but they're also used in languages all across the globe. Idioms aren't only regional; they also vary according"}, {"title": "rpj-common-crawl-2021-04", "text": "up is a milder variant. [24], Direct command with a meaning similar to \"be quiet\", \"Be Quiet\" redirects here. \u2014 Shower Thoughts (@TheWeirdWorld) May 21, 2018. To say that someone was \"shut up\" meant that they were locked up, quarantined, or held prisoner. [8] By derivation, a \"shut-up sandwich\" is another name for a punch in the mouth. The usage of this phrase for comedic effect traces at least as far back as the 1870s, where the title character of a short farce titled \"Piperman's Predicaments\" is commanded to \"Shut up; and answer plainly\". [22] When this (politer) usage is intended, the phrase is uttered with mild inflexion to express surprise. The command shut up is often followed by another. [8] In shut the heck up, heck is substituted for more aggressive modifiers. [8] Another common variation is \"shut your mouth\", sometimes substituting \"mouth\" with another word conveying similar meaning, such as head,[8] face,[9] teeth,[8] trap,[9] yap,[10] chops,[11] crunch,[8] cake-hole (in places including the UK[11][12] and New Zealand[13]), pie-hole (in the United States[14]), or, more archaically, gob. Relevance. Answer. Brenda Smith Myles, Melissa L. Trautman, Ronda L. Schelvan, \"Piperman's Predicaments: A Farce, in One Act\", (translated by, https://en.wikipedia.org/w/index.php?title=Shut_up&oldid=977309298, Wikipedia pages semi-protected against vandalism, Articles containing explicitly cited English-language text, Creative Commons Attribution-ShareAlike License, This page was last edited on 8 September 2020, at 03:48. For instance, if a person was receiving praise they liked hearing but wanted to feign humility, they might, with a bat of the hand, bashfully say, \u201cOh, shut up.\u201d, In the late"}, {"title": "rpj-common-crawl-2019-30", "text": "limits, pushing yourself; leading yourself to triumphs. I don't take breaks. I don't know how a break feels like because I want success; all I know is grind. Last edited on Jan 08 2014. Submitted by Anonymous on Jan 05 2014. to dance in a sexually suggestive hip gyrating motion, usu. pressed up against one or two partners on a dance floor. I wanna grind on someone. My boyfriend likes to grind on me in the club. Last edited on May 13 2013. Submitted by Morgan D. from Seattle, WA, USA on Aug 30 2003. to perform a repetitive task in a role playing game in order to increase one's character's stature. When I have to grind, I kill centaurs. acronym for \"I don't think so\". You're the most awesome person to ever live? IDTS. A nick name or a pet name commonly used for a loved one. \"Padma is my sweetheart. She alone owns my heart\" Last edited on Apr 10 2010. Submitted by Anonymous on Apr 10 2010. form of address for a young girl. Last edited on Jan 12 2012. Submitted by Walter Rader (Editor) from Sacramento, CA, USA on Jan 12 2012."}, {"title": "rpj-common-crawl-2019-30", "text": "limits, pushing yourself; leading yourself to triumphs. I don't take breaks. I don't know how a break feels like because I want success; all I know is grind. Last edited on Jan 08 2014. Submitted by Anonymous on Jan 05 2014. to dance in a sexually suggestive hip gyrating motion, usu. pressed up against one or two partners on a dance floor. I wanna grind on someone. My boyfriend likes to grind on me in the club. Last edited on May 13 2013. Submitted by Morgan D. from Seattle, WA, USA on Aug 30 2003. to perform a repetitive task in a role playing game in order to increase one's character's stature. When I have to grind, I kill centaurs. acronym for \"I don't think so\". You're the most awesome person to ever live? IDTS. A nick name or a pet name commonly used for a loved one. \"Padma is my sweetheart. She alone owns my heart\" Last edited on Apr 10 2010. Submitted by Anonymous on Apr 10 2010. form of address for a young girl. Last edited on Jan 12 2012. Submitted by Walter Rader (Editor) from Sacramento, CA, USA on Jan 12 2012."}, {"title": "rpj-common-crawl-2021-04", "text": "1950s dating terms Man, don't \"bug\" me with that jive about cleanin' up my act. That last take was really kickin', put on the \"cans\" and lets record the final take. I used to partake in late-night jam sessions with the \"cats\" over at Sid's. Hey, Pops, dig those \"changes\" that the Hawk is playin'. Crumb --- Someone for whom it is impossible to show respect. Goof --- Fail to carry out a responsibility or wander in attention. Got your glasses on --- you are ritzy or snooty, you fail to recognize your friends, you are up-stage. What do you expect, Eddie is a \"moldy fig\" and he'll never dig the new sounds. \" My Chops is beat --- When a brass man's lips give out. Burnin --- Used to describe a particularly emotional or technically excellent solo. Character --- An interesting, out of the ordinary person. Chill 'ya --- When an unusual \"hot\" passion gives you goose pimples. Sleazy Eddie is a real \"crumb.\" Cut --- To leave or depart. Groovy --- Used in the fifties to denote music that swings or is funky. Gutbucket ---Gutbucket refers to something to store liquor in and to the type of music associated with heavy drinking. That cat Satchmo started out playing some real \"gutbucket\" in the houses down in New Orleans. Hep --- A term once used to describe someone who knows or understands. Muggles --- One nickname for marijuana used by early Jazzmen (Armstrong has a song by this title). Too many high C's tonight, man,"}, {"title": "rpj-common-crawl-2019-30", "text": "be used to agree with someone. For example, \"Hey, you all right with going to the mall later?\" \"Yeah, that's straight.\" A person who likes to be a show-off is called a\u2026? Po po A \"shooter\" is someone who likes to be a show-off. For instance, \"Ugh, look at that girl copying our outfits from last week. What a shooter.\" Which of these phrases is used to express happiness? \"Score\" is used to express happiness in a situation, as well as promoting one's accomplishments. For example, \"Score! I got into Harvard University!\" If someone was tricked or fooled, they have been\u2026? Flossin' Chillin' Aside from being a TV show in the early '2000s, \"punked\" was also used to describe someone who was fooled or tricked. For example, \"Dang, man, you just got punked big time!\" What is the meaning of the phrase \"quit icing my grill?\" Stop giving me the cold shoulder. Stop saying bad things about me. Stop running so late all the time. Stop damaging my meat grill. When someone insults another person in front of them, the other person may feel embarrassed and say, \"quit icing my grill.\" For example, \"Quit icing my grill in front of all these people, man.\" If something is \"off the heezy,\" what does that mean? It's another way of saying \"unique.\" It's another way of saying \"lame.\" It's another way of saying \"confused.\" It refers to an object's large size. If something is \"off the heezy,\" that means that it's different or unique. For example, \"I've never"}, {"title": "rpj-common-crawl-2021-04", "text": "is not the case with most idioms, there are rare occasions in which carte blanche is used literally\u2014to refer to a blank or white document; see above. However, for the most part, the term is used figuratively to mean the license and authority to do as you wish. Even if you\u2019ve never heard the term idiom, you have most likely heard many other idiomatic expressions. Here are just a few of the most common idioms used today: You\u2019re in hot water. His boss gave him the ax. It\u2019s time to face the music. You\u2019ve hit the nail on the head. If you took the first example literally, you\u2019d think it was describing a person standing in a bathtub full of hot water, perhaps. But the expression is actually used to describe a person who\u2019s in trouble. Likewise, rather than literally being handed a tool for chopping wood, if you get the ax from your boss, it means you\u2019re getting fired. It\u2019s time to face the music means that it\u2019s time to come to terms with the consequences of your actions. And when someone has hit the nail on the head, they\u2019ve gotten an answer exactly right or done something exactly as it should have been done. Word Counter can help you understand the meaning behind many of today\u2019s most common idiomatic phrases, like ignorance is bliss, money talks, hang in there, and more. To recap, carte blanche is an idiom that functions as a noun. The phrase was borrowed from the French language, in which it"}, {"title": "rpj-common-crawl-2023-06", "text": "describe a situation or person that is just simply too overwhelming to put into words. 83. \u201cGrindage\u201d As weird as this one sounds, it makes pretty literal sense. \u201cGrindage\u201d refers to eating, meaning that when you\u2019re looking for lunch you might as well say, \u201cI\u2019m ready for some serious grindage.\u201d However, we\u2019d suggest using this in very specific contexts only, as it may easily get misinterpreted. (Properly pronounced, \u201cgrinde-udge\u201c) 84. \u201cAbsotively\u201d This odd-sounding conglomeration of the words absolutely and positively was popularized in the 20s. I guess when you had flapper-dancing and cocktail-drinking to do, you just didn\u2019t have enough time to emphasize your certainty in more than one word. (i.e. \u201cAre you sure this speakeasy\u2019s not gonna\u2019 get busted?\u201d \u201cAbsotively!\u201d) 85. \u201cStoked\u201d Source: pixahive.com We\u2019re guessing you\u2019ve heard this one before, but if you haven\u2019t, it\u2019s a synonym for excited. If you\u2019re \u201cstoked\u201d to go to a party, it\u2019s going to be a good time. 86. \u201cGoing ballistic\u201d While this word refers to military-grade missile weaponry, it can also refer to someone\u2019s over-the-top temper. If you\u2019re a hotheaded individual, you probably know what it feels like to go \u201cballistic.\u201d 87. \u201cVeg out\u201d Still widely used today, this phrase is another way to say you\u2019re taking the day off, probably binge-watching your favorite HBO series or Netflix original, snuggled up in blankets with your favorite snacks. Don\u2019t feel bad; we all need to \u201cveg out\u201d a little every now and then. 88. \u201cWig chop\u201d Not everybody needs to wear wigs, but everybody occasionally needs to get"}, {"title": "rpj-common-crawl-2023-06", "text": "describe a situation or person that is just simply too overwhelming to put into words. 83. \u201cGrindage\u201d As weird as this one sounds, it makes pretty literal sense. \u201cGrindage\u201d refers to eating, meaning that when you\u2019re looking for lunch you might as well say, \u201cI\u2019m ready for some serious grindage.\u201d However, we\u2019d suggest using this in very specific contexts only, as it may easily get misinterpreted. (Properly pronounced, \u201cgrinde-udge\u201c) 84. \u201cAbsotively\u201d This odd-sounding conglomeration of the words absolutely and positively was popularized in the 20s. I guess when you had flapper-dancing and cocktail-drinking to do, you just didn\u2019t have enough time to emphasize your certainty in more than one word. (i.e. \u201cAre you sure this speakeasy\u2019s not gonna\u2019 get busted?\u201d \u201cAbsotively!\u201d) 85. \u201cStoked\u201d Source: pixahive.com We\u2019re guessing you\u2019ve heard this one before, but if you haven\u2019t, it\u2019s a synonym for excited. If you\u2019re \u201cstoked\u201d to go to a party, it\u2019s going to be a good time. 86. \u201cGoing ballistic\u201d While this word refers to military-grade missile weaponry, it can also refer to someone\u2019s over-the-top temper. If you\u2019re a hotheaded individual, you probably know what it feels like to go \u201cballistic.\u201d 87. \u201cVeg out\u201d Still widely used today, this phrase is another way to say you\u2019re taking the day off, probably binge-watching your favorite HBO series or Netflix original, snuggled up in blankets with your favorite snacks. Don\u2019t feel bad; we all need to \u201cveg out\u201d a little every now and then. 88. \u201cWig chop\u201d Not everybody needs to wear wigs, but everybody occasionally needs to get"}, {"title": "rpj-c4", "text": "safest thing to do when you don\u2019t know the water. But to dive in head first means to go for it \u2013 don\u2019t worry, don\u2019t think about anything; just do it. Boxing \u2013 \u201cHit Below The Belt:\u201d if you hit someone below the belt, especially a man, it\u2019s not very comfortable, and in boxing, you\u2019re not supposed to do that. So let\u2019s say I\u2019m angry at you and I tell you what I\u2019m angry about but I can do that in a nice way or I can just start saying things that are mean. And if I do it in a mean manner because I want to hurt you, that\u2019s hitting below the belt. And golf? I don\u2019t play golf but I know you can \u201cMAKE THE CUT\u201d or \u201cMISS THE CUT.\u201d Idiomatically, if you all apply for a job, and I say that a few people didn\u2019t make the cut, it means they were eliminated because they weren\u2019t good enough. Take your time when learning idioms. The first step is realizing that an idiom has been used. Then you need to understand the meaning. After that, you need to learn when it is appropriate to use the idiom. And finally, you need to know how to use it \u2013 can it be conjugated or adjusted according to context or is it used exactly as is? Take one at a time and slowly build your list. Good luck! Heather Chetwynd has worked for 30 years in the field of adult education and English as a Second"}, {"title": "rpj-common-crawl-2020-05", "text": "a plant's flower or shoot to appear, and if you cut it while it's small, it will prevent it from growing. 'Wet your appetite' While people can salivate at the sight or smell of delicious food, the phrase isn't to \"wet your appetite.\" To whet something means to sharpen, excite or stimulate, so when the smell of freshly baked cookies or cheesy pizza makes you hungry, what the food has done is \"whet your appetite.\" 'Waiting on someone' This one might seem nitpicky, but if you're waiting on someone, you're their server or service provider. If you're waiting for someone, you're waiting for them to arrive. 'Honing in' The original expression is to \"home in\" on something, meaning to find and move directly toward something. Since the 1960s, however, Americans have been misusing this expression, subbing in the word \"hone\" for \"home.\" Hone means to sharpen a skill or focus, so the expression's meaning still works in some sense with the incorrect word. 'Jive with' The jive is a swing or rock 'n' roll dance move, so it makes some sense that if you get along with someone, that you'd be able to dance well together. But the expression for finding yourself in agreement with someone is actually \"jibe with.\" To jibe is to be in accord. 'Deep-seeded' While it's true that seeds do need to be planted deep in the ground sometimes to take root, if you're looking to explain something that's firmly established or strongly held, you're looking for the phrase \"deep-seated.\" \"Seat\" can"}, {"title": "math", "text": "it. * Yesterday a cab driver made a crack about my pronunciation because my English is poor. 3. What's up? * means \"How are you\" * means \"What is wrong with you\" 4. want a word with somebody * means \"want to talk to somebody\" * There's a reporter on the phone. He wants a word with you. 5. make time * means \"\u62bd\u65f6\u95f4, \u6324\u65f6\u95f4\" * I don't get enough exercise. I need to make time to get to the gym. * You work too hard. Make some time for your family. ========================================================= ActionEnglish 23 1. make-up \u5316\u5986 make-up artist \u5316\u5986\u5e08 2. be spiked, spiked something * When somebody is \"spiked\", it means that alcohol or narcotic substances have been added to a drink or food. * What? Somebody spiked her Coke? 3. mark * \u539f\u610f\u662f\"\u6253\u4e2a\u8bb0\u53f7\", \u5f15\u7533\u610f\u4e3a\"\u4e00\u773c\u5c31\u770b\u51fa\u6765\" * I marked the spot where I buried the money. * I marked you as a girl-chaser the minute I saw you. \u6211\u4e00\u773c\u5c31\u770b\u51fa\u4f60\u662f\u4e2a\u82b1\u82b1\u516c\u5b50. 4. This is classic Mac * Mac is a people's name * means \"XXX\u7684\u60ef\u7528\u624b\u6cd5\" * This mess is just classic Adam. * This writing style is just classic Mr. Jin. * classic flavor \u6700\u6b63\u5b97\u7684\uff0c\u6700\u7ecf\u5178\u7684\uff0c\u5728\u9999\u70df\u3001\u8863\u670d\u4e0a\u5f88\u591a\u65f6\u5019\u80fd\u770b\u5230 ========================================================= ActionEnglish 24 1. screen \u94f6\u5e55 2. ten-four * Ten-four is used in radio communication to state that you've heard and understood something. * \u6551\u62a4\u4eba\u5458\u548c\u8b66\u5bdf\u5e38\u7528\u8fd9\u4e2a\u4e13\u4e1a\u8bcd\u6c47 * We found him under the bridge. His leg is broken. Ten-four. 3. want to * \u5728\u53e3\u8bed\u4e2d\u53d1\u97f3\u4e3awanna * \u800c\u4e14\u8fd9\u4e2aphrase\u7528\u5728\u975e\u7591\u95ee\u53e5\u4e2d\u610f\u601d\u4e0d\u662f\u60f3\u5e72...\uff0c\u610f\u601d\u662f\"\u4f60\u6700\u597d\u5e72\u4ec0\u4e48\", \"\u4f60\u5fc5\u987b\u5e72\u4ec0\u4e48\" * I'm not gonna call him. But you want to. 4. You owe me ... * \u6b20\u8c01...\u94b1\uff0c\u6b20\u8c01...\u4eba\u60c5"}, {"title": "rpj-common-crawl-2019-30", "text": "of plastic and leather, coined in the early eighties. ***Reduplicating rhyming formation on \"suit\", first used in the 1940s. push present? In a more innocent age, new mothers generally considered their babies to be the greatest gift imaginable. Today, they are likely to want some sort of tangible bonus as well. This bonus goes by various names. Some call it the \u201cbaby mama gift.\u201d Others refer to it as the \u201cbaby bauble.\u201d But it\u2019s most popularly known as the \u201cpush present.\" That\u2019s \u201cpush\u201d as in, \u201cI the mother, having been through the wringer and pushed out this blessed event, hereby claim my reward.\u201d Or \u201cpush\u201d as in, \u201cI\u2019ve delivered something special and now I\u2019m pushing you, my husband/boyfriend, to follow suit.\u201d You just got to love the English language and the unabashed directness of its speakers when it comes to express the joy of materialism. (To add to the latter: When I looked up the article on the NYT website, there was a Tiffany ad next to it.) Because if not, you'll end up banging your head on the carpet, screaming \"What's wrong with you people?\" let's get going. chop, chop! Oh, what a boring episode. Chop, chop! It's a good thing they don't normally do menswear on Project Runway, even if \"pants are just 2 big sleeves sewn together\" (Chris). How can you discuss design when there's not a single garment on the runway that actually fits (\"The crotch looks insane\")? When most looks are unfinished or poorly executed, including the winning design (which only"}, {"title": "rpj-common-crawl-2020-05", "text": "a good chuckle this morning. Thank you! Dear, we need to have a talk here. You apparently want to present yourself as someone who is a master of the English language and can use it to effectively convince others of your superiority and intelligence. Just between you and me, that works so much better when you actually know what the words you are using mean. You said: \"Sure, everyone has the right to their opinion. However, if you fail to express it positively, you are counterproductive and jilted.\" The word \"jilted\" means to \"deceive or drop a lover suddenly or callously\". Please tell me how my expression of my opinion that Fleetwood Mac is not putting on the best shows they have ever done on this tour causes the end of the relationship suddenly and callously with my significant other. I believe the word you might have been looking for was \"stilted\" which means 'pompous, stiff, lofty, formal. \"Sure, everyone has the right to their opinion. However, if you fail to express it positively, you are counterproductive and STILTED.\" See how much better that works? I'm surprised an author didn't know that. Honey, put your thesaurus away and just use the words you are comfortable with. Just because something looks and sounds impressive and appears to be something the \"big boys\" might say, doesn't mean you should use it. You can get in trouble that way. Kenneth, you said: \"I just left that concert and it was AMAZING! And there is nothing any negative Nancy can"}, {"title": "rpj-c4", "text": "to jump through a lot of hoops in order to get a work visa. To jump down someone\u2019s throat means to speak angrily to them, strongly criticize or reprimand them (especially in reaction to something they said or did). All I did was say I\u2019d be a little late for dinner, and she jumped down my throat! If you get a jump on something, it means you start a project or process early in order to have an advantage or get it done earlier. I\u2019ve already got this week\u2019s lessons done, so now I\u2019m getting a jump on preparing next week\u2019s lessons. To jump in can mean quickly enter an activity that\u2019s already in progress. It can also be used for entering/interrupting a conversation in progress. There was a bunch of guys playing poker at the bar, and we jumped in. I was in the middle of explaining the situation when my manager jumped in and said she had never approved the project."}, {"title": "rpj-common-crawl-2020-05", "text": "wild. For instance, \"Let's take Josh home from this party. He's been acting so bunked from all those drinks.\" If you want to emphasize being correct in a situation, which of these phrases would you use? Buzz kill \"Booya\" is often used to emphasize being correct in a situation. For example, \"Booya! I told you the Eagles would win the Super Bowl!\" If I am \"slammin'\" this homework, what do I mean? My dog ate my homework. I'm completing this homework at a rapid rate. I'm not doing very well on this homework. I've lost my homework. When someone is \"slammin'\" a task, that means that they are completing it quickly and efficiently. Another example would be, \"I've been slammin' these drinks since noon!\" Which of these words is synonymous with \"awful?\" \"Brutal\" is used to describe something that is awful or really bad in nature. For instance, \"Man, this party is brutal, let's leave now.\" \"Po-po\" is a shortened way of saying\u2026? Pores (on the face) \"Po-po\" is a shortened way of saying police. For instance, \"Let's run from this party, man, the po-po is here!\" \"So\" is another way of saying\u2026? In the '90s, \"so\" was used often to replace the word \"very.\" For instance, \"Those shoes are so '70s.\" If someone is \"throwed\" at a party, what does that mean? The person is yelling. The person is dancing quite a bit. The person is sober. The person is drunk. \"Throwed\" is another way of saying that someone is drunk. For instance, \"Matt got"}, {"title": "rpj-common-crawl-2021-04", "text": "unlike half of the kapuka that is on offer nowadays.No chicks in skimpy outfits, borrowed cars just the singers and their pals having an great ole time.That's what good videos are made of.Now will we are on that topic, how many of you out there have chongad viazi as a result of not having enough money to cover a bill? ps:Youtube may be down for maintenance so the video may not show! Does anyone remember the slang term \"crushed off?\" I think there are few slang terms that had as many definitions as this one.These were some of the meanings... 1.To beat someone up - \"Ebu keep quiet before I crush you off!\" 2.To catch strokes or shag - \"Chief!After tuning that mama I crushed her off in the digz!\" 3.To tackle in a game of rugby -\"My guy did you see him after the full back crushed him off when he thought he would make the try?\" 4.To eat ravenously - \"We were so hungry that we crushed off everything that he had in his kitchen!\" 5.To ignore - \"I tried to convince my boss but he just looked at me and crushed me off!\" I don't know if any of you ever used this term or used it in all these ways but I heard it used in all these ways.I guess some people adapted it to the circumstance at hand but it sounds so good that I'm going to start using it again ie...There are some bloggers that I wouldnt mind crushing off!"}, {"title": "rpj-common-crawl-2020-05", "text": "flower or shoot to appear, and if you cut it while it's small, it will prevent it from growing. 'Wet your appetite' While people can salivate at the sight or smell of delicious food, the phrase isn't to \"wet your appetite.\" To whet something means to sharpen, excite or stimulate, so when the smell of freshly baked cookies or cheesy pizza makes you hungry, what the food has done is \"whet your appetite.\" 'Waiting on someone' This one might seem nitpicky, but if you're waiting on someone, you're their server or service provider. If you're waiting for someone, you're waiting for them to arrive. 'Honing in' The original expression is to \"home in\" on something, meaning to find and move directly toward something. Since the 1960s, however, Americans have been misusing this expression, subbing in the word \"hone\" for \"home.\" Hone means to sharpen a skill or focus, so the expression's meaning still works in some sense with the incorrect word. 'Jive with' The jive is a swing or rock 'n' roll dance move, so it makes some sense that if you get along with someone, that you'd be able to dance well together. But the expression for finding yourself in agreement with someone is actually \"jibe with.\" To jibe is to be in accord. 'Deep-seeded' While it's true that seeds do need to be planted deep in the ground sometimes to take root, if you're looking to explain something that's firmly established or strongly held, you're looking for the phrase \"deep-seated.\" \"Seat\" can mean a"}, {"title": "rpj-common-crawl-2019-30", "text": "with old sailors lingering about the docks with breath smelling like pilchards. But it has nothing to do with halitosis at all, as the term is actually \u2018bated\u2019, shortened from \u2018abated\u2019 \u2013 meaning lessened or lowered. It originates from William Shakespeare\u2019s Merchant of Venice, when the beleaguered usurer Shylock denies Antonio a loan, telling him he won\u2019t bow to him and speak in \u2018bated breath\u2019 (a soft tone) because of Antonio\u2019s previous jerklike actions (ie. spitting on Shylock, kicking him and being a general bastard). How the idea of anticipation entered the phrase, though is anyone\u2019s guess. Today\u2019s Meaning: \u201cEmpty, insincere or nonsensical langauge.\u201d \u201cMy god, it\u2019s so good I just have to.. I dunno, bang my hands together!\u201d It\u2019s easy to sneer down at the great unwashed from the lofty balconies of so-called \u2018high-brow\u2019 entertainment, judging them for their reality TV and canned laughter. True enough, the likes of Please Marry My Son and The Kardashians destroy brain cells faster than huffing spraypaint and a career in boxing, but people in glass houses should not throw stones. We may well describe inane television as \u2018claptrap\u2019 but the origin of the term lies in the glory age of high-brow snootery. At some point in the mid-18th century, classical composers and playwrights began to purposefully insert dialogue or crescendos designed specifically to rouse reaction from the audience. The kow-towing to the crowd was to spark applause \u2013 a trap for claps. The practice influenced a new direction in theatre especially, from Shakespearean plays to bombastic Victorian farce"}, {"title": "rpj-common-crawl-2019-30", "text": "these days, because everything is so dear!\u201d Faff This is used when someone delay or postpone something or when wasting time thinking over it without any action. \u201cYou have to stop faffing around, because we are already late and there is not time to procrastinate.\u201d Do This means partying. \u201cAre you going to Ben\u2019s birthday do tonight?\u201d Flog To sell something \u201cI managed to flog my old laptop for a decent price and now i\u2019m going to buy a new one.\u201d Swag This means style and attitude in someone's personality. \"Wow! This boy have some serious swag!\" Vlog This means video recording your daily life or activities. \u201cI have my own Youtube channel for Vlogs i shoot everyday.\u201d Fortnight It\u2019s an abbreviation for 2 weeks or 14 days. \u201cIt has been a fortnight since I last played football.\u201d Gobsmacked This means feeling amazed, astounded or utterly astonished. \u201cI can\u2019t believe I scored an A+ in my test! I thought i was going to score pretty bad. Oh my god, I\u2019m completely gobsmacked!\u201d OMG It\u2019s an abbreviation for \u201cOH My God!\u201d and it is used to express a surprise, shock or disbelief. \u201cOMG, I lost my phone! What am i going to do now?\u201d Chin Up It means be brave and strong to fight it out. \u201cCommon man, chin up! You\u2019ve got this, i\u2019m sure you\u2019ll do it.\u201d Splash Out When you have over spent money or paid way to much for something. \u201cI wanted to give my mother a surprise gift, so I splashed out on"}, {"title": "rpj-c4", "text": "slang To understand what someone is saying, especially when something is insinuated, rather than stated directly. A: \"I'm going to say that I'm busy on Sunday, and I think you should too.\" B: \"I'm picking up what you're putting down\u2014I don't want to go to this family reunion either!\" If I see you around here again, there's going to be trouble. Are you picking up what I'm putting down?"}, {"title": "rpj-common-crawl-2023-06", "text": "like that, it's hard not to take the \"icing\" aspect of this phrase literally. George Gojkovich/Getty Images Sport \"Please set the game clock to 0:00, because this is bullshit, and I am going home.\" The second and primary meaning of the phrase is an extension of the first, implying that some kind of \"mental icing\" is going on, possibly to induce cramping in his delicate, baby-soft kicking brain and get the kicker to psyche himself out somehow. \"Wait a second. Life is meaningless. We're all shadows screaming into an uncaring void.\" \"Are ... are you going to kick the ball or just stand there reciting your high school poetry? We don't have a ton of time here.\" So, a great, descriptive phrase all around, even if the tactic is basically useless. 5 Chin Music \"Chin music\" is a delightful phrase that arrives to us from the exciting world of baseball. Basically, the phrase is a polite, folksy term for attempted fucking murder, specifically a fastball thrown at a batter's head. Rich Legg/E+/Getty Images \"And with that the Sox bring on Hernandez. He's already got six stolen bases this year when pinch running in partial-decapitation situations.\" That's exaggerating a little; almost no one dies from pitches like this because that would mean something actually happened in a baseball game. The intent of this pitch is mostly psychological: it forces the batter to duck and pee a little, which flusters him for the rest of the at-bat. It can make him hesitate a fraction on the next few"}, {"title": "rpj-common-crawl-2019-30", "text": "example if someone says, \u2018Jolly Good\u2019 it means very good. \u201cThe cake we ate was jolly good!\u201d Throw a spanner in the works It\u2019s an expression to destruct something. \u201cWe all managed to keep the surprise a secret, but then my mother threw a spanner in the works by tell her!\u201d Kip A short sleep or nap. \u201cI\u2019m going to kip before everyone arrives for the party or else i won\u2019t get time to rest later.\u201d Wind up Making fun of someone \u201cI was winding up her for a bit of fun, but then she got really angry and left.\u201d Mate This means a friend, buddy or pal. \u201cMate, would you like to join me at a friend\u2019s birthday party?\u201d Not my cup of tea It\u2019s a saying for something that is not to your liking. \u201cI don\u2019t like loud metal music. It is not my cup of tea.\u201d Porkies It means telling lies. \u201cDon\u2019t trust a word he said, he\u2019s was telling porkies.\u201d Row A word used for argument or aggressive conversation. \u201cMy friend smashed his dad\u2019s car yesterday, and then he had a huge row with him. He\u2019s really upset!\u201d Donkey Years This means a person has not seen someone for a very long time. \u201cHey Jason! Where have you been? I haven\u2019t seen you in donkey\u2019s years! How are you brother?\u201d Take a chill pill It means ease up and relax. \u201cSarah, you are just overreacting! Just take a chill pill and stop thinking over it.\u201d Easy Peasy A term for something ridiculously"}, {"title": "rpj-common-crawl-2021-04", "text": "if you don't be quiet, I'm going to slap you! just (do something) One interesting way that English speakers use \"just\" is to talk about doing things which you're not supposed to do. You can talk about hitting someone this way: Arrrr! He made me so angry, I wanted to just smack him! Or about other things that are forbidden, like yelling at your boss: I thought about just standing up and telling Janice what I really think of her. hit (someone) in the face To talk about hitting someone's face, use the preposition \"in\": I hit him right in his ugly face! Use this for objects too: The ball bounced up and hit me in the face. You can either use \"the face\" or \"my/his/her/etc. face\". One common variation on this phrase is \"right in the face\", which means hitting someone hard and directly in the face. slam (someone) \"Slamming\" someone means hitting them hard. You can \"slam\" someone with your fist, or by running into them with your body. A car can also \"slam\" into another car. This is a very energetic, expressive word. You're likely to use it while telling a story. anger fighting idioms just at a bar or club \u201cWhere's the next one being held?\u201d \u201cShe is also the recipient of numerous awards, including the Pulitzer Prize fo...\u201d"}, {"title": "rpj-common-crawl-2020-05", "text": "'70s slang term, \"boogie.\" Either way, it means someone doing something fast. In '70s slang, if something is\"bangin'\u200b,\" what is it? \"Bangin' has a couple of meanings and both of them are good. It could refer to someone's body, saying that it's attractive, or it could also mean that something, like a party, is really exciting. If you tried to do something \"to the max,\" how are you doing it? The best you possibly can. Pretty well Not that great In an awful way Some of these phrases are more confusing than others. Doing something to \"the max\" just means that you're giving it your maximum effort. The slang term is just a cooler version of \"the best.\" In the '70s people often said \"psych.\" What were they saying? They were being honest. They were spacing out. They were messing with someone. They were asking for an opinion. If you are having some mental issues, you might go to a psychologist, which is the point of this slang term. If someone says \"psych\" to you, they're getting into your mind, or at least trying to. Would you be happy if someone called you an \"airhead\"? No, they're saying I am dumb. No, they're saying I am a daydreamer. Yes, they're saying I am smart. Yes, they're saying I am imaginative. If someone says you're an \"airhead,\" what is being implied is that your head is full of air. As you might imagine, this wasn't considered a compliment when it came to slang in the '70s. If"}, {"title": "rpj-c4", "text": "at all. I think its cool.'. But nowadays something disgusting is met with the phrase 'Gag me with a spoon.' We'd rather choke you with a rope, but whatever. And when something is 'In the mix', it means that it is cool. Well, it did back in the 80's but that's just another word for cool. Coincidentally, these same people coined the word 'wannabe', apparently as a method to describe themselves. Its not really smart to make up dumb words and phrases. You think that's all the bull-ha that you can take, but wait good fellow, wait till you hear all these stupid words in circulation. A head-banger, one who stands at rock concert, moving his head in an up and down motion, because he can't play any instrument, doesn't have a girlfriend or a life and can't sing for a penny, is actually known as a heavy metal fan. Yes, he must've been hit one too many times by heavy metal. K-Rad means radical whereas K-Fed means someone who is a loser(not really, the latter). Juicin' describes a steroid user, Killer means really cool, Mad and Major mean cool, mental means stupid, 411 means to get information and Oh My God, the list is endless and makes people writhe in anger and anguish, gathered from the mighty stupidity of it all. It's all gibberish really. It's a complete waste of time, like a sign of misspent youth. Like how such wannabe cool people cannot speak a sentence without using the word like. 'Like I was"}, {"title": "rpj-common-crawl-2022-05", "text": "to do with your weight at all. And how would it be used? Well, like this: \"Those new sneakers of yours are phat.\" When you wanted to leave, which of these slang terms would you say to your posse? \"Let's chill.\" \"Let's bounce.\" \"To the max\" \"Eat my shorts.\" Any cool cats from the 1980s knew what it meant to \"bounce.\" It had everything to do with leaving. \"Let's bounce this sad party\" meant you were leaving. The word \"gnarly\" describes what? Something ugly Something made of wood Something extremely cool To a surfer, \"gnarly\" means dangerous or difficult to do. To an '80s kid, \"gnarly\" was simply cool or awesome. For example, \"Your He-Man action figure is gnarly, dude.\" If you wanted to use another word other than \"obviously,\" what slang term would you choose? \"Skank\" \"Duh\" \"Tubular\" \"Word-up\" \"Maybe I shouldn't have worn a Yankees shirt to an Red Sox game.\" And the logical reply from someone to this would be, \"Duh!\" In the 1980s, to \"schmooze\" someone meant what? To give them a bar of chocolate To invite them to dinner To ask them for money To kiss up to them If your friend has something you desperately need, you might choose to \"schmooze.\" For example, \"Cedric, did I mention you look awesome today. Any chance I can borrow $10. By the way, you look buff. Have you been working out?\" Anyone said to be \"butter\" in the 1980s was very _________. \"Dude, you look so butter in those sporty sneakers!\" While this"}, {"title": "math", "text": "Children often point fingers when they don't wanna get in trouble. * How was Bill's party last night? Oh, it was a disaster! Everybody started pointing fingers when Bill couldn't find his wallet. ========================================================= ActionEnglish 202 1. I could use a hand * means \"\u6211\u9700\u8981\u522b\u4eba\u7684\u5e2e\u52a9\" * Are you busy? I could use a hand with dinner. * Lisa is moving into her new apartment this weekend. Let's go help her. She could probably use a hand. 2. It'll be fun while it lasts. * means \"\u8fc7\u7a0b\u662f\u6109\u60a6\u7684\" * Although true love might not last forever, it'll be fun while it lasts. 3. soar * verb, means \"fly high and graceful\" ========================================================= ActionEnglish 203 1. \u300aGlory\u300b \u5149\u8363\uff0c\u8363\u8a89 2. cut someone some slack * means \"\u539f\u610f\u662f -- \u653e\u677e\uff0c\u5f15\u7533\u4e49\u4e3a -- \u653esomeone\u4e00\u9a6c\" * The professor cut me some slack and didn't reduce my score for being late. * Please cut me some slack in the rope so I can untie the boat. -- \u8fd9\u91cc\u662f\u201c\u653e\u677e\u201d\u7684\u610f\u601d 3. stand someone up * means \"\u653esomeone\u7684\u9e3d\u5b50\", \u4ee5\u524d\u5b66\u8fc7\u662fstand up for sb. \u8fd9\u662f\u8868\u793asupport sb. * After she stood me up a second time, I never agreed to go on a date with her again. * Don't stand us up, Phil. We expect you at the staff meeting tomorrow. -- staff meeting \u5458\u5de5\u5927\u4f1a 4. will do * means \"another way of saying OK, \u7167\u529e\" * Evelyn, will you please file these papers? Will do, Mr. Weng. -- file\u505a\u540d\u8bcd\u662f \u628a...\u5f52\u6863 \u7684\u610f\u601d * Please don't forget to call me when you arrive. Will do. Talk to you soon. ========================================================= ActionEnglish 204"}, {"title": "rpj-common-crawl-2021-04", "text": "in the armed services. That had to wait until you got back home and got a civilian job. Bust someone's chops: To enjoy your food. To lecture or yell at someone. To demote someone. To promote someone. Here's another one that's lasted into the present day. To demote wasn't too far off: Officers worried that a big enough screwup would get them \"busted back down to private.\" Ace: Expert or superior performer. Dangerous mission. Repeating rifle. Submarine commander. When it refers to a pilot, this adjective becomes a noun: \"a flying ace.\" But you can be an \"ace (noun)\" in many other fields, as well. Beef: A disagreement. A German. An artilleryman. Texturized soy protein in rations. A \"beef\" can just be verbal, or it can turn physical. You'll occasionally still hear this one today. Cook with gas: To be accomplished or doing something really well. To handle dangerous ordnance. To get drunk. To cook using alcohol. Nowadays, we most often use this phrase with \"now,\" suggesting a breakthrough or sudden improvement. \"You're cooking with gas now!\" Do You Know All of These WWII US Navy Slang Words? Interpret These Slang Words and Phrases and We\u2019ll Guess Your Age Can You Name All of These 1953 School Supplies? The Ultimate WWII Military Equipment Quiz Can You Define All of These Common \u201970s Slang Words? Could You Get Through Boot Camp in WWII? Can You Complete These Slang Phrases From the \u201960s? How Well Do You Know \u201980s Slang? Can You Get More Than 11 Right on"}, {"title": "rpj-common-crawl-2019-30", "text": "am \"slammin'\" this homework, what do I mean? My dog ate my homework. I'm completing this homework at a rapid rate. I'm not doing very well on this homework. I've lost my homework. When someone is \"slammin'\" a task, that means that they are completing it quickly and efficiently. Another example would be, \"I've been slammin' these drinks since noon!\" Which of these words is synonymous with \"awful?\" \"Brutal\" is used to describe something that is awful or really bad in nature. For instance, \"Man, this party is brutal, let's leave now.\" \"Po-po\" is a shortened way of saying\u2026? Pores (on the face) \"Po-po\" is a shortened way of saying police. For instance, \"Let's run from this party, man, the po-po is here!\" \"So\" is another way of saying\u2026? In the '90s, \"so\" was used often to replace the word \"very.\" For instance, \"Those shoes are so '70s.\" If someone is \"throwed\" at a party, what does that mean? The person is yelling. The person is dancing quite a bit. The person is sober. The person is drunk. \"Throwed\" is another way of saying that someone is drunk. For instance, \"Matt got so throwed at that party last night.\" What does \"TMI\" stand for? Too much ice cream Too many inquiries Too much involvement If someone gives you too many details on a subject that make you uncomfortable, you might say \"TMI!\" For instance, \"TMI! I don't want to know what happens during pregnancy!\" What does a \"throw down\" refer to? A church choir A study"}, {"title": "rpj-common-crawl-2020-05", "text": "Groups often speak their own language with ever-evolving slang Jennifer Smola The Columbus Dispatch Jul 27, 2019 at 7:55 AM Jul 27, 2019 at 7:55 AM When 22-year-old Elizabeth Bergman said a certain hairstyle was \u201cgoals\u201d on a social media post recently, her father reacted with utter confusion. \u201cMy dad was like, is this grammatically correct?\u201d said the Ohio State University senior from Grandview Heights. \u201cHe\u2019s just like, did you mean to do that? Was that a typo?\u201d Nope, she was just trying to say that that it looked good. Fleek, high-key, stan \u2014 don\u2019t know these words? Well, maybe you\u2019re not supposed to. After all, that\u2019s sort of what makes slang, slang. \u201c(It\u2019s) when one group of people knows what it means but another person doesn\u2019t,\u201d said Ohio State senior Sarah Chopko, from Howland Center in northeast Ohio. \u201cLike, we know what it means, but our parents don\u2019t.\u201d One example Chopko said she and her peers use is saying \u201clit\u201d to describe something that is going to be great or fun. (No, Mom, this is not to be confused with the old-school, slangy use of \u201clit,\u201d which describes a state of drunkenness.) Another is \u201chigh-key,\u201d which basically means \u201creally\u201d or \u201cto a great degree,\u201d and is sister slang of \u201clow-key,\u201d meaning \u201cto a small extent,\u201d or \u201csubtle.\u201d Duh. Technically, there are two approaches for deeming something slang, said Michael Adams, professor of English language at Indiana University whose scholarly works include writings on slang and jargon. One is what Adams calls the \u201cpointy-headed\u201d rule. \u201cThat"}, {"title": "rpj-c4", "text": "What most people think it means: taking a hair and splitting it in two. What it really means: getting too bogged down in tiny details. It\u2019s generally used to describe someone very meticulous, or too picky. Basically someone who gets worked up over nothing. The phrase is thought to have originated in the 17th century, with the Oxford English dictionary listing the phrase \"cutting the hair\", which paints an even clearer idea of giving something a whole lot of effort, for not a great outcome."}, {"title": "rpj-c4", "text": "the wall. \"Two...jumbo...sausages...\" was all he could muster by way of explanation. It appeared that most people had succumbed to the lure of Chipbelly. At any given point during the show I could virtually guarantee there would be a nun, somewhere on the stage, taking advantage of a moment facing the back to blow her cheeks out exhaustedly and try to gain momentum again. The dance numbers felt as if we were wading through curry sauce. Getting a big enough breath to sing was a chore. Even bending over to put a pair of tights on was a struggle. A psychological disorder which renders the sufferer unable to control his or her onstage facial movements. At the opposite end of the medical spectrum from Mugging, this condition usually rears its head during dance numbers. The afflicted party will lack energy and appear listless, easily distracted and slightly behind the music. Movements will be small and unfocused. Only two known cures for Marking currently exist: the threat of a clean-up call or an announcement that the producer is watching. Don't pop the head, Cassie. Also known as How-to-get-a-day-off-when-there's-nothing-actually-wrong-with-you. A common affliction, particularly amongst lazier performers. Usually involves a pained expression, limp and/or cough, loud request for Neurofen, doubling over, refusal to eat and a brave \"No, I'll soldier on\" attitude. Precedes a day off. Anyone who has swung a show will have an acute ability to spot the seed-sowers, but it takes a strong dance captain to weed them out. A medical condition that renders the sufferer"}, {"title": "rpj-common-crawl-2021-04", "text": "in concrete, right? People often confuse the two.\" BURKE: \"Exactly. Something that's very concrete is very solid. But if you 'cement' a deal, it means you're putting the deal together, and that we've cemented it, which means it can't be broken. They all shook hands and 'ramped up' the project. So when you ramp up a project, it simply means to start a project.\" AA: \"Or speed it up, or increase it.\" BURKE: \"Exactly. After one week all three houses were finally built. That night, suddenly, the first little pig heard someone yelling outside his straw house. It was the wolf, and he was totally 'hammered,' which means completely drunk. \"'If you don't open up this door right now,' said the wolf, 'I'm going to blow your house down.' Well, after a moment, the wolf inhaled deeply and blew out with all his might until the house collapsed. \"The scared little pig ran down the road to the second pig's house, but the wolf -- who had a very large 'build' -- followed him. So a large build ... \" RS: \"A big guy.\" BURKE: \"If you have big build, or if you're 'built,' it means you are powerful and muscular. Again, after a moment, the wolf inhaled with all his might and blew down the house. The two pigs really 'painted themselves into a corner.' When you paint yourself into a corner ... \" RS: \"You can't get out.\" BURKE: \"You can't get out, you've created a situation that you cannot get out from. So"}, {"title": "rpj-common-crawl-2019-30", "text": "them, it will just scoff them all the same as if they were a carrot or a hand full of grass. Matt E. \u042d\u043b\u043b\u0435\u043d\u2666 BenCrBenCr A lot of it depends on context. If the context is referring to an individual not understanding, Casting Pearls Among Swine might be most appropriate. If the proverbial flutist doesn't know he is wasting his time, Whistling in the Wind seems appropriate. I would offer a new phrase: If the flutist knows he is wasting time, but doing it anyway Spinning Your Wheels might be good (this is generally a reference to someone whose car is stuck in the mud, but they hit the gas anyway in a futile attempt to get out). However, I once heard an Indian saying that could work very nicely: \"Playing the flute to a buffalo\"--the implications translate well to English. See what I did there. When I was teaching in a high school, we had a principal who loved to use a phrase that has to be a very old saying from deep country. He would say, \"You are grinning up a dead mules butt, boy.\" He would always look the person directly in the eyes and grin. RandallRichardsRandallRichards You can lead a horse to water but you can't make it drink. (implies knowledge not actual food) This saying is about stubbornness, not stupidity. \u2013 Matthew Read May 3 '17 at 21:46 Flogging a dead horse is used to refer to trying to make someone do something that they are never going to do in"}, {"title": "rpj-common-crawl-2022-05", "text": "kinds of failure or death. boonchai wedmakawand / Moment / Getty Images What does it mean to \"hit the books\"? To become famous for something terrible To study To fail miserably at something To cut all ties with social media \"Hitting the books\" is something with which American students will be familiar. More than the simple act of studying, it is closer to cramming, burying oneself in learning materials until the new information penetrates. Severin Schweiger / Bernhard Haselbeck / Cultura / Getty Images \"Bailing\" is an odd verb. What do you think it means? Fix a problem Leave suddenly \"Bailing\" means to leave suddenly as in \"Sorry, but I've got to bail on you.\" Other colorful American slang terms that mean the same thing include \"split,\" \"haul ass,\" \"blow,\" \"make tracks\" and the archaic \"scram.\" SammyVision / Moment / Getty Images Some people would love some \"tea\" while others hurl it. What do you think it is? \"Tea,\" likely derived from \"T for truth,\" is a modern slang term for truth. \"Sipping tea,\" conversely, refers to things that are \"none of your business.\" Other terms for truth include \"the dope,\" \"the score,\" \"the goods\" and \"not just whistlin' Dixie.\" Flashpop / DigitalVision / Getty Images \"Swag\" is a very odd term. What could it possibly mean? A state of coolness \"Swag\" has taken on new meanings over the years, but its origins remain a mystery. Some believe it has Dutch roots, originating in New Amsterdam. The meaning \"free stuff\" is interpreted as the word standing"}, {"title": "rpj-common-crawl-2023-06", "text": "1930s Hollywood popularized the phrase in movies like Dead End and Bowery Boys, featuring tough-and-up, macho-man characters hungry for a fight. 4. \u201cDon\u2019t flip your wig!\u201d This saying from the 1950s is another way of basically telling someone not to freak out. For example, \u201cDon\u2019t flip your wig Mom, but I accidentally threw a baseball through the kitchen window.\u201d 5. \u201cBurn rubber\u201d Source: SnappyGoat.com This slang phrase might not be the best advice to give to a newly-licensed driver. In essence, to \u201cburn rubber\u201d is to exceed the speed limit; put your pedal to the metal, so to speak. Maybe not such a good idea for any amateur drivers out there. 6. \u201cCruisin\u2019 for a bruisin'\u201d There\u2019s nothing quite like a little of that 1950s Greaser sass to get you pumped and oiled up for a street fight. If you look at it from a certain point of view, this saying doubles as both a threat and a semi-compliment. If you\u2019re \u201ccruisin\u2019 for a bruisin\u2019,\u201d it means you look particularly fight-able. 7. \u201cBust a gut\u201d There are ways to say \u2018LOL\u2019 without the mildly gruesome imagery that this saying implies, but I digress. In the early 1900s, if you laughed hard enough you were apparently in danger of \u201cbusting a gut,\u201d or giggling until your stomach exploded. Pretty cool\u2013also ew. 8. \u201cCome on snake, let\u2019s rattle!\u201d Like other phrases of the 1950s, this slang saying also had a double meaning. If you said this to someone, you were either itching for a fight or asking them"}, {"title": "rpj-common-crawl-2021-04", "text": "calm down. What did you mean if you said \u201crazz my berries\u201d? Dionisvera/ShutterstockRaspberries. The term referred to something that excited or interested you. If a movie was a big tickle, it meant what? fizkes/ShutterstockA family laughing together. It meant the movie made you laugh. If you called someone a \u201cwet rag,\u201d you meant that they were \u2026 ? vvoe/ShutterstockA cleaning rag. \u2026 No fun or a bore. You would call someone a wet rag if you were trying to goad them to go out and have fun. When you told someone \u201ccome on, snake, let\u2019s rattle!\u201d you meant what? The term had a dual meaning depending on the tone. It meant asking a girl to dance, but it could also mean you were challenging someone to a fight. If you asked someone \u201cWhat\u2019s your bag?\u201d what were you asking them? WeStudio/ShutterstockLuggage bags. You would be asking them what their problem was or where they were from. If someone asked you to the \u201csubmarine races,\u201d where did they want you to go? Associated PressA submarine. The slang term didn\u2019t mean actually watching submarines, rather it was a subtle way to ask if a significant other wanted to make out in the car. If you called someone a \u201cfink,\u201d you were referring to them as what? Oksana Mizina/ShutterstockA child pointing at another. A modern-day equivalent would be \u201csnitch.\u201d A \u201cfink\u201d was someone who betrayed your trust or revealed a secret. The phrase \u201cMeanwhile, back at the ranch\u201d meant what? Rena Schild/ShutterstockA ranch. Taken from the old westerns of"}, {"title": "rpj-common-crawl-2020-05", "text": "every body wang-ed every body chung-ed Thread starter Siavash2015 Siavash2015 Iranian-Persian What does it mean when someone says: We threw 2 parties, everybody had fun, everybody wang-ed, everybody Chung-ed. Is it a frequent word? Thanks a bunch in advance. sdgraham Never heard either. It sounds as though you're continuing to wade through the Urban Dictionary. EDIT: as I think about it, Dumpster-diving seems more appropriate where the Urban Dictionary is concerned. You two are clearly not familiar with Everybody Have Fun Tonight, a #2 hit in 1986 for the band Wang Chung. I quote the chorus: Everybody have fun tonight, Everybody wang chung tonight.\u200b sdgraham said: Definitely Dumpster-diving is more appropriate. But I came across this in a movie. It has nothing to do with dumpster-diving. It's a reference to the song: everybody \"had fun tonight.\" Glenfarclas said: So it means everybody had fun. Siavash2015 said: Right. It probably also implies that people danced, and that 1980s music was played (because why would you refer to this song otherwise?). So, it could mean dancing as well. Well, if someone told \" It would have 2 meanings and......it depends on the situation which meaning would fit. manfy German - Austria Don't search too hard for a deeper meaning - there might not really be one! I've heard that phrase several times in those 30minute light comedy serials, too. It's usually used to create a laugh-out-loud moment, without really knowing why. Since the song is rather old and since it was relatively short-lived, better don't think of using"}, {"title": "math", "text": "4. beat someone up * means \"\u75db\u6253someone\" * My younger brother and I always used to beat each other up, especially when we couldn't agree on what to watch on TV. ========================================================= ActionEnglish 141 1. low key light \u6697\u8c03\u7167\u660e 2. be left wide open * means \"\u72b6\u51b5\u5f88\u5371\u9669\uff0c\u5bb9\u6613\u53d7\u5230\u653b\u51fb\" * With all their players down at the other end of the field they left themselves wide open for the other team to score a goal. * He was always gossiping at work so he left himself wide open to be criticized by his colleagues. 3. forge -- \u4f2a\u9020 v. forger -- \u4f2a\u9020\u8005 4. pick sth. up * means \"acquire sth.\" * The course was one week long but I missed a few classes so I didn't really pick anything up. * if you're going past the supermarket, could you please pick up some milk? 5. grieve -- v. \u4f7f\u60b2\u75db\uff0c\u4f7f\u4f24\u5fc3 ========================================================= ActionEnglish 142 1. eye-level shot \u5e73\u89c6\u955c\u5934 2. backtrack * means \"\u8d70\u56de\u5934\u8def, \u8fd4\u56de\" * Before the exam at the end of the year the teacher is going to backtrack over all the things we've learned. * We got lost driving to Shunyi so had to backtrack quite a lot until we finally found the correct road. 3. something to be right under someone's nose * means \"\u5c31\u5728\u773c\u76ae\u4e0b\u9762\uff0c...\u663e\u800c\u6613\u89c1\" * I can't believe you couldn't find your wallet. It was right under your nose sitting on the coffee table. * I don't know why we're always looking for a new restaurant to go to when we've got an excellent one right"}, {"title": "rpj-common-crawl-2021-04", "text": "don't get sweets\", which pretty much means the same thing. \u2013 Carl Smith Jul 20 '13 at 16:25 I prefer Minsc's version. \"Squeaky wheel gets the kick!\" \u2013 Zibbobz May 21 '15 at 13:55 I heard this phrase used, I think by a Korean, in a documentary called BBoy Planet. There, it was translated as \"The nail that sticks out gets hammered down\", which seems to carry the meaning better into English. English phrases with similar connotations might include... Keep your head down. Don't stick your neck out. As you pointed out, Western culture has a different view of individuality, so a phrase like \"the nail that sticks out gets hammered down\" takes on a different meaning. Because of our culture, we infer that the message is something like Be More Sympathetic To Those Who Are Different - basically, Don't Be A Hammer. In an Eastern context, the meaning is obvious: Being Different Invites Trouble. Carl SmithCarl Smith I have heard this from both Japanese and Korean as well. It is very much an Asian ideal I think. \u2013 AthomSfere Jul 19 '13 at 3:09 A variant to those above is \"don't stick your head above the parapet\" \u2013 tinyd Jul 19 '13 at 11:21 Similarly, \"keep your nose clean.\" \u2013 John McCollum Jul 19 '13 at 11:32 I don't think this one is very common, but I've heard a version along the lines of \"Sticking your head out exposes your neck\" \u2013 David Kaczynski Jul 20 '13 at 2:19 I have often heard \"The chicken"}, {"title": "rpj-common-crawl-2022-05", "text": "How many different ways with words do you know? Start your FREE email English course now! \"Can I have some more chicken and corn, Mrs. Robbins?\" Tim asked. She replied, \"There's plenty of food. Eat to your heart's ..........\" (a) desire (c) accord (d) ease \"I don't think we should invite Wesley to the movies. He doesn't have a dime to his ........., so one of us will end up having to pay his way,\" Josh said to Joey and Luke. (a) pocket (b) wallet (c) bank (d) name \"You should have some grits this morning for breakfast. Grits stick to your ......... and keep you full until lunch time,\" Nancy advised Jeff. (a) hips (b) belly (c) ribs (d) tummy \"He is really bad with his money, to put it .......... He blew over $20,000 on pyramid schemes last year,\" Shannon said to Zack. (a) shortly (b) sweetly (c) meekly (d) mildly \"You have to find a job now. You have no money. Why won't you listen to ......... and put away those video games?\" Shelly asked her boyfriend. (a) argument (b) reason (c) lecture (d) sermon \"I'm glad we worked out a deal with my mom and your mother-in-law. Now we can finally put that issue to .........,\" Dave said to Alexis. (a) sleep (b) pause (c) rest \"The restaurant you took me to was gorgeous, to say the .........!\" Jennygushed to Mike. (a) worst (b) least (c) most (d) best \"If I get a job outside our home instead of working here, I'll"}, {"title": "rpj-common-crawl-2022-05", "text": "to throw him a biscuit.\" - \"That stinks like cyarn.\" - \"It's colder than a well diggers behind. (bee-hind)\" - \"Slower than the molasses in January.\" - \"Let me borrow (bahrry) your pig-sticker (pocket knife).\" - Have you got your pocket knife? \"I got my britches on, don't I?\" - \"Brogans\" = lace-up work boots - \"butter cutter\" - a soft insult to someone about their dull pocket knife. - \"Buggy\" = shopping cart - \"Oil\" is pronounced \"ohl.\" - Pin and pen both sound like pin; tin and ten both sound like tin. Get is pronounced \"git.\" - \"That little bait-gitter swallered it to his tummy-pucker.\" (A fish too small to keep swallowed the hook.) - And for Pete's sake, dressing and stuffing are two different things! (It's the holiday season as I am typing this, so it's a very present antagonization that I am dealing with since I do not currently live back home. There are so many more, but I've got to get back to work. :) \"You don't belong to be doing that when you're on the clock.\" Does 'Southern hospitality' exist? An upcoming change (but don't stop visiting) Newcomers: Don't miss Civics 101 In search of butter mints Lesson learned: Always check out your handyman Do Northerners and Southerners decorate differently? An ode to Charlotte's roads A matchmaker for newcomers? Local holiday traditions More light-rail tips from readers"}, {"title": "rpj-common-crawl-2020-05", "text": "Cockney rhyming slang - butchers hook = look. It's not commonly used but people do occasionally throw it into informal conversation. Instead of \"Let me see that,\" you might hear, \"Let's have a butchers at that.\" Chat up Flirting with the aim of picking someone up. Pick up lines are called chat up lines in the UK. Chuffed When you are really pleased, proud and embarrassed at the same time, you're chuffed. You might be chuffed at receiving an unexpected gift, or at seeing your child win a prize. People usually say that they are really chuffed. Dogs dinner A mess. It can be used as an unflattering way to describe the way someone looks - \"Don't wear that combination. You look like a dogs dinner.\" Or it can be used to describe any unfortunate mixtures of styles - \"With those Tudor windows and the modern glass addition, that house looks like a dogs dinner.\" Easy peasy A snap or a cinch. A common expression to describe something very easy, something you could do blindfolded. Flog No it doesn't mean whipping nowadays - though it can. It means selling. When someone tells you they are going to \"Flog the TV on ebay,\" they are not suggesting a weird practice, but a way of putting something up for sale. Full stop A period in grammar. British people never use the word period to mean a punctuation mark. Full stop is also used in the same way that period is used, for emphasis - \"Belt up. I will"}, {"title": "rpj-common-crawl-2021-04", "text": "his videos. What are they saying it is? Really poor Gen Xers could describe pretty much anything as \"the bomb\" or even \"the bomb diggity.\" Food, music or movies, they could use that term to describe a lot. Except for when they were in an airport. When someone said you were \"buggin,'\" what were they saying about how you were acting? Slow-moving When you were \"buggin,\" you were doing something out of character or just plain silly. When someone else was \"buggin,\" the rap group Whistle had the best advice to handle it: \"Don't take it seriously.\" You have to have \"cheddar\" to drive a BMW. Can you tell us what \"cheddar\" is? A snack A license If you had a fat bank account, drove the finest vehicles, flew in private jets, and wore designer brands, it was safe to say you were ballin.\" A casual observer might say you had mad \"cheddar,\" too \"Like\" what does someone mean using \"like\" in this way?\" When you're talking and you have a brain freeze or are stumbling for the right word, \"like\" is a universal gap filler. It's, \"like\" an all-purpose word that is fitting for many situations. It can be a \"buzzkill\" when someone is eating a banana split and someone tells them how many calories it is. Can you say the meaning of \"buzzkill?\" Something that is scary Something that's heavy Something that's loud Something that ruins an enjoyable activity When a Gen Xer was listening to music on their boombox in either their bedroom"}, {"title": "bm25", "text": "ser and estar which respectively reflect the aforementioned characteristics. So, to say about anyone that es un gilipollas means that he is stupid/ annoying permanently, while to say est\u00e1 agilipollado reflects both his present state and the fact that it could change at any time to a non agilipollado one. This is not true for a capullo: if someone thinks about someone else that he is a capullo, he thinks so permanently, because the degree of evil he sees in the capullo's actions tends to be thought of as a permanent characteristic, inherent to the capullos personality. So the correspondent verb ser would be used: es un capullo, and the estar verb would never be used. Whenever used as an affectionate or heavily informal form of teasing rather than as an insult, though, capullo is used a bit more often. This may be because someone who does not have an intention to offend will resort to a lower amount of syllables, hence rendering the expression less coarse and ill-sounding. Therefore, expressions such as venga ya, no seas ___ (\"come on, don't be silly\") would use capullo more frequently than gilipollas. Buey/Huey/G\u00fcey/Wey/We/Way Buey/Huey/G\u00fcey/Wey/We is a common term in Mexico, coming from the word buey that literally means \"ox\" or \"steer.\" It means \"stupid\" or a \"cheated husband/boyfriend/cuckold.\" It can be used as a less offensive substitute for cabr\u00f3n when used among close friends. Mexican teenagers and young Chicano men use this word routinely in referring to one another, similar to \"dude\" in English. \"Vato\" is the older"}, {"title": "bm25", "text": "surrounding the house.\" \"I love you heaps.\" \"Give it heaps!\" \u2013 give it your best effort! often in cooking someone would say, \"that's heaps\" meaning 'that's too much' (also used in Australia) hokey pokey (noun) \u2013 the New Zealand term for honeycomb toffee; also a flavour of ice cream consisting of plain vanilla ice cream with small, solid lumps of honeycomb toffee. jandals (noun) \u2013 the NZ term for flip-flops. Originally a trademarked name derived from \"Japanese sandals\". jug (noun) \u2013 a kettle (also used in Australia) kai (noun) \u2013 M\u0101ori word meaning food, or something to eat, used by M\u0101ori and P\u0101keh\u0101 alike kumara (noun) \u2013 sweet potato, specifically those historically cultivated by M\u0101ori. Kiwi (adj) \u2013 Not only does Kiwi mean 'a New Zealand person', but it is sometimes used to replace the name of New Zealand in NZ businesses or titles, such as KiwiRail, Kiwibank and KiwiBuild, or New Zealand-related nouns, e.g. \"Kiwi-ism\". It is also used to address something that is particularly related to New Zealand, e.g. \"that house is pretty kiwi\" (also used in Australia). N.B. Kiwifruit is always called \"kiwifruit\". luncheon sausage (noun) \u2013 devon sausage (also called \"fritz\" or \"belgium\" in some parts of New Zealand) metal road (noun) \u2013 a dirt road overlaid with gravel to assist drainage and keep dust down, typically found in rural settings puckerood (adj) \u2013 broken; busted; wrecked. From M\u0101ori \"pakaru\" \u2013 to shatter ranchslider, ranch slider, (noun) \u2013 a NZ term for a sliding door, usually of aluminium frame and containing glass"}, {"title": "bm25", "text": "and is occasionally used at the last part of a statement) \"T-Dot\" (abbreviation word for \"Toronto\") \"Telly\" (slang for a hotel or a hotel room) \"Ting\" (a thing but usually refers to an attractive female) \"Two-Four\" (refers to a case of 24 pack beers) This noun is not unique to Toronto but is used across Canada. \"Wasteman/wasteyute)\" (a worthless, garbage, insensible idiotic person who makes bad decisions with their life, both words being used interchangeably) \"Two-Twos\" (unexpectedly or quickly) \"Wifey\" (girlfriend, or wife) \u201dWozzles\u201d (giving blowjob) \"Yute\" (Patois word from English \"youth\") Verbs \"Allow/Lowe it/that\" (to ignore, forget or not bother with) \"Ball up\" (smoking marijuana) \"Beef\" (argument, fight) \"Buss\" (to give/to send, to bust, or to ejaculate) \"Flex\" (to show off such as money and clothes) \"Link (up)\" (to meet up, give someone something, pre-relationship status) \"Nize it/that\" (to tell someone to shut up or stop talking) \"Pree\" (to pay and look close attention to) \"Reach/come thru\" (synonyms for \"come by\" or \"attend\") \"Scoop me\" (to get a ride somewhere, get picked up) \"Scrap\" (to fight) \"Y-pree\" (patois word, meaning \"what's up?\" or to mind your own: \"why are you in my business?\") Controversy The article on VICE, dated October 21, 2019, by Sharine Taylor, featured a CityNews article, \"New Toronto slang growing in popularity,\" and has sparked controversy within the community, which stated that it failed to represent Toronto slang. Following up, she stated the problem is the slangs are not \"new,\" as the title had implied, and belong not to Toronto but to"}, {"title": "bm25", "text": "that of immaturity or a \"brat\". Also in Argentina, since pendejo literally means \"pubic hair\", it usually refers to someone of little to no social value. In Peru, however, it does not necessarily have a negative connotation and can just refer to someone who is clever and street-smart. In the Philippines, it is usually used to refer to a man whose wife or partner is cheating on him (i.e. a cuckold). In North Sulawesi, Indonesia, pendo (a derivative of pendejo) is used as profanity but with the majority of the population not knowing its meaning. The word was adopted during the colonial era when Spanish and Portuguese merchants sailed to this northern tip of Indonesia for spices. In the American film Idiocracy, Joe Bauers's idiot lawyer is named Frito Pendejo. Burciaga says that the Yiddish word putz \"means the same thing\" as pendejo. Cabr\u00f3n Cabr\u00f3n (lit.: \"big goat\" or \"stubborn goat\"), in the primitive sense of the word, is an adult male goat (cabra for an adult female goat) and is not offensive in Spain. It is also used as an insult, based on an old usage similar to that of pendejo, namely, to imply that the subject is stubborn or in denial about being cheated on, hence the man has \"horns\" like a goat (extremely insulting). The word is offensive in Mexico, Cuba, and Puerto Rico, as it means \"asshole\" and other insults in English. The seven-note musical flourish known as \"Shave and a Haircut (Two Bits)\", commonly played on car horns, is associated with"}, {"title": "bm25", "text": "saying.\u201d When visiting the market and pricing market goods, if you want to beat down the price, you could simply say \u201chow much last.\u201d It means \u201cWhat\u2019s the final price?\u201d. If you find an item too expensive, you could say \u201d It too cost, how much last?\u201d It simply means \u201cIt\u2019s too expensive, what\u2019s the final price.\u201d This is one you would like to know how to say because nobody likes to be left with an empty stomach. This simply means \u201cI want to eat\u201d or \u201cI am hungry\u201d. The \u2018H\u2019 in the sentence means \u2018hungry\u2019. So if you are asking for directions to a restaurant, you could say \u201cwhere I fit chop\u201d. It means \u201cwhere can I eat\u201d This simply means \u201cmy place\u201d or \u201cmy home\u201d. So if you want to invite someone over, you could say \u201ccome my domot\u201d which means \u201ccome to my place.\u201d This is usually added to sentences as a show of courtesy. Abeg means \u201cplease\u201d but it could also be an impolite statement or used to show incredulity depending on how you use it. You could say \u201cAbeg, I wan chop\u201d which means \u201cplease I want to eat.\u201d You could also say \u201cAbeg!! I want chop\u201d which could mean \u201cDon\u2019t bother me!! I want to eat.\u201d In another instance, someone can say \u201cAbeg! E no possible\u201d which means \u201cRidiculous!! It\u2019s impossible.\u201d This means \u201cNo qualms\u201d or \u201cNo problem.\u201d It is an expression that shows approval. So when someone says \u201cNo wahala\u201d, it shows that they approve of you or whatever"}], "hoverinfo": "text"}, {"x": [-0.003222704865038395, -0.0070470646023750305, 0.02609352022409439, -0.024025436490774155, 0.01587800681591034, 0.02074335515499115, 0.033433474600315094, 0.004387028981000185, -0.033383406698703766, -0.022428037598729134, -0.008686060085892677, 0.03596264868974686, 0.02549891546368599, 0.060577210038900375, 0.1100863590836525, -0.03384850546717644, 0.019086692482233047, -0.04369744285941124, 0.02649097703397274, 0.05131533369421959, -0.006086087319999933, 0.025175180286169052, 0.048947252333164215, 0.0771690160036087, -0.010375902988016605, 0.06911389529705048, 0.059702809900045395, 0.023589452728629112, 0.051924798637628555, -0.012656284496188164, 0.03499893844127655, 0.05033811181783676, 0.09361698478460312, 0.061598554253578186, -0.021160125732421875, 0.09723205119371414, 0.09723205119371414, 0.042076773941516876, 0.04409559443593025, -0.008870245888829231, 0.04428936541080475, 0.025053920224308968, 0.00935258250683546, 0.01458441186696291, 0.004990715999156237, 0.049281612038612366, 0.03614379093050957, -0.034185443073511124, 0.07009301334619522, 0.01152829546481371, 0.08500610291957855, 0.06600458174943924, 0.08673302084207535, 0.13003505766391754, 0.04802151769399643, 0.05760945752263069, 0.05292120203375816, -0.037929750978946686, 0.09340140968561172, 0.10267233848571777, 0.09616460651159286], "y": [-0.14512541890144348, -0.08746547996997833, -0.12069651484489441, -0.09468613564968109, -0.14051854610443115, -0.099051833152771, -0.0944272056221962, -0.05989574268460274, -0.12286456674337387, -0.0579308457672596, -0.07919994741678238, -0.12589333951473236, -0.13581232726573944, -0.18100987374782562, -0.11676069349050522, -0.09454246610403061, -0.034913115203380585, -0.09369944036006927, -0.09046199917793274, -0.12527325749397278, -0.0890963152050972, -0.14517487585544586, -0.13895346224308014, -0.131353497505188, -0.03959507867693901, -0.1206265464425087, -0.15657824277877808, -0.09054194390773773, -0.12517979741096497, -0.18021541833877563, -0.13052968680858612, -0.06467734277248383, -0.10273338854312897, -0.06213153898715973, -0.13707506656646729, -0.0508112795650959, -0.0508112795650959, -0.0924421101808548, -0.19758905470371246, -0.1355358064174652, -0.05649620667099953, -0.08755799382925034, -0.1396813988685608, -0.0593470074236393, -0.04997110366821289, -0.12414664030075073, -0.09704552590847015, -0.14316225051879883, -0.07615475356578827, -0.12100721150636673, -0.09166820347309113, -0.1705169826745987, -0.11582205444574356, -0.1065332293510437, -0.004860322456806898, -0.10683687031269073, -0.04410069063305855, -0.08600430935621262, -0.10398595035076141, -0.09536875784397125, -0.04688332602381706], "mode": "markers", "name": "Cluster 7", "marker": {"size": 8, "color": "rgb(252,205,229)"}, "text": ["Document 74", "Document 104", "Document 129", "Document 178", "Document 227", "Document 304", "Document 312", "Document 421", "Document 427", "Document 465", "Document 547", "Document 553", "Document 628", "Document 638", "Document 639", "Document 648", "Document 657", "Document 666", "Document 675", "Document 720", "Document 723", "Document 745", "Document 782", "Document 790", "Document 795", "Document 814", "Document 820", "Document 831", "Document 852", "Document 868", "Document 884", "Document 885", "Document 889", "Document 913", "Document 947", "Document 950", "Document 951", "Document 953", "Document 958", "Document 961", "Document 965", "Document 972", "Document 973", "Document 977", "Document 983", "Document 986", "Document 989", "Document 990", "Document 992", "Document 996", "Document 1023", "Document 1042", "Document 1045", "Document 1109", "Document 1125", "Document 1158", "Document 1161", "Document 1208", "Document 1255", "Document 1349", "Document 1482"], "customdata": [{"title": "rpj-common-crawl-2020-05", "text": "what the \u201cchamp\u201d has to say\u2026 \u201cI was going up there to let them know that, \u2018Listen you son of a bitch\u2026.If I say turn, you turn.\u2019\u201d Sounds like a real scum to me. Boy Steve, you must be having a slow day today thinking I might want to \u201ctear into them\u201d for their observations if they added their name. My guess is they are not proud of what they are saying but I don\u2019t have any reason for \u201ctearing into them.\u201d"}, {"title": "rpj-c4", "text": "A New Year\u2019s I\u2019d Rather Forget! Recently my good friend John recounted a story about a visit to Guatemala. You can read it here. Among my buddies busting chops is an art. Such are the ways with us. It\u2019s a harmless method for us to bond and show affection but to also have fun \u2014 at each other\u2019s expense, of course. There is the chop-buster and the bustee, the person who is on the receiving end of getting his shoes squeezed. For instance, my friend John has a home in the Poconos where we have crashed many weekends and engaged in our customary goofy antics. On one of our very first visits, the house was sparsely furnished but a kitchen cabinet was brimming with boxes and boxes of Gevalia gourmet coffee. At some point, I asked for a cup of coffee, and John busted out a jar of some cruddy freeze-dried instant grinds. Well, not one to let a fertile moment go by, the No. 1 horn-breaker in our group, Pedro, seized it. He mockingly berated John for making us feel unworthy of his quality stash. There are a bounty of moments like these that get dusted off and replayed. We are equal-opportunity in our teasing. There are no sacred cows. And all it takes is one event \u2013 just one \u2013 for a chop-busting theme to take hold. There is no statute of limitations. For John, it might be about the coffee, or his lead foot driving, which has earned him the title of \u201cMannix,\u201d"}, {"title": "rpj-c4", "text": "mutton chops and cracked feet? What do you think his story is?\" the button, keep the flame burning.\" And boy, does my finger get sore."}, {"title": "rpj-c4", "text": "He said 'I'm going to chop off the bottom of one of your trouser legs and put it in a library.' I thought \"That's a turn-up for the books. Quotes from the brightest (and dumbest)."}, {"title": "rpj-common-crawl-2021-04", "text": "Chopin.\u201d \u201cGuess we just got to break a window then,\u201d I said. \u201cI suppose we do, Chopin. Would you like me to try?\u201d \u201cBe my guest.\u201d I am pretty excited for what is coming next. Bigote winds up his body like a spring, and delivers a massive karate chop to the passenger window. His boney hand bounces off with a loud \u2018crack.\u2019 \u201cAAAAAHHH!\u201d Bigote says, clutching his hand. \u201cOh shit, sir, did you break anything?\u201d I try to say this with a straight face. \u201cIt is too early to tell the extent of the physical damage, Chopin. But it is safe to say that this glass is especially made to withstand assault. Try it with a hefty stone.\u201d \u201cYou got it,\u201d I say, and pick up a loose piece of asphalt nearby. Then I chuck it right at the window from point-blank range. But my hand slips and the asphalt hits the door right below the window, bounces off and hits me in the nuts, sending me to the floor. My world collapses like an accordion into a tight ball of breathless pain. All time and space disappear. I see the face of God, and He looks like my mom. I smell oil and stale beer and imagine that this is what everything must smell like when you\u2019re dead. Then, I snap out of it a little, and find myself sprawled on the ground clutching my crotch. \u201cOwowowowow,\u201d I say, when I can find my breath. \u201cGod damnit.\u201d \u201cChopin, are you alright?\u201d \u201cJust dying over here,"}, {"title": "rpj-c4", "text": "You are here: Home / 2015 Posts / Busting a nut in my coffee and living is what you\u2019re not gonna do. bruh. When not responding to the dictate:\" Will the Defendant Please Rise..\" CEO and Creator of OHN;Slaus, is a comic illustrator and Social Media whore who spends his free time building legos, playing video games, drawing fantasy characters and being abused by his wife, two sons and cat. If someone called the cops on me for beatin\u2019 this n!gga\u2019s azz, and if it took the cops 45 minutes to get there, guess what I\u2019ll be doing? STILL whuppin\u2019 that n!gga\u2019s azz. Yep. Wouldn\u2019t even stop to take a break."}, {"title": "rpj-common-crawl-2023-06", "text": "see parents on the news, and their kid just got busted for murdering a 7-11 clerk, and they're like, 'But my Bubba's a good boy. He'd never hurt a fly.' So I'm sure your parents would forgive you for whatever you did.\u201d \u2014 Alex Flinn \u201cI can take pot or leave it. I got busted in Japan for it. I was nine days without it and there wasn't a hint of withdrawal, nothing.\u201d \u2014 Paul McCartney \u201cWho gets to be the judge of reality? If it was deeply felt, believed, spoken about often or altered your life course, then it was real enough. Faith doesn't get the luxury of all those things one hundred percent of the time, but we call that normal behavior based on a gut feeling. I said. I looked at his wife and she busted out laughing. Her husband was trying to catch invisible butterflies above his head-dementia. My patients teach me the most sobering of truths: Why wreck his smile. If I could see them, I would want to catch them too.\u201d \u2014 Shannon L. Alder \u2014 Anthony Liccione \u201cThere's nothing you can do about busted ribs. You just have to wait for them to pop back into place again.\u201d \u2014 Kevin McCloud \u201cI busted my chin open trying to be Evel Knievel on my bike. When it happened, you could see straight through to the bone, I thought my dad was going to pass out. It left a scar that I still have now.\u201d \u2014 Karin Slaughter \u201cThere's a pounding"}, {"title": "rpj-common-crawl-2022-05", "text": "sit at the table wh... I said \u201cI love you\u201d to my cake. It burst into tiers. Edit: rip my inbox! Edit 2: so many awards but no gold? I dare you to gild me. Go ahead, make my day! Edit 3: Guys I was being sarcastic and referencing the movie Sudden Impact (cries in being old). Whoever gilded me just wasted their coins but still, thanks... As a home appliance salesman, a customer once told me, \"I thought my grandma was crazy when she talked to her fridge. Maybe she was just ahead of her time!\" He was looking at our Samsung fridge with an Android screen. This was 4 years ago when I worked at Sears (RIP) but I still think about it sometimes and laugh. Been lifting weights without much results. Saw a super ripped trainer at the gym and asked him how he got so jacked . . . He paused and then said 'Let me show you the whey'. RIP Grandpa I'll never forget my grandpas' last words to me \"Stop shaking the ladder you cunt\" RIP boiling water You will be mist. What happens to a book when it starts to exercise a lot? It gets ripped. A husband and wife go to church every Sunday. However, the husband would always fall asleep while church was in session. One day the wife went to the priest and said \u201cMy husband always falls asleep, and I can\u2019t see when he does, so whenever he does can you make a hand gesture"}, {"title": "rpj-common-crawl-2020-05", "text": "thing is that I do believe that Z. sees himself doing something exactly like that. lolololol!!! Lol, that was funny! @Big Willy\u2026OMG! LORL\u2026I haven\u2019t heard that in ages! Opercarla says: HaHa! In our Italian American family those were proudly referred to as \u201cfront butts\u201d Also known as a \u201cDunlap\u201d\u2026\u2026 As in\u2026..your belly done lapped over your belt buckle\u2026. I had lettered on the hood scoop of my last race car \u201cThe Over The Belt Gang !!\u201d Where do I send the crust from my morning toast? bigwillie501 says: About those threats. If nobody knows where he is, how is he continuing to receive threats? And, as an aside, has anyone actually kept up with the wackos from the NBPP\u2014who have been the fall guy in the threats department. While the Z. supporters have whined about how they were not arrested and locked up (for a poster that I believe was immediately pulled as soon as someone pointed out to them the kind of deep water they could be in with it), it seems that I recall that one of them was arrested shortly thereafter on a parole violation (possession of a firearm). Are there any NBPP folks currently out of jail? Lurker, there\u2019s only like 3 of them. And there\u2019s only so many sick days. So besides the one in jail I suppose the other two went back to work. \ud83d\ude42 LOL\u2013Right! Tommy'sMom says: Excellent as always! I really don\u2019t know how to copy a short cut,so I hope this works. Listening to a wonderful version"}, {"title": "rpj-common-crawl-2019-30", "text": "condition that prevented him from controlling his lips? Maybe he thought I was on fire and was trying to put me out? Maybe he didn\u2019t like my jacket? Maybe, he spat on me for no reason at all. No no. That can\u2019t be right. Ridiculous! It must have meant something! Surely! Maybe. Just maybe, I reminded him of one thing. The one thing he hated more than anything else in this rotten world. A thing that had haunted him since the day he\u2019d been born. A thing that chased him down long corridors in his nightmares. A thing that had killed his mother, his father, and his pet goldfish. A thing he feared, but a thing he also one day vowed to destroy: BISCUITS. Photo titled Hoodlum by carbonnyc. biscuitsblogcharvacharverchavculturedramahoodlumhumorHumourinspirationLifelifestylemeaningmusingsmysteryOpinionpeoplepersonalpsychologyrandom thoughtsruffianspat atspitspit in facethoughts Previous PostThe Annual Existential Crisis (Birthday)Next PostI Was A Superhero 18 thoughts on \u201cA Hoodlum Spat In My Face\u201d 2blu2btru says: I really enjoyed this! It\u2019s funny how you can think of so many scenarios in which you could be spit upon, from the mundane to the Shakespearian. Perhaps he could tell you kept a blog, and wanted to give you something to ponder and write a great post about? That\u2019s my vote, anyway. \ud83d\ude42 Dan B says: Perhaps you\u2019re right, perhaps he knew that I hadn\u2019t updated my blog in months and that spitting in my face would inspire me to do so! What a gentleman. Thanks for the kind words. aconn464 says: I\u2019d have a hard time stopping myself from"}, {"title": "rpj-book", "text": "snapping and possibly the sign-language gesture for \"kangaroo.\" I ended, strangely, by kissing the tips of my fingers, one by one, which I didn't want to be doing but which was one of those things where once you start, you've got to commit and keep going. \"I don't think I learned that one yet,\" Wesley said. \"Of course you didn't. I just came up with it.\" I slowly backed away from him, all sinister-like, toward the door. \"But I'll tell you what it means. It means you have an enemy on that battlefield. A spitwad ninja. Someone who isn't playing for either side. It means you should be very careful out there, Wesley, because I'm going to be a team of one. And I'm coming for you.\" I almost paused to repeat that in my head. I didn't want to forget it, because it sounded like something someone would say in one of Dad's action movies, and I wanted to remember it forever, in the likely event that I would never get to make an awesome good-guy-going-rogue speech again. I started out the door, then had a thought and turned back. \"Oh. It also means I'm not sitting in the uneven desk anymore. So... there.\" I plunged out into the hallway, a weird lump forming in the back of my throat. I supposed I had realized it as soon as I saw the blizzard on my window. But after everything I'd just said, it was officially sinking in. I wasn't just Wesley's enemy. I was everybody's"}, {"title": "rpj-common-crawl-2021-04", "text": "onto the streets below. He hears the faint shattering as they hit the ground, but manages to keep his footing and heads towards the opposite end. But he comes to a sliding stop after seeing the courtyard below, and the gap to the nearest ledge. But the decisions is made for him, when he hears more shingles shattering, meaning the other man has reached the roof. He backs up and readies himself for the jump, \"Ah hell. I need a new job.\" He makes the leap easier than he anticipated, smashing though a set of shutters and rolling into a patron's room. A woman shrieks and covers up her bare bosom, while her partner starts to threaten me. Getting up and running towards the exit to the hallway he remarks, \"Man I am such a cock block tonight.\" Barreling down the hallway, the man's screaming intensifies, meaning his new friend made the jump as well. The one fleeing hopes the angry partner will slow the other down, but he wouldn't be on it. He makes it down to the kitchen, but the seeker has caught up. In a desperation move, the man swings open a freezer door trying to knock the other down, but to no avail. The two of them spill out into an alley, and finally, the man is cornered. He draws his weapons and points it at the aggressor, \"I don't want to shoot you. But I will. There's no way I'm ending up in jail tonight. Or ever really.\" \"I wasn't planning"}, {"title": "rpj-common-crawl-2020-05", "text": "He turns to leave, and Sully says, \u201cFerd doesn\u2019t pay me to do his shed. Why should you have to pay me to do your garage?\u201d White stops. \u201cNow it\u2019s your turn to bust my chops?\u201d \u201cSully doesn\u2019t bust chops,\u201d I say. \u201cHe\u2019ll do it.\u201d \u201cYou shittin\u2019 me?\u201d \u201cNo, he isn\u2019t,\u201d says Sully. \u201cTed doesn\u2019t shit.\u201d White laughs like a shotgun. The skinny kid starts giggling. \u201cYou\u2019re up on 22, right?\u201d asks Sully. \u201cYeah,\u201d says White. \u201cFive miles out of town. If you come to your senses and change your mind, I\u2019ll understand.\u201d \u201cI don\u2019t like changing my mind,\u201d says Sully. White and the skinny kid, who\u2019s still giggling over the shit joke, cross the parking lot and walk up the road toward the new town hall to spatter more paint. The Muralist can be found at www.amazon.com/author/danapearson. Posted in Kindle Direct | Comments Off on The Muralist: Chapter 1 I can explain by Admin Posted on February 3, 2016 He\u2019s cute, but he\u2019s a menace. It probably didn\u2019t look good. I was calling a red squirrel a \u201cson of a bitch\u201d in an angry tone while chasing it down my driveway. And I was carrying a butcher knife. Yeah\u2026I probably looked (and sounded) psychotic. But I can explain. First, to clarify: I had no intention of murdering the red squirrel. I just wanted him to understand that his presence on my property was no longer desired. And since previous efforts to nudge him toward any of my neighbors\u2019 yards had proven fruitless, I figured a"}, {"title": "rpj-c4", "text": "but the air was extremely heavy. As always, on stories like this, some of the troops were getting nervous about The Stranger Hanging Around. I was standing in the kitchen watching Frank put some tacos together and wondering when he was going to start waving the butcher knife in my face and yelling about the time I Maced him on my porch in Colorado (that had been six months earlier, at the end of a very long night during which we had all consumed a large quantity of cactus products; and when he started waving a hatchet around I'd figured Mace was the only answer...which turned him to jelly for 45 minutes, and when he finally came around he said, \"If I ever see you in East Los Angeles, man, you're gonna wish you never heard the word 'Mace', because I'm gonna carve it all over your f--ckin body.\" So I was not entirely at ease watching Frank chop hamburger on a meat block in the middle of East L.A. He hadn't mentioned the Mace, not yet, but I knew we would get to it sooner or later...and I'm sure we would have, except that suddenly out in the living room some geek was screaming: \"What the hell is this goddamn gabacho pig writer doing here? Are we f--kin crazy to be letting him hear all this s--t? Jesus, he's heard enough to put every one of us away for five years!\" Longer than that, I thought. And at that point I stopped worrying about Frank."}, {"title": "rpj-common-crawl-2021-04", "text": "years ago, and my first thought was, \"Cop.\" I quietly told my friends to cool it, cool it, something's off with that guy, and everyone immediately began doing the I-Ain't-Doing-Nothin' Shuffle.

When the man started walking towards me, I began to do an inventory in my head of the cash I had on hand, the cash my friends had, in the event I wound up needing bail money. He presented himself before me, put out his hand, and introduced himself.

I hope I'm not intruding, he said. Not at all, I told him with trepidation flying around my head like I was Tippi Hedren. I offered him some coffee while my friends milled around the campsite pretending they weren't baked and had important stuff to do, casting furtive glances my way as they waited for the hammer to fall.

Listen, he said, I noticed you guys were smoking a joint.

Uh-huh, I replied.

I don't know anyone who smokes weed, he said.

Uh-huh, I replied.

My father has cancer, he said. It's bad. He can't eat because of his treatments, and that's as bad as the cancer. His doctor pulled me aside last week and mentioned marijuana as something that could help him.

Uh-huh, I replied.

You don't know me, he said, but I was wondering if you could give me some, so I can see if it helps him. I don't know anyone else I can ask.

I was still. This is either a set-up, I thought, or this guy is for real. As a NORML supporter, I knew full well that what he was"}, {"title": "rpj-common-crawl-2023-06", "text": "the title is to do what I do. I simply look at them and say \"Hey, you.\" Hey!1 I'm a drunken fight Mick and I resemble that......uhhhhh....... Even wonder why they call it the Paddy Wagon? Yeah, I'm about as Irish as an american gan get (all 4 grandparents emigrated here from Ireland) and i don't find it remotely offensive. what I do find offensive is people that get offended to easily. so I'm gonna get drunk and start KICKING THEIR ASSES!!!!!! Mmm...pork chops... Because of the number of Irish cops in New York"}, {"title": "rpj-common-crawl-2020-05", "text": "went to claim our beer and to our surprise were handed a whole jug, each. After managing to pass one jug off to a neighbouring table, we were still left with the problem of three jugs to get through. The solution? Drinking games, of course. We kicked off with a favourite called \u201cAr Saw Chor\u201d. Kev had taught it to our group a few nights prior and it\u2019s supposed to be an old game Japanese kamikaze pilots used to play to psyche themselves up before flying off. Given the strong anti-Japanese sentiment that still exists among many Chinese after what happened in the last World War, we conveniently omitted this fact when Jack asked us where the game came from. The rules are simple. There are three words which are yelled out: Ar, Saw and Chor. Each word is associated with a hand action. Ar is said with the right hand being brought down once in a karate chopping motion. Saw is the same, but with the left hand. Chor is said with both hands being brought down. Whenever you make the chopping action, you point to another person, and their job is to continue the sequence. So the first person says, \u201cAr!\u201d and points to another person with their right hand, who then has to shout out, \u201cSaw!\u201d and point to another person with their left hand, and so on. First person to break the sequence by using a wrong hand action, or by thinking too long takes a drink. It\u2019s pretty fun, and you"}, {"title": "rpj-common-crawl-2020-05", "text": "the fuckin' smog's the fuckin' reason you have such beautiful fuckin' sunsets.\" Death Glare - Chili makes good use of these, often commanding people \"Look at me\" to that he can aim one at them. Martin is intrigued by it so much that he spends a scene trying to imitate it, with Palmer coaching him on how to do it right. Harry's attempt to copy the effect with Ray Bones is a hilarious Epic Fail. The Ditz: A variation; Ray Bones is a big, intimidating mobster. He's also a complete fucking idiot. Ray Bones: Let me explain something to you. Momo is dead. Which means that everything he had now belongs to Jimmy Cap, including you. Which also means, that when I speak, I speak for Jimmy. E.g., from now on, you start showing me the proper fucking respect. Chili: \"E.g.\" means \"for example\". What I think you want to say is \"i.e.\". Ray Bones: Bullshit. It's short for \"ergo\". Chili: Ask your man. Bodyguard: Best of my knowledge, \"e.g.\" means \"for example\". Ray Bones: E.g., i.e., fuck you! The point is this: is that, When I say \"jump\", you say \"OK\", okay? Dynamic Entry: Chili pops Ray Bones in the nose the second he opens the door, then calmly collects his leather jacket and leaves. Fish Out of Water - Lampshaded, but subverted. Chili's direct manner is frequently discussed as being at odds with the Hollywood machine, yet he's well-liked by all the actors, agents and other Hollywood archetypes he encounters. Bo: It says here"}, {"title": "rpj-common-crawl-2019-30", "text": "by your right--\" Exasperated, the square-jawed, lightly-tanned templar says: \"And then my ears! I understand. Let's get on with it--\" With emphasis upon the first of his words, the blonde, mustachioed man exclaims: \"WRONG! Your ears you'll keep, and I'll tell you why: So that every shriek of every child at seeing your hideousness will be yours to cherish. Every babe that weeps at your approach, every woman who cries out, 'Highlord, what is that thing?' will echo in your perfect ears. That is what 'to the pain' means. It means I leave you in anguish, wallowing in freakish misery forever.\" With a dubious turn of his head, a dash of caution flickering to life in his features, the square-jawed, lightly-tanned templar says: \"I think you're bluffing.\" Impassively, the blonde, mustachioed man says: \"It's possible, pig. I might be bluffing. It's conceivable, you miserable vomitous mass, I'm only lying here because I lack the strength to stand.\" After a moment's passage, the blonde, mustachioed man says: \"Then again... perhaps I have the strength after all.\" His emerald-eyed gaze never leaving the square-jawed, lightly-tanned templar's form, the blonde, mustachioed man stands up from an elegantly made bed. Lifting his blade, the blonde, mustachioed man says: \"Drop. Your. Sword.\" The square-jawed, lightly-tanned templar's jewel-encrusted sword clatters against the ground. Post by: Redheart on June 13, 2014, 10:06:00 PM I thought this sounded very zalanthan: From 47 Ronin A troop of Ronin samurai are here. The half-Japanese, half-Caucasian man is here, crouched down surveying a set of beastly tracks."}, {"title": "rpj-book", "text": "you use the sword to carve roast beef as though it's perfectly normal. On one such occasion, I notice the gleam in your eye becoming a tiny silhouette. _Cut, cut, cut_. You are laughing about a comedy sketch you saw on Channel 4, rubbing the sword against a large kitchen utensil, sharpening your instrument. The smell of oxtail gravy makes my mouth water. And the rattling in my head begins. In early April, while we're curled up on the sofa one evening, you tell me you've been fired from your job. You don't explain the circumstances fully, except to say you dangled one of the directors out of the window for insulting you. You are defiant, dismissive even. \"Luna, fuck them! I worked there for seven years and that's how I get treated? All the directors are on cocaine anyway. I'll start my own company.\" The concern on my face stops you in your stride. You place your hand gently on my back, steadying the anxiety gathering. \"Baby, don't look so scared. This is what happens when the time comes.\" I grab your hands, holding onto their warmth. \"When what time comes, Cosmo?\" \"There are wars looming, enemies hovering. People take their level of comfort for granted in this country, nobody's prepared.\" I shake my head slowly. \"You're talking in riddles, I don't understand.\" We continue watching TV. An early episode of _Twin Peaks_ is on. Setting your half-drunk can of Guinness down, you uncurl like a snake ready to dispatch poison. \"You understand, I know"}, {"title": "rpj-common-crawl-2019-30", "text": "and onto the floor. The big dude says, \"That was a karate chop from Korea.\" The little guy thinks \"GEEZ,\" but he gets back up on the stool and starts drinking again when all of a sudden -- WHACK!! -- the big dude knocks him down AGAIN and says, \"That was a judo chop from Japan.\" So the little guy has had enough of this... He gets up, brushes himself off and quietly leaves. The little guy is gone for an hour or so when he returned. Without saying a word, he walks up behind the big dude and -- WHAM!!!\" -- knocks the big dude off his stool, knocking him out cold!!! The little guy looks at the bartender and says, \"When he gets up, tell him that's a crowbar from Sears. I guess that's why sears tools come with a full return policy. Subject: Re: Todays joke Mon Feb 03, 2014 2:13 am The judge frowned at the tired robber and said, \u201cthen you admit breaking into the same store on three successive nights?\u201d \u201dYes, your honor.\u201d \u201cAnd why was that?\u201d \u201cBecause my wife wanted a dress.\u201d The judge check with his records, \u201cBut it says here you broke in three nights in a row!\u201d \u201cYes sir. She made me exchange it two times.\u201d Subject: Re: Todays joke Tue Feb 04, 2014 7:53 am A man calls home to his wife and says, \"Honey I have been asked to go fishing at a big lake up in Canada with my boss and several of"}, {"title": "rpj-common-crawl-2021-04", "text": "air horn in my ear holes. People being mean became a normal thing. It was worse when people told their sad story about how lonely they were and how nice it was to talk to somebody. Those people weren\u2019t buying shit, though, so you had to move on to the next call. You\u2019re like, \u201cI wish I could punch your grandkid in the face for not visiting you, old lady.\u201d Talking about the hoes you get, that\u2019s the funniest rap. People f***, dude. You f*** too? Cool, man. You know you\u2019re talking to mostly guys about this, right? \u2014Anders Anders: A lot of people said, \u201cOh yeah, hang on a second,\u201d and then set the phone down. They thought they got me but it was the best thing ever because I didn\u2019t have to do anything. I could pretend I was on a call while the boss trolled around. If they hung up, your computer redialed automatically. Some dudes would scream, \u201cI\u2019m a fucking lawyer! I\u2019m gonna sue you!\u201d You\u2019re not suing me, homie. You\u2019re gonna sue some company that I couldn\u2019t care less about. It\u2019s clear from the raps on your show that you know hip-hop on a deep level. Did any of you ever want to rap seriously? All: No. Did you freestyle in school? Anders: Unfortunately, yes. [Everyone laughs.] At every party at my high school, there would be somebody banging their keys against the keg, dropping beats, and people being like, \u201cOK, OK! All right, all right! OK!\u201d Adam: Just the beginning?"}, {"title": "rpj-common-crawl-2022-05", "text": "after my dog ran jumped over a stump, dislocating his elbow. He would pick me up from work and we'd go for walks in nature and he always supported my crazy dreams. I started thinking, maybe I didn't need to break up with him, maybe I wasn't giving him enough love and attention for him to grow into the person I knew he was. \"Can I ask you something?\" \"Yeah,\" he replied, take a sip of his coca-cola. \"Okay, well, you don't have to answer this but,\" as I stirred the ice around in my glass, \"you know me, I'm curious. What was the worst thing you did when you were dealing...you know...crack?\" He nervously giggled and started to pick at his fingernail. \"Well, I would usually just see a lot of bums, and you know, you'd just sell them crack. Like sometimes I'd have some problems when they didn't pay, but they were usually cool. I mean, it's like crack, ya know?\" he giggled and took another sip of coca-cola. Though he sold crack, it made me feel good that he didn't beat up bums. See Natasha? He was a nice drug dealer. He nervously adjusted himself in his seat, \"uh well,\" he continued, \"there was like this one time I was called by this chick to go to her house, and uh, when I got there, her kids were on the floor in front of the TV. I think they were watching Sesame Street or something.\" He warmly smiled, \"they were pretty cute.\" He"}, {"title": "rpj-common-crawl-2020-05", "text": "a totally unrelated post at Field's in a week. You're not worried about it. I'm the one worried about it. You're just off to bed, nonchalantly unimpressed. Yet you'll be the one who brings it up again at random fucking intervals, bitching that it's my fault your hand was caught in the cookie jar. In the mean, anyone who wants to read the context is welcome to do so. Not that it matters one iota. But it all exists there in and black and white. Kid said... Hey Field, Rev. Sharpton and the founder of Emerge just gave you a shout out on the radio show. Mr. Curry evens have the original painting of Clarence Thomas on the wall of his office. \"Were it me holding your stance, I'd not only have the trolls busting my balls but also Field, PX, Yisheng, Lilac, and Pete knows who else. But when it's you, the pretension held in reality version B is that no one sees it. And that's fair. As you've told me multiple times, this is a \"black blog.\" c'mon Josh, when you're wrong you're wrong. You are occasionally correct and I for one won't bust your balls when you are correct so please don't say I attack you just for being you. Doesn't work like that and I'm sure the same is true for Yeshing, Field, Lilac and Pete (whomever Pete is). Thanks for playing. I'm sure you'll have some wise ass retort but I'm too tired and busy to respond so don't waste too"}, {"title": "rpj-common-crawl-2019-30", "text": "when it\u2019s just about to kick off over someone being rude and one guy thinking he\u2019s the man, but in reality they\u2019re just killing the vibe. I thought I was buzzy and spacy from two Americanos.. This name is also quite ancient. She\u2019s determined to master the art of roasting, so her guest in the kitchen is the master of meat, Neil Perry."}, {"title": "rpj-book", "text": "in character. Are you seriously trying to claim you never got into a punch-up, when you were in the field?\" \"Oh, God, no,\" Frank said easily. \"Would I ever say such a thing? I've been in many a punch-up; I even won most of them, not to blow my own horn here. Here's the difference, though. I've got into fights because the other guy jumped me first\u2014\" \"Just like this guy jumped us.\" \"When you deliberately goaded him into it. You think I haven't heard that tape?\" \"We'd _lost_ him, Frank. If we hadn't made him break cover, he'd have got away clean as a whistle.\" \"Let me finish, babe. I've got into fights because the other guy started it, or because I couldn't get out of them without blowing my cover, or just to earn a little respect, bump up my place in the pecking order. But I can safely say that I've never got into a fight because I was so emotionally involved that I couldn't resist beating the holy crap out of someone. Not on the job, anyway. Can you say the same?\" Those wide blue eyes, amiable and mildly interested; that impeccable, disarming combo of openness and just a hint of steel. The edginess was building into a full-on danger signal, the electric warning animals get before thunder. Frank was questioning me the way he would question a suspect. I was one misstep away from being pulled off this case. I forced myself to take my time: gave an embarrassed little shrug,"}, {"title": "rpj-common-crawl-2020-05", "text": "squeezed it tightly. She glanced over her shoulder checking to see if anyone was behind us. Chop! Chop! My teeth chattered. Goose bumps covered my arms. Chop! Chop! Chop! The sound of the ax striking the trees sounded like it was getting closer and closer. It sounded like it was right behind us. On top of us. Run! Get out of here! You don\u2019t want the headhunter to catch us, do you? Roberta\u2019s big blue eyes bulged out of her head. Her hands trembled. I was too frightened to speak. I shook my head. Susan said he chops the heads off kids who come into his woods. Roberta and I ran through the woods and didn\u2019t stop until we reached the bus stop on the other side. Hands on our knees, we stood on the cracked sidewalk gasping for breath. Wind swirled around us, pushing up our skirts. We slapped them down. We didn\u2019t want the boys to see our bright white underpants. Roberta and I had been taught that good girls never let boys see their underwear. But see it they did. The boys stood with their eyes bulging out of their heads and their mouths gaping open. The headhunter\u2019s gonna getya. Gabriel, a stocky fifth grader attired in tailored slacks and a long sleeve white oxford cloth shirt, stood on the sidewalk swinging his Howdy Doody lunch box back and forth. My father said he likes pretty girls. You gonna let him do to you what he did to Natalie? I shrugged. Natalie had"}, {"title": "rpj-common-crawl-2019-30", "text": "to Larry that in Mypos, \"boxing one's ears\" means putting the ears in a box. Happens in Scrubs in \"My Soul on Fire, Part 2\" where the Janitor punishes J.D. for convincing everyone to come to his wedding on such short notice by keeping him at the top of a lighthouse for ten minutes... J.D.: But that doesn't explain why these fish are taped to my hands! Cue the flock of seagulls hungry for fish. In Spaced, Tim, unable to cope with The Phantom Menace, is admonished by his boss for getting cross with a child who wanted to buy a Jar Jar Binks doll. When he asks his boss what he's going to do about his behavior, his boss responds, \"I'm going to have to let you go.\" Tim, relieved that he's being let off the hook when he thought he was going to be fired, takes a brief moment before understanding that firing him is exactly what his boss had intended doing all along. In The Suite Life on Deck, upon learning Zack, Woody and Marcus set up a fake beauty pageant, Moseby punishes them by making it real. At first, the boys are ecstatic, before being told that they have to do the setup and cleanup all by themselves and aren't allowed to flirt with the contestants. You Can't Do That on Television: One sketch had a child being 'grounded' and having his shoes taken away. The kid points out that having his shoes taken away won't stop him leaving the house. The"}, {"title": "rpj-common-crawl-2021-04", "text": "was home schooled. Just me there by a bowl of punch, listening to Kool and the Gang. Why I rented that limousine, I have no idea. This woman said to me the other day, \"Zach, I like your beard,\" and I said, \"Look, I'm Greek. This isn't a beard. This is part of my eyebrow.\" [To the band] Are you guys just gonna sit there? I thought we were gonna rehearse something. [The band joins him] There we go. Sometimes I'll do something and I say to myself, \"That is so Raven.\" And then, other times I'll do something and I'll be like, \"That was not very Raven.\" If you read my blog, you know I'm a pilates freak. And by pilates, I mean waffles. I've been trying to quit drinking. The other day I drank a 12-pack of O'Doul's, and I went riding around in my car and I got pulled over by a cop. He's like, \"Son, have you been drinking?\" And I'm like, \"Uh, sort of.\" he said, \"What have you been drinking?\" and I said \"O'Doul's, nonalcoholic beer.\" And he wrote me a ticket for being a gaylord. I was reading on CNN.com today, before the show. You know that kid who had sex with his high school teacher about a year ago? I read online today that that kid died, today. He died of high-fiving. He was in a high-fiving accident. Tina Fey/Justin Bieber [35.18][edit] Sarah Palin: Are You Smarter than a Half-Term Governor? Gabourey Sidibe/MGMT [35.20][edit] Seth Meyers: Where can"}, {"title": "rpj-common-crawl-2023-06", "text": "don't you? You play football? Hmm? Do you play football? Yeah, well, your brother, Denny, sure could play football. Here you go, kid. $1 .50 of hamburger. Hey, you, kid! What are you doing there? Come over here! You, come back here, God damn it! I'll sic my dog on you. Run, Gordie, run! Run, Gordie! Chopper, sic him! Sic him, boy! Now, he said, \"Sic him, boy.\" But what I heard was, \"Chopper, sic balls.\" That's Chopper? Chopper was my first lesson in the vast difference between myth and reality. Come on, Choppie. Kiss my ass, Choppie. Choppie. Kiss my ass. Come on, bite shit. Go on, Choppie. Sic balls, Choppie. You kids, stop teasing that dog! You hear me? Stop teasing him! Sonny, I'm gonna beat your ass, teasing my dog like that! Yeah, I'd like to see you try and climb over this fence and get me, fat ass! Don't you call me that! You little tin-weasel peckerwood loony's son! What did you call me? I know who you are. You're Teddy Duchamp. Your dad's a loony. A loony up in the nuthouse at Togus. He took your ear and he put it to a stove and he burned it off. My father stormed the beach at Normandy. He's crazier than a shithouse rat. No wonder you're acting the way you are, with a loony for a father. You call my dad a loony again and I'll kill you. Loony, loony, loony. I'm gonna rip your head off and shit down your neck."}, {"title": "rpj-common-crawl-2023-06", "text": "compress myself inwards, and noticed that I was holding my stomach tight, like I was bracing for a punch. I do that when I\u2019m nervous talking to people, like if I put one toe over the line they\u2019ll sock me and leave me gasping on the ground. No one said anything. They kept smoking. Some looked at me, most didn\u2019t. Six or seven of them, wearing castoff Carhartt jackets and flayed white sneakers. \u201cI\u2019m looking for Handsome?\u201d I said. I didn\u2019t mean for the question to creep into my voice, but there it was. And now they knew, She has no idea what she\u2019s doing here. And it was true. I was afraid. They were going to jump me, steal my bag and insulated rubber boots, leave me to walk back to my apartment bloodied in my socks. \u201cWhy?\u201d one of them said. I didn\u2019t know who. The voice seemed to rise from all of them. \u201cI heard he found Chops.\u201d From the way he stepped forward I knew the guy who spoke next was Handsome. \u201cYeah,\u201d he said. \u201cI found him.\u201d It looked like his nose had been broken a half dozen times, and one of his bottom front teeth was shriveled and brown. \u201cWho\u2019s asking?\u201d He had a smooth voice, a thick southern Maine accent. Some people said southern Maine accents sounded the same as Boston accents, but I knew that wasn\u2019t true. I had a lot of family in Boston, I knew how they sounded. I had a dad from southern Maine, who"}, {"title": "rpj-common-crawl-2023-06", "text": "with you.\" That wasn't always true. When I was a young boy, I was bullied. And my dad was a cop, so that made it even more embarrassing. Later in life, I took up martial arts and even trained with my good friend Bruce Lee. That's why you can trust me when I say that fighting is almost always a mistake. There's a Chinese proverb that says, \"The man who throws the first punch has lost the argument.\" That means that when an argument turns into a fight, it's because the one starting the fight realizes he isn't smart enough to win verbally, so he resorts to violence. It's always the dumbest guy who resorts to violence. What do you do if someone threatens you with violence? You walk away, even run away if necessary. Even if you're pretty sure you could take him. Bad things can happen in a fight, even if no one means them to. Someone can take an unexpected fall and crack his head open. Teeth can be knocked out. Facial bones can be cracked. And all the crying later about how \"it was an accident!\" won't change that. So, if you're threatened, leave and tell your parents. Some people are of the belief that you should just go right after the bully, fighting him to show you're not afraid. While this works well in movies, it doesn't work as well in real life. These days violence tends to beget violence. The bully doesn't just slink away, he returns with a baseball"}, {"title": "rpj-c4", "text": "response from his increasingly fierce swats other than to glance in his direction playfully and coo. Thick skin, so thick I don\u2019t recall ever cutting myself on sharp objects, and I mean ever. I fell down while running with scissors once, the sharpened tips nipping on my outer thigh as I bounced on the kitchen linoleum. Most kids would have been rushed to the hospital with the objects imbedded deep into their leg, with a possible severed artery and blood spilling out like a flood, but not me. I\u2019d merely scraped my skin, producing a sickly white scar that healed over within the next few days. I mean, it was as if the scissors had known they couldn\u2019t puncture me straight through, so they turned aside in an effort to claw at my thigh instead. So from an early age, I knew I was special. My bones are strong, too. I\u2019ve been given estimates ranging between ten to twenty times denser than a normal person\u2019s. This makes me somewhat slower than most people, and for added defense I took up martial arts; tae kwon do, kung fu, judo. I can absorb a blow from a baseball bat by merely holding up a forearm and tensing it, and I deliver punches that I term \u2018one-hitter-quitters.\u2019 This means that if I connect anywhere near my target: head, neck or chest, my opponent is not getting back up. I don\u2019t consider myself a superhero. I was always brooding in the back of class, trying hard not to be noticed,"}, {"title": "rpj-common-crawl-2019-30", "text": "are disconcertingly focused; they are powerful and unblinking. When the man's mouth moves, there is the slightest of hesitations when he pronounces his first syllable. \"Three bucks.\" The adrenalin that Anders experienced minutes before comes back to him stronger. \"You've got to be kidding.\" The tough bald man holds his hands out from his pockets as if to say: hey buddy, that's all I got. Then the man says, \"You think you're worth more?\" A voice in Anders's head tells him that he should back off. It tells him he's making a huge mistake, engaging in confrontation. Everybody else in the room knows this man's a jerk. Why say it to his face? So Anders, thinking he's being conciliatory, says, \"I'll do it. But yeah, I think I'm worth more.\" \"Let me tell you something about what you're worth,\" the man says. He holds up his hand, making a zero sign with his thumb and forefinger. \"I could have you replaced like that.\" He snaps his fingers with startling volume. \"Now you get back to your friggin' station or you take a walk out the door.\" This is too much. Anders glares. \"Maybe more than one person will walk out that door.\" \"What's that supposed to mean --?\" \"People here are pretty sick of working for eight bucks an hour. We get no raises, no benefits, no consistent hours, and the company rakes in millions.\" Anders feels as if his nerves are exposed. He's absolutely convinced the man is going to hit him. He's startled; he"}, {"title": "rpj-book", "text": "an expression that still stirred fear in T.C. Technically it just meant come here or let me talk to you, but it had been what the boys had called out before they jumped him in high school, and once before he even started hustling, three dudes cornered him with the same line before they pressed a gun against his temple. \"I'm just messing with you.\" Tiger walked up closer. \"You know I'm just messing with you,\" he repeated, laughing so hard his shoulders shook. \"You done gained weight, huh?\" He leaned into T.C. and felt his biceps. \"You know it, ain't nothing else to do in there,\" T.C. said, feeling his heartbeat settle. He had an urge to knock the boy out for scaring him like that, but he took a couple of deep breaths like the counselor inside had taught him, told himself to calm down. \"But looka you, you ridin' on them thangs, huh?\" he asked after a while, nodding at the new rims. \"Yeah, yeah, you know how I do.\" They both walked closer to the car. \"But looka you, your dreads all twisted up, and long. They almost catchin up with mine.\" Tiger fingered T.C.'s thick, black hair. His own hung past his bright green T-shirt, nearly touching the top of his tapered jeans. He was shuffling his feet, socked up in Adidas slippers. \"Still light bright and damn near white though,\" Tiger play-scoffed. \"That's why they let you out early? I thought you had another two weeks.\" \"Nah, overpopulation, nigga,\" T.C."}, {"title": "rpj-common-crawl-2019-30", "text": "and when he got up the big guy said, ''That was a karate chop from Korea.'' The big guy went to the restroom and the little guy ordered himself another beer. About 20 minutes later the big guy came back and karate choped the little guy in the back again. The little guy got up and dusted himself off and the big guy told him,''That was a karate chop from China.'' The little guy got up and decided he wasn't going to take any more of this, so he left the bar. About an hour later the little guy comes back to the bar and he hits the big guy in the back. The big guy is knocked out cold and he's on the floor. The little guy tells the bartender , ''Tell him that was a crowbar from Sears!'' Q: I've heard that cardiovascular exercise can prolong life. Is this true? A: Your heart is only good for so many beats, and that's it. Everything wears out eventually. Speeding up your heart will not make you live longer; that's like saying you can extend the life of your car by driving it faster. Want to live longer? Take a nap. Q: Should I cut down on meat and eat more fruits and vegetables? A: You must grasp logistical efficiencies. What does a cow eat? Hay and corn. And what are these? Vegetables. So a steak is nothing more than an efficient mechanism of delivering vegetables to your system. Need grain? Eat chicken. Beef is also"}, {"title": "rpj-common-crawl-2019-30", "text": "and when he got up the big guy said, ''That was a karate chop from Korea.'' The big guy went to the restroom and the little guy ordered himself another beer. About 20 minutes later the big guy came back and karate choped the little guy in the back again. The little guy got up and dusted himself off and the big guy told him,''That was a karate chop from China.'' The little guy got up and decided he wasn't going to take any more of this, so he left the bar. About an hour later the little guy comes back to the bar and he hits the big guy in the back. The big guy is knocked out cold and he's on the floor. The little guy tells the bartender , ''Tell him that was a crowbar from Sears!'' Q: I've heard that cardiovascular exercise can prolong life. Is this true? A: Your heart is only good for so many beats, and that's it. Everything wears out eventually. Speeding up your heart will not make you live longer; that's like saying you can extend the life of your car by driving it faster. Want to live longer? Take a nap. Q: Should I cut down on meat and eat more fruits and vegetables? A: You must grasp logistical efficiencies. What does a cow eat? Hay and corn. And what are these? Vegetables. So a steak is nothing more than an efficient mechanism of delivering vegetables to your system. Need grain? Eat chicken. Beef is also"}, {"title": "rpj-book", "text": "thirty. Her high ponytail swings like a wagging finger behind her. I lift up my shoulders and turn back around. I don't like the insinuation. It doesn't mean I'm looking for trouble. It doesn't mean anything. I start to mutter how I was only walking (just walking, with stardust beneath my feet), but think better of it. By the time we get to the same small square edge of the park where teenagers have gathered on the Fourth of July probably since my parents were kids, everyone is already loosey-goosey hugging and stumbling, falling, breaking into hysterical laughter. Red Solo cups are scattered across the ground. A nameless junior slams the hood of Mateo's Jeep and slurs, \"Theredtruckhasakegintheback.\" \"This won't get busted?\" Mateo asks. \"I mean, it's a city park.\" \"It'll get busted,\" Alex says, \"but there are so many MIPs to give out, it's like trying to catch every ant busting out of an anthill. The more-sober survive. Besides, there's, you know, worse stuff for cops to deal with. They don't seem to worry about breaking up this party till after the fireworks.\" Somebody's car stereo is pumping bad '80s music. Nat pulls me over to a group of drama and student council girls who are jumping around and singing. Alex and Mateo stand aside, chatting like BFFs. This circle is full of shiny smiles, as if every girl dancing truly believes there will never be a moment as fun as the one they're in right now. As if they are invincible. Unlike the kickball"}, {"title": "rpj-common-crawl-2021-04", "text": "the gong, and they were saying to me, \"Don't go on! There's grandmothers, there's kids...\" I said, \"This has to be my crowning achievement' So I went out there in just me jocks, and big dribble hangin' off me chin, with the roast chook. A bloke who\u2019s in Shonkytonk now, the guitarist, he was the narrator, the Butcher From Brighton - he stood behind the gong and read out a beautiful narration. I started rootin' this chook (laughs) and this whole table, they're throwing chairs at me! The whole football team, and grannies are having heart attacks, and grabbing their kids by the ears and takin' them out. Smashing pots everywhere, getting cut to the shithouse ... I didn't care. I just had to do it 'cause THEY NEEDED IT! And then they wouldn't pay us unless we put on a public apology in the paper for all that shit. And the chicken act was deleted from the act everywhere we went after that. But every town heard about it, the whole place\u2019d be packed, all the people would be banging on the table screaming, \u201cWe want the chicken act!\u201d (laughter) So I'd go out really quickly, go... (makes rooting gestures) and throw the chicken at them! And everyone was starvin' on the tour, so they'd always start eatin' the chook! Apart from ST KILDA\u2019S ALRIGHT getting busted by the Vice Squad, how much trouble did you get in while you were in I Spit On Your Gravy? I didn't...just the band couldn't play for about"}, {"title": "rpj-book", "text": "be something I don't like, and I'm gonna have to have my boy Louie Louie bust your chops. Let's clear the room of the feminine kind. Don't want the little lady seeing bloodshed.\" He didn't have fingers, hence he couldn't snap them. He put up a balloon that said \"Snap\" instead. \"Take a hike,\" he ordered his girlfriend. \"You can't just tell me what to do like that,\" said Honey in a balloon as scalding as a puff of steam. \"I ain't your slave! I got rights! I got feelings! I gotta tell you, I'm not happy with the bossy way you treat me. I deserve better!\" \"Tell you what\u2014we'll talk about this later, okay? Like maybe when Hell freezes over. Until then, you do what I tell you. If you don't like the arrangement, how's about you give me back all the clothes, and the jewelry, and the little two-seater car? You get on a bus back to Podunk Village or wherever you was living before I turned you into what you are.\" Honey opened her mouth, ready to argue. She thought better. She picked up her mink coat. The six Toon minks making up the coat arranged themselves snugly around her body. Honey stormed out. \"What's up with youse guys?\" said Willy. He didn't have any knuckles to crack so he clicked his tongue instead. Louie Louie stood in a corner, shadow boxing. Louie Louie was fast and good. He kept knocking the shadow to the floor. The shadow, a gamer, kept coming back"}, {"title": "rpj-common-crawl-2021-04", "text": "woman's husband spoke up and asked the judge if he could say something. The judge, figuring he was going to make a speech pleading for leniency, figured he pretty much had to let him speak. \"Go ahead, sir,\" he said. The husband said, \"She also stole a can of peas.\" A drunk was proudly showing off his new apartment to a couple of friends late one night, and led the way to his bedroom where there was a big brass gong and a mallet. \"What's that big brass gong?\" one of the guests asked. \"It's not a gong. It's a talking clock,\" the drunk replied. \"A talking clock? Seriously?\" asked his astonished friend. \"Yup,\" replied the drunk. \"How's it work?\" the friend asked, squinting at it. \"Watch,\" the drunk replied. He picked up the mallet, gave the gong an ear-shattering pound, and stepped back. The three stood looking at one another for a moment. Suddenly, someone on the other side of the wall screamed, \"You asshole...it's three-fifteen in the morning!\" 1. It's important to have a woman who helps at home, cooks, cleans and has a good job. 2. It's important to have a woman who can make you laugh. 3. It's important to have a woman who you can trust and doesn't lie. 4. It's important to have a woman who is good in bed and likes being with you. 5. Its very, very important that these four women don't ever find out about each other. An American touring Spain stopped at a local restaurant"}, {"title": "rpj-book", "text": "same way you come in. I always wanted to take me a ride on a train.\" \"A cold, empty boxcar isn't the glamorous fun it sounds like. Anyway, they'll have the train yard covered.\" \"Well, we can't fly.\" \"Oh, I don't know,\" Mr. Lyss said. \"If your skull is as hollow as it seems to be, I could tie a basket to your feet, blow hot air up your nose, and ride you out of here like you were a big old balloon.\" For a block or so, Nummy thought about that as the old man switched on the defroster and as the windshield, which had started to cloud at the edges, became clear once more. Then he said, \"That don't make no sense unless it was just you being mean.\" \"You may be right.\" \"I don't know why you have to be mean.\" \"I do it well. A man likes to do something if he's good at it.\" \"You aren't as mean to me now as you was at first, back when we just met.\" After a silence, Mr. Lyss said, \"Well, Peaches, I have my ups and downs. Nobody can be a hundred percent good at something 24/7.\" Mr. Lyss sometimes called him Peaches. Nummy wasn't sure why. \"A couple times,\" Nummy said, \"I even sort of thought maybe we was getting to be friends.\" \"I don't want any friends,\" Mr. Lyss said. \"You take a Kleenex and blow that thought out of your head right now. Blow it out like the snot it"}, {"title": "rpj-common-crawl-2019-30", "text": "dub ... well said. The failure to condemn those that represent or support gang activity, is tacit approval for that lifestyle. So many people are mourning the deceased, yet not one person has said anything about the victims of his gang. \u2014 syscom3 June 7, 2011 at 8:46 a.m. Tell your kids not to bang. Shooters dont care about your charisma or talent, thats makes you more of a target. By not addressing his banging, {seen by a few thousand},you condone it or cause other youngsters to miss the big picture....dont bang. \u2014 jay dub June 6, 2011 at 10:24 p.m. thats to bad \u2014 jack June 6, 2011 at 5:22 p.m. its horrible that people could be so blind to whats around them. i knew duck very well. as a kid duck was in my home everyday. at birthday parties to just walking me to the store. i loved him dearly. and it really hurts to know that people could only try to point out the negative with in him. who are you to dear say he \"banged\"? who are you to say that he meant less to us if he banged?or he was less of a person? you need to respect the family and friends of duck that comment was not needed . You weren't there, when we as a unit endured the pain of loosing a family member , friend , brother son whatever it may have been. its comments like that ,that makes African Americans look ignorant . any one that knew"}, {"title": "rpj-common-crawl-2019-30", "text": "as a complete sentence, you better run. Every 60 seconds in Africa, a minute passes. If the koreans cannot do it, they will tell you that they won do it. There is endless debate about the existence of the human soul. Well it does exist and Chuck Norris finds it delicious. Sure, white people can't say the \"N word\" but at least we can say phrases like, \"Thanks for the warning, Officer\" and, \"Hey, Dad.\" What do you call a short black person? By their name, you racist. The attorney tells the accused, \"I have some good news and some bad news.\" \"What's the bad news?\" asks the accused. \"The bad news is, your blood is all over the crime scene, and the DNA tests prove you did it.\" \"What's the good news?\" \"Your cholesterol is 130.\" I finally realized my parents favored my twin brother. It hit me when they asked me to blow up balloons for his surprise birthday party. So a dude turns to the guy next to him at a bar and asks, \"Hey, you wanna hear a redneck story?\" The guy says, \"Buddy, I'm six feet, 210 pounds, an' ma name's Billy Joe. You see the guy on the other side of you? That there's Bubba. He's 225 pounds of solid muscle and he's a redneck. And the boy next to him? Mike's a trucker who weighs 295 and he's a redneck, too. Now, do you still want to tell your redneck story?\" The fella says, \"Naw, you're right... I'd hate"}, {"title": "rpj-common-crawl-2020-05", "text": "part. - This? - Yeah. There's an entire unspoken conversation happening between them. \"Please stand still so I can hit you\"? They're telling each other what they think of each other. See there? When he keeps his gloves down like that? - Doesn't mean he's tired. - He looks tired. But it doesn't necessarily mean he is tired. Might be a-- an invitation to his opponent to take a shot, free and clear. When you invite a punch, you're saying you can take it. So what looks like vulnerability is exactly the opposite. By playing weak, you're saying, \"I'm stronger than you. \" Now. See, that is an insult. Moore just insulted him. - He did? How? - A right-hand lead. It's a right punch thrown like a jab, but you don't set up with your left. You're saying to your opponent, \"I don't think much of you. \" I don't understand. Well, come here. I'll show you. So, put up your dukes. They really say that? Now, when I come at you like this, with a right-hand lead, see how far my fist has to travel through space, all-- all this extra distance - past your shoulders? - So? So, that's the time you have to respond. If you see something coming, you can stop it. All right, well, how do I do that? You don't. It's coming too fast. You just said that I could-- that I could see it coming. Yes, but the fact that I'm throwing a right-hand lead proves to you"}, {"title": "rpj-common-crawl-2019-30", "text": "it fairly certain they were in the throes of breaking up. My brain, without my direct guidance, decided what I really wanted to do with my right-handed hammer swing was connect to my left hand instead of that measly nail. The blow came down on my left index finger with all the force my biceps could muster. The end of my finger burst like a ripe tomato. It didn't hurt for a few seconds. The shock was in the appearance. I held up my finger stupidly and said to the nearest woman, \"What happened?\" She was a clipped-of-speech butch who worked as a prison guard. She said \"Put something cold on it\" and went back to hammering. When I didn't move -- her sentence didn't really make sense to me, I was in such shock -- she got up irritably and went to the nearby cooler. But all the ice had melted, and the only thing left was a Pepsi in a can. She brought that back to me and said \"This is still cold, hold it again your finger.\" As if sleepwalking, I did what she said. It didn't help, and contact with the ruptured flesh finally registered as pain. I cried out \"Oh my god, oh my fucking god.\" This got the attention of others, and Laney rushed over, her back and breasts covered in sweat, her workpants stiff with sawdust. \"Come on\" she said. \"Let's walk you back to the house.\" She helped me stand and led me gently through the mesquite, a"}, {"title": "rpj-c4", "text": "The knife! It attacked me! Doctor! Long story short: I'm a victim of knife crime. I was just stood there (in my kitchen) helpless (making a salad) when all of a sudden, suddenly, with suddenness, a flash of silver same at me like a Bruce Lee movie without the 'heeuuyaaaaa'. There were vegetables and a pineapple involved but rest assured that the authorities are on the lookout of 'hoody' covered youths, most likely with a limp, low riding pants and a London-cockney accent, carrying pointy things. ASBO alert. A: This is where the knife hit at a jaunty angle, causing the tip of my finger to slice off. We have found and stapled the fingertip back on. B: 'Twas a deep cut. My finger went numb. I was in need of a doctor. It hurts. Next week: Why eating chicken wraps, Skittles and 4 dozen marshmallows in your mother's car with the windows down at 10pm listening to The Weepies and Massive Attack at full volume, driving without destination and using the phrase 'you holy fleurking schnit' at every other driver is not what your mother meant when she said, 'here, get some air inshaAllah, take the car, take your friends, be back before 6'. OMG! I laughed out so loud, multiple times reading your post. You are really a Riot! Get well soon."}, {"title": "rpj-book", "text": "means money over bitches, Jaden. You wouldn't know nothin' bout that.\" The conversation paused for gaming two lovely young ladies and quickly picked back up when they kept on walking by. \"Stuck-up bitches. Let's go splurge. Matter of fact, we need to get some more,\" Eric sucked his teeth and said. \"First things first,\" Nick said. \"We can't go into these schemes with box cutters and screwdrivers anymore. People know us. We need blickeys.\" Eric nodded and we were off to the pizza shop on Broadway. The money was divided on the way. We were excited about the paper and sat close at the window to clock the ladies while Eric voiced concerns. He took a bite of a pepperoni slice and said, \"You know how many young ones are strapped nowadays? Just the other day this nerdy-ass idiot I used to push around, flashed a pistol.\" \"You talking about Rob? He never had the heart to talk to a chick. Now he wanna be a killer?\" I asked. \"I was thinking the same shit, my nigga. But then again, I did put a major whooping on him a couple times.\" Nick laughed. \"That shit was wrong, dude.\" \"We need straps.\" Later, I asked General Lee about a place to buy guns. He told me about a spot downtown on Madison Av and for me to mention his name. We took the train down to the shop and walked in bright-eyed. The store owner knew right away that we were first-timers. I reeled from his loud"}, {"title": "rpj-common-crawl-2021-04", "text": "know what he was thinking. I was often suspicious if Bruce was too nice; it meant he wanted something or was about to take advantage of you. This character made people like him, and at the same time, made it easy for me to trick him. I asked him how he developed the ability to close in that quickly. He said\u2019 \u201clook, Hawkins, in the United States you don\u2019t have any good training partners to practice wing chun with. You can say that my wing chun is better than any so called wing chun masters there. I can\u2019t go any further. But I have had a lot of challenge fights. My opponents are fast, so I have to be faster; they\u2019re strong, so I have to he stronger than them. There\u2019s no other way, because in the U.S., I\u2019m a \u2018gung-fu\u2019 guy. Because my wing chun is limited and my structure can\u2019t hold up against larger opponents, I have to use no way as the way, no limitation as the limitation.\u201d That was the first time I heard Bruce say that. There is a Chinese saying Called, \u201cBik fu tiu cheung,\u201d meaning, \u201cThe cornered tiger has to jump over a wall.\u201d It is the equivalent of saying, \u201cHaving no way out\u201d in English. I realized that Bruce felt frustration in his martial arts training. Although Bruce was becoming Westernized, he still felt pride that he was Chinese and he never wanted to appear inferior when comparing Chinese gung-fu with other nations\u2019 martial arts. Bruce continued: \u201cI"}, {"title": "rpj-common-crawl-2023-06", "text": "life. So I\u2019ve had that same experience when I\u2019ve been with friends who were white and someone drives down the street, rolls down the window, and says, \u201cHey, you chink, go back to where you came from,\u201d or something like that. While that\u2019s not something I enjoy, it\u2019s not actually novel or interesting. Sometimes when a kid comes up to me and does karate moves on the street and \u201cching-chong\u201d noises, I\u2019m not offended as an Asian American. I\u2019m offended as someone with a sense of humor, because if you\u2019re gonna diss me, at least get some new material. Wu: I got you to laugh. (See, I\u2019m not going to be as funny in print. You have to add in the introduction how funny I am.) When I was a kid, I\u2019d be teased and taunted, and teachers in school would always say to me, \u201cJust reply, \u2018Sticks and stones will break my bones but words will never hurt me.\u2019\u201d That\u2019s among the stupidest advice I\u2019ve ever gotten. It shifts responsibility away from the bullies, as well as the teachers. There are two reasons this is not good counsel. Reason one is the words lead to the sticks and stones. It\u2019s on a spectrum. Sometimes people say, \u201cOh come on, lighten up, it\u2019s just name calling.\u201d All right, you\u2019re right, if it\u2019s just name-calling. But it\u2019s never just name calling. There\u2019s always the possibility that if someone has a baseball bat in their car, they\u2019re gonna come out and kill you. Rumpus: There\u2019s a link. Wu:"}, {"title": "bm25", "text": "the need for employment, having thought that the book's message was that people should \"spend [their] lives doing pretty much just hanging out and stuff\". Heist is surprised that someone would interpret the 435-page novel that he spent three years writing as a call to do nothing. Heist says that he abhors real violence, but says that \"fake violence is fucking brilliant\", and names Crotz's My Heads on Swivels as a work of fiction that accurately conveys what combat is really like, calling it \"beyond horrific\". In contrast to Klara, Heist does not believe that war is justified even to defend one's land, saying that \"Dirt is dirt.\" After the family spends one week at his home, Prince Robot IV arrives there to look for the family. When Prince Robot IV sees the manuscript to Heist's next (and last) novel, The Opposite of War, he surmises that it is an allusion to peace, but Heist contends that peace is not the opposite of war, but merely \"a lull in the action\". Pressed by Robot, Heist asks him about what Robot saw in his visions during the near-death experiences he himself had during battle, which Heist correctly guesses were explicitly sexual. After Robot admits that he saw himself in an orgy with every man and woman he ever fought alongside, he realizes that the opposite of war is sex. Heist is accidentally killed in an ensuing confrontation by Gwendolyn. After his death, Klara reads another one of his books, despite calling it \"juvenile twaddle\", because it was"}, {"title": "bm25", "text": "never hurt anybody and that he just needs help while Alyah pulls a knife out of the drawer after setting the shotgun down. Alyah then cleans a wound on the back of Dante's leg. Now held at knifepoint, Dante goes on to explain that he has to get to Puerto Angel as he needs to find someone. Alyah tells Dante that when her husband comes home it will be bad for him but that she can help him and that she knows someone who can take care of him. Alyah pushes Dante onto the bed and removes her headscarf and unfastens her dress. She says to him that since he is here without papers he does not have much of a future. Alyan pulls off her dress explaining to Dante that if you're pretty people hide you forever from your work. She then climbs on top of him while telling him that you belong to everyone who can pay and that it changes you as you might even like it. Alyah then kisses Dante and they start to make love. When Dante protests saying that he needs her to help him she says that she does not like men and could kill him no problem. She further explains that in Puerto Angel she \"was a puta\" under the employ of Kufard and that she was stoned most of the time, which is what led her to dislike men. Alyah then says that her daughter, the little girl who was with her, came into her life and"}, {"title": "bm25", "text": "that way much, unfortunately. Which is not to say that busting someone's chops does not have therapeutic value. Especially for someone who, like me, might be grieving. Because that's what I was doing, of course. Grieving for Jesse. Except - and I don't know if this applies to all mediators or just me - I don't really grieve like a normal person. I mean, I sat around and cried my eyes out after the realization first hit me that I was never going to see Jesse again. But then something happened. I stopped feeling sad and started feeling mad. Really mad. There I was, and it was after midnight, and I was extremely angry. It wasn't that I didn't want to keep my promise to Father D. I really did. But I just couldn't. Any more than Jesse could apparently keep his promise to me. So it was only about fifteen minutes after my phone call to Father D that I emerged from my bathroom - Jesse was gone, of course, so I could have changed in my room, but old habits die hard - in full ghost-busting regalia, including my tool belt and hooded sweatshirt, which even I will admit might seem a bit excessive for California in July. But it was nighttime, and that mist rolling in from the ocean in the wee hours can be chilly. I don't want you to think I didn't give serious thought to what Father D had said about my telling my mom everything and getting her and"}, {"title": "bm25", "text": "we should teach our kids to declare \u201cWakanda Forever.\u201d We need to start telling ourselves and our kids another story. Let us not flee from Jesus - let us take our stand with the Prince of Peace.

You may disagree with me, but how can I think anything different when this is what our King told us: \u201cHere\u2019s another old saying that deserves a second look: \u2018Eye for eye, tooth for tooth.\u2019 Is that going to get us anywhere? Here\u2019s what I propose: \u2018Don\u2019t hit back at all.\u2019 If someone strikes you, stand there and take it. If someone drags you into court and sues for the shirt off your back, giftwrap your best coat and make a present of it. And if someone takes unfair advantage of you, use the occasion to practice the servant life. No more tit-for-tat stuff. Live generously.

\u201cYou\u2019re familiar with the old written law, \u2018Love your friend,\u2019 and its unwritten companion, \u2018Hate your enemy.\u2019 I\u2019m challenging that. I\u2019m telling you to love your enemies. Let them bring out the best in you, not the worst. When someone gives you a hard time, respond with the energies of prayer, for then you are working out of your true selves, your God-created selves. This is what God does. He gives his best\u2014the sun to warm and the rain to nourish\u2014to everyone, regardless: the good and bad, the nice and nasty. If all you do is love the lovable, do you expect a bonus? Anybody can do that. If you simply say hello"}, {"title": "bm25", "text": "eye must jerk in order to be counted as a jerk? How many millimeters?\u201d If the officer continues to hesitate, rescue him: \u201cSorry, Officer, I\u2019m not busting your chops. There is no definition, right?\u201d Write: No Def. of How Far Jerk (mm). \u201cHow many times does the NHTSA manual say the eye must jerk in order to be counted as a clue of intoxication?\u201d Write: No Def # of Jerks. Some officers may get cheeky and say it just has to be distinct and sustained. Break it down for the officer, gently. \u201cDistinct means you clearly see it. And sustained means it must be continual. And that\u2019s just for the second pass when you are holding it out for at least four seconds. What about in the first clue\u2014lack of smooth pursuit? How many times does it have to jerk when you are just going side to side? And then in the third clue\u2014onset prior to 45 degrees\u2014how many times does it have to jerk before 45 degrees for you to stop your pen before you get to their shoulder?\u201d Most officers will state just once. If they are still being evasive, refer back to the learned treatise NHTSA manual. \u201cShow me in this manual where it says once, twice, three times a lady that it had to jerk?\u201d Even writing this type of evasive answering makes me want to destroy this officer. Repeat to yourself: This officer is human, he is loved by someone, somewhere. Get back to your center. \u201cOfficer, I\u2019m not trying to"}, {"title": "bm25", "text": "in his next movie. Kevin says he doesn't know what his next movie's going to be. Jonathan says it's going to be \"Jonathan, Ethan, and Bodie sleep with Kevin Smith's wife.\" Kevin starts yelling and defending his wife. Bodie says it will be a short film because they don't believe in foreplay. Over the credits, they remind him that lying about a job in a state university is a federal offense punishable by up to one year in prison. Kevin then gets on his phone and calls his wife Jen to cancel dinner with the Afflecks because she has to sleep with three of his students. In reply to a question, he says \"Yeah, they're kind of sexy.\" Episode Four: Kevin's breakdown Intro In the intro to Episode 4, Kevin writes a letter to the students saying he quit because he sucks as both filmmaker and a teacher after reading the reviews of the show on the Internet. Because peer acceptance means jack if someone on the Internet doesn't like your stuff. It closes by a student asking, \"does anyone else think it's weird that the man shot a montage to accompany his letter?\" Dagmar and Jonathan: squirrel fishing Since they need \"a fat guy on such short notice\", they dress Jonathan up to look like Kevin. This is pretty much a way to play with and feed wild squirrels, either by pushing bait out on a line, or the freehand method. If using a line, it is fun to lift the squirrel off the ground,"}, {"title": "bm25", "text": "not sure why you\u2019re reading this post. I like using coconut water/juice (I always keep it around because it\u2019s all I drink when I\u2019m sick), but water or chicken broth work great too. My mom always soaks chicken in salted water for half an hour before cooking it, \u201cto get rid of the smell.\u201d Brining does keep the chicken super moist, but I\u2019m always too lazy to do it. It\u2019s good if you feel like it though! Also, traditionally the chicken parts are chopped up into bite-size pieces for this dish. Part of that is frugality and part of it is flavor- more surface area to soak in more of the sauce. Plus it\u2019s fun to bust out your cleaver! I generally make the pieces baby-fist sized (so three or four bites) because I am lazy. You could also not chop them. I guess they had to give that suburban sitcom star a nickname instead of just calling him by his last name. Then it\u2019d sound like a serial killer sitcom instead of a family one: Leave it to Cleaver! Next, chop up some garlic, onion, and ginger. A few thoughts on this: for our wedding someone gave us a mortar and pestle, and it is AWESOME for garlic. I don\u2019t even peel or smash the cloves, I just throw them in and smash them a couple times. The paper falls off and you can pick it out. This isn\u2019t great if you care about uniform sizes, but if you want a ton of garlic quickly"}, {"title": "bm25", "text": "aggravated. \u201cNo one calls me Woodrow.\u201d \u201cRelax,\u201d Gus says. \u201cI\u2019m just busting your chops because I\u2019ve heard Sugar call you that. I think she\u2019s calling you that for a reason.\u201d \u201cYeah, it\u2019s because she\u2019s busting my chops too. It\u2019s her way of saying, I knew you when, and when I knew you, you were this way, so please remember what the pecking order is. Girls like Sugar want to keep the power structure from high school exactly the way it was at the time of their senior year, when they were on top of the social ladder.\u201d \u201cNo,\u201d Maloney says. \u201cIt\u2019s not about being on top and keeping the pecking order. I think it\u2019s about preventing you from thinking you\u2019re better than her, I mean, going to college like you are, and all. Last winter, over break, I used to talk to her all the time. She felt left behind. All her friends were in school and it made her feel bad about herself.\u201d \u201cDid you guys smooch?\u201d Kenny asks. \u201cNo, retard. We\u2019re friends. I see how others would find her pretty, but she\u2019s not my type. I\u2019m not fond of that All-American, girl next door kind of look, but perhaps with bigger breasts....\u201d \u201cYes, you, peering through the blinds into the bedroom window of the girl next door, you should know about her breasts,\u201d Gus said, ending his own joke with what he usually ends his own jokes with--a manic laugh. \u201cShe was, umm,\u201d Woody stops in mid-sentence, as they all stopped to listen to"}, {"title": "bm25", "text": "finally shows up. Egon Spengler, previously depicted as an object-moving poltergeist or a faceless body, is shown helping his granddaughter with the final zapping necessary to send the bad guy back to Hell or wherever and it\u2019s the digitized face and body of Harold Ramis on screen, the movie\u2019s true ghost, doing the busting instead of being busted. Reitman says this was done with the full approval of Ramis\u2019 family and I believe him, I have no reason not to. Family members can make bad decisions when they\u2019ve lost someone. It\u2019s interesting how even here, we don\u2019t hear Egon speak, even though the technology to play a dead man\u2019s voice is even easier to deploy. Maybe that was too weird? Putting words in a dead man\u2019s mouth? But putting his face up there was no problem, a digital specter that finally confirms the movie\u2019s insistent thesis of Ghostbusting gravity \u2014 it\u2019s a job, a story, a movie so important that they had to bring someone back from the dead to make it happen. This fucker has more dignity \u201cEvery time I say the word progress, my tongue literally rolls backwards,\u201d one of the villagers in Burial says as they prepare a letter to the government demanding they keep their land and their dead. Then he reminisces about his father who helped chop down the old forest so the main road could come by. The old man watched the ribbon-cutting ceremony and his words, his son recalls, were not enthusiastic: \u201cMy son, what they call progress, it"}, {"title": "bm25", "text": "gains nothing. Letting them get away with murdering troops thru actions like this does not, either. 'Leadership' sometimes means making decisions you are not happy with but are best in the long run. Last week, I had a chance to listen to a speech at Ohio University by LTG Freakley, the Accesions Command chief, who detailed how we in America have ''a serious leadership problem- in too many places strong leadership is sorely lacking, and too many so-called 'leaders' have no idea how to do so.'' His comments that night resonated loudly throughout the crowd. And I agree with him 100%. Mr Wolf Posted by Mr Wolf on Thursday, April 30, 2009 at 08:20 AM in Bust Their Chops, Caring For The Defenders, Current Affairs, Military | Permalink | Comments (47) Someone you should know: five men earned the Medal of Honor on May 8 Robert \"Concrete Bob\" Miller - Someone You Should've Known Arthur J. Jackson - someone you should know \"No Survivors\" - The Eagle Flight Anniversary Casey Sheehan - A Palm Sunday Someone You Should Know Busting Their Chops! A National Shame Willfully Aiding & Abetting Child Rape National Airborne Day: The Best Photo of a Paratrooper by an AP Photographer Daily Beast: Wounded Warrior Project Fights - to Get Rich Climate Change Is Our Largest National Security Threat? Two To Keep An Eye On David Bellavia Medal of Honor Presentation Book Review: Blood Oath Book Review: Dark Tribute Book Review: Cold Stone Heart Book Review: Desert Vengeance Book Review: Run Away Book"}, {"title": "bm25", "text": "his presidencies of American Cancer Society and American College of Surgeons One of your teachers, I know, was W. Montague Cobb, and that's someone who--?$$Absolutely, Dr., Dr. W. Montague Cobb was one of my favorite teachers [at Howard University Medical School, Washington, D.C.]. He was a man I met in my first year because he taught anatomy. And he used to have what we would call \"bust out sessions\". Now, what does that mean? You'd go into him, and you'd say \"bust me out\", meaning, ask me any question you want to ask me. I think I know the answer. And, and I liked that kind of challenge. And he liked that. He liked young students who felt so confident that they would walk in and say, \"Dr. Cobb, bust me out\" (laughter), and that meant, ask me anything you want on anatomy. And we wanted to let him know that we knew the answers. And I just enjoyed him as a teacher. And we used to have something called the cadaver walk. On the final examination, they would ask a hundred and eighty questions, and the cadavers have all been dissected then. All the cadavers are dissected. And they would have labels on some of everything, arteries, veins, muscles, bones, all this. And you had to identify those structures. And I really loved that. And when I was a medical student in my later years and as a surgical resident, I used to come back every year to go over with the freshman, medical and"}], "hoverinfo": "text"}, {"x": [-0.11298301815986633, -0.09521271288394928, -0.08036752790212631, -0.06330432742834091, -0.07996266335248947, -0.07018813490867615, -0.03281920775771141, -0.014895890839397907, -0.13146662712097168, -0.060218967497348785, -0.06608068943023682, -0.07117918133735657, -0.06463899463415146, -0.06716430932283401, -0.08942708373069763, -0.04084763303399086, -0.0445234552025795, -0.09435338526964188, -0.0671684741973877, -0.06148037314414978, -0.07228678464889526, -0.09336760640144348, -0.07416103035211563, -0.08466848731040955, -0.13787265121936798, 0.014326149597764015, -0.07542898505926132, -0.06026437506079674, -0.027838697656989098, -0.03568859025835991, -0.09418460726737976, -0.1301996111869812, -0.07022713124752045, -0.019333377480506897, -0.08466848731040955, -0.04390849173069, -0.06651831418275833, -0.005764940287917852, 0.0037577743642032146, -0.08039174228906631, -0.01517365500330925, 0.028047900646924973, -0.056406185030937195, -0.051893219351768494, -0.053148798644542694, -0.05180397257208824, 0.04196663945913315, 0.040414586663246155, -0.1305687129497528, -0.11298380047082901, 0.06436964869499207, -0.034654054790735245], "y": [-0.0710330381989479, 0.03900905326008797, -0.001080416957847774, -0.057691071182489395, -0.04225577041506767, 0.024007784202694893, 0.0066498867236077785, -0.04391352832317352, -0.00020588307233992964, 0.004881745204329491, 0.025100670754909515, -0.03470659628510475, -0.06035757064819336, 0.0065803565084934235, -0.0016611188184469938, -0.12156131863594055, -0.03845011442899704, -0.01571608893573284, 0.06661641597747803, -0.07329174131155014, 0.05085050314664841, -0.00957572367042303, -0.010573282837867737, -0.06353616714477539, -0.08139940351247787, -0.07837150245904922, -0.0317169725894928, -0.03339195251464844, 0.0712985247373581, -0.09557164460420609, -0.0900152400135994, -0.04873856157064438, -0.03468472883105278, 0.054103538393974304, -0.06353616714477539, -0.008335301652550697, -0.10227450728416443, 0.1060601994395256, -0.024193959310650826, 0.021866312250494957, -0.06017228960990906, -0.0938258022069931, -0.010321026667952538, -0.07860693335533142, -0.06359982490539551, 0.0249228123575449, -0.036457013338804245, 0.033525533974170685, -0.04512545466423035, -0.07103331387042999, 0.012352516874670982, -0.015425366349518299], "mode": "markers", "name": "Cluster 8", "marker": {"size": 8, "color": "rgb(217,217,217)"}, "text": ["Document 73", "Document 84", "Document 92", "Document 128", "Document 133", "Document 139", "Document 163", "Document 186", "Document 189", "Document 193", "Document 194", "Document 214", "Document 231", "Document 258", "Document 268", "Document 276", "Document 284", "Document 295", "Document 299", "Document 313", "Document 317", "Document 337", "Document 357", "Document 367", "Document 369", "Document 382", "Document 387", "Document 393", "Document 401", "Document 418", "Document 460", "Document 491", "Document 600", "Document 604", "Document 652", "Document 685", "Document 762", "Document 775", "Document 815", "Document 818", "Document 828", "Document 834", "Document 836", "Document 856", "Document 923", "Document 966", "Document 1089", "Document 1114", "Document 1278", "Document 1331", "Document 1365", "Document 1418"], "customdata": [{"title": "rpj-common-crawl-2019-30", "text": "your butt.\" \"Whatever! You love my weird things!!\" \"Does ex-girlfriend mean extreme girlfriend?\" \"If Jenny was a friend of mine...\" \"If someone comes into my 18\" bubble, either kick me or kiss me. You better be busting some slob or chops.\" \"I'm a man man you're a little man. When I'm dead and gone, you can take my man.\" \"They are reading out of their mind and making us go out of ours.\" \"You'll have to recharge your fist because your magic is naked.\" \"I\u2019d acquired a taste for niquor and licotine.\" \"Put down the munker [marker].\" \"You can't question me, I'm captain of the Bible Quiz team.\" \"The Bible says don't toot your own horn. I don't want anybody to toot.\" \"But I love you more than I hate it.\" \"Every now and then your butt looks camouflaged.\" \"It hurtens every time I straight it.\" \"The scars in your eyes light up the sties.\" \"Is the steering wheel hot?\" \"Yes. But I'm hotter.\" \"By the time it's noon, they're already in college.\" \"You might be mathematically smart, but you are everything else challenged.\" \"Soon you will have no ish.\" \"It'll be okay.\" \"Lottle\" \"Me three.\" \"I want you to stay here so I can constantly admire your leather pants.\" \"You'd hit an armed manned person?\" \"You wouldn't abuse me in the public eye.\" \"I wouldn't abuse you in the private eye.\" \"I was giving everybody time to say 'goodnight' to the rat.\" \"Have you ever laughed so hard that you threw up just a little"}, {"title": "rpj-common-crawl-2023-06", "text": "yer can also be used to establish one\u2019s location or whereabouts. \u201d Last week I was down yer Cyprus. The missus has been bangin\u2019 on for years about going there\u2019 banged up: arrested / locked up in jail Knocked up: pregnant Sorry: almost totally meaningless, yet viewed as a panacea for all self-caused problems situations. Barged past someone on an escalator, knocking their bag out of their hand and spilling their coffee all over their jacket because you are too busy wrapped up in your own world? No need to stop, just yell \u2018sorry\u2019,or possibly \u2018excuse me\u2019 as you continue on your way. Those two phrases have magical powers to right the wrong you just caused, thus exonerating you from any possible blame or contrition. Works in any circumstance where you wish to avoid taking responsibility for your actions. I find myself saying sorry when people barge into ME! I suspect that\u2019s not uncommon in London. Chav \u2013 where to begin to explain that one? Maybe start with people who say \u2018innit\u2019 \u2026. I love Bojo, just saying\u2026 Daniel Tyler (@tyl3rama) says Innit may have started off with chavvy overtones but it has spread a lot farther now and is often said very much tongue in cheek by middle class folk. I say it occasionally around my mates, but we would know when to or when not to use it.. Kacee says knocked up: called upon as in \u2018I\u2019ll knock you up at 6\u2019, etc. not \u2018pregnant\u2019. Abigail Rogers says They have a specific name for"}, {"title": "rpj-c4", "text": "A friend said this to me last night. I was kinda dumbfounded. it sounded like he was teasing me. and I asked him if that was bad. and he said no. but i'm just curious of it's meaning."}, {"title": "rpj-common-crawl-2021-04", "text": "it is an effort, then I do not push.\u201d \u201cOkay. I get it.\u201d He chewed for a minute. \u201cI heard your presentation went well. Did your friends like it?\u201d \u201cIt went marvelously. My friend Dallas took me aside to share quite the flow of compliments.\u201d \u201cThat\u2019s great, Celeste.\u201d He was downing half her iced tea. \u201cAnd then I bitch slapped her.\u201d Matt choked on the drink and desperately tried to clear his airway. \u201cI\u2019m sorry. You did what?\u201d She cocked her head. \u201cI bitch slapped her.\u201d \u201cThat\u2026 that can\u2019t be right,\u201d he sputtered. \u201cI mean, I hope it\u2019s not.\u201d \u201cI slapped my hand against her hand. Up in the air.\u201d She looked at Matt blankly. \u201cIs that not the right term?\u201d \u201cThank God, no, it\u2019s not. I think you mean a high-five.\u201d \u201cIf you say so. Well, either way, it happened. You know I have trouble with colloquialisms, so I resent your shocked reaction.\u201d \u201cI do know that about you, and I apologize.\u201d \u201cSince we are on the subject, there is something else I would like for you to clarify.\u201d \u201cShoot.\u201d \u201cWhat is meant by \u2018nut bag\u2019? Is that a testicular reference or merely the identification of a satchel of cashews or pecans?\u201d Matt groaned. \u201cThis conversation has gotten really weird. Could we just talk about\u2014 Wait a minute. Why are you asking me this? Did someone say that to you?\u201d He looked angry. Celeste picked at her fry. \u201cNo. Certainly not. I heard the term and had a natural curiosity.\u201d \u201cOkay then\u2026\u201d Her brother crumpled"}, {"title": "rpj-common-crawl-2020-05", "text": "gossip over cups of tea. If you're spilling tea, it means you're sharing some especially juicy gossip. But if you're over 40, most people are going to assume that you're being literal. They'll think you actually did spill some tea, and rather than lean in close to hear what gossip you have to share, they'll bring you a towel to clean it up. I'm Dead Obviously this slang phrase isn't literal. When someone says \"I'm dead,\" the implication is that whatever has just been said is so funny or true that it's figuratively sent them to an early grave. However, joking about your own premature death is only charming if you're years away from leaving this mortal coil. When somebody over 40 makes such a proclamation, it tends to be a little more worrying. Don't make your friends ask if you were kidding or if you've just received some alarming medical news. Bye, Felicia! First uttered by rapper Ice Cube in the 1995 comedy Friday, \"Bye, Felicia!\" is a way of telling someone to get out of your face and stop annoying you. Now, you might argue that it's perfectly acceptable to say this slang phrase as it came from a time period (the '90s) in which many people now over 40 were coming of age. What's more, you might remind us that Ice Cube is now 49\u2014so if he can say it, why can't you? Well, the thing is, Ice Cube was just 26 when he first said, \"Bye, Felicia.\" And he definitely doesn't run"}, {"title": "rpj-common-crawl-2019-30", "text": "'n dash\" maintenance worker are fairly obvious... or they should be. So tell me BougieLand, what catch phrase clich\u00e9s have you heard that let you know exactly where you stand? Have you used these? Have any tales of escaping the friend/smash zone? Do share. Tomorrow: \"What happened was...\" & other signs that some sneaky-freaky may be going on. \"We need to talk\" and other signs a break up is near Every one knows that \"We need to talk\" means two things: either someone actually needs to talk or someone is about to get placed curbside. But let's take a look at a few other phrases that might spell doom for a relationship: I'm trying not to hurt you - This is generally uttered by someone (male or female) who has already hurt the hell out of you and wants to be let off the hook for it. Furthermore, they will do it again. Also beware of \"I don't want to hurt you\" and \"I hope this doesn't hurt you.\" I'm always confused by this one. If you don't want to hurt someone, take steps to make sure you don't. Am I oversimplifying? I just need space - This means they've already found an alternate space (away from you) and just need you to be aware of it. And the follow-up question to this is, \"Space to do what, with who?\" If any of you have an example where someone \"took some space\" and then came back all excited about the relationship and it worked out -"}, {"title": "rpj-common-crawl-2019-30", "text": "into relation with each other, it's surprising how frequently and easily people use the \"wrong\" verb out of these pairings (as all of you have noted). This phenomenon is easy to describe with verb valency theory, however, because all of these pairings describe the same basic activity, the only difference being whether you make the recipient the subject or the object of the sentence. In other words, the sentence isn't really wrong, you just messed up the word order, which is a much easier mistake for your brain to make. 11 hours ago, Problem Machine said: I felt like saying that phrase would make the whole thing collapse so it remained unsaid. I got the feeling everyone felt that way. You don\u2019t want to pull out the keystone. 17 hours ago, Jake said: It just feels cruel to tease everyone this way though. I guess it's an audience retention trick, because now we have to tune in to all future pods to see if you say the thing. Saying \"Bustin' made me feel bad\" would make me feel good, and then the bustin' cycle would finally be complete. posh_somme Location: Birmingham, UK I lost it in public at lore lord bean On 2/17/2018 at 3:58 AM, Deadpan said: Ditto (except the last night part). A very good podcast. SecretAsianMan Thumbs Candyman Backing up Chris' endorsement of an extra long shoehorn. I own the same model and it is legitimately nice to have. It came in especially handy when my wife was pregnant and bending over became"}, {"title": "rpj-common-crawl-2020-05", "text": "about is, that new chick from accounting has some tits I'd love to smush my face in, you know what I'm saying?\" What You Think It Says About You: I care about my appearance, and I paid a lot of money for one of those five-blade razors, so I'm gonna get my money's worth. What It Really Says About You: I am afraid to experiment with facial hair, because I have no idea what would happen. It might grow in all patchy and I'll look like the neighbor from The Burbs or something. It's better to just avoid it altogether. Good For: Children, Women, The Terminally Ill Sentence Heard From This Person: \"I'd love to get coffee with you, I just have to finish some work. Shall we say Coffee Bean at 8:30? Tentatively?\" The Soul Patch What You Think It Says About You: I'm hip with the youngsters of today. I understand their television programs, and their music, and their youtubes. I sent a text message yesterday, too. That's how hip I am! What It Really Says About You: I'm playing in a 1998 high school baseball game tomorrow. Good For: Ska Band Trombone Players, Beatknick Poets, Evil Alter-Egos Sentence Heard From This Person: I just got a hold of this new Rob Thomas album, have you heard this guy? Great rythym.\" The Chin Strap What You Think It Says About You: I have the masculinity for a beard, but I'm also concerned about my appearance, and I take the time to make myself look"}, {"title": "rpj-common-crawl-2020-05", "text": "she proved to me exactly how far out of the loop I am, slang wise. Her: \u201cI\u2019m tired of \u2018Throwing shade.\u2019 \u201d Me: \u201cWhat? I\u2019ve never heard of that one.\u201d Her: \u201cIt\u2019s an insult.\u201d Me: \u201cLike \u2018dissing\u2019 someone?\u201d Her: \u201cI don\u2019t think anyone uses that one anymore.\u201d (I swear she snickered when she said this.) Her: \u201cAnd \u2018Butthurt\u2019. I\u2019m tired of \u2018Butthurt\u2019.\u201d Me: \u201cThat\u2019s what she said.\u201d** Her: \u201cHah hah. Very funny.\u201d Me: \u201cNo, I\u2019m tired of the phrase, \u2018That\u2019s what she said.\u2019 I don\u2019t really know the expression \u2018Butthurt\u2019 is it like \u2018Asshole\u2019?\u201d We devolve into a nattering Google search trying to confirm the origin of that one. Her: \u201cIt means: \u2018Overly annoyed, bothered or bugged because of a perceived insult; needlessly offended.\u2019 I would have thought it had a more sexual meaning.\u201d Then she looks a bit further; she is scrolling the text when she stops. Her: \u201cOh\u2026someone here uses it to be degrading, as if it means rape.\u201d We\u2019re both silent for a minute tacitly agreeing this isn\u2019t funny and maybe we should just drop this line of thought. But, we aren\u2019t over finding ourselves terribly amusing in general, if not in this particular instance. You\u2019ve Been Served Me: \u201cI hate it when I use slang that I am wayyy too old to be using: \u2018My Bad!\u2019\u201d Her: \u201cI\u2019ll confess, with a pre-teen running around the house, I\u2019ve been known to drop a \u2018Whatevs\u2019 on occasion.\u201d Me: (Gasp) \u201cNo!\u201d She nods sadly and I shake my head in disbelief. We pause for a"}, {"title": "rpj-c4", "text": "and give the impression of being personal. You have the right idea\u2026.. Ditch it and forget it. You have come up with a wonderful idea. This might take a little while to blossom but is a good endeavour. Aww thank you so much! That was the perfect dose of motivation I needed! Lame ducks is the most hilarious \u201cinsult\u201d I\u2019ve ever heard! \ud83d\ude02\ud83d\ude02 It sounds like whoever wrote to you did a broken English translation. I know right! I thought it was the weirdest thing ever, but when I googled it, apparently it is a real expression! I\u2019m so sorry to hear that, Lauren. How frustrating! I\u2019ve really enjoyed your writing and getting to know you over time! They clearly don\u2019t know what they are talking about."}, {"title": "rpj-common-crawl-2020-05", "text": "else on the team with older laptops. I have a deadline, can you fix this? Bob: No, I told you, if it breaks, you'll get to keep both pieces. What Bob is trying to say is \"I told you so\", \"go away\", \"you are on your own\", and \"it's not my problem\". Thus it's a generic excuse. Sometimes it comes across as patronizing, especially when it later turns out that it's a real problem which should have been supported/working, instead it was dismissed by Bob. That would be called a bug denial. It means all the pieces that are broken, kind of equivalent of \"don't do that\" when asking a doctor why it hurts when you do a particular action. Well, it can be used in any tone one likes from nice to angry. The phrase is informal by nature, but it's not a joke. One seriously means it as a caution / warning. This can go on: Carol: Bob, did anybody upgrade to windows 10 yet? Bob: Only Alice, and it broke Office for her. But you know, she got to keep both pieces. Carol: Well, I don't use that. Here be dragons. Carol heard the warning, accepts responsibility for any fallout, and goes ahead with the upgrade to see what happens (and breaks). jimm101 DimaDima Not the answer you're looking for? Browse other questions tagged expressions or ask your own question. When has the phrase \u201cdirty sex\u201d started to be used? What does the phrase \u201cWe'll keep you whole,\u201d really mean? How can I"}, {"title": "rpj-common-crawl-2021-04", "text": "15. When asked \"Are you allright?\" You respond with \"I'm allright its the others\". 16.When someone mentions football, you say about them being overpaid and falling over when they are tapped. Echoing something said a trillion times before, but with an air of originality and gravitas as if you have just created an alternative to fossil fuels. 17. You like Mrs Brown's Boys 18. You dislike London and take every opportunity to tell people that. 19. Someone mentions martial arts, you respond with: \"I've got a black belt in Origami\"....No you have a black belt in C**t 20. When someone has had a haircut, you chide in with \"You had a fight with a lawnmower.\" If you are a true c**t, you end it with the words \"...and lost!\" to really finish the room off. 21. You have said at one time: \"Say what you like about Katie Price but she is a savvy businesswoman\" 22. When someone uses a long word that you do not know the meaning of, you say: \"Can you repeat that in English please\". A baffling thing to say, loudly proclaiming your ignorance. \"Can you repeat that in ignorant cunt\" would, of course, be more accurate. 23. When a baby/toddler unwraps a gift and then proceeds (as they invariably do) to play with the packaging and show more interest in the box than the gift, it is more certain than 3 follows 2 that some empty vessel will quip: \"Right Next year we all know what to get him/her.....a box!\" Hear"}, {"title": "rpj-common-crawl-2019-30", "text": "pertains to drainage. It derives from a 1924 Congressional transcript regarding the Teapot Dome Scandal, a scandal as boring as the milkshake metaphor is weird. That is, if you find national bribery scandals involving the Harding admin- zzZZZZzzzzZzzz. When you decontextualize that line, it's nonsense. It has nothing to do with victory, or getting back at someone, or sinking that sweet three-pointer. You might as well yell, \"How are those tulip investments?!\" Which would be a sick burn in the Dutch Golden Age after the crash of the tulip bubble, but right now it's nothing but gibberish. The only thing \"I drink your milkshake\" means is that you're finished explaining a technical scam oft-employed in old-timey oil drilling ... but try telling that to the guy shouting at you over your Xbox. \"I Am The One Who Knocks!\" (Breaking Bad) Breaking Bad has it all: solid performances, good writing, methamphetamine, saggy underpants. That's everything! There are a lot of quotable moments in the show, but Walter White's fierce \"I am the one who knocks!\" is among the most enduring. It's the moment when Walter truly transforms from humble nerd in over his head into Big Boss Heisenberg. Plus, it's a crazy badass thing to say. \"Now you're supposed to say 'Who's there?'\" Few people consider the context around the line. Walter isn't giving his big speech to a crime boss or a gangbanger come to challenge his meth empire. He's angrily berating his wife. He's telling her \"I'm a big ol' tough guy! People are scared"}, {"title": "rpj-book", "text": "fight** Do you want to step outside (and settle this)? Would you like to step outside? Want to make something of it? _something = an issue to fight about_ Care to make something of it? #### **186 Asking someone to leave your property alone** Hands off! Excuse me, that's mine. Did I say you could touch that? Look with your eyes not your hands. If you break it, you pay for it. If you break it, you've bought it. #### **187 Asking someone to stay out of your affairs** Mind your own business. _(informal)_ Mind your own beeswax. _(slang)_ _beeswax = business_ M.Y.O.B. _(slang)_ _= Mind your own business._ Butt out! _(slang)_ _= Mind your own business!_ That's none of your affair. Get your nose out of my business. _(informal)_ Keep your nose out of my business. _(informal)_ #### **188 When someone is harassing you \u2014 angry and direct** Get off my back! _(slang)_ Lay off, will you! _(slang)_ Get off my tail! _(slang)_ Get off my ass! _(mildly vulgar)_ Get off it! _(slang)_ Come off it! _(slang)_ #### **189 When someone is harassing you \u2014 rude** Nuts to you. _(mildly vulgar)_ Screw you. _(mildly vulgar)_ Up yours. _(vulgar)_ #### **190 When someone is presumptuous** Why would you ask such a thing? How could you say such a thing? What right do you have to say that? Who gave you the right? Where do you come off saying that? Well, I never! #### **191 When someone has underestimated your intelligence** How dumb do you think I"}, {"title": "rpj-common-crawl-2019-30", "text": "\"I'm out of patience\"? \"I can't even.\" \"I'm totally out of here.\" \"I'm about ready to bug out.\" \"I'm done.\" How well executed is Apple product design? It's on fleek. It's righteous. It's sharp. It's gorgeous. How would you refer to your significant other in an informal context? They are my bae. That's my boy/girl! They're my baby. They're my boy/girlfriend. How would you flat out insult someone? \"Talk to the hand.\" \"Bag your face.\" \"Make like a tree.\" \"You're a jerk!\" How would you say someone is excellent at a skill? \"They are v good.\" \"They're gnarly.\" \"They're neato.\" \"They're really good.\" How good are McDonald's french fries? They are perf! They're delish! They're outta sight! They're lovely! How would you indicate sarcasm, if the audience didn't get it? JK! ...not! I'm just pulling your leg. I'm kidding! How would you indicate \"Me too\"? \"It me.\" \"Right here.\" \"Right on.\" \"I would like to as well.\" How would you confront someone when they demand an apology you don't want to give? \"Sorry, not sorry.\" \"Not gonna happen.\" \"Don't sweat it.\" \"I'm not saying I'm sorry because I am not\" If you wanted to emphasize the description of an action or an adjective, how would you do it? I'd say it's _____ AF. I'd say when it _____, it rocks. I'd say when it_____, it's bad. It say it _____s very well. How would you say you're really up for something? I'm turnt. I'm wicked there. Be there or be square. I'll drop in, sure. Can"}, {"title": "rpj-common-crawl-2019-30", "text": "I showed her my chainsaw she ran away screaming. Did you drop the Chainsaw on her when she ran down the stairs than in a Christian Bale American Psycho way shout out ' BAAAAAAAAAAHHHHHH!!!!!' when it landed on her? Dropping chainsaws on a girl - it always goes down well. by Seppuku on Wed May 27, 2009 6:50 pm I use that line all the time. I always figured it would probably work better if I were female, but I carried on using it anyway. I never thought about changing the \"me\" to a \"you.\" This just opened up a whole world of possibilities. by buster00 on Thu May 28, 2009 11:45 am \"I'll sell you my body...for a kiss.\" \"Now I know what death tastes like.\" Those are my new favorites. I try to shoehorn them into my everyday conversation. by magicmonkey on Thu May 28, 2009 12:36 pm I go around saying, \"Tell me what you need Spock, tell me what you need.\" magicmonkey I AM fucking Zen Location: Shanghizzo by Seppuku on Wed Jul 01, 2009 6:15 pm One of the best rants in movie history courtesy of Bob Hoskins at the end of The Long Good Friday, painfully transcribed by yours truly because I couldn't find it online: \"I'll tell you something... I'm glad I found out in time just what a partnership with a pair of wankers like you would have been. A sleeping partner's one thing, but you're in a fucking coma! No wonder you've got an energy crisis your"}, {"title": "rpj-common-crawl-2022-05", "text": "the distance until that moment. Now, he turns to me with a look of confusion on his face. \u201cWhat do you mean? Nothing wrong with that. It\u2019s a saying. Everyone says it.\u201d He says. He falls silent. Is he winding me up? There must be a look on my face because he shrugs. \u201cWhat?\u201d He says. I take a much-needed gulp of beer. I don\u2019t know whether he\u2019s joking or not. We frequently do this kind of thing all the time, and it usually ends up with me being laughed at. Of course, I\u2019m always game for a laugh so I\u2019ll press on. Besides, if he\u2019s wrong, then I can take the piss out of him forever. That is a risk worth taking \u201cIt\u2019s a saying, mate. But it\u2019s not \u2018old Chester\u2019, it\u2019s actually \u2018old chestnut\u2019. You do know that, don\u2019t you?\u201d I say. He looks incredulous and then shakes his head angrily. \u201cNo, it\u2019s bloody not! Don\u2019t be daft!\u201d He says and continues to shake his head and grabs his pint. I can\u2019t help but snort. I\u2019m really starting to believe he\u2019s saying the wrong thing and he doesn\u2019t know it. \u201cMe being daft? It\u2019s you who\u2019s daft, mate. You\u2019ve been going around for forty-odd years saying, \u2018that old Chester\u2019 like a complete idiot.\u201d I say and then burst out laughing. I just couldn\u2019t contain it any longer. It\u2019s been bubbling up inside me since he first uttered those words. Now, he really doesn\u2019t look happy. He deposits his pint down on the table firmly,"}, {"title": "rpj-common-crawl-2023-06", "text": "disagree -- which is it?) \"I think I just threw up in my mouth a little.\" (Just gross.) \"Are you still picking?\" or \"Are you still working on that?\" (As often said by restaurant wait-staff. I am dining, not picking or working.) \"He's in a world of hurt.\" (Just silly.) \"Torching\" calories (Please, please, health magazines, think of a different alternative to \"burning\" calories.) \"Pull the door to.\" (What's wrong with \"close the door\"?) and I meant touche' typos...I'm sure there's typo peeve party. who proofreads comments. Lordy Two that I hate: 1) When people say \"old timer's disease\" for \"Alzheimer's disease.\" So ignorant. It is especially NAILS-ON-CHALKBOARD annoying when they have to say it more than once in a conversation. Yuck! 2) The stupid fad (trend?) of saying, \"Seriously\" or \"Really\" to show feigned disbelief just for dramatic effect. Stupid. @AKM the moo point threw me for abit of a loop. SO I looked it up....funny, very funny :) Gotta love and \"Friends\" reference. I especailly on the heels of yesterdays reference \"im in an ATM vetibule with Jill Goodacre\". Good one Sorry for all my spacing and spelling errors. Now I feel shameful :( @violet - Thank GOD somebody got it. ;-) mr. ray said... \"your\" \"you're\",\"their\", \"they're\" and \"there\" a animal when it should be AN animal...that drives e NUTS! ant=aunt \"It also makes me nuts when people say they will 'give 110%' or 'on a scale of 1-10, I give it an 11.'\" The \"11\" is a THIS IS SPINAL TAP reference."}, {"title": "rpj-common-crawl-2023-06", "text": "Grammaretto Thu 05-Apr-18 13:39:46 She was like and he was like to describe any situation. as in She was like really upset. Or should that be, So she was like really angry.. DanniRae Thu 05-Apr-18 13:50:55 How about when someone agrees with something you have said and they reply \"Oh yes. All day long\". Bradley Walsh says it all the time on \"The Chase\". I find it quite annoying. I think some people find it easier to say that someone has 'passed' rather than died and I don't mind this at all. MissAdventure Thu 05-Apr-18 13:56:20 I heard a new 'thing' yesterday. Someone thought that their friend had blatantly ignored them whilst out, and had been standoffish since. When the friend asked why they hadn't said anything, or explained what the problem was, the ignored person said they aren't \"A beg\" pensionpat Thu 05-Apr-18 14:00:15 I often see FB posts which aren't even a sentence. E.g. When you come home from work and your child/partner/dog is pleased to see you. I presume it's to signify emotion. Or boasting usually. MissAdventure we will all need subtitles soon. a beg? what does that mean? People who turn around all the time as in: He turned round and then I turned round etc. I think they'll all get dizzy. At least there is still the spoken word. I often get the bus (it's free!!!) and some people seem only to be able to speak in 4 letter swear words. gmelon Thu 05-Apr-18 14:13:08 \"Narcissist \". The latest word for"}, {"title": "rpj-common-crawl-2021-04", "text": "on aloha setting\" \"I called my wife and told her that I\u2019ll pick up Fish and Chips\" (joke) \"I called the cops about a murder on my front lawn...\" (joke) \"I called the restaurant and I asked them if they take orders...\" (joke) \"I called the Tinnitus hotline earlier, but it just kept ringing\" \"I call bravo sierra\" (\"I call bullshit\") \"I call myself terms and conditions because y'all keep ignoring me\" \"I came from a tough neighborhood. On my street, the kids take hubcaps - from moving cars\" \"I came from a tough neighborhood. In the local restaurant, I sat down and had broken leg of lamb\" \"I came, I ate, I conquered\" \"I can\u2019t afford vacation, so I am just going to drink until I don\u2019t know where I am\" \"I can't believe it's been a year since I didn't become a better person\" \"I can\u2019t believe it\u2019s riot season already. I still have my COVID decorations up\" \"I can't believe I've been arrested for shoplifting. The cashier TOLD me to swipe the cardigan!\" \"I can't believe I got arrested for impersonating a politician. I was just doing nothing\" \"I can't believe I still have to protest this shit\" \"I can't believe pretzels are knot bread\" \"I can't be your valentine for medical reasons. You make me sick!\" \"I can't breathe\" (anti-police brutality slogan) \"I can't decide if people who wear pajamas in public have given up or are living the fullest\" \"I can't die! I'm booked!\" \"I can\u2019t drink responsibly because responsibilities are"}, {"title": "rpj-common-crawl-2020-05", "text": "you could help me to find the closest idiom/expression/proverb for this case. A-friend A-friendA-friend You have received some good answers to your literal question about proverbs that are similar to your \"My cow gave birth\". But in my experience, native speakers would not usually use a proverb or indeed any long phrase to fill in the blank in your example; rather they would probably just use a single word and most likely an expletive such as (from polite to most rude) \"Oh my (dear)\", \"Oh, shit\" or \"Oh, fuck\" or some variation of that. \u2013 CompuChip Apr 21 '19 at 21:51 The answers above provide many common phrasings, the only one I would potentially add is \"That does it!\" This can be used to signify that after other things have gone wrong, the most recent upset has pushed you over the edge. Another in that vein is (sarcastically) ` \"That's just what I need!\" When you could really do without whatever has happened. Freddie RFreddie R Thank you very much @Freddie R for the great response. +1 for the unique answer. Just please let me know a bit more about the nuance between your two suggestions! For me, they both exactly mean the same! \u2013 A-friend Apr 22 '19 at 10:22 \"That does it!\" is said without sarcasm, and usually before action. \"First my car wouldn't start, and now it's broken down! That does it, I'm getting the train\". \u2013 Freddie R Apr 22 '19 at 10:28 \"That's just what I need!\" is sarcastic, and is"}, {"title": "rpj-common-crawl-2022-05", "text": "in my mouth a little.\" (Just gross.) \"Are you still picking?\" or \"Are you still working on that?\" (As often said by restaurant wait-staff. I am dining, not picking or working.) \"He's in a world of hurt.\" (Just silly.) \"Torching\" calories (Please, please, health magazines, think of a different alternative to \"burning\" calories.) \"Pull the door to.\" (What's wrong with \"close the door\"?) and I meant touche' typos...I'm sure there's typo peeve party. who proofreads comments. Lordy Two that I hate: 1) When people say \"old timer's disease\" for \"Alzheimer's disease.\" So ignorant. It is especially NAILS-ON-CHALKBOARD annoying when they have to say it more than once in a conversation. Yuck! 2) The stupid fad (trend?) of saying, \"Seriously\" or \"Really\" to show feigned disbelief just for dramatic effect. Stupid. @AKM the moo point threw me for abit of a loop. SO I looked it up....funny, very funny :) Gotta love and \"Friends\" reference. I especailly on the heels of yesterdays reference \"im in an ATM vetibule with Jill Goodacre\". Good one Sorry for all my spacing and spelling errors. Now I feel shameful :( @violet - Thank GOD somebody got it. ;-) mr. ray said... \"your\" \"you're\",\"their\", \"they're\" and \"there\" a animal when it should be AN animal...that drives e NUTS! ant=aunt \"It also makes me nuts when people say they will 'give 110%' or 'on a scale of 1-10, I give it an 11.'\" The \"11\" is a THIS IS SPINAL TAP reference. I find it funny that in this thread people go on"}, {"title": "rpj-common-crawl-2020-05", "text": "posted by Lira Yayy new word. I've always thought it was \"she's one to do this kind of thing\" You're right, I see that you purposely left it open to interpretation as to whether you were trying to be funny about correcting him, or whether you legitimately didn't know what it meant. I'll admit that's a good tactic for not coming off as quite as much of an idiot as you usually do. And you really don't have any insults. They're either things you completely make up (my fiance is fake, etc.) or some VAR-esque psychotic diatribe. That's not really an insult so much as a psychosis manifesto. Intellekshual tranceaddict in training Location: Oubliette They're either things you completely make up (my fiance is fake, etc.) Pffffffffff LOL. Really? He said your fiancee is fake? What's wrong with these people... The only hard feelings should be in your pants Moongoose Supreme tranceaddict Location: Celje, Slovenia Ive just been greeted by gmails new compose \"experience\". I have the strongest urge to fly to google HQ and strangle the asshat responsible for that with a guitar string (i know that a piano wire is more traditional but i dont have one handy). Haha, I know the feel, Slovak bro Originally posted by Vivid Boy I was a little pissed last night so let me clarify. He didn\ufffdt steal 12 grand from me. he fucked me out of 12 grand because he thought he was saving himself money by doing it when really he didn't save anything and in"}, {"title": "rpj-common-crawl-2019-30", "text": "a bad word. Pea. Nut. Butt.\" \"Dragon\" \"He knows nothing about t.v. shows. Or girls.\" \"It's your turn.\" \"To what?\" \"To float.\" \"K, you're ruining the view; take off your jacket.\" \"I hated it. I saw it twice.\" \"You can't stand me.\" \"I'm glad you're not as dumb as you act.\" \"I'm just talking out loud.\" \"You're fun.\" \"I'm glad.\" \"Me too. It'd suck if you were boring.\" \"I almost posted except for all the damn, windy trees...I actually said that?\" \"D-d-d-d-discovered...\" \u201cI\u2019m doing it, therefore I would and I did.\u201d \"I've got a piece of pizza in my purse.\" \"She's a keeper.\" \"Just because you can dislocate your shoulder blade, doesn't mean we need to see it.\" \"You're not going home, you're going to jail.\" \"I hate thinking I'm a shallow person.\" \"Time is money. But money is money.\" \"Do you like the movie ones?\" \"You're not my friend. You're my wife.\" \"The shape of things to come. . .\" \"If God can knit us together, He can whittle us.\" \"I can't make you do anything.\" \"Yes, you can.\" \"What?\" \"Make me mad.\" \"My eyes are bigger than my stomach but my stomach's catching up.\" \"Oh, you're learning to play the trumpet?\" \"No, Trump.It.\" \"You buy what you get for.\""}, {"title": "rpj-common-crawl-2020-05", "text": "British usage, it is said to come from the Navy. Two possible origins is that it came from babies born on ships with unknown fathers so they just listed Gunner\u2019s Mate instead, or that it came from women giving birth on a section of the gun deck. There\u2019s even one historian who attributes it to knights using it as an epithet. \u2063aaaaaaa on May 21, 2015 at 23:53 said: iirc it was more of a sailor\u2019s bastard thing I\u2019m so proud of Skitter! Not quite as proud as if she\u2019d somehow managed to explode their pants, but still proud. Pants exploding is what it is called in the Fallout series when you pickpocket someone to slip a grenade or other explosive onto them. They spend a second screaming and trying to find it on them before Kablooey! Also, the psychological aspect was fun. Tapeworms and centipedes and mosquitos all talking and screwing with them. I like one of the taunts from Def Jam: Fight for NY, \u201cI\u2019m gonna rip your eyes out and put them on my knee and call you \u2018Niecy'\u201d though that fighter also has a good one in \u201cI\u2019m gonna tear your tongue out and lick my ass with it.\u201d Or I might go with \u201cI\u2019m gonna yank your lungs out through your ears and feed them to you,\u201d or \u201cI\u2019m gonna kick your face in so hard you\u2019re gonna be tasting ass for a week,\u201d or even \u201cI will break my own goddamn foot off, hobble up to you, and shove it"}, {"title": "rpj-common-crawl-2019-30", "text": "switch and burst into tears. I would end up consoling him and apologizing. This worked well for him after I busted him for cheating because he could refer to \u201call the times you made me cry\u201d. Technically I guess it was true. The Fucktard claimed in MC that he was \u201cwalking on eggshells\u201d with me too. At the time, it made no sense at all as he was a tempramental entitled bastard and I was doing backflips to accommodate his endless demands and criticism. I think it was more like \u201cwaiting for the shoe to drop\u201d because I was starting to put the pieces together and when the puzzle became complete he expected all hell to break loose. YES to this > \u201cI think it was more like \u201cwaiting for the shoe to drop\u201d Mine also said he was walking on eggshells like I would get upset randomly. I could never figure it out because I always had a legitimate reason for being angry or frustrated with him. Your explanation makes more sense. For several years after I kicked him out due to Affair #2, cheater narc would do entitled, selfish stuff involving me, the kids, money, whatever. I\u2019d get mad, usually managed to express that clearly and reasonably politely. Every. Single. Time, he\u2019d say something like \u2018I know you are angry about the separation, but blah blah\u2019. No, asshole, I\u2019m angry about what you JUST DID, right now! Never, ever acknowledged his on-going fuck-ups and assholery. ChumpSaidBuhBye says They love to claim abuse. During the"}, {"title": "rpj-common-crawl-2021-04", "text": "Trekkies use them. I kind of feel like Star Trek lingo is a protected class. http://youtu.be/HofoK_QQxGc GENTLEMEN, WE CAN REBUILD HIM. WE HAVE THE TECHNOLOGY. Sample usage: When something is dropped or broken, or somebody has something really high tech going on their person. \u201cWow, check out your new Bluetooth ear thingy. Gentlemen, we can rebuild him! We have the technology!\u201d Backstory: Opening of Six Million Dollar Man. Thoughts: Questionable. Probably no longer meaningful to too many people, and it just doesn\u2019t stand on its own. I think it would sound weird if you never watched the show. That probably won\u2019t stop me from using it in certain conversations, but I feel I have to retire it from blogs and books. Ditto for \u201cI can\u2019t hold her! She\u2019s breaking up! She\u2019s breaking up!\u201d AAAAND LOVING IT. Sample usage: Sarcastic or tongue-in-cheek retort. Q: \u201cAre you babysitting the neighbor\u2019s kids again?\u201d A: \u201cAaaaand loving it.\u201d Backstory: Maxwell Smart from Get Smart always said it. His boss might say something like, \u201cBut Max, you\u2019ll be in constant peril every second!\u201d And Max would say \u201cAaaaand loving it.\u201d Thoughts: This is one of those references you can still use, and even if people don\u2019t get where it\u2019s from, it still makes sense. UP YOUR NOSE WITH A RUBBER HOSE Usage: Insult Backstory: The character Barbarino from Welcome Back Kotter always said it. Thoughts: I don\u2019t think people know what this is anymore. Even in its day, it was nonsense. But, in a certain strange mood, I\u2019d still be willing"}, {"title": "rpj-c4", "text": "that aren\u2019t brilliant: emails (not written by Albert Einstein or John Maynard Keynes), dogs, restaurant suggestions. Like \u201ccheers,\u201d \u201cbrilliant\u201d has an acceptable place in the British vocabulary but should be used sparingly anywhere else. We needed a long break before our second \u201cBro\u201d entry. This one was first uttered by popular American TV star Ron \u201cRonnie\u201d Ortiz-Magro on Episode 1.6 of the show Jersey Shore. Since then it has STEROID BLOWN UP in popularity, first as a legitimate taunt (you\u2019re in a bar, some guy \u201csteps to you\u201d impolitely \u2014 \u201ccome at me bro!\u201d) and more recently as a hipster-claimed ironic expression (you\u2019re at a used record store, some guy grabs the Pixies album you were eyeing). In either case the time has come to retire the expression \u2014 now nearly two years old! \u2014 to whatever dumpster Charlie Sheen\u2019s \u201cWinning!\u201d, and probably Charlie Sheen, is in. I just wanted one we could all agree on. It\u2019s so dumb! The above represent really just the tip of the iceberg. At the rate we are all talking more and more like members of the Burger King Kids Club, there will probably be enough new material for a follow-up post in about six weeks. Stay tuned! This entry was posted on August 25, 2011 at 2:23 pm and is filed under Gripes & Tirades. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site."}, {"title": "rpj-common-crawl-2019-30", "text": "of it. You say this when someone is getting very excited or upset about an issue and you want them to relax. This is a very big deal. You say this when you're talking about something that's very important but other people don't realize that yet. Big deal! This is a response that's similar to \"So what?\". You say this when you want to show that you don't care about what someone just said. \u201cCan you follow up with Jay later this week?\u201d \u201cDo you think this will go well in the study?\u201d"}, {"title": "rpj-common-crawl-2021-04", "text": "wanted to be friends i just thought i wouldnt close the door to you \" WTF ? sorry im on a roll \"i thought i would give you a hand because i know you dont have many friends \" \"i got mine thanks \" eww , \"the trouble with you scoop is ...... \" then he would spend an hour telling me how he is so sorted and im so rubbish....\"its youre fault you got pregnant YOU slept with ME\" i can laugh at that one now ... so many more but the best one \"im not a controle freak \" oh, that is classic What a flaming piece of crap! I'll tell ya, I've never known anyone like my N who I wanted to punch so much. What a hilarious thing to say - even though it's so incredibly hurtful. I mean, who the heck does he think he is? I wonder if these guys save up these lines, and then see how effective they are, and re-use them over and over again. It seems like if you really wanted to hurt someone then you would just use the lines that get the most effect, statistically that is. Which might explain why insulting someone's boobs is used so frequently - because it often works. I think I am going to start storing up my own lines. I bought it hook line and I bought it hook line and sinker too :( I owned my own home free and clear, had a very successful career as"}, {"title": "rpj-common-crawl-2019-30", "text": "beat up by the inventor of scrabble!\u201d 6. \u201cWrong place, wrong time. Nothing personal.\u201d \u201cThat\u2019s what you think. Last night I fucked your wife.\u201d \u201cOh you did, huh? How\u2019d you know it was my wife?\u201d \u201cShe said her husband was a big pimp lookin\u2019 motherfucker with a hat.\u201d 5. \u201cCan we get a formal introduction?\u201d \u201cWho gives a fuck? You\u2019re the bad guy, right?\u201d \u201cI AM the bad guy.\u201d 4. (To Himself in the mirror) \u201cNobody likes you. Everybody hates you. You\u2019re gonna lose. Smile, you fuck.\u201d 3. \u201cNow what are you doing?\u201d \u201ci\u2019m drawing them a picture.\u201d \u201cWhat\u2019s that?\u201d \u201cIt\u2019s a bomb.\u201d \u201cIt doesn\u2019t look like a bomb, it looks like an apple with lines coming out of it. What are they gonna say, \u201cDon\u2019t open the briefcase, it\u2019s full of fresh fruit?\u201d [\u2026 Shows picture, gets shot at \u2026] \u201cI forgot to tell you, \u201cBomb\u201d means \u201cFuck You\u201d in Polish.\u201d \u201cHey, that\u2019s not funny, man. I nearly bought it there!\u201d \u201cTragic loss to the art world, let me tell ya.\u201d 2. \u201cLeather pans.\u201d \u201cWhat\u2019s something like that run?\u201d \u201cSix-fifty.\u201d \u201cSix hundred and fifty dollars??\u201d \u201cThey\u2019re pants?\u201d \u201cYou wear them?\u201d \u201cThey don\u2019t, like, have a TV in them or nothin\u2019?\u201d \u201c\u2026I am very old.\u201d 1. \u201cYou think you are so fuckin\u2019 cool, don\u2019t you? You think you are so fucking cool. But just once, I would like to hear you scream in pain.\u201d \u201cPlay some rap music.\u201d Posted in Listeria | 5 Comments \u00bb"}, {"title": "rpj-common-crawl-2019-30", "text": "face but I won't put your pillow in the water fountain.\" \"Cheese clings.\" \"I have a hug that fits your shape.\" \"K, your hair is a beautiful ocean of dead seals.\" \"In which case the bucket will not have been kicked.\" \"NOTHING!!!\" \"Awkward.\" \"You're speaking illegibly.\" \"That isn't at all similar at all.\" \"I feel like military.\" \"You just denied me my sneeze. Jerk.\" \"Gee, I am a loser.\" \"Not the brightest cookie in the tool shed.\" \"You're a funny gun.\" \"You need someone to give you a nice backrub down.\" \"K, I would never trade you for a lightsaber.\" \"Sheber Weber.\" \"I'm a rapper and I didn't even know it.\" \"I forgive you; your tongue makes up for it.\" \"Oh my gosh! Pay inside lift handle!\" \"I don't know...well, I don't know...well, I don't know...I don't know what's happening.\" \"Well, she spit updown.\" \"Tunnel vision helps me focus.\" \"I have a crush on every boy.\" \"Wherever I am, I'm there.\" \"When I was growing up you went to hell for that.\" \"I bit myself.\" \"I wait hating.\" \"BEIGE!!!\" \"Borg Jesus: A New Vision\" \"It makes it look like a spider is attacking your butt.\" \"Whatever! You love my weird things!!\" \"Does ex-girlfriend mean extreme girlfriend?\" \"If Jenny was a friend of mine...\" \"If someone comes into my 18\" bubble, either kick me or kiss me. You better be busting some slob or chops.\" \"I'm a man man you're a little man. When I'm dead and gone, you can take my man.\" \"They are reading out"}, {"title": "rpj-common-crawl-2021-04", "text": "person referred to is \"crazy\" or \"nuts.\" Also known as a \"crotch chop,\" this gesture is performed by crossing the outstretched arms across the thighs, putting emphasis on the groin. This was used by popular professional wrestling stable D-Generation X. There is a variation in which a fist is made and shaken near the mouth while pushing one's tongue against the inside of the cheek, to mimic fellatio. Eat me (out) / EMO (Lagnar) The forefinger and middle finger are placed on opposite sides of the mouth, palm toward the self, in a \"V\" and the tongue flicked in between, simulating cunnilingus. It is mostly used as a dismissive retort, but can also convey a taunt. Popular in the 1970s. More recently it is used as a derogatory way of signifying a lesbian. Touched / screw loose Tapping one's index finger against the head indicates that a person or an idea being discussed is insane or \"touched in the head\". A similar, more elaborate gesture uses a circling motion of the finger at the temple or side of the head. This signifies that the person is \"mixed up\" or \"has a screw loose\". In Germany, tapping or pointing to the temple is used as an insult, often with the accompanying phrase \"du hast einen Vogel.\" While this literally means \"You have a bird,\" it is idiomatic for saying that you are insane. Also, in Indonesia, drawing a line across the forehead with the side of the right index finger denotes a similar meaning. A variant of"}, {"title": "rpj-common-crawl-2020-05", "text": "say, \"I'm not intimidated!\" Fiddling with an object (hair, pencil, car keys, cell phone) It could mean: Nothing some people just like to fiddle. But it might mean: \"I'm nervous\" or \"I'm bored.\" What the experts say: To figure out what's going on, look for other clues, says Tavlin. Yawning suggests boredom; blinking, nervousness. If the fiddling is distracting you, draw attention to the object, says Watts. Say, \"Is that a new cell phone?\" Then get back to your discussion. It could mean: \"I'm really passionate about this topic.\" But it might mean: She's trying to intimidate you. What the experts say: \"Pointing is generally an aggressive sign,\" says life coach and social worker Carol Moss. It can signal that someone is blaming or attacking you. If you can't let it go, \"It's OK to ask someone not to point,\" says Moss. Make a joke about it: \"Hey, nice manicure.\" Wringing hands It could mean: She's cold. But it might mean: She's worried. What the experts say: \"People who are very uncomfortable with a question, topic, or situation sometimes do this,\" says Karos. The best thing is to ignore it. If the person is truly nervous, commenting on her nerves will only make her more so. Excessive touching It could mean: She's overly friendly. But it might mean: \"I'm more powerful than you.\" What the experts say: \"People of higher status often feel freer to touch people of lower status,\" says Tannenbaum. (Of course, it can also be sexual.) \"If you're uncomfortable, you don't need to"}, {"title": "rpj-common-crawl-2019-30", "text": "a bad word. Pea. Nut. Butt.\" \"Dragon\" \"He knows nothing about t.v. shows. Or girls.\" \"It's your turn.\" \"To what?\" \"To float.\" \"K, you're ruining the view; take off your jacket.\" \"I hated it. I saw it twice.\" \"You can't stand me.\" \"I'm glad you're not as dumb as you act.\" \"I'm just talking out loud.\" \"You're fun.\" \"I'm glad.\" \"Me too. It'd suck if you were boring.\" \"I almost posted except for all the damn, windy trees...I actually said that?\" \"D-d-d-d-discovered...\" \u201cI\u2019m doing it, therefore I would and I did.\u201d \"I've got a piece of pizza in my purse.\" \"She's a keeper.\" \"Just because you can dislocate your shoulder blade, doesn't mean we need to see it.\" \"You're not going home, you're going to jail.\" \"I hate thinking I'm a shallow person.\" \"Time is money. But money is money.\" \"Do you like the movie ones?\" \"You're not my friend. You're my wife.\" \"The shape of things to come. . .\" \"If God can knit us together, He can whittle us.\" \"I can't make you do anything.\" \"Yes, you can.\" \"What?\" \"Make me mad.\" \"My eyes are bigger than my stomach but my stomach's catching up.\" \"Oh, you're learning to play the trumpet?\" \"No, Trump.It.\" \"You buy what you get for.\""}, {"title": "rpj-common-crawl-2020-05", "text": "the Vehicle Identification Number of every car I've ever owned, but I forgot your birthday.\" \"I was just thinking about you, and got you these roses,\" REALLY MEANS, \"The girl selling them on the corner was a real babe, wearing a thong.\" \"Oh, don't fuss. I just cut myself. It's no big deal,\" REALLY MEANS, \"I have actually severed a limb, but will bleed to death before I admit I'm hurt.\" \"I do help around the house,\" REALLY MEANS, \"I once threw a dirty towel near the laundry basket.\" \"Hey, I've got reasons for what I'm doing,\" REALLY MEANS, \"I sure hope I think of some pretty soon.\" \"What did I do this time?\" REALLY MEANS, \"What did you catch me doing?\" \"She's one of the rabid feminists,\" REALLY MEANS, \"She refused to make my coffee.\" \"I heard you,\" REALLY MEANS, \"I haven't the foggiest clue what you just said, and am hoping desperately that I can fake it well enough so that you don't spend the next 3 days yelling at me.\" \"You really look terrific in that outfit,\" REALLY MEANS, \"Please don't try on another outfit. I'm starving.\" \"I brought you a present,\" REALLY MEANS, \"It was free ice scraper night at the ball/hockey game.\" \"I missed you,\" REALLY MEANS, \"I can't find my sock drawer, the kids are hungry and we are out of toilet paper.\" \"I'm not lost. I know exactly where we are,\" REALLY MEANS, \"No one will ever see us alive again.\" \"This relationship is getting too serious,\" REALLY MEANS,"}, {"title": "rpj-common-crawl-2020-05", "text": "(a quote from a movie about having bad breath in the morning), \"Bullsh*t,\" \"Who gives a sh*t?\" \"Eat sh*t and die,\" \"Holy sh*t,\" \"I must be getting too old for this sh*t,\" \"Some kind of sh*t is going to hit the planetary fan,\" \"C'mon you d*ckweeds,\" \"Don't be a p*ssy,\" \"Bite my bag,\" \"Hell no,\" \"Take a leak,\" \"Piss off,\" \"Fat ass,\" \"Moron,\" \"Let's kick their asses,\" \"Bitch in a buzz saw (or something close to that), \"Turds,\" \"What the hell?\" \"Broad\" (woman), \"Shut up,\" \"Bastards,\" \"Freaked out,\" \"Kick some ass,\" \"Schmucks\" and \"We don't have time to screw around.\" A man puts a handgun to his head as he prepares to commit suicide (but he doesn't). Beaver repeatedly eats peanut butter out the jar with one finger. Beaver gives \"the finger\" to a passing helicopter for not helping. The sudden ringing of a phone in a tense scene might startle some viewers. A car suddenly slams into a man crossing the street. A seemingly dead woman reaches out and grabs a guy. A person suddenly comes back into the picture. Sudden music might startle some viewers in a quiet scene. An extreme amount of suspenseful and ominous music plays in the film. At least 25 \"f\" words (4 used sexually, 3 used with \"mother\"), 25 \"s\" words, 5 slang terms using female genitals (\"p*ssy\" and \"tr*m\"), 4 using male genitals (\"d*ck\" and \"c*cks*cker\"), 8 damns, 4 hells, 3 asses, 2 craps and 6 uses of \"G-damn,\" 5 of \"Oh my God,\" 3 each of \"God\""}, {"title": "rpj-common-crawl-2022-05", "text": "it's kind of like a fixed expression. It is not literally referring to the act of \"daring to say\"; after all, most speakers do not introduce their statements with such redundancies as \"I say that...,\" \"I vocalize that...,\" etc. \"I daresay\" is an expression meaning that what I am about to say may or may not be true; however, it is quite likely based on the given circumstances and I am therefore being bold and going ahead and assuming it. At least that's how I'd use it. For the past, you can easily say \"I dared to say,\" and for the third person, you can say \"he dared to say\" - but you wouldn't really say these things anyway. Also, Aupick, if you're so averse to these bizarreabominations (writingwordstogether or sep arat in gth eminc orrectl y), I'm surprised you wrote \"on line,\" as I believe the standard is \"online.\" panjandrum said: You won't, but I don't think it's incorrect. I believe I've seen it on numerous occasions. elroy said: Please give us examples and sources. I need something to fry with the tomato horn worms. pleugggggh!! I don't recall specific examples, but there are 238,000 Google results at your disposal. What I was trying to say is that I've seen it in trusted sources. Since the dictionary also recognizes it (without dubbing it as \"regional,\" \"archaic,\" or \"informal\"), I can only assume that it is correct. foxfirebrand The Northern Rockies Southern AE greatly modified by a 1st-generation Scottish-American mother, and growing up abroad. Daresay is"}, {"title": "rpj-common-crawl-2019-30", "text": "take seats facing away from the door if I'm at a ML gathering. The folks facing the door can warn me if someone inimical approaches. Madeline 496: If you honestly don't see the difference between running with a knife point out and accidentally using a word that you were unaware was (or had become!) a racist codeword, I really don't know what to say to you. Suppose you're learning a new language, one in which 'saaffar' means 'shelves'. You try to say 'Saaffar do pirot wobuut te' (\"nail your shelves to the wall\") but you botch the pronunciation of 'saaffar' and instead say 'safar', which means \"hands.\" Would you apologize for accidentally saying something you didn't intend, or for being violent? \"Nail your hands to the wall\" is a pretty violent suggestion, don't you agree? If you would say \"Sorry for being a torturer there\" in those circumstances, then you'd be consistent with your statements...and I'll stop arguing with you. (I still won't think you're right, just that your worldview is so different from mine as to make argument useless.) Scraps 498: Thank you. Michael 499 ct Madeline: Yeah, that too. What you said there. Better than how I said it. I'd even take the blame for the hurt. I just don't want to apologize for something I don't feel I've done, because that WOULD be insincere. Malcolm Gin has some good links today on the subject of white folks who sincerely want to Get It: ethan @ 497: \"There's something about \"I'm not a stabber\","}, {"title": "rpj-common-crawl-2022-05", "text": "birthday. 15. \"I was just thinking about you, and got you these roses.\" MEANS: the girl selling them on the corner was a real babe, and was wearing a bikini thong. 16. \"Oh, don't fuss, I just cut myself, it's no big deal.\" MEANS: I have actually severed a limb, but will bleed to death before I admit I'm hurt. 17. \"Hey, I've got reasons for what I'm doing.\" MEANS: what did you catch me at? 18. \"She's one of those rabid feminists.\" MEANS: she refused to make my coffee. 19. \"I heard you.\" MEANS: I haven't the foggiest clue what you just said, and hope I can fake it well enough, so that you don't spend the next three days yelling at me. 20. \"You know I could never love anyone else.\" MEANS: I am used to the way YOU yell at me, and realize it could be worse. 21. \"You really look terrific in that outfit.\" MEANS: Please don't try on one more outfit, I'm starving. 22. \"I brought you a present.\" MEANS: It was free ice scraper night at the ball/hockey game. 23. \"I missed you.\" MEANS: I can't find my sock drawer, the kids are hungry, and we're out of toilet paper. 24. \"I'm not lost, I know exactly where we are.\" MEANS: No one will ever see us alive again. 25. \"This relationship is getting too serious.\" MEANS: I like you almost as much as I like my truck. 26. \"I don't need to read the instructions.\" MEANS: I am perfectly"}, {"title": "rpj-c4", "text": "Pretty dang sure she is a tweeker....what a hypocritical loser. Listening to what is said after the cuts in her video, gives me the distinct impression that she has made threats in the neighborhood before. She sounds insane, doped up, or stupid and uninformed. She could just be so drunk on the Hillary Kool-aid, that her mental faculties have turned to mush. I just don't see how a finger is aggressive. Now, holding up a knife or a gun or a bomb - THAT would be aggressive. A finger is just a finger like a sign is just a sign. If a finger means something, then a sign can mean something too. For some people, a sign putting a woman presidential candidate in prison is \"fighting words\". What about if a person walks past you and draws their thumb across their neck from left to right? What about if someone pulls up in a car and makes a gun sign with index and forefinger? How about holding their hands in a noose pull, is that just a sign? Anyway, signs can mean things, in this case they clearly meant something, we are talking about it. 1. That's absurd and redneck. 2. Because if you leave your home and follow me to my home, I'm going to kill you with guns. I find these two ironic in their juxtaposition. Morons who disagree that's what would happen. He's seriously lucky he didn't get shot or sent to jail. If you hypothetically shouted at someone driving by you, and"}, {"title": "rpj-c4", "text": "can be jerks, but it doesn't mean you stop talking to them. You get that I'm saying I'm sorry, right?\" ~ Derek 6. \"I was right. I swear I really believe what I did was right. I don't want you to forgive me. Frankly, I'd find it patronizing if you did. Because. while I know I was right, you think I'm wrong. Which doesn't matter. because. I'm in this. I'm in this for the long haul. And I'm in this to finish the race. So if that means I don't win this one, then fine. I don't win. You win. I'm talking. See? I'm talking first. You win.\" ~ Cristina 7. \"I drilled a hole into this guy's skull. Several holes, actually. With a drill that I borrowed from a guy named Vince, packed the hole with freakin' tissue then brought him back here. Now I get to scrub in on his craniotomy.\" ~ Izzie 8. \"We went to Vegas. My idea. I embrace the trashy.\" ~ Callie 9. \"Aren't you gonna get in there? If you wanna be chief, you gotta fight with the big boys. \" ~ Mark 10. \"I dunno. it's just. Meredith always makes me think screwed up people have a chance.\" ~ Alex So there you have it -- ten great quotes to celebrate the end of the strike. Let's hope that the coming episodes have as many memorable Grey's Anatomy quotes as the episodes of seasons past. For more Grey's Anatomy quotes, check out the popular Famous-Quotes-And-Quotations.com, a website that"}, {"title": "rpj-common-crawl-2021-04", "text": "they are eager to give the answer to a question. It can also be used when telling a story, to get a surprise effect. In Latin America this gesture is used as a way to say \"Hurry up.\" The Beats (Beatniks) used to snap repeatedly as more reserved \"cooler\" applause. Three snaps in the shape of the letter Z are used to convey superiority or disdain for all others. This is called a \"Z snap\". This has even been expanded to include other letters, such as a W or N. What the Fuck!! This gesture involves bringing all fingers together and squezzing your finger tips tightley together. After you must signify to person directed to by a flick in the wrist, you can either apply this hand guesture with either one or two hands. This is commonley used as a sign to eat in India, but across eastern Europe and some parts of Italy this is a gesture used to tell someone to Fuck off, usually because the person is being destructive or annoying. In Europe, when referring to someone and making this symbol it means they are inferurated, or want to fight about a perticular problem. Clement Moore's version of the Wisperin story first used the now familiar phrase, \"If you want to start something, just give me the sign...,\" in which The Don, upon discovery, made this gesture and winked before vanishing into the night. Another interesting reference from the Urdu poem \"The Fourth Era of \u0100b-e \u1e25ay\u0101t:Part Three\" is as follows: \"When the"}, {"title": "rpj-common-crawl-2019-30", "text": "mother says oh it means ladies. so then there outside walking and the mother says look at the h$%# and the sone says what does that mean and the mother say it means gentlemen. so the son is with his father and the fatherr says my penus hurts and the sons says what does that mean and the father say it means hats then the mother was in her room and the mother says i think i have a vagina infection and the son says what does that mean and the\ufffd mother says it means coats. the father was in the bathroiom shaving and he said shit and the saon says what does that mean and he says shaving. the mother is in the kitchen cuttin tomatoes and she accidently cut herself and she said fuck and the son says what does that mean and the mother says it means cutting so one day the family haves this big party and the son stands up and say bitches and hores may i have your vaginas and penuses my dad is upstairs taking the shit off his face and my mom is fucking the turkey lol please comment this or whatever you would like to do 11:24 am - 7 comments - 7 Kudos"}, {"title": "rpj-common-crawl-2023-06", "text": "Luna1968 said: the one that gets me when hearing people order is \"can i have.....\" WTF NO! go away. thats not new. i heard my grand parents use that phrase 40 years ago. I feel like \"lemme get\" is extremely rude, like you're demanding it. \"Can I get\" is a lot more polite and appropriate when ordering from someone. rh71 said: HA, old person found.... I remember, 35+ years ago, one of my BFFs telling the McDs lady, \"Give me....\" I busted his chops about it. He would have never said that to his Mom. Polite goes a long way. For the record, 35 years ago, I was....-20. ^ yup I'm a dad - I don't want to teach my kids shittily. Yeah, I always say, \"Can I get...\" when ordering something. \"Lemme get\" sounds too demanding. s0me0nesmind1 Some good news about horrible phrases: I haven't heard the stupid shit ass term \"YOLO\" in quite some time. Maybe we are making progress in society? You just have to correct their shitty. We all would go for shitty before proper upbringing. Story time....Buddy was in the store and his daughter wanted some candy. He told her no. She snatched it up anyway at the counter. He popped her hand. A lady behind him made a disapproving sound. He says, \"You want to thank me now or 20 years form now?\" She's obviously confused. He says, \"I can properly discipline her today or she can be breaking in your house later. Stealing your stuff and assaulting your family.\""}, {"title": "rpj-common-crawl-2019-30", "text": "please share it. This one also comes in the form of \"We need to take a break\" and \"Let's just take a step back\". We've grown apart - It's already over, you're just now finding out about it. Usually stated when you have nothing left to say and the thrill is gone. This is sometimes stated as \"We're just in different places right now\". Resist the urge to fling hot grits while screaming, \"I thought we were in a relationship!\" Oh, is that just me? Never mind. Moving on. You're too good for me - This means \"I actually think I'm too good for you but I can't say that.\" Really, if someone tells you this - just agree and keep it moving. Seriously, your response should be, \"Yes, I am too good for you. Glad you recognize it.\" As Maya Angelou says, \"When someone tells you who they are, believe them.\" And let's not forget the ever popular: It's not you, it's me - Similar to above because guess what? They think that it is you, they just don't want to say it. Not only is the problem you, they've probably already found somebody else that they believe is an upgrade. There's nothing you can say to this one. If someone is wickety-wack enough to use that phrase on you, you're well free of them. I don't say these things to be mean, I say them in the spirit of education. If you're hearing a lot of these phrases coming your way... trouble is a-brewing."}, {"title": "bm25", "text": "so much, within the school. Then making fun of people that are different like people with disabilities and stuff, I witness that maybe like twice a week or three times a week. : Which kids do they normally say mean things to? : Recently, surprisingly, you wouldn't think this would be going on today in 2017, but recently it's been a lot of like political issues, which is crazy. Our volleyball team knelt during the national anthem so it made a big deal in the school, so there were people who agreed with it and people who disagreed with it, and all day people were just criticizing each other about it literally all day. High school students today have a really hard time accepting that someone else can believe something different than they do, and if someone thinks differently it is so quick and easy to criticize than it is to listen, so that happens a lot. : How often do these kids say mean things to you? : I am pretty confident in my opinions, if I think someone is doing something that I don't think is okay, I'll be like, \"hey that's not okay,\" and I get criticized about that a good deal. : What happens when they say mean things to other kids? : A lot of times people don't stand up and say anything, and sometimes people will agree and say the same thing. But sometimes students will say, \"hey that's not okay.\" But it's a lot easier to just go with"}, {"title": "bm25", "text": "the crowd and just laugh about it. : How do you feel when they say mean things to others? : It really sickens me to see it, because it's just so unfair I think. : Sometimes people talk about other people and say mean or untrue things about them. For example, kids might spread rumors, gossip, or tell lies about someone to hurt them. Can you think of examples of this happening at your school? : Oh yes. That happens all the time. I think that's the primary issue at my high school: gossiping and rumors being spread all the time. : Let's think about the different groups of kids at your school. Sometimes kids will leave others out of the group or ignore them on purpose. Can you tell me about this happening at your school? : Yeah, I think that does happen a lot. : Are there kids who do this kind of thing a lot? : Probably everyday. You see it everyday at lunch. : Which kids do they normally leave out? : The people who are not so popular, not dressed with the trends or whatever. : Are there kids at your school who leave you out? : Yeah, there has been friend groups that I was part of that I necessarily wouldn't always like get invited to things. : What happens when they do this to you? : It does kinda hurt cause it's like, \"Why wasn't I good enough?\" but most of the time I get over it pretty quickly"}, {"title": "bm25", "text": "water fountain.\" \"Cheese clings.\" \"I have a hug that fits your shape.\" \"K, your hair is a beautiful ocean of dead seals.\" \"In which case the bucket will not have been kicked.\" \"NOTHING!!!\" \"Awkward.\" \"You're speaking illegibly.\" \"That isn't at all similar at all.\" \"I feel like military.\" \"You just denied me my sneeze. Jerk.\" \"Gee, I am a loser.\" \"Not the brightest cookie in the tool shed.\" \"You're a funny gun.\" \"You need someone to give you a nice backrub down.\" \"K, I would never trade you for a lightsaber.\" \"Sheber Weber.\" \"I'm a rapper and I didn't even know it.\" \"I forgive you; your tongue makes up for it.\" \"Oh my gosh! Pay inside lift handle!\" \"I don't know...well, I don't know...well, I don't know...I don't know what's happening.\" \"Well, she spit updown.\" \"Tunnel vision helps me focus.\" \"I have a crush on every boy.\" \"Wherever I am, I'm there.\" \"When I was growing up you went to hell for that.\" \"I bit myself.\" \"I wait hating.\" \"BEIGE!!!\" \"Borg Jesus: A New Vision\" \"It makes it look like a spider is attacking your butt.\" \"Whatever! You love my weird things!!\" \"Does ex-girlfriend mean extreme girlfriend?\" \"If Jenny was a friend of mine...\" \"If someone comes into my 18\" bubble, either kick me or kiss me. You better be busting some slob or chops.\" \"I'm a man man you're a little man. When I'm dead and gone, you can take my man.\" \"They are reading out of their mind and making us go out of"}, {"title": "bm25", "text": "your butt.\" \"Whatever! You love my weird things!!\" \"Does ex-girlfriend mean extreme girlfriend?\" \"If Jenny was a friend of mine...\" \"If someone comes into my 18\" bubble, either kick me or kiss me. You better be busting some slob or chops.\" \"I'm a man man you're a little man. When I'm dead and gone, you can take my man.\" \"They are reading out of their mind and making us go out of ours.\" \"You'll have to recharge your fist because your magic is naked.\" \"I\u2019d acquired a taste for niquor and licotine.\" \"Put down the munker [marker].\" \"You can't question me, I'm captain of the Bible Quiz team.\" \"The Bible says don't toot your own horn. I don't want anybody to toot.\" \"But I love you more than I hate it.\" \"Every now and then your butt looks camouflaged.\" \"It hurtens every time I straight it.\" \"The scars in your eyes light up the sties.\" \"Is the steering wheel hot?\" \"Yes. But I'm hotter.\" \"By the time it's noon, they're already in college.\" \"You might be mathematically smart, but you are everything else challenged.\" \"Soon you will have no ish.\" \"It'll be okay.\" \"Lottle\" \"Me three.\" \"I want you to stay here so I can constantly admire your leather pants.\" \"You'd hit an armed manned person?\" \"You wouldn't abuse me in the public eye.\" \"I wouldn't abuse you in the private eye.\" \"I was giving everybody time to say 'goodnight' to the rat.\" \"Have you ever laughed so hard that you threw up just a little"}, {"title": "bm25", "text": "* Retrospectives being done since 1930 :-) * Dont criticize people, understand them * If you want honey, dont kick the beehive * People want to be important and appreciated * People can even go crazy without appreciation * Speak no harm, focus on the qualities * Inspire people so they get eager to do stuff, instead of just commanding * Find out what people want and care about that * Everyone is in love with its own name, use this * Listening to someone is one of the best compliments * Encourage others to talk about themselves * Dramatize * Love the game * Throw a challenge * Ask questions, no orders * Let people save face ## Just thinking on what you are going to say next I do this all the time and it is awful, the best thing to do is truly listen to the person, instead of just listening pretty fast until I got my chance to talk. This is a sign of an inflated ego and wrong sense of self importance. ## People love their own names Cool history about how a kid with 8 years old convinced all its friends to find food to its rabbits just by proposing to name the rabbits after them. Humans do all kind of stuff to get their names on stuff, like libraries and hospitals. Give them sense of importance by using this. ## Being ruthless as a mean to be awesome Now I think this is just plain bullshit. I thought being"}, {"title": "bm25", "text": "American Sign Language (ASL), the sign language used by the deaf community throughout most of North America, has a rich vocabulary of terms, which include profanity. Within deaf culture, there is a distinction drawn between signs used to curse versus signs that are used to describe sexual acts. In usage, signs to describe detailed sexual behavior are highly taboo due to their graphic nature. As for the signs themselves, some signs do overlap, but they may also vary according to usage. For example, the sign for \"shit\" when used to curse is different from the sign for \"shit\" when used to describe the bodily function or the fecal matter. Examples The back of dominant open b-handshape flipped out under chin literally means \"so what?\" Using a middle finger as the 'classic' flipping of the bird has a different meaning. In the 1980s, the myth was made that the b-handshape flipped under the chin was a sign of saying \"Fuck you\". Some linguists contend that when the middle finger is used directionally, and pointed at someone or something, it becomes a sign. Another common sign for \"fuck\" uses an \"FK\" abbreviation, signed with an f-handshape changing to a k-handshape, which is referred to as a \"loan sign\". A \"loan sign\" is when a fingerspelled word is modified to leave out letters, form a specific shape, or move in a specific direction to become an actual sign(1). \"Whore,\" \"slut,\" or \"prostitute\" is signed by waving an open hand on the side of the chin front to back (fingers"}], "hoverinfo": "text"}, {"x": [0.12557005882263184, 0.13788379728794098, 0.09745674580335617, 0.1867811530828476, 0.163730189204216, 0.15834106504917145, 0.10287880897521973, 0.15853598713874817, 0.14566554129123688, 0.16577796638011932, 0.18877844512462616, 0.16872240602970123, 0.06890220940113068, 0.08867844194173813, 0.12352383881807327, 0.1963634341955185, 0.20224058628082275, 0.11852717399597168, 0.20628908276557922, 0.18160873651504517, 0.06552664935588837, 0.20403961837291718, 0.20090040564537048, 0.20200952887535095, 0.13185641169548035, 0.07869262248277664, 0.12770386040210724, 0.11643046885728836, 0.19574226438999176, 0.10648755729198456, 0.14381623268127441, 0.23373141884803772, 0.09332509338855743, 0.2108200490474701, 0.18059790134429932, 0.15443149209022522, 0.10439489781856537, 0.13213905692100525, 0.1567898988723755, 0.08384247124195099, 0.20006000995635986, 0.0505160354077816, 0.06896504759788513, 0.1690894067287445, 0.20565758645534515, 0.14837820827960968, 0.12071830779314041, 0.1335805356502533, 0.18497924506664276, 0.16710694134235382, 0.19042158126831055, 0.22848984599113464, 0.16174359619617462, 0.16744717955589294, 0.19604337215423584, 0.20400556921958923, 0.19760827720165253, 0.09899814426898956, 0.1711985319852829, 0.15867523849010468], "y": [0.11379505693912506, 0.09885543584823608, 0.09637343883514404, 0.005563107319176197, 0.08977121114730835, 0.0665750503540039, 0.12190068513154984, 0.10587038099765778, 0.07562337815761566, 0.059397462755441666, 0.09145764261484146, 0.12591901421546936, 0.10779759287834167, 0.12696513533592224, 0.07501465827226639, 0.12277509272098541, 0.1132722720503807, 0.04147140681743622, 0.06962202489376068, 0.09591631591320038, 0.13903376460075378, 0.12556476891040802, 0.09276869893074036, 0.11550644040107727, 0.049909286201000214, 0.15002688765525818, 0.09298165887594223, 0.15545903146266937, 0.044480182230472565, 0.1077735498547554, 0.030382536351680756, 0.10350789874792099, 0.14582215249538422, 0.11263761669397354, 0.14479129016399384, 0.09800241887569427, 0.10107122361660004, 0.1321270614862442, 0.11982492357492447, 0.083416648209095, 0.1296452134847641, 0.1439247727394104, 0.03126126900315285, 0.1263331025838852, 0.1101723462343216, 0.17830896377563477, 0.03492870554327965, 0.09631041437387466, 0.14384973049163818, 0.05545264109969139, 0.14764578640460968, 0.09095889329910278, 0.09590347111225128, 0.0988406240940094, 0.14214399456977844, 0.07900694757699966, 0.11288232356309891, 0.10572163015604019, 0.08075784891843796, 0.043920762836933136], "mode": "markers", "name": "Cluster 9", "marker": {"size": 8, "color": "rgb(188,128,189)"}, "text": ["Document 1007", "Document 1017", "Document 1039", "Document 1043", "Document 1046", "Document 1050", "Document 1059", "Document 1070", "Document 1098", "Document 1099", "Document 1104", "Document 1105", "Document 1106", "Document 1123", "Document 1135", "Document 1137", "Document 1141", "Document 1143", "Document 1164", "Document 1166", "Document 1176", "Document 1179", "Document 1190", "Document 1199", "Document 1201", "Document 1212", "Document 1213", "Document 1221", "Document 1226", "Document 1227", "Document 1238", "Document 1246", "Document 1249", "Document 1274", "Document 1286", "Document 1289", "Document 1291", "Document 1292", "Document 1298", "Document 1303", "Document 1305", "Document 1306", "Document 1309", "Document 1310", "Document 1319", "Document 1327", "Document 1330", "Document 1343", "Document 1369", "Document 1374", "Document 1378", "Document 1380", "Document 1413", "Document 1424", "Document 1427", "Document 1430", "Document 1467", "Document 1471", "Document 1489", "Document 1493"], "customdata": [{"title": "bm25", "text": "it distinguishes from everything else. Then I actually don't remember if it was from my personal writing or if it's somewhere else on Wikipedia, that someone would use that term. [23:01] I would just say, \"OK. You want to know what this is talking about. They're not talking about this, they're talking about that. Let's write that up.\" [23:09] You then do have the satisfaction that, maybe, that influences a public dialog, that, maybe, people who are not aware of that, who are wrestling with that term for the first time, will have a chance. [23:22] That, maybe, is a reason why even I don't see where much of my Wikipedia work has been about our race than my academic work because it's a part of a public dialog. It's just helpful to have information out there. **Gayathri**: [23:37] Also, to have clear concepts of what it is that they're talking about. That makes a lot of sense. [23:42] To me, because I'm almost like an outsider coming into these conversations, it's very helpful to understand these different terminologies and results for when you said that, in conversation, this is what it means. Not this, but this, those contrasts. **Carwil**: [23:58] The other thing that I would say is that when I have wrestled with something for a long time and found out a lot typically for teaching purposes, then I'm very tempted to upload and share that particular bit of research in Wikipedia. This is also a race example for what it's worth. [24:18] I"}, {"title": "bm25", "text": "the someone who phoned. Does this analogy hold and is it correct to say that sensation reports and mentalistic expressions in general are topic-neutral, that they refer only to experienced \u2018somethings\u2019? Smart's claim runs as follows: When a person says, \u2018I see a yellowish-orange after-image\u2019, he is saying something like this: \u2018There is something going on which is like what is going on when I have my eyes open, am awake, and there is an orange illuminated in good light in front of me, that is, when I really see an orange\u2019. (And there is no reason why a person should not say the same thing when he is having a veridical sense-datum, so long as we construe the \u2018like\u2019 in the last sentence in such a sense that something can be like itself.) Notice that the italicised words, namely \u2018there is something going on which is like what is going on when\u2019, are all quasi logical or topic neutral words. This explains why the ancient Greek peasant's reports about his sensations can be neutral between dualistic metaphysics and my materialistic metaphysics. It explains how sensations can be brain processes and yet how a man who reports them need know nothing about brain processes. For he reports them only very abstractly as \u2018something going on which is like what is going on when\u2026\u2019 Similarly, a person may say \u2018someone is in the room\u2019, thus reporting truly that the doctor is in the room, even though he has never heard of doctors."}, {"title": "bm25", "text": "our argument about the impossibility of differentiating clearly enough between metaphorical and literal meaning even to make such distinctions, much less to enact them, I realized that my friend was doing exactly what he had been saying was out of the question-he was giving example after example of the kind of switching that I had been talking about and that he had been saying could not be done. He was alternating effortlessly between the literal and the figurative meanings of \"have a green thumb.\" I'm not sure that my friend accepted fully the fact that he had been doing what he had been saying was impossible, but voila! He was doing it! The fact that my friend claims that he is now (April 2021) stuck in the \"on\" position, unable to resolve a metaphor into nonsense, does not reduce the importance of his previous feat. This is of great importance to me because it proves that I am not unique in having, or, rather, in having learned, this capacity, and that someone else could serve as an experimental subject in such a study. This possibility should enable researchers, with appropriate equipment, to see clearly at the neurological level what distinguishes autists from those who experience metaphors as such. BOX 3 Perceiving a Metaphor. Throughout this essay, I have been speaking of experiencing, or apprehending, metaphor as metaphor and perceiving metaphor as nonsense. Here an interesting issue can be seen forming. It is partly a matter of terminology, but that terminology reveals a minute flaw in the"}, {"title": "bm25", "text": "Alice: Mm. Discrimination. And this is true. I mean, if you look at this population in comparison to the general population, generally speaking, indigenous peoples have a lower life expectancy, poorer health\u2026 don't have equal access to health care, or education. They are marginalized in many, many ways, which is true. Elaine: But I guess the problem is that\u2026. I think they want to compensate the indigenous people, but then who decides what kind of compensation is right, how much, and to who? Like who is\u2026 Alice: Yes. Who are the indigenous people? We were talking about it here in this classroom. What does it really mean? Elaine: Who is supposed to get compensation? And also, if they want their land back then they're asking the US to take land from someone else and give it back to them. Basically, they are saying that what they did a long time ago was wrong. So, it's a little bit like \u2026 I understand why they should have that land, but as it was so long ago, it's also a little bit\u2026 Like you can't really punish me for what my grandfather did. But I'm not saying that they shouldn't be compensated. Obviously, they should. Alice: Mm. But the problem here is\u2026 We will come to that when we get to the individual articles. Have I overlooked any of the points that you addressed? Like, can you punish landowners today for the sins of the past? Whose land is it? Can you take land and say \"OK, you"}, {"title": "bm25", "text": "mind. The worker therefore only feels himself outside his work, and in his work feels outside himself;\" \"[l]abor is external to the worker,\" it is not a part of their essential being. During work, the worker is miserable, unhappy and drained of their energy, work \"mortifies his body and ruins his mind.\" The production content, direction and form are imposed by the capitalist. The worker is being controlled and told what to do since they do not own the means of production they have no say in production, \"labor is external to the worker, i.e. it does not belong to his essential being. A person's mind should be free and conscious, instead it is controlled and directed by the capitalist, \"the external character of labor for the worker appears in the fact that it is not his own but someone else's, that it does not belong to him, that in it he belongs, not to himself, but to another.\" This means he cannot freely and spontaneously create according to his own directive as labor's form and direction belong to someone else. From their Gattungswesen (species-essence) The Gattungswesen ('species-essence' or 'human nature'), of individuals is not discrete (separate and apart) from their activity as a worker and as such species-essence also comprises all of innate human potential as a person. Conceptually, in the term species-essence, the word species describes the intrinsic human mental essence that is characterized by a \"plurality of interests\" and \"psychological dynamism,\" whereby every individual has the desire and the tendency to engage in"}, {"title": "bm25", "text": "can be called a respectable person: \"Zhong-ni said, 'The respectable person embodies the course of the Mean; the average person acts contrary to the course of the Mean.\" Self-watchfulness This guideline requires self-education, self-questioning and self-discipline during the process of self-cultivation. This principle was exposited in the first chapter of Doctrine of the Mean: \"The respectable person does not wait till he sees things to be cautious, nor till he hears things to be apprehensive. There is nothing more visible than what is secret, and nothing more manifest than what is minute. Therefore the superior person is watchful over himself, when he is alone.\" Leniency This guideline requires understanding, concern and tolerance towards one another. Leniency was exposited in the 13th chapter: \"When one cultivates to the utmost the principles of his nature, and exercises them on the principle of reciprocity, he is not far from the path. What you do not like when done to yourself, do not do to others.\" In this chapter, Confucius explained this guideline with four examples: \"to serve my father, as I would require my son to serve me\", \" to serve my prince as I would require my minister to serve me\", \"to serve my elder brother as I would require my younger brother to serve me\", \"to set the example in behaving to a friend, as I would require him to behave to me.\" Sincerity Sincerity contributes to a close connection between Heaven and human. This guideline was exposited in the 23rd chapter: \"It is only he who"}, {"title": "bm25", "text": "act, and only rarely on the subdivision of the locution into phone, pheme and rheme. How to Do Things With Words is based on lectures given at Oxford between 1951 and 1954, and then at Harvard in 1955. Performative utterance According to J. L. Austin, \"performative utterance\" refers to a not truth-valuable action of \"performing\", or \"doing\" a certain action. For example, when people say \"I promise to do so and so\", they are generating the action of making a promise. In this case, without any flaw (the promise is flawlessly fulfilled), the \"performative utterance\" is \"happy\", or to use J. L. Austin's word, \"felicitous\"; if on the other hand, one fails to do what he or she promised, it can be \"unhappy\", or \"infelicitous\". Notice that performative utterance is not truth-valuable, which means nothing said can be judged based on truth or falsity. There are four types of performatives according to Austin: explicit, implicit, primitive, and inexplicit. \"How to Do Things With Words\", edited by J. O. Urmson and Marina Bissau, records Austin's lectures on this topic. In this book, Austin offers examples for each type of performative mentioned above. For explicit performative, he mentioned \"I apologize\", \"I criticize\" (Page 83), which are so explicit to receivers that it would not make sense for someone to ask \"Does he really mean that?\". Inexplicit performatives are the opposite, where the receiver will have understandable doubts. For a primary performative, the example Austin gave is \"I shall be there\". Compared with explicit performatives, there is uncertainty in"}, {"title": "bm25", "text": "a means. What van der Graaf and van Delden call this the not merely as a means principle (NMMP) has achieved mantra-like status in bioethics. 33 To say that a practice treats someone merely as a means is generally viewed as a conversation stopper. Still we need to ask several questions: when do we treat people merely as a means? Is the principle sound? Does it do moral work not done by other moral principles? And does the best account of NMMP support CR or condemn coercive participation? As is often pointed out, no sensible moral principle could prohibit using people as a means. In general, we do not treat people wrongly or merely as a means if they consent to the terms of an interaction. The taxi driver uses me as a means to earn an income and I use him as a means to get to my destination. But we do not treat each other merely as a means if we both give valid consent to the terms of the transaction-he does not deceive me about the fare and I do not make a false promise to pay him. It is not clear whether valid consent is always sufficient to satisfy NMMP. For example, it might be thought that a customer treats a prostitute merely as a means even if the interaction is consensual. I think this is doubtful, but, in any case, consent surely goes much of the way towards satisfying NMMP. Now depending upon what is required to satisfy NMMP, the principle"}, {"title": "bm25", "text": "in touch with you. But I\u2019m not talking about those notifications. I\u2019m talking about the little semi-useful bits of information that get pushed to you, sucking up your attention throughout the day with little noises and pop-ups. How many times a day would you check your phone even if all the sounds were turned off? Does this not strike you as a little bit crazy? Remember when we had *real life things* to do? When is the last time you gave something 100% of your attention? **Is it just easier to let other people decide what we should be paying attention to?** ## Focus Means Paying Attention In the pursuit of focus, I asked myself, \u201cWhat is more important: the notifications I receive, or the thing I should be giving my full attention to?\u201d I decided that whatever I\u2019ve decided to do at any given moment is the thing that should have my full attention. That\u2019s worth repeating. \u201cI\u2019ve decided to do this thing. I will give this thing my full, undivided attention for as long as I need to. For as long as **I decide to**.\u201d A push notification is nothing more than **something trying to convince you that it deserves your attention more than anything else at the moment**. I say NOPE. It\u2019s my job to decide what I want to give my attention to. If I\u2019m lucky, I have 50 or 60 years of life left. **I don\u2019t want to live my life letting other people decide what I do with my time,"}, {"title": "bm25", "text": "it one's own. In an alternate argument, Locke claims that we must allow it to become private property lest all mankind have starved, despite the bounty of the world. A man must be allowed to eat, and thus have what he has eaten be his own (such that he could deny others a right to use it). The apple is surely his when he swallows it, when he chews it, when he bites into it, when he brings it to his mouth, etc.: it became his as soon as he mixed his labour with it (by picking it from the tree). This does not yet say why an individual is allowed to take from the common store of nature. There is a necessity to do so to eat, but this does not yet establish why others must respect one's property, especially as they labour under the like necessity. Locke assures his readers that the state of nature is a state of plenty: one may take from communal store if one leaves a) enough and b) as good for others, and since nature is bountiful, one can take all that one can use without taking anything from someone else. Moreover, one can take only so much as one can use before it spoils. There are then two provisos regarding what one can take, the \"enough and as good\" condition and \"spoilage.\" Gold does not rot. Neither does silver, or any other precious metal or gem. They are, moreover, useless, their aesthetic value not entering into the equation."}, {"title": "bm25", "text": "valuable for, all this kind of stuff. [13:55] It changes how you think about knowledge and its production. There's work that's involved with that, and bringing students along through that. Some of the work involves that. [14:11] I tend to think of it as I emphasize the things that are relevant to the class for doing that. For just practical reasons, I have a class that's knowledged and so full of socially generated concepts fits best in is actually my interim class. [14:31] But I feel like I don't want to do as much technical teaching with them that says, \"How are we going to write, and how are we going to do this kind of stuff because there's a lot to cover anyway?\" [14:46] Yes, there's a lot. It's actually valuable on both of those levels. Are they getting the content? Are they thinking through \u2011\u2011 how do you write about something in a way that it can be shared and neutral? What does neutral mean, anyway? What kind of knowledge is excluded from traditional versions of things? [15:10] Over the longer term, I'd say that some of my writings on and editing personal writings, I've been in this kind of experimental mode. What are the things that are natural parts of how we describe something? [15:25] Say, Wikipedia has a page on an armament, say, a bomb that's in your ops somewhere over time? Does it just cut this cover, the caliber and ballistics and other stuff like this, or does it also cover,"}, {"title": "bm25", "text": "came to improving their English. One student commented, \"More people is easy to work because when I don't know what to say, someone teaches me.\" Another student commented, \"It's good that we can exchange our opinions. It can make opportunity that we have conversation more.\" Meeting in groups helped one student gain perspective. In their words, \"We can share different types of view. Other people say some advice to my ideas.\" However, not all students' responses to group work were positive. One student said, \"Working in a group of three or more sometimes has trouble when someone is being lazy or what else in your group.\" And another student commented, \"Quality is more important than a lot of people. So, I don't like to work with a lot of people.\" Reflecting on the challenges of working in groups one student wrote, \"Before I work in a group, I need a couple of time to think by myself.\" And another student said, \"Working with a partner is OK, but if your partner is not good it's tough.\" It is difficult to answer the research questions that inspired my study conclusively or with full confidence. A two-tailed t-test comparing students' pre and post-surveys failed to reach significance, which means the results reported here might not be replicable. Additionally, a mixed range of beginners took part in this survey and it is possible that higher-level students may not want to work with lower-level students for fear of having to do most of the work. Also, students' desire to work"}, {"title": "bm25", "text": "What does it mean when a company says that a product is \"approvable\"?"}, {"title": "bm25", "text": "title: What does 'urban' mean? description: And is the alternative to it 'suburban' or 'rural'? layout: post image: /images/LasVegas_Strip.jpg --- Discussions about urban geography and planning often include the term _urban_. But what do we mean when we say \"urban,\" and what is the alternative or opposite? And how can you examine a place and determine whether or not it's urban? I've spent a lot of time thinking about this and have decided that it really involves a mix of four distinct factors: - Density - Regional population - \"Soft factors\": architecture, urban design, social issues - Transportation To improve our discussion of these issues, it's best to use as specific language as possible. ## Density Perhaps the easiest way to quantitatively classify an area as urban or not is based on population density (or household density). This is a spectrum from high-density to low-density, where we usually think of high-density as _urban_, low-density as _rural_, and the middle of the spectrum as _suburban_. Where do you draw the lines between urban, suburban, and rural? FiveThirtyEight/Trulia addressed this issue in a [fascinating study](http://fivethirtyeight.com/features/how-suburban-are-big-american-cities/) of how people describe where they live. Their findings: > Our analysis showed that the single best predictor of whether someone said his or her area was urban, suburban or rural was ZIP code density. Residents of ZIP codes with more than 2,213 households per square mile typically described their area as urban. Residents of neighborhoods with 102 to 2,213 households per square mile typically called their area suburban. In ZIP codes with"}, {"title": "bm25", "text": "title: Statistics Can Do Anything? layout: post comments: true categories: - Statistics - Blag --- Sometimes people are fond of saying:

\"Well, you know, the thing with statistics is that you can get the statistics to say whatever you want.\"
I think that this is the equivalent of saying:
\"...What I am saying is true because of my argument.\"
You can say that anything is true, but what really matters is the strength of your argument. And statistics... The same goes for statistics, you could perform a variety of tests to support a particular point. However, your argument depends on the suitability of your statistical test for what you are trying to prove or demonstrate. Statistics are used to articulate a particular point. The author has the responsibility of ensuring they are correctly using a statistic to prove this point. The reader also has a responsibility to evaluate their use of tools to construct and support their argument. So yes, statistics could be used to support the argument
Johnny steals tim tams from Nick, as he has done this a statistically significant number of times.
Upon reading this, one should be very keen to investigate the ways in which the statistics were used, and ask questions like: > What data was it? Observation? _Who_ observed it? _How_ did they observe it? > What sort of anaysis was used? Why? > Were any data transformations used? Why? And so on. So when someone says that statistics can be used to prove anything, I like to replace this"}, {"title": "bm25", "text": "the first, is to actively nudge residents to talk to one another, to discuss among themselves instead of with the teacher. In one institute's instructional documents, teachers are advised to avert their eyes when a resident is speaking as a nonverbal signal to address the other residents instead of the teacher. If that does not work, teachers are advised to ask the resident why they are addressing the teacher instead of the group. Many teachers, however, are adamant that active teacher participation is exactly what creates educational value. In their view, it is unproductive not to let residents solicit teacher contributions because the teacher is usually an expert on the topic at hand and even on how such discussions should proceed. The third example is to actively engage residents in the discussion. This could involve encouraging a silent resident to participate, for example by telling them \"I'm missing your input\" (F897). An indirect invitation is probably more \"elegant\" than an explicit solicitation, according to one teacher: [I]f I say 'Now you have to say something,' then I'm giving a command. Then they can be compliant or not, but then-then it suddenly becomes an issue of 'am I going to listen to this teacher?' But if I say to someone, for example, 'I'm missing your input,' 'I haven't heard from you yet,' then I give them a different message. And then someone can decide for themselves like 'oh hey, how does that feel, that apparently people would like to hear my opinion?' (F824) Indeed, teachers have numerous"}, {"title": "bm25", "text": "customer who learns my home address might use that knowledge to come to my home and attack me or damage my property. Because cases like these involve people using information they have acquired about others in ways that harm those others, we will describe the interest people have in avoiding having this happen as \"security interests.\" Protection of such \"security interests\" constitutes an important reason people have for wanting to avoid having others acquire information about them. (When we use the word \"security\" here, we are referring to the security of the person, or protection of the individual against harm. This is distinct from another usage of the word to indicate security of data, meaning the prevention of unauthorized access to it.) Notice, however, that, in the cases discussed above, the problem does not lie simply in the acquisition of information about someone. The person acquiring the information has to take some further action on the basis of that information-such as accessing my bank accounts, or attacking me in my home. This raises the possibility that a person could acquire lots of information about someone else, but never use that information to harm the other. Thus, there could be what Tony Doyle has called a \"perfect voyeur\" (Doyle, 2009) who observes another, but never does anything with that information that is harmful to the other. In such a case, the \"security interests\" of the person observed are not compromised-but that does not mean that there has been no violation of privacy. Indeed, we believe this simply"}, {"title": "bm25", "text": "what my body does. I can't stop it.\" When teaching medical students or other professionals-in-training about LND, or when counseling family members, caregivers, or school staff, we often find ourselves comfortable conveying what we know about the incidence of the disorder. We are equally comfortable talking about the extent of physical self-injury that we see in these individuals. We are comfortable talking about the psychological, medical, and technological strategies that are thought to be the most effective in addressing the behaviors. Where we stumble, however, is in finding words to convey the nature of the self-injurious behaviors. When telling students about things that persons with LND do to other people, such as when patients kick caregivers who are trying to put socks on their feet; when they accuse a long-time and appreciated aide of abusing them; or when they draw visitors close by whispering, then headbutt them or spit in their faces as they lean in, our descriptions are particularly awkward. At times individuals with LND will warn their caregiver that a behavior is coming, perhaps telling the caregiver to move because they are going to spit on them or asking someone to step back so that they cannot be kicked. The individual might tell a visitor who does not know them, \"I might say some things but I won't really mean them.\" Not only do they show remorse for a behavior after the fact, but there is a desire to prevent a behavior from impacting another. Our awkwardness in talking about LND behaviors is, in"}, {"title": "bm25", "text": "the recursion problem. That is, for those moved both by worries about harshness but also concerns about responsibility, it would be attractive to find a principled point at which to stop the cyclical decline in which some individuals may find themselves due to responsibilisation. | THREE SOLUTI ON S This section considers three possible solutions to the recursion problem, where a 'solution' is a proposal that would be attractive to someone who wants to retain some role for responsibility in healthcare, but finds the recursion problem a genuine worry. The first such solution, suggested to me by Andreas Albertsen, depends on a particular interpretation of the core luck egalitarian commitment. I have presented luck egalitarianism as saying that whatever results from the properly situated exercise of choice is not thereby unjust. However, Albertsen suggests understanding the luck egalitarian commitment as saying that 'our relative position should reflect our exercise of responsibility'. This would mean that at some point, a luck egalitarian could insist that an individual's position is no longer proportionate to their exercise of responsibility. My view is that this is not what most luck egalitarians mean and is anyway not an attractive solution. Such a view implies not only that it is not unjust if some are worse off than others through their free choices, but that it is unjust if some are equally well off despite their free, reckless choices. For instance, if someone performs a risky action like smoking but does not suffer, a proportionality view seems to imply that this is"}, {"title": "bm25", "text": "very timid and they're scared they're going to run into things. They're scared they're going to step off the curb and into the street... I think confidence in their skill and confidence in knowing they have a dog or a cane to help them. Also, just confidence that `You know what, hey I might fall off the curb and into the street but that's okay, it might happen.'}'' \\textit{``Oh I love when someone is confident! It makes my job so much easier. They're more responsive. I was helping someone in a... She started walking and I said turn a little bit to the left. Sometimes when you tell a (PVI) that, they'll stop slowly and turn and they'll keep walking and say `am I going the right way'(PVI) where as people who are confident will turn left. Then if you say `turn a little bit to the right,' they'll turn right and just go. They're just so responsive and confident in their skills and trusting in me that I'm not going to let them run into anything. It's just really nice. I love it.''} \\subsubsection{Knowing the other's level of familiarity with the space.} We found that familiarity with and knowledge of the location and area of both parties is another important factor in their coordination. Agents use this in their decision of what type of information to present and how much detail to include. PVI and agents mutually share their knowledge to help one another; it is not just the agent giving information to the PVI."}, {"title": "bm25", "text": "is left-over\", (3b) \"bribes are crumbs\", (3c) \"Bribe is dash\". In (1'a) and (1'b), \"boss' wine\" and \"whisky\" are respectively the values used in source domains to represent the target domain lexis \"bribe\" while \"in (2'a),(2'b) and (2'c) the lexes \"pure water\", \"chop-chop\" and \"my lunch\" are the vehicles used in the source domain to represent \"bribe\" in the target domain. In (3a), (3b) and (3c) the lexes \"crumbs\" and \"left-over\" and \"dash\" are the values used to represent \"bribe\". What is common to these values is that all of them belong to the lexical domains of foodstuff and drinks. Therefore, the above metaphors can be paraphrased as \"bribe is food and drinks\". It is important to indicate that the above values used to represent bribe are just euphemistic. This concurs Meutem Kamtchueng (2015, p. 76) when he points out that \"when a corrupt worker asks a person who needs his or her services to give him/her \"kola nut\" before he/she can attend to him/ her, he/she does not certainly expect from him/her the fruit of the kola nut tree neither does he expect CFA 25 or CFA 50 which are roughly the price of a kola nut on the Cameroonian market\". This point is buttressed by Adeyemi Adegoju and Saheed Oke Raheem (2015, p. 161) who state that reference for \"lunch\" and \"transport fare\" in the expressions used to ask for bribe does not necessarily mean that what is expected from the interlocutor is not equivalent to what is requested. It should be observed that"}, {"title": "bm25", "text": "(Bandura 1982). The mediating role of selfevaluation as a way of guiding self-improvement by comparing self-performance with expert-performance is further illustrated in the case of an Investment Complaints Manager (82: ranked second for self-evaluation, ninth for SRL). This Manager 'shadowed' an experienced colleague at a different site, acknowledging that the opportunity to learn from and compare performance with an expert was a more effective way to learn than training: It wasn't a case of BCan you go down and get some [formal] learning?^It was a case of BThis is what I want to do to make sure I can do the job to the highest level.^I believe that that was the right thing for me. It has achieved the goal for me and it has made me more knowledgeable. Not all professionals view self-evaluation embedded within work practice as a means of guiding self-improvement. One example is a Manager (74: ranked 27th for selfevaluation and 27th for SRL) who had been assigned greater responsibility for strategic business planning. Learning was not viewed as an integral part of work performance: My job isn't to keep learning\u2026 there should be time to learn and develop, but if all I did was professional development of myself I'd never get anything done. When asked by the interviewer to describe how her learning was evaluated, she responded: [Through] someone else's validation of my work, rather than my own. So far everyone internally is really pleased because we got something, but it's not quite the same as someone saying BYeah what you've"}, {"title": "bm25", "text": "know that. It's kinda like this gut feeling. And I know that's not very scientific, but I can look at a chart and be like this just isn't showing what I want it to show---it's kinda like a gut check.}'' P11 simply stated ``\\textit{I feel like mostly this is intuitive for me right now.}'' Aside from their own intuition, participants also talked about evaluating their work by involving other people to help determine how to move forward. This typically involved showing their work to either clients or colleagues and friends. P6 describes their view on how their own judgment often works well, but they also like to test with users: ``\\textit{I have become quite a good judge of `is this thing going to convey the message that I think it will?' But of course you know, the ultimate test of that is to show it to someone and say, `what do you see in this?}''' P16 described something similar saying ``\\textit{there's a lot of discussions with the client showing them things and getting their feedback [\\ldots] I also will often check with you know, friends, colleagues, my wife, whatever, to say does this communicate what I wanted to communicate? What do you think it says?}'' \\textbf{Planning in Action.} In addition to not relying on predetermined design processes, many participants described a kind of situated planning that often relied on forms of experimentation and responding to what was happening in the moment. For instance, some participants talked about creating visual representations almost immediately in their process, either"}, {"title": "bm25", "text": "to and from a broad variety of distant brain regions, allowing the neurons there to integrate information over space and time. Multiple sensory modules can therefore converge onto a single coherent interpretation, for example, a \"red sports car zooming by\". This global interpretation is broadcast back to the global workspace creating the conditions for the emergence of a single state of consciousness, at once differentiated and integrated. Alternatively, the theory of practopoiesis suggests that the global workspace is achieved in the brain primarily through fast adaptive mechanisms of nerve cells. According to that theory, connectivity does not matter much. Critical is rather the fact that neurons can rapidly adapt to the sensory context within which they operate. Notably, for achieving a global workspace, the theory presumes that these fast adaptive mechanisms have the capability to learn when and how to adapt. Criticism Susan Blackmore challenged the concept of stream of consciousness. \"When I say that consciousness is an illusion I do not mean that consciousness does not exist. I mean that consciousness is not what it appears to be. If it seems to be a continuous stream of rich and detailed experiences, happening one after the other to a conscious person, this is the illusion.\" However, she also says that a good way to observe the \"stream of consciousness\" may be to calm the mind in meditation. The criticism is based on the stream of perception data from the senses rather than about consciousness itself. Also, it is not explained why some things are conscious at"}, {"title": "bm25", "text": "third possibility. We might say that violations of consent also come in degrees. The wrongness of non-consensual sex depends on how nonconsensual it is. Sex that results from deception involving a strong deal-breaker is non-consensual to a high degree, and is therefore seriously wrong, whereas sex that results from deception involving a weak deal breaker is non-consensual to a low degree, and is therefore not seriously wrong. On this approach, we should say that Dougherty's argument is equivocal. What is meant by ''having sex with someone while lacking her morally valid consent''? Does this refer to sex that is nonconsensual to a high degree (involving a strong deal-breaker), or to a low degree (involving a weak deal-breaker). If the former, then we should reject Premise 2; if the latter, Premise 1. The idea that acts may be non-consensual to a greater or lesser degree seems fairly intuitive. Suppose I employ you to paint my house. You show me the tins of paint you will use, which, according to their labels, are the colour I have carefully selected, a particular shade of white called ''Snow White.'' If you have surreptitiously filled the tins with cheaper paint of a slightly different colour, ''Periwinkle White,'' then you act to some extent without my consent when you paint my house. But not to the same extent as if the paint was bright purple. It seems natural to say that, though both acts of house painting are to some extent nonconsensual, the latter is more so than the former. It also"}, {"title": "bm25", "text": "An unergative verb is an intransitive verb that is characterized semantically by having a subject argument which is an agent that actively initiates the action expressed by the verb. For example, in English, talk and resign in the sentence \"You talk and you resign\" are unergative verbs, since they are intransitive (one does not say \"you talk someone\") and \"you\" are the initiator or responsible for talking and resigning. But fall and die in the sentence \"They fall and die\" are unaccusative verbs, since usually they are not responsible for falling or dying but still the verb is intransitive, meaning it is comprehensively used without a direct object. (They cannot \"fall something\" or \"die someone\"). Some languages treat unergative verbs differently from other intransitives in morphosyntactic terms. For example, in some Romance languages, such verbs use different auxiliaries when in compound tenses. Besides the above, unergative verbs differ from unaccusative verbs in that in some languages, they can occasionally use the passive voice. In Dutch, for example, unergatives take (to have) in the perfect tenses: \"I call (by phone). \u2013 I have called.\" In such cases, a transition to an impersonal passive construction is possible by using the adverb er, which functions as a dummy subject and the passive auxiliary : literally, \"*There is by Jan telephoned.\" (meaning \"A telephone call by Jan is going on.\") By contrast, Dutch ergative verbs take (\"to be\") in the perfect tenses: \"The grease solidifies \u2013 The grease has solidified.\" In that case, no passive construction with is possible. In"}, {"title": "bm25", "text": "is usually given in short sentences, we believe this jeopardises the fidelity and integrity of the message's content, a basic requirement for a narrative on which the granting of refugee status may depend: Entity D: \"The 'Are you saying what I'm saying?' feeling. [\u2026] We've all experienced that, when someone carries on talking for 15 minutes, but then the interpreter only talks for 2 minutes\". Entity D: \"When it was translated into Spanish, I said, `But half of it has been left out! \u00b4. That feeling that information is being lost, and you say, `OK, what information has been lost? \u00b4 Because the fact that a person has or hasn't passed through a country is a very important piece of information. [\u2026] It's not the job of the person who is interpreting to judge what is or isn't important\". Entity E: \"I've seen interpreters being chewed out at police stations. `What do you mean he says yes!? He's just been talking for two hours; he must have told you something else!'\". Interestingly, Entity B preferred interpreters not to use notebooks, for fear of violating confidentiality. But if an interpreter is a professional, his/her deontology should guarantee that nothing will be disclosed. Fidelity is a particularly highly-appreciated principle: Entity C: \"If I'm raising my voice and I'm angry, you have to convey that I'm angry. Because if you don't, your message isn't going to come across the same as mine\". Parallel conversations, where the other party is not told what is being said, are avoided as much"}, {"title": "bm25", "text": "head\" instead of \"to stitch my head\". The use of vocabulary is indeed one of the most important conditions for good and effective writing. The lack of vocabulary means that someone sometimes does not write what he or she will say because he or she has difficulty choosing the most suitable words that correspond to Indonesian words. According to Pincas (1987), a writer does several things to express his opinion in writing. He arranges his ideas into a sentence, then sorts the sentence into paragraphs and uses it to construct the entire essay, the story. They are all made with special words, sentences, sentences and paragraphs that actually relate to each other. Based on this statement, it is necessary to use some activities to improve the students' vocabulary so that they can write their idea using an appropriate and comprehensive vocabulary. Nunan (1989) discovered that some of the successful conditions for writing are to control the mechanics of letter information, to control and to follow the convention of English spelling and punctuation, using the grammatical system to convey the intended meaning. However, students still cannot use mechanical elements such as spelling and punctuation while writing. The most common problems were the spelling of words such as \"swemming\" instead of \"swimming\" or \"village together\". They sometimes make some mistakes when using such conventions. Therefore, a lot of practice is required at this point to improve their skills in this case. Based on the above discussion, it can be concluded that a lot of practice is still needed"}, {"title": "bm25", "text": "images in a group setting, particularly for her profile picture which is publicly accessible. She does this so that when people who do not follow her, namely strangers, view her profile, they will not know who owns the account. Some participants are also cognizant that sensitive background information can be in their images. Two participants mentioned they do not share images in or of their house. P7 detailed that she tries to generally conceal information that may reveal her location: \\textit{``I don't really tend to post pictures of my house or like inside my house, outside my house, around my school, on my story or on my feed.''} When she does post content that might have location-sensitive information, she staggers her post such that she is no longer in the area when she posts: \\begin{quote} \\textit{`` If I'm somewhere and I'm doing something that could say `I'm in New York' and I take a bunch of pictures there, I don't post that on VSCO while I'm in New York. I wait until I get home or somewhere else so because I\u2019m not sure if the location is tied but it's just better to be careful.'' -- P7 } \\end{quote} Younger participants, or new users, seemed more likely to express apprehension about sharing their location or personal appearance. P15 shared he used to be concerned about revealing information about his location; however, over time, he realized that \\textit{``the chances of [someone finding his location] happening are very low, so [he's] not really nervous about location stuff anymore.''}"}, {"title": "bm25", "text": "very nature of epistemology. Is there such a thing as an aesthetic \"percept\" to begin with? It is clear enough that, when an autist perceives, even if only by means of mental representation, that someone has a green thumb, it is perfectly appropriate to speak of perception. On the other hand, when someone experiences that same phrase as a metaphor, that object of perception disappears, as by sleight of hand. It vanishes, to be replaced, in a mental manoeuvre, by something that is not at all \"perceived.\" Exactly what that is no one can say: it is the secret of metaphor, perhaps of the aesthetic as such; a palimpsest of words over meaning. (I have spoken before of the \"tenor,\" in the background, that cannot be exorcised from metaphor.) What becomes apparent, though, is that such a metaphor is essentially verbal, not visual: in the phrase \"John has a green thumb,\" we do not visualize a thumb, much less a green one. In the metaphor these words, important as they are, are in the service of something else; they lose their denotational value or competence. The material, or perceptual, content of the words is elided. It is true that different metaphors evoke different degrees of visualization, from \"chew the fat\" or \"green thumb,\" to the situation in which Odysseus, clutching at pebbles to avoid being swept out to sea, is compared to an octopus. Still, metaphors do not demand or even call upon us to visualize: who, on reading Housman's \"With rue my heart is laden/For"}, {"title": "bm25", "text": "and does and whether or not he \u201cfinishes last,\u201d as the common adage states. If a woman believes that a nice guy is kind and respectful to women then they will say that he does not finish last. If the nice guy is perceived as being passive or unattractive then they will say that he does finish last. Urbaniak and Killman (2003) constructed vignettes of four hypothetical dating show contestants: \"Nice Todd\" vs. \"Neutral Todd\" vs. \"Jerk Todd\" vs. \"Michael\", who was created to be a control. \"Nice Todd\" described a \"real man\" as \"in touch with his feelings,\" kind and attentive, non-macho, and interested in putting his partner's pleasure first. \"Neutral Todd\" described a \"real man\" as someone who \"knows what he wants and knows how to get it,\" and who is good to the woman he loves. \"Jerk Todd\" described a \"real man\" as someone who \"knows what he wants and knows how to get it,\" who keeps everyone else on their toes, and avoids \"touch-feely\" stuff. \"Michael\" described a \"real man\" as relaxed and positive. In two studies, Urbaniak and Kilmann found that women claimed to prefer \"Nice Todd\" over \"Neutral Todd\" and \"Jerk Todd,\" relative to \"Michael\" even at differing levels of physical attractiveness. They also found that for purely sexual relationships, \"niceness appeared relatively less influential than physical attractiveness.\" After acknowledging that women's preference for \"niceness\" could be inflated by the social desirability bias, especially due to their use of verbal scripts, they conclude that \"our overall results did not favor"}, {"title": "bm25", "text": "scientists acquire their training from a variety of academic fields~\\cite{Kross2019}, which often have different norms for canonical statistical methods, reporting of findings, and thresholds for significance of results. Here P9 recounted his experience doing counseling (`playing therapy') to reassure a client of the soundness of his results when the client had different field-specific norms: \\begin{quote} \\textit{There's definitely also like a tension of field-specific expectations or norms and your principles or values as an outside consultant or analyst. And then it gets manifested as like ``my analyst did something wrong'' or ``they didn't do what I told them.'' And then you just sort of feel like you're playing therapy with them, trying to reason out why what you did is actually okay.} \\end{quote} \\subsection{Power dynamics when presenting results to clients} Power dynamics appear here as well: Some of our participants work in environments (e.g., large companies) where there are many data scientists that clients can consult with. Therefore, they are afraid that they may be `replaced' if they deliver results that a client does not like. P3 laments that clients do not understand how much they may be giving up by finding a new data scientist (whom they hope will produce more favorable analysis results) rather than sticking with the current one: \\begin{quote} \\textit{When someone doesn't get the result they want as fast as they want, they think that it could be your fault. And so they say, ``Well let's just bring in another one of you!'' But they don't understand that I can't just give you"}, {"title": "bm25", "text": "language cannot be understood outside of its context. Wittgenstein lists the following as examples of language-games: \u201cGiving orders, and obeying them\u201d; \u201c[d]escribing the appearance of an object, or giving its measurements\u201d; \u201c[c]onstructing an object from a description (a drawing)\u201d; \u201c[r]eporting an event\u201d; \u201c[s]peculating about an event.\" The famous example is the meaning of the word \"game\". We speak of various kinds of games: board games, betting games, sports, \"war games\". These are all different uses of the word \"games\". Wittgenstein also gives the example of \"Water!\", which can be used as an exclamation, an order, a request, or as an answer to a question. The meaning of the word depends on the language-game within which it is being used. Another way Wittgenstein puts the point is that the word \"water\" has no meaning apart from its use within a language-game. One might use the word as an order to have someone else bring you a glass of water. But it can also be used to warn someone that the water has been poisoned. One might even use the word as code by members of a secret society. Wittgenstein does not limit the application of his concept of language games to word-meaning. He also applies it to sentence-meaning. For example, the sentence \"Moses did not exist\" (\u00a779) can mean various things. Wittgenstein argues that, independent of use, the sentence does not yet 'say' anything. It is 'meaningless' in the sense of not being significant for a particular purpose. It only acquires significance if we fix it within"}, {"title": "bm25", "text": "a result consistent with her own description. The converse holds for $B$. But this is clearly a different statement than to say that $A$ and $B$ agree on the values assigned. The former is, of course, very close to what happens in a solipsistic description of the world: I can explain everything I see as being how my mind works, and no observer, phenomenon, or information can make me change my mind. There is no ``agreement'' between what I see and what someone else sees, simply because there is nobody else seeing things. {\\bf There is an aspect of the ontology that is left open in the RQM literature: whether a system ontology or a quantum event ontology is more convincing. I think that RQM is compatible with both, and each has its own appeal. In the first, we assume that what exists is an electron, and its manifestations are sparse quantum event. In the second, we assume that what exists are sparse quantum events and we call electron their ensemble and their dynamical relations. I think that both views are viable. After all, we can say that there is a chair, and its manifestation are all the perspectives on it, or we can say with Hume, that a chair is nothing else that the coherent ensemble of all its manifestations. I see no reasons for which QM should decide a metaphysical issue that is open independently from quantum theory itself.} {\\bf A similar remark hold for the formulation of the theory as a principle theory"}, {"title": "bm25", "text": "assign different values to different goals, and that some of our goals might clash, leading to ambivalence; what is important here is that in order for a possible state to be one of our goals, we must at least have some prima facie intention to realize it. On the other hand, with options this is not the case. Although options do have some prima facie evaluative load, it is not the case that an agent intends to realize every possibility that he or she sees. When my goal is losing weight, I might come up with different options for realizing that goal. I might start exercising daily, I might go on a diet, I might apply for cosmetic surgery. The fact that I generate those action representations as options does not mean that I want to bring them about: I probably find some options more attractive than others; what I want to do remains to be decided upon. The second difference is that options are by definition representations of actions, whereas goals are not. For example, one could adopt a goal such as \"being happy\": this goal is not the representation of an action, but of a certain state of mind. Another example is someone having the goal \"the neighbor saying sorry for his rude behavior.\" This goal is not a representation of an action either, but a representation of a certain external outcome. PLANS A second question is whether options are in any important sense different from action plans. The literature on planning largely focuses"}, {"title": "bm25", "text": "the text itself should be the starting point in determining what Paul seeks to say about justification. Through his attempt of returning to the text to allow Paul to speak for himself as he suggests, Wright offers a definition of what he believes the apostle means by \u2018justification,\u2019 which is contrary to popular belief. In crafting said definition, the interpreter identifies three pieces, which he believes to be vital to this consideration: that justification is dependent upon covenant language, that it utilises law-court language, functioning within the covenantal setting as a strong explanatory metaphor of justification, and that it cannot be understood within a Pauline context as separate from eschatology. Through the inclusion of covenant language, justification alludes to the presence of sin and wickedness in the world and the way in which the covenant was instituted to bring about salvation. Within this context, the law-court metaphorical language acknowledges God's role as judge who is to put the world to rights, to deal with evil and to restore justice and order to the cosmos. Finally, Wright's definition of \u2018justification\u2019 within Paul's letters acknowledges that the term is not associated, as has commonly been perceived, with one's personal needs necessary to attain salvation, but instead with what marked someone as a member of God's people. Secular utopianism In 2008, Wright criticised \"secular utopianism\", accusing it of advocating \"the right to kill unborn children and surplus old people\". The Times columnist David Aaronovitch challenged Wright specifically to substantiate his claim that any secular group does indeed advocate the"}, {"title": "bm25", "text": "// types at parse time, not at semantic analysis time. That means that // we end up giving confusing \"unexpected comma\" or \"expected type\" // errors when it would be more informative to the user to simply // tell them that an unbound type is not legal in this position. // // This also means that we can get semantic analysis of the open // type in the IDE even in what would have been a syntax error case // in the native compiler. // // We need a heuristic to deal with the situation where both kinds of errors // are potentially in play: what if someone says \"typeof(Bogus<>.Blah)\"? // There are two errors there: first, that Bogus is not found, not a type, // or not of the appropriate arity, and second, that it is illegal to make // a partially unbound type. // // The heuristic we will use is that the former kind of error takes priority // over the latter; if the meaning of \"Bogus<>\" cannot be successfully // determined then there is no point telling the user that in addition, // it is syntactically wrong. Moreover, at this point we do not know what they // mean by the remainder \".Blah\" of the expression and so it seems wrong to // deduce more errors from it. var plainName = node.Identifier.ValueText; SeparatedSyntaxList typeArguments = node.TypeArgumentList.Arguments; bool isUnboundTypeExpr = node.IsUnboundGenericName; LookupOptions options = GetSimpleNameLookupOptions(node, isVerbatimIdentifier: false); NamedTypeSymbol unconstructedType = LookupGenericTypeName( diagnostics, basesBeingResolved, qualifierOpt, node, plainName, node.Arity, options); NamedTypeSymbol resultType; if (isUnboundTypeExpr) {"}, {"title": "bm25", "text": "intensely correlated to the previous one, lack of vocabulary. During my observation, I perceived that lecturers tend to speak in Bahasa Indonesia when they discussed the topics I prepared for the discussion. When I asked them about the reason for that in the interview; they explained that they did not have any adequate vocabularies to say. This condition drove them to decide to use Bahasa when they had no idea to express in English. In one of the observations, K, tried to share her childhood as follows: \"I think my childhood is not...really..what, what,..not really menyenangkan hehe.So I want my kids more happy than I am hehe\" The word \"menyenangkan\" was spoken because S did not know how to say it in English. When K spoke this word, another participant, S, tried to tell that menyenangkan was interesting. This was good response since there was a student-to-student interaction which is very helpful to maintain their ability. This example of her sentences also showed that there was a grammatical error such as word \"more happy\" which should be happier. Socio-cultural Problems No opportunity to Practice English \"Practice makes perfect\". This quote says that when someone wants to acquire a skill, no matter it is, practice is undoubtedly necessary. In language learning, the opportunity to practice is very important. Lantolf and Thorne (2004) explained the significance of peer group as a developmental process of learning occur through participation in cultural, linguistic, and previously formed settings such as family life and peer group interaction. Tok Seng (2006) in his"}, {"title": "bm25", "text": "of non-believers of this sort will be to learn from believers what the meaning of such terms actually amounts to. However, the dispute can also take another form: non-believers can treat the religious discourse as a quasi-scientific one (there being, of course, many different ways in which religious utterances can be interpreted as constituting quasi-scientific statements). In this case, religious utterances are criticized as amounting to statements that fail to be confirmed by any scientific evidence. Wittgenstein points out that a person who adopts a viewpoint according to which scientific evidence can confirm or falsify religious utterances is operating on entirely different plane from a religious person -there is, as it were, a gulf separating them: Suppose someone were a believer and said: \"I believe in a Last Judgement,\" and I said: \"Well, I'm not so sure. Possibly.\" You would say that there is an enormous gulf between us. If he said \"There is a German aeroplane overhead,\" and I said \"Possibly I'm not so sure,\" you'd say we were fairly near. It isn't a question of my being anywhere near him, but on an entirely different plane, which you could express by saying: \"You mean something altogether different, Wittgenstein.\" (Wittgenstein 1967a, LRB: 53) Why can one say that there is a gulf between these two people? The main reason is the fact that the believer does not treat religious questions as questions to which scientific evidence or scientific doubts are relevant. By contrast, a nonbeliever of the sort invoked by Wittgenstein in this fragment is,"}, {"title": "bm25", "text": "cyber-warfare in more detail below. Thanks to Colin Lewis for raising this point. 7 Thomas Hobbes, Leviathan (Cambridge: Cambridge University Press, 1991), Chapter xiii.8. 8 To the best of my knowledge, no one has yet given a meaningful or extended conceptual analysis of what it is for something to be a fight. So, what follows is my initial attempt at doing so. It is not a full or complete account, of course, but it is hopefully enough to begin the discussion. By contrast, much against someone who is able and willing to take up arms against you; otherwise, you are not fighting, but rather are annoying, aggravating, beating, killing, slaughtering, annihilating, destroying, or exterminating. 9 To fight is to contend with another, to struggle against them for supremacy. If there is no contention or struggle, it is difficult to say either that a fight is occurring or has occurred. This is why it is possible for someone to refuse to fight: famously, pacifists and nonviolence advocates refuse to physically fight for their causes. So, when the police attacked U.S. Representative John Lewis at Selma in 1965, it was a physical beating that took place, not a physical fight. 10 You simply cannot fight with someone who will not fight you. Added to that, you cannot fight with someone who cannot fight you; this is why it is impossible to (physically) fight a quadriplegic, for instance. Of course, you may well be able to have other kinds of conflict with them, but you cannot have a physical"}, {"title": "bm25", "text": "that offer multiple perspectives on a shared experience (husbands and wives, for example, or psychiatrists and patients); or they may collect accounts over a period of time, to develop a longitudinal analysis. Data collection In IPA, researchers gather qualitative data from research participants using techniques such as interview, diaries, or focus group. Typically, these are approached from a position of flexible and open-ended inquiry, and the interviewer adopts a stance that is curious and facilitative (rather than, say, challenging and interrogative). IPA usually requires personally salient accounts of some richness and depth, and it requires that these accounts be captured in a way that permits the researcher to work with a detailed verbatim transcript. Data analysis Data collection does not set out to test hypotheses, and this stance is maintained in data analysis. The analyst reflects upon their own preconceptions about the data, and attempts to suspend these in order to focus on grasping the experiential world of the research participant. Transcripts are coded in considerable detail, with the focus shifting back and forth from the key claims of the participant, to the researcher's interpretation of the meaning of those claims. IPA's hermeneutic stance is one of inquiry and meaning-making, and so the analyst attempts to make sense of the participant's attempts to make sense of their own experiences, thus creating a double hermeneutic. One might use IPA if one had a research question which aimed to understand what a given experience was like (phenomenology) and how someone made sense of it (interpretation). Analysis in IPA"}, {"title": "bm25", "text": "these behave more like nouns. Directional Focus: -An The focused noun phrases of directional verbs are treated as places or destinations. When a person is the focus, a notion of direction (either to or from) or an affected party is implied, for example, suratan to write to someone, takawan to rob from someone (compare with tawaken to steal something). In addition, the focused noun phrase is treated as an area that is affected by the verb. Verbs of cleaning, dalusan, to clean, labaan, to launder, sagadan, to sweep, are in this focus as the focused noun phrases are considered as an area affected. It is possible to use -en with these roots, but notice in the following sentences how the affix alters the focus and meaning: (with -an) Dinalusak ti sala. \"I cleaned the living room.\" versus (with -en) Dinalusko ti rugit ti sala. \"I cleaned the dirt in the living room.\" Meanings: Directionality, movement to or from Place or destination Area affected Cleaning Thematic Focus: i- The focused noun phrases of thematic verbs are transferred or whose location or state is affected in some way by the semantics of the root. An analog of this idea of transference, verbs of saying are commonly use this affix. What is said becomes the focused element and is thought of as being transferred from one person to another. Examples of roots that commonly take this form: Transference, conveyance, e.g., dulin safe place, idulin' to save, put away Change of non-permanent state, e.g., lukat exposed, ilukat to open; rikep"}, {"title": "bm25", "text": "often, as with all signifieds, this definition is up for debate; one may imagine the stickiness of what it would mean to sit on a desk or a kitchen counter instead and if that may be considered a chair). Saussure claims that the terms \"mother\" and \"father\" are \"distinct\"-they lack any overlap in the physical forms and mental concepts of each term. Saussure therefore positions these words and the ideas they represent within a binary. As a result, there is no room for non-binary positions between these two signs and their signifiers; to be the feminine \"mother\" is to be the exact opposite of the masculine \"father.\" Within Vuong's coming-of-age novel, Little Dog constructs and reconstructs his identity in relation and in opposition to this Saussurean binary syntax. One of the earliest memories he recalls in the novel-an encounter with a bully on the bus ride to school-reveals the dominant syntax of American masculinity and its effects on his body: \u2026 I realized the spark came from inside my head. That someone had shoved my face into the glass. \"Speak English,\" said the boy with a yellow bowl cut, his jowls flushed and rippling\u2026 \"Don't you ever say nothin'? Don't you speak English?\" He grabbed my shoulder and spun me to face him. \"Look at me when I'm talking to you.\" He was only nine but had already mastered the dialect of damaged American fathers... \"Say my name then.\" He blinked, his eyelashes, long and blond, nearly nothing, quivered. \"Like your mom did last night.\" \u2026"}, {"title": "bm25", "text": "information and to ensure the security controls required by the classification are in place and are followed in their right procedures. Access control Access to protected information must be restricted to people who are authorized to access the information. The computer programs, and in many cases the computers that process the information, must also be authorized. This requires that mechanisms be in place to control the access to protected information. The sophistication of the access control mechanisms should be in parity with the value of the information being protected; the more sensitive or valuable the information the stronger the control mechanisms need to be. The foundation on which access control mechanisms are built start with identification and authentication. Access control is generally considered in three steps: identification, authentication, and authorization. Identification Identification is an assertion of who someone is or what something is. If a person makes the statement \"Hello, my name is John Doe\" they are making a claim of who they are. However, their claim may or may not be true. Before John Doe can be granted access to protected information it will be necessary to verify that the person claiming to be John Doe really is John Doe. Typically the claim is in the form of a username. By entering that username you are claiming \"I am the person the username belongs to\". Authentication Authentication is the act of verifying a claim of identity. When John Doe goes into a bank to make a withdrawal, he tells the bank teller he is John"}, {"title": "bm25", "text": "kind of silly -what will happen when the people we do fieldwork with read what we write? What is the difference between writing for academics and writing for a \"popular\" audience? How does our writing objectify and isolate culture, fencing it off in an artificial time and place? E-mailing back and forth with the children of the Q'eqchi' farmers I did dissertation research with 35 years ago, I do not even pause to think about what particular writing genre I am contributing to, or the obstacles to intersubjectivity. For my last book I engaged with members of a Belizean bulletin board, and quoted some of the responses to my questions and provocations. Was this fieldwork, requiring a signed consent form, or was it public discourse which can be used without permission? The nineteenth-century classification of the world into discrete spaces separated by boundaries does not conform to a twenty-first century reality. One of Bourdieu's enduring insights was that every time we classify and sort objects in the real world, we are also classifying and reifying categories of people, defining our own identities (1984). When the conceptual boundaries which define the site of our own research are undermined, it therefore challenges the legitimacy of the ethnographer. This fundamental reflexivity means that we are no longer so easily defined by what we do in the world, or by our specialized knowledge and expertise, particularly in places where the label \"anthropologist\" has no particular referent (or is mistaken to mean someone who studies insects or static native cultures). In"}, {"title": "bm25", "text": "asks: How are words, phrases and sentences put together to create conversations, speeches, email messages, newspaper articles. 4. Strategic competence means knowing how to recognize and repair communication breakdowns, how to work around gaps in one's knowledge of the language, and how to learn more about the language and in the context. Strategic competence asks: How do I know when I've misunderstood or when someone has misunderstood me? What do I say then? How can I express my ideas if I don't know the name of something or the right verb form to use? (Canale and Swain, 1980:20) CLT stresses the need to allow students opportunities for authentic and creative use of the language. It focuses on meaning rather than form; it suggests that learning should be relevant to the needs of the students; it advocates task-based language teaching. Students should be given tasks to perform or problems to solve in the classroom. What's more, CLT emphasizes a functional approach to language learning (i.e. what people do with language, such as inviting, apologizing, greeting and introducing, etc.). Also, to be competent in the target language, learners should acquire not only linguistic knowledge, but also the cultural background of that language. Richards and Rogers address the issue, saying that in practice there are some elements to be taken into account: the communicational principle (i.e. activities that involve real communication promote learning), the task principle (i.e. activities in which language is used for carrying out meaningful tasks promote learning) and the meaningfulness principle (i.e. language that is meaningful"}, {"title": "bm25", "text": "80%, the probability of someone testing positive really being a cannabis user only rises from 19% to 21%, but if the sensitivity is held at 90% and the specificity is increased to 95%, the probability rises to 49%. Cancer rate Even if 100% of patients with pancreatic cancer have a certain symptom, when someone has the same symptom, it does not mean that this person has a 100% chance of getting pancreatic cancer. Assuming the incidence rate of pancreatic cancer is 1/100000, while 10/99999 healthy individuals have the same symptoms worldwide, the probability of having pancreatic cancer given the symptoms is only 9.1%, and the other 90.9% could be \"false positives\" (that is, falsely said to have cancer; \"positive\" is a confusing term when, as here, the test gives bad news). Based on incidence rate, the following table presents the corresponding numbers per 100,000 people. Which can then be used to calculate the probability of having cancer when you have the symptoms: Defective item rate A factory produces items using three machines\u2014A, B, and C\u2014which account for 20%, 30%, and 50% of its output respectively. Of the items produced by machine A, 5% are defective; similarly, 3% of machine B's items and 1% of machine C's are defective. If a randomly selected item is defective, what is the probability it was produced by machine C? Once again, the answer can be reached without using the formula by applying the conditions to a hypothetical number of cases. For example, if the factory produces 1,000 items, 200 will"}, {"title": "bm25", "text": "but when we feel our bodies change in a certain way, we are experiencing a specific mood. So Tye offers a different understanding of mood: the felt character of mood consists of feelings, which have intentional objects. What it means for feelings to have intentional objects, is something I will address later on. The relation between music and feelings has been discussed, but this always remained separate from the debate on music and moods. My proposal is that if the experience of a mood is a cluster of feelings, we can introduce feelings to the debate on music and mood. This provides a new account of musical moods, one which meets Kivy's and Zangwill's objections. The idea is that each mood is associated with a specific cluster of feelings. This does not mean that if you experience feelings X, Y, and Z it is necessarily implied that you have mood M. Every mood is different, and denominating moods is not a matter of logical inference. We usually find it hard to precisely describe every specific feeling we are experiencing. Nevertheless, if someone says that she in a \"energetic\" mood, we can get a sense of which feelings she might have. I will argue that music evokes certain feelings which can be associated with a specific mood. So I need to show that bodily feelings can be directed at the music and that clusters of these feelings are part of the aesthetic experience of the music. Tye argues that bodily feelings have intentionality in the same way"}, {"title": "bm25", "text": "e.g., Strawson (1966: p. 16), Putnam (1981: p. 60ff.), Walker (1995), Moore (2012: p. 362ff.), Allais (2015: p. 209ff.), and Stephenson (2015a). For some key passages, see A62/87, A155-6/B194-5, A218-26/B266-73, B279, A492-6/B521-4, A647/B675; Prolegomena (4: [290][291][336][337]. References to Kant are to volume and page of the academy edition and are accompanied by a short English title, except those to the Critique of Pure Reason, which take the standard A/B format. about non-epistemic statements. This in turn provides a principled motivation for my proposed restriction of knowability to non-epistemic statements. Anti-realism and the knowability paradox As the labels will be used here, 'realism' and 'anti-realism' denote views about meaning and truth. The views agree that the meaning of a declarative statement is given by its truth-conditions-how things must stand if the statement is to be true. They disagree about how to understand the notion of truth involved in such a theory of meaning. Anti-realism gives an epistemic characterization of truth such that a statement is true if and only if someone could, at least in principle, come to know it. Realism places no such constraints on truth, holding that a statement can be true independently of whether or not someone could, even in principle, come to know it. Anti-realism can be captured in the following principle 3 : (AR) \u03c6 \u2194 K \u03c6 K is our epistemic operator. It says 'someone knows, at some time, that'. I will say more in Sects. 3.3 and 4 about what counts as 'someone', including imposing some specifically Kantian constraints. The"}, {"title": "bm25", "text": "\"After the self-regulation workshop I stopped fighting with my brother\"; S119 \"Now I think before I act\"; S207 \"I have avoided several fights and conflicts by reflecting and thinking about my actions\"). Followed by social intelligence, related to the awareness of one's own emotions and those of others, the development of empathy and other social skills (e.g. S1 \"It helped me in my relationship with others, in dealing with them\"; S39 \"Greeting people, trying to be more sociable\"; S100 \"I learned to understand people, to help them) The third strength most applied by the youth was gratitude, linked to being aware of and thankful for the good things that happen, (e.g. S34 \"When someone is good to me I give thanks...\", S45 \"It also helped me value more the things I have because everything that life gives us is important\"). The fourth most reported strength was bravery, highlighted as the ability to stand up for the point of view that the person feels is right and not to be intimidated by threats, change, difficulty or pain (e.g. S40 \"I applied bravery to face a problem...\"; S73 \"I applied bravery because I encouraged myself to do things I didn't do before and to say no to what is bad for me\"; S203 \"In my life I learned to be brave, to fight for what I want...\") The fifth most reported strength was open-mindedness, which relates to the willingness to change one's ideas based on new evidence, to think about things and to examine their meanings and implications"}, {"title": "bm25", "text": "of us are empowered? Does that mean I can use my authority as a teacher to check and balance my students' power as native speakers and vice versa? Power relations are another riddle that has to be solved. In what follows, I will discuss two kinds of power that supplement the concept of praxis. External power When power is regarded as a force located outside a dialogical process oriented toward reaching understanding, it is an external condition of the dialogue. Therefore, it is called external power. It is what Carspecken (1999) refers to as coercive power or coercion in communicative action. External power should be neutralized or the dialogue will be distorted. Suppose, for instance, someone asks me to read a paper she has worked on. After a couple of weeks when we met, the person inquires excitingly, \"What did you think about my paper?\" Seeing me remain silent, the person adds, \"It was the third revision I made. Hopefully, it would be accepted this time.\" Showing impatience, I comment, \"I thought it was only the first draft.\" Considering my status as a university professor, the person begins to doubt her own ability and concurs, \"I guess I'd better redo it.\" In this case, my status had an impact on the dialogue. This is an example where my status was used as a sort of external power to distort the dialogue. Internal power Power can also be located internally in a dialogical process oriented toward reaching understanding. The attempt to reach understanding has intrinsic reasons (i.e.,"}, {"title": "bm25", "text": "So apparently we have some kind of idea about what good moral reasoning is, and apparently it is also something we want to teach. FP10 Coming from general psychiatry, it does indeed strike me that, the, hm, the moral framework is implicitly presentmuch more than outside of forensic psychiatry. It is not made explicit, but it does play a role. If you would put it bluntly: 'To what extent do we want the people whom we are treating here to be good citizens?' Yes, I'm afraid that it does, that it does play a role beneath the surface, but that we do not talk about it. On a superficial level, we aim to make sure that people no longer pose a risk, or as little risk as possible to themselves or others. But of course that has a very strong moral component. So, yes: it plays a big role. And no: it is not expressed as such. FP8 So it is not my job to socialize people. Although somehow it is, but I will never say this out loud, because otherwise people will interpret socializing as re-educating, in the sense of 'becoming like us'. I embrace a socialization that takes place from within a subject's own coordinates. If someone regains a place within societywithout necessarily actively participating in society, but also without wandering and suffering; if someone is able to make life bearable for himself/oneself, in a very discrete manner, without experiencing others as threatening and so forththat for me is already a successful socialization. Whether"}, {"title": "bm25", "text": "a monologue with the words ' he said to his 0t;/j.os,' and then the person pauses by saying, 'Why did my OV/JLOS say this to me?', who is meant to be talking to whom? This question has never been adequately answered. P. seeks a fundamental solution to the problem by asking fundamental questions: 'What does it mean to address a speech to the dvposV and 'What does it mean to imply that your Bvpos has spoken to you?' He observes that the Bvfxosspeeches 'are almost all directed at the resolution of some moral or intellectual problem' (p. 121), and that they occur when the speaker is in isolation, in other words, 'out of contact with any outside audience or addressee' (p. 146). From this and from his careful examination of the occasions on which the speeches are or are not addressed to the Ovfios, he comes to conclude that the dvfxos is not conceived as possessing speech-powers. According to his hypothesis, which is well supported, the dvfios is a fictive audience, a ' kind of rhetorically and psychologically useful second self (p. 212), which speakers often use as a 'scapegoat' to distance themselves from a discredited opinion (' / agree with you, but my dvpos had a bad idea.';' It was my dvfios who said that.')."}, {"title": "bm25", "text": "by a camera or by something and you just, there's just error in the way that you read the data. Just an error in the sensors. M: Alright, can you think of other ways. I guess in this case you're imagining that the data came by actually measuring something, with the machine. So that makes a lot of sense. What other ways can we put together the data? C: I don't know I could think of a bunch. I mean the error, well, the errors could come, maliciously. There could be someone out there that is trying to give us bad data. M: Alright, that seems like a possibility when the data set was collected, let's say that we're collecting, various. Oh, this happens a lot. So if you're trying to collect data from other Computer Science departments and you're trying to put together, some kind of collection of, you know, how much do you spend on your Graduate students say sometimes these departments will actually misrepresent the data and give you something that is wrong. Because, they don't want to tell you the truth, because they're afraid of what you are going to do. So we're just, you know, we've copied everything, but you know, there's just some of the lines that got filled in just got mistyped. So sensor errors were actually saying there's something physical, that's being measured and there's just noise in that. Transcription error, is similar except it's a person. Right? The, the there's a little blips in the person's head"}, {"title": "bm25", "text": "one else) can understand what I or others say, and on which neuronal processes my phenomenal belief that someone else understands what I say or write depend. One should be sceptical of the simple idea that speech largely reflects what happens in consciousness. Time The central issue regarding the attribution of significance becomes apparent when the following simple question is asked: \"How can a retrieval from episodic neuronal memory, as a present neuronal event, signify a past event?\" or, more precisely, \". . . signify the temporal feature, 'the past\"'? In my opinion, such a question lies at the root of consciousness much more than the complexity problem discussed by others (see below). This is because, for the case of \"time, \" significance attribution cannot be circumvented: the normal work of the scientist becomes impossible if he/she rejects the attribution of \"past\" significance to the retrieved content of a biological or a technical memory. Nevertheless, quite generally, significance attribution is not a valid relationship in the realm of natural science. However, when the task is to elucidate the status of consciousness that attribution would contaminate the investigations. A loss of \"scientific comfort\" is the consequence; the scientist's work becomes more wearisome: The concept of \"time\" can no longer be applied in equal measure to neuronal and to phenomenal events, and one cannot invoke causality, as it is usually done when intracerebral processes are studied. That is not all. When one has internalised the idea that only the \"present\" exists as a single instant but neither the"}, {"title": "bm25", "text": "in tune with reality, he is not anxious or worry. This, in turn, allows him to become more composed, relaxed, and ultimately more productive while working toward his goal with a peace of mind.

What I am explaining here is also captured by Epictetus as follows:

Do not seek to have events happen as you want them to, but instead want them to happen as they do happen, and your life will go well. -Epictetus

Our Duty To Reality

When someone\u2014like me\u2014is applying for graduate school I might, right away, desires to be accepted. But who am I to want or not want things from reality without ever creating the right causes for it to happen? In reality, whether or not anyone would or would not be accepted has many different factors\u2014many beyond one\u2019s control. So just by applying or having a great supporting resume doesn\u2019t mean I have the right to demand or hope from reality my admission. So why hope? Why put my desire ahead of the reality? Why worry? And why not channel this energy, instead, at creating the right causes which are writing the best application?

You can attain anything in life with or without the need to desire for it. But since reality runs by the absolute law of cause and effect, it does not obey one\u2019s desire no matter how large or small the desire. The only that matters is whether or not there is enough causes for the effect to occur. Thus, there is no need to desire because\u2026

"}, {"title": "bm25", "text": "exposition is unlikely to be influenced by material from outside the Bible (though such material may be mentioned in the sermon, for example the writings of a commentator on the passage). However, in churches that elevate church tradition, individual experience, and/or human reason to a level on par with Scripture, expository preaching (if used) will include reconciliation of the Biblical text to other sources: Congregations with a strong view of church tradition or church authority (common in churches with a strong hierarchical structure) will want to know how their denomination has traditionally interpreted the passage. Congregations with a strong belief in personal experience (common in the charismatic and Pentecostal circles) will want to understand how the passage relates to their experiences. Congregations with a strong belief in human reason (common in churches which reject the view of Biblical inerrancy) will want to know what modern research has to say regarding the authenticity of the passage. Regardless of these differences of emphasis, however, most preachers and congregations would agree that preaching must be honouring to God rather than to human beings. In practice, this means that the preacher as expositor should be concerned with speaking about what God sees as important. This will be of little use, however, if it does not connect to what the people in the congregation see as important - even if it only does so by seeking to upset their priorities. But the principle must be that when a church is exposed to expository preaching, they are being enabled to hear God"}, {"title": "bm25", "text": "on them. * Your class will likely mention the raising of the hand. * Explain to everyone that when students raise their hand, it is an \"event\" that causes you to know that they want to be called on. * Ask the class if they can think of any other events that give signals. * You may need to remind them that you're not talking about an event like a birthday party or a field trip. * If they have trouble, you can remind them that an event is an action that causes something to happen. * What about an alarm clock going off? What does that make happen? * What about pressing \"Start\" on the microwave? What does that do? * What about pressing the power button on your tv remote? * Today, we're going to practice changing programs by introducing events. [together] ## Activity: (15 min) ### 4) [The Big Event](/curriculum/course2/15/Activity15-TheBigEvent.pdf) * Do you remember guiding your friends to fill in an image of squares in Graph Paper Programming? * In that exercise, you knew in advance exactly what you wanted your friends to draw, so you could make a program that took them from start to finish without any interruptions. * In most real programs, we can't do that because we want to have options, depending on what the user needs. * Say that I only want my character to move when my finger is on the screen of my phone. I would need to program the character to *only* move"}, {"title": "bm25", "text": "on a page. If you are preparing a document using a non-\\LaTeX\\ document preparation system, please arrange for an equivalent line numbering. \\subsection{Mathematics} Please number all of your sections and displayed equations. Again, this makes reviewing more efficient, because reviewers can refer to a line on a page. Also, it is important for readers to be able to refer to any particular equation. Just because you didn't refer to it in the text doesn't mean some future reader might not need to refer to it. It is cumbersome to have to use circumlocutions like ``the equation second from the top of page 3 column 1''. (Note that the line numbering will not be present in the final copy, so is not an alternative to equation numbers). Some authors might benefit from reading Mermin's description of how to write mathematics: \\url{http://www.cvpr.org/doc/mermin.pdf}. \\section{Blind review} \\label{sec:blind} Many authors misunderstand the concept of anonymizing for blind review. Blind review does not mean that one must remove citations to one's own work---in fact it is often impossible to review a paper unless the previous citations are known and available. Blind review means that you do not use the words ``my'' or ``our'' when citing previous work. That is all. (But see below for techreports). Saying ``this builds on the work of Lucy Smith [1]'' does not say that you are Lucy Smith, it says that you are building on her work. If you are Smith and Jones, do not say ``as we show in [7]'', say ``as Smith and Jones show"}, {"title": "bm25", "text": "things like gambling and porn. There's nothing innately compassionate or generous about the web. For any good thing people do online, someone could also be doing something bad with the internet. Lehmann also suggests that a cognitive surplus raises a question about what the baseline value of time spent was to begin with, \"one\", he claims \"that might be better phrased as either 'Surplus for what?' or 'Whose surplus, white man? In the same vein, Lehmann accuses Shirky of being myopic. Shirky says the worst thing on the web is LOLcats when actually there are some bad things such as, for example, fake Obama birth certificates. Shirky says you cannot communicate with society on the basis of a web search to which Lehmann responds, The idea of society as a terminally unresponsive, nonconversant entity would certainly be news to the generations of labor and gender-equality advocates who persistently engaged the social order with demands for the ballot and the eight-hour workday. It would likewise ring strangely in the ears of the leaders of the civil rights movement, who used a concerted strategy of nonviolent protest as a means of addressing an abundance-obsessed white American public who couldn't find the time to regard racial inequality as a pressing social concern. The explicit content of such protests, meanwhile, indicted that same white American public on the basis of the civic and political standards\u2014or rather double standards\u2014of equality and opportunity that fueled the nation's chauvinist self-regard. Shirky bases a lot of his conclusions of generosity on the Ultimatum Game"}], "hoverinfo": "text"}, {"x": [0.020457684993743896, -0.10083474218845367, -0.03381596505641937, 0.09294372797012329, 0.1328452229499817, -0.047923311591148376, -0.10218290984630585, 0.03453236073255539, -0.05053935945034027, 0.1463519036769867], "y": [-0.05926978960633278, 0.052791792899370193, -0.1319386512041092, -0.05685896798968315, -0.0060612657107412815, 0.015367705374956131, 0.03935923054814339, -0.10751567780971527, -0.02685234136879444, 0.09363843500614166], "mode": "markers", "name": "Centroids", "marker": {"size": 12, "symbol": "star", "color": "black"}, "text": ["Centroid 0", "Centroid 1", "Centroid 2", "Centroid 3", "Centroid 4", "Centroid 5", "Centroid 6", "Centroid 7", "Centroid 8", "Centroid 9"], "hoverinfo": "text"}], [{"x": [0.14307349920272827, 0.1829432100057602, 0.15619613230228424, 0.1822783201932907, 0.17017096281051636, 0.1782262921333313, 0.1832030862569809, 0.1579832136631012, 0.14307349920272827, 0.06107518821954727, 0.1396102011203766, 0.12136434763669968, 0.1561928242444992, 0.1768726408481598, 0.13680621981620789, 0.1378088742494583, 0.17822664976119995, 0.20410433411598206, 0.1170608401298523, 0.06600921601057053, 0.18903879821300507, 0.13960948586463928, 0.060957662761211395], "y": [-0.054522424936294556, -0.05501380190253258, -0.0344514362514019, -0.014538227580487728, -0.06813172996044159, 0.05308256670832634, 0.03301365673542023, 0.005112745333462954, -0.054522424936294556, -0.05646568164229393, 0.005849081557244062, -0.02448558434844017, 0.023071572184562683, 0.009332566522061825, 0.021645093336701393, -0.015712644904851913, 0.053082697093486786, 0.002496530534699559, -0.057130131870508194, -0.0906253531575203, -0.01017244253307581, 0.005848451051861048, -0.025601031258702278], "mode": "markers", "name": "Cluster 0", "marker": {"size": 8, "color": "rgb(141,211,199)"}, "text": ["Document 122", "Document 178", "Document 236", "Document 264", "Document 283", "Document 284", "Document 370", "Document 463", "Document 507", "Document 529", "Document 562", "Document 614", "Document 638", "Document 650", "Document 768", "Document 786", "Document 844", "Document 887", "Document 1008", "Document 1011", "Document 1016", "Document 1149", "Document 1257"], "customdata": [{"title": "rpj-common-crawl-2019-30", "text": "on solid communications with the ground; if they lose these signals, they may be required to change their flight paths, Mannucci said. Radio telescopes may also experience distortion from the ionosphere; understanding the effects could lead to more accurate measurements for astronomy. \"It causes a lot of economic impact when these irregularities flare up and get bigger,\" he said. NASA's Deep Space Network, which tracks and communicates with spacecraft, is affected by the ionosphere. Komjathy and colleagues also work on mitigating and correcting for these distortions for the DSN. They can use GPS to measure the delay in signals caused by the ionosphere and then relay that information to spacecraft navigators who are using the DSN\u2019s tracking data. \"By understanding the magnitude of the interference, spacecraft navigators can subtract the distortion from the ionosphere to get more accurate spacecraft locations,\" Mannucci said. Other authors on the study were Richard B. Langley of the Geodetic Research Laboratory, University of New Brunswick, Fredericton, New Brunswick, Canada; and Olga Verkhoglyadova and Mark D. Butala of JPL. Funding for the research came from NASA's Science Mission Directorate in Washington. JPL, a division of the California Institute of Technology in Pasadena, manages the Deep Space Network for NASA. More information about NASA's Space Communications and Navigation program is at: http://www.nasa.gov/scan Images (mentioned), Text, Credits: NASA's Jet Propulsion Laboratory/Elizabeth Landau."}, {"title": "rpj-common-crawl-2023-06", "text": "in which magnetic field lines close around Earth. These are crucial details that explain the different dynamics of the two regions. To look at irregularities in the ionosphere, researchers used data from the Canadian Space Agency satellite Cascade Smallsat and Ionospheric Polar Explorer (CASSIOPE), which launched in September 2013. The satellite covers the entire region of high latitudes, making it a useful tool for exploring the ionosphere. The data come from one of the instruments on CASSIOPE that looks at GPS signals as they skim the ionosphere. The instrument was conceived by researchers at the University of New Brunswick. \u201cIt\u2019s the first time this kind of imaging has been done from space,\u201d said Attila Komjathy, JPL principal investigator and co-author of the study. \u201cNo one has observed these dimensional scales of the ionosphere before.\u201d The research has numerous applications. For instance, aircraft flying over the North Pole rely on solid communications with the ground; if they lose these signals, they may be required to change their flight paths, Mannucci said. Radio telescopes may also experience distortion from the ionosphere; understanding the effects could lead to more accurate measurements for astronomy. \u201cIt causes a lot of economic impact when these irregularities flare up and get bigger,\u201d he said. NASA\u2019s Deep Space Network, which tracks and communicates with spacecraft, is affected by the ionosphere. Komjathy and colleagues also work on mitigating and correcting for these distortions for the DSN. They can use GPS to measure the delay in signals caused by the ionosphere and then relay that information"}, {"title": "rpj-common-crawl-2023-06", "text": "Study of Atmospheric \u2018Froth\u2019 May Help GPS Communications By NASA | February 27, 2015 When you don\u2019t know how to get to an unfamiliar place, you probably rely on a smart phone or other device with a Global Positioning System (GPS) module for guidance. You may not realize that, especially at high latitudes on our planet, signals traveling between GPS satellites and your device can get distorted in Earth\u2019s upper atmosphere. View: Engineering Newswire 129: Rocket Flies Through Northern Lights Researchers at NASA\u2019s Jet Propulsion Laboratory, Pasadena, California, in collaboration with the University of New Brunswick in Canada, are studying irregularities in the ionosphere, a part of the atmosphere centered about 217 miles (350 kilometers) above the ground that defines the boundary between Earth and space. The ionosphere is a shell of charged particles (electrons and ions), called plasma, that is produced by solar radiation and energetic particle impact. The new study, published in the journal Geophysical Research Letters, compares turbulence in the auroral region to that at higher latitudes, and gains insights that could have implications for the mitigation of disturbances in the ionosphere. Auroras are spectacular multicolored lights in the sky that mainly occur when energetic particles driven from the magnetosphere, the protective magnetic bubble that surrounds Earth, crash into the ionosphere below it. The auroral zones are narrow oval-shaped bands over high latitudes outside the polar caps, which are regions around Earth\u2019s magnetic poles. This study focused on the atmosphere above the Northern Hemisphere. \u201cWe want to explore the near-Earth plasma and find"}, {"title": "rpj-common-crawl-2023-06", "text": "the sun for a viewer on Earth. There is a region of Earth\u2019s upper atmosphere, called the ionosphere which affects radio waves, including GNNS. The ionosphere consists of \u201cions,\u201d a shell of electrons and electrically charged atoms and molecules. Because ions are created through sunlight interacting with the atoms and molecules in the very thin upper atmosphere, the density (thickness and consistency) of the ionosphere varies from day to night. The ionosphere bends radio signals, similar to the way water will bend light signals. That is why you can hear AM radio broadcasts from far away at night. Also, ham radio operators rely on the ionosphere to bounce their signals from their station to the far reaches of the globe. Since GNSS is a radio signal, its measurements are slightly impacted by ionosphere changes, resulting in small increases in position error. For all except very precise GNSS users, these changes are negligible. Note that a total eclipse of the sun is similar to our day-night cycle, only very much faster. So, while the ionosphere will be more dynamic during an eclipse, it will not cause a loss of the GNSS signal. In summary, while any effects from the eclipse are of scientific interest, GNSS service should not be adversely affected by the Aug. 21 Solar Eclipse. Ionospheric effects should not be confused with those from solar flares (a brief eruption of intense high-energy radiation from the sun\u2019s surface) that can cause significant electromagnetic disturbances on the earth, impacting radio frequency communications/transmissions (including GNSS signals) and power"}, {"title": "rpj-common-crawl-2023-06", "text": "HomeTech/ScienceNASA researchers study of Ionosphere may help improve GPS Communications NASA researchers study of Ionosphere may help improve GPS Communications Written by Elizabeth Landau NASA\u2019s Jet Propulsion Laboratory Pasadena, CA \u2013 When you don\u2019t know how to get to an unfamiliar place, you probably rely on a smart phone or other device with a Global Positioning System (GPS) module for guidance. You may not realize that, especially at high latitudes on our planet, signals traveling between GPS satellites and your device can get distorted in Earth\u2019s upper atmosphere. Researchers at NASA\u2019s Jet Propulsion Laboratory, Pasadena, California, in collaboration with the University of New Brunswick in Canada, are studying irregularities in the ionosphere, a part of the atmosphere centered about 217 miles (350 kilometers) above the ground that defines the boundary between Earth and space. The Aurora Borealis viewed by the crew of Expedition 30 on board the International Space Station. The sequence of shots was taken on February 7, 2012 from 09:54:04 to 10:03:59 GMT, on a pass from the North Pacific Ocean, west of Canada, to southwestern Illinois. (NASA/JSC) The ionosphere is a shell of charged particles (electrons and ions), called plasma, that is produced by solar radiation and energetic particle impact. The new study, published in the journal Geophysical Research Letters, compares turbulence in the auroral region to that at higher latitudes, and gains insights that could have implications for the mitigation of disturbances in the ionosphere. Auroras are spectacular multicolored lights in the sky that mainly occur when energetic particles driven from the"}, {"title": "pes2o", "text": "of the signal as it is shown in Fig. 6. Indeed, in order to have a good communication it is expected that the BER is at least 5 10 bit s The modelling of the ionosphere is performed using first-order approximations taken from [29]. The ionosphere is the upper part of the atmosphere where charged particles are mixed with neutral particles. The charged particles are created by photoionisation caused by incoming UV and X-radiation from the Sun: gas molecules are heated, and electrons are liberated then. The rate of this ionisation depends on the density of gas molecules and the intensity of the radiation. In the neutral atmosphere charged particles are practically absent, since the created charged particles are recombined rapidly due to the high density of particles. In the ionosphere, however, only the charged particles can influence the propagation of radio waves. Mainly, the free electrons affect the propagation since the free ions are much heavier than the electrons. The interaction of the ionosphere with the navigation signal can be decomposed into four sources of delay called first-order, second-order, third-order delay, and geometrical signal bending denoted respectively as (1) i , (2) i , (3) i and \u03ba [29]. The second and third-order delays are often referred to as the ionospheric higher-order terms. The total ionospheric delay can be written as: All the formulations for the evaluation of the different sources for the ionospheric delay are taken from [29]. The first-order delay, (1) i , which is also the most significant for the ionospheric delay"}, {"title": "rpj-arxiv", "text": "it should not be the ionospheric electron density distribution that is is primary structure to model, but its autocorrelation function or equivalent its power-spectrum. Any information about the phase structure of the ionospheric electron density distribution is lost in the cross-correlation of the electric field when obtaining the visibilities. \\item A three-dimensional ionosphere causes a spatially varying convolution of the sky (at second order level), whereas a two-dimensional phase-screen or a thin ionosphere results in a spatially invariant convolution. Ionospheric structure in the $w$-direction causes, to lowest order, radial stretching or squeezing of the ionospheric scattering point spread function but leaves its tangential structure invariant. Correcting for the thickness of the ionosphere can thus be reduced (to lowest order) to determining a single number, i.e.\\ the level of stretching or squeezing. \\item Residual speckle, which can not be corrected in short time integrations, causes a diffuse intensity halo around bright sources beyond a certain distance from the source. Whereas longer integrations probe more of the total scattered flux of the ISP, because of its very steep intensity decline away from the source, these longer integrations also cause smearing of the instantaneous speckle pattern due to variations of the ionosphere. This halo (``seeing'') and related speckle noise might therefore pose a fundamental limitation on the ability to reach the thermal noise level in interferometers at very low frequencies after long total integrations. \\item Long baselines substantially help in correcting for the effects of the largest wave modes of the ionosphere, as seen inside the field of view"}, {"title": "rpj-common-crawl-2020-05", "text": "awareness, and geolocation related to national security. Although a relatively new technology, the use of signals from Global Positioning System (GPS) satellites is pervasive, facilitating everyday activities that range from navigation to financial transactions. The magnetosphere is the domain of nearly all Earth-orbiting satellites, affecting those in low, medium, and geostationary orbits, as well as those in high-apogee orbits. It is a region filled with charged particles, including the intense radiation belts that vary continuously in response to changes in the solar wind and to the solar disturbances that strongly affect the space environment. (See Figure 3.2.) Charged particles affect space technology in a variety of ways: at their most benign they cause surface charging and discharging, 2 See Report on the Space Economy Symposium, March 13, 2009, available at http://spaceeconomy.gmu.edu/ses2009/symposiumreport2009.pdf. FIGURE 3.2 A diagram of the Van Allen radiation zone surrounding Earth. This cutaway image shows the weak inner zone, the \u201cslot\u201d region that is relatively devoid of trapped radiation, and the more intense and highly variable outer Van Allen belt. The two spacecraft of the Radiation Belt Storm Probes mission are shown schematically. SOURCE: Courtesy of NASA. and at their most destructive they damage electronics components, including the temporary (single-event) upset of spacecraft commanding. Furthermore, upper atmospheric heating associated with the dynamics of the space environment can dramatically change drag effects on low-Earth-orbiting satellites, notably the International Space Station (ISS). Ionospheric Variability, Communication, and Navigation The specification and forecasting of ionospheric scintillation (i.e., radio propagation fluctuations due to plasma density irregularities) is a high"}, {"title": "rpj-common-crawl-2019-30", "text": "on solid communications with the ground; if they lose these signals, they may be required to change their flight paths, Mannucci said. Radio telescopes may also experience distortion from the ionosphere; understanding the effects could lead to more accurate measurements for astronomy. \"It causes a lot of economic impact when these irregularities flare up and get bigger,\" he said. NASA's Deep Space Network, which tracks and communicates with spacecraft, is affected by the ionosphere. Komjathy and colleagues also work on mitigating and correcting for these distortions for the DSN. They can use GPS to measure the delay in signals caused by the ionosphere and then relay that information to spacecraft navigators who are using the DSN\u2019s tracking data. \"By understanding the magnitude of the interference, spacecraft navigators can subtract the distortion from the ionosphere to get more accurate spacecraft locations,\" Mannucci said. Other authors on the study were Richard B. Langley of the Geodetic Research Laboratory, University of New Brunswick, Fredericton, New Brunswick, Canada; and Olga Verkhoglyadova and Mark D. Butala of JPL. Funding for the research came from NASA's Science Mission Directorate in Washington. JPL, a division of the California Institute of Technology in Pasadena, manages the Deep Space Network for NASA. More information about NASA's Space Communications and Navigation program is at: http://www.nasa.gov/scan Images (mentioned), Text, Credits: NASA's Jet Propulsion Laboratory/Elizabeth Landau."}, {"title": "rpj-c4", "text": "ionosphere and created the hole about 13 minutes after launch, it likely caused about a one-meter error in GPS programs, according to a paper in Space Weather. The lead author of the study, Charles C. H. Lin from the National Cheng Kung University in Taiwan, describes a rocket launch like a small volcano erupting, unloading energy into the middle and upper atmosphere in a way that\u2019s comparable to what we see from a magnetic storm. Currently, the impact from a single launch remains relatively insignificant. \u201cWithout considering the rocket launch effects, there are errors from the ionosphere, troposphere, and other factors that will produce up to 20-meter errors or more,\u201d he told Ars Technica. But the impact will grow as space technology continues to develop."}, {"title": "rpj-c4", "text": "of the broadcast signal may have an impact on the propagation time determination in the user receiver. Satellite position errors: if the spacecraft orbits are not properly determined by the system\u2019s ground segment, the user will not be able to precisely establish the spacecraft location at any given point in time. This will introduce an error when computing the user position. The size of the error affecting the range measurements depends on the user\u2019s location. Ionospheric effects: The ionosphere is the ionised layer of the Earth atmosphere located from around 60 kilometres to several thousand kilometres. When propagation through the ionosphere, navigation signals are disturbed, resulting in range measurement errors or reduced availability. Please refer to the article Ionospheric Delay for further information. Tropospheric effects: The troposphere is the lower part of the atmosphere where most weather phenomena take place. The signal propagation in this region will be affected by specific atmospheric conditions (e.g. temperature, humidity\u2026) and will result in range measurement errors. Tropospheric effects are further described in the article Tropospheric Delay. Local effects: When propagating in the local environment of a user receiver, navigation signals are prone to reflections or obstructions from the ground or nearby objects (buildings, vehicles...). Thermal noise, interference and user receiver design: the navigation signals have an extremely low power level when they reach the user receiver. When computing its position the user receiver combines the range measurements from the different satellites in view. Through this process, the individual errors affecting each range measurement are combined which results in an"}, {"title": "rpj-common-crawl-2022-05", "text": "extreme cases the induced current was so high the coils at the receiving side burst in flames, or the operators received electric shocks. Geomagnetic storms affect also long-haul telephone lines, including undersea cables unless they are fiber optic.[34] Damage to communications satellites can disrupt non-terrestrial telephone, television, radio and Internet links.[35] The National Academy of Sciences reported in 2008 on possible scenarios of widespread disruption in the 2012\u20132013 solar peak.[36] The Global Navigation Satellite System (GNSS), and other navigation systems such as LORAN and the now-defunct OMEGA are adversely affected when solar activity disrupts their signal propagation. The OMEGA system consisted of eight transmitters located throughout the world. Airplanes and ships used the very low frequency signals from these transmitters to determine their positions. During solar events and geomagnetic storms, the system gave navigators information that was inaccurate by as much as several miles. If navigators had been alerted that a proton event or geomagnetic storm was in progress, they could have switched to a backup system. GNSS signals are affected when solar activity causes sudden variations in the density of the ionosphere, causing the satellite signals to scintillate (like a twinkling star). The scintillation of satellite signals during ionospheric disturbances is studied at HAARP during ionospheric modification experiments. It has also been studied at the Jicamarca Radio Observatory. One technology used to allow GPS receivers to continue to operate in the presence of some confusing signals is Receiver Autonomous Integrity Monitoring (RAIM). However, RAIM is predicated on the assumption that a majority of the GPS"}, {"title": "rpj-common-crawl-2023-06", "text": "radio signals might undergo random modulations of their amplitude and phase caused by scattering on irregular structures in the ionosphere. This phenomenon, known as scintillation, is governed by the space weather conditions, time of the day, season, local distribution of the geomagnetic field, etc. All these factors make ionospheric scintillation both highly variable in space and time. Moreover, scintillation are intrinsically anisotropic since the associated scattering irregularities tend to align and stretch along the geomagnetic field lines. Depending on the relative position of signal source, the receiving station, and the irregularity, the scintillation effect on the transmitted wave might be enhanced or reduced. This study is focused on the consistent accounting of this geometric effect in scintillation modeling with the emphasis on situations when the communication or sensing sender-receiver link is nearly horizontal. For this task the single phase screen model has been used to model the scattering of propagating radio signals on random ionospheric layer. The geometric enhancement effect of scintillation is demonstrated by considering communication links via a geostationary beacon satellite over the equator. Fully coupled photochemistry of the deuterated ionosphere of Mars and its effects on... Bethan Sarah Gregory Although deuterium (D) on Mars has received substantial attention, the deuterated ionosphere remains relatively unstudied. This means that we also know very little about non-thermal D escape from Mars, since it is primarily driven by excess energy imparted to atoms produced in ion-neutral reactions. Most D escape from Mars is expected to be non-thermal, highlighting a gap in our understanding of water loss from"}, {"title": "pes2o", "text": "positioning, and exposure irregular structure of plasma associated with plasma bubbles and so on. This phenomenon is called \"ionospheric scintillation\" or simply \"scintillation\", and it leads to the deterioration of communication quality between the ground and satellites and the disturbance of image data transmitted from satellites. This phenomenon has been known for a long time and affects satellite communications such as Inmarsat in Japan (Karasawa et al. 1985). In addition, during the US Army's al-Qaeda sweeping operation \"Operation Anaconda\" in Afghanistan in March 2002, the UHF satellite communication (SATCOM) failure caused fatalities among US troops. It has been pointed out that a plasma bubble may have caused the failure (Kelly et al. 2014). The higher the frequency, the smaller the effect of ionospheric scintillation. It is almost negligible in satellite communication systems with frequencies above 10 GHz compared with other effects such as the troposphere. On the other hand, in satellite communication systems of the L-band at 1.5 GHz and the S band at 2 GHz, the effect of scintillation due to plasma bubbles cannot be ignored. The longer the radio wave propagation path through the plasma bubble, which usually extends in the north-south direction along the magnetic field line, the greater the effect becomes. Therefore, in Japan, it is considered that communication with GEO satellites and other low-elevation-angle satellites could be greatly affected by plasma bubbles (Karasawa et al. 1985). Positioning usage Positioning with GPS satellites (GNSS) determines the position using radio waves coming from multiple satellites. Radio waves of two frequencies in the L1"}, {"title": "pes2o", "text": "been increasing. Wide area navigation (RNAV), which uses radio waves including GNSS, enables shorter aviation routes than those determined by previous navigation methods. Therefore, the installation of RNAV is being promoted and its use is expanding. Code positioning, one type of single-frequency positioning using a pseudo-range, is used in aviation navigation. The effect of the ionospheric delay is large in single-frequency positioning. Ionospheric disturbances such as ionospheric positive storms and plasma bubbles increase range-finding errors and degrade positioning accuracy. In addition, ionospheric scintillation reduces the number of usable satellites and the positioning accuracy. An augmentation system corrects the deterioration of accuracy and provides reinforcement information including integrity information to ensure safety even in rarely occurring worst cases. On the other hand, the augmentation system corrects the ionospheric delay using the data at GPS reference stations, so the local gradient of the ionospheric delay causes an additional error. However, the evaluation of these effects on aviation positioning is very difficult, because the required performance of navigation systems depends on the flight phase and the architecture and design of the specific navigation system. Therefore, the impacts on aeronautical navigation are left unlabeled (white) in Table 2. Aviation: exposure dose of crew members When galactic cosmic rays (GCRs) or high-energy SEPs are incident on the atmosphere, they induce an air-shower by producing various secondary particles such as neutrons. Aircrews and passengers are exposed to an enhanced radiation dose due to these secondary particles. The GCR dose rate depends on the solar modulation potential, and it gradually varies with an"}, {"title": "rpj-common-crawl-2021-04", "text": "6:35 Keynote Speaker 7:30 Closing remarks Sandwiches and beverages will be served during the Meet and Greet portion of the meeting. cover custodia samsung Keynote Presentation: Title: Ionosphere Effects and other GNSS and RF Navigation Research at Miami Presenter: Jade Morton, Professor at Miami University Abstract: The ionosphere is a dynamic medium characterized by irregularities in electron density distributions which cause refraction, scattering, and diffraction of GNSS signals that traverse the ionosphere. The results of these signal interactions with the ionosphere are highly variable signal group delays and carrier advances, deep signal amplitude fading, and random carrier phase fluctuations. custodia samsung s8 While the group delay and carrier advances cause GPS range measurement errors which cannot be totally eliminated by the current state-of-the-art receivers, the signal amplitude fading and carrier phase fluctuations, collectively referred to as ionospheric scintillations, may result in receiver loss-of-lock of satellite signals. These ionosphere effects pose a serious challenge for applications that require continuous and high accuracy measurements. In this presentation, I will focus on two of our current research efforts in ionosphere effects. iphone cover outlet The first effort aims to assess the higher order ionosphere error in GPS receiver range measurements and to characterize the higher order error temporal and spatial structure. The second study concerns the establishment of a multi-constellation, multi-band GNSS receiver array in Alaska to collect GNSS signals under both natural and controlled ionospheric scintillation conditions, and the development of robust GPS receiver algorithms for the estimation of satellite signal parameters. Technical approaches, recent findings, and significance"}, {"title": "pes2o", "text": "of the signal as it is shown in Fig. 6. Indeed, in order to have a good communication it is expected that the BER is at least 5 10 bit s The modelling of the ionosphere is performed using first-order approximations taken from [29]. The ionosphere is the upper part of the atmosphere where charged particles are mixed with neutral particles. The charged particles are created by photoionisation caused by incoming UV and X-radiation from the Sun: gas molecules are heated, and electrons are liberated then. The rate of this ionisation depends on the density of gas molecules and the intensity of the radiation. In the neutral atmosphere charged particles are practically absent, since the created charged particles are recombined rapidly due to the high density of particles. In the ionosphere, however, only the charged particles can influence the propagation of radio waves. Mainly, the free electrons affect the propagation since the free ions are much heavier than the electrons. The interaction of the ionosphere with the navigation signal can be decomposed into four sources of delay called first-order, second-order, third-order delay, and geometrical signal bending denoted respectively as (1) i , (2) i , (3) i and \u03ba [29]. The second and third-order delays are often referred to as the ionospheric higher-order terms. The total ionospheric delay can be written as: All the formulations for the evaluation of the different sources for the ionospheric delay are taken from [29]. The first-order delay, (1) i , which is also the most significant for the ionospheric delay"}, {"title": "rpj-common-crawl-2020-05", "text": "bursts (flares) yield impulsive perturbations in the Sun-Earth environment and to magnetic storms and substorms in the near-Earth region. By consequence, under these perturbed conditions coming from the outer space, the ionosphere may become highly turbulent and the probability of irregularities formation, typically enhancements or depletions of the electron density embedded in the ambient ionosphere, increases. Such irregularities cause diffraction effects, mainly due to the random fluctuations of the refractive index of the ionosphere, on the satellites signals passing through them and consequent perturbations may cause GNSS navigation errors and outages, abruptly corrupting its performance. Due to the morphology of the geomagnetic field, whose lines are almost vertical at high latitude, polar areas are characterized by the presence of significant ionospheric irregularities having scale sizes ranging from hundreds of kilometres down to a few centimetres and with highly dynamic structures. The understanding and consequent mitigation of the effect of such phenomena is important, in preparation for the next solar cycle (24), whose maximum is expected in 2012. We analyse the fluctuations in the carrier frequency of the radio waves received on the ground, commonly referred to as ionospheric amplitude and phase scintillations, to investigate the physical processes causing them and, conversely, to understand how these processes affect the operational capabilities of GNSS receivers under different geomagnetic conditions. The phase scintillations on GNSS signals are likely caused by ionospheric irregularities of scale size of hundreds of meters to few kilometers. The amplitude scintillations on GNSS signals are caused by ionospheric irregularities of scale size smaller than the"}, {"title": "bm25", "text": "applications. For instance, aircraft flying over the North Pole rely on solid communications with the ground; if they lose these signals, they may be required to change their flight paths, Mannucci said. Radio telescopes may also experience distortion from the ionosphere; understanding the effects could lead to more accurate measurements for astronomy. \u201cIt causes a lot of economic impact when these irregularities flare up and get bigger,\u201d he said. NASA\u2019s Deep Space Network, which tracks and communicates with spacecraft, is affected by the ionosphere. Komjathy and colleagues also work on mitigating and correcting for these distortions for the DSN. They can use GPS to measure the delay in signals caused by the ionosphere and then relay that information to spacecraft navigators who are using the DSN\u2019s tracking data. \u201cBy understanding the magnitude of the interference, spacecraft navigators can subtract the distortion from the ionosphere to get more accurate spacecraft locations,\u201d Mannucci said. Other authors on the study were Richard B. Langley of the Geodetic Research Laboratory, University of New Brunswick, Fredericton, New Brunswick, Canada; and Olga Verkhoglyadova and Mark D. Butala of JPL. Funding for the research came from NASA\u2019s Science Mission Directorate in Washington. JPL, a division of the California Institute of Technology in Pasadena, manages the Deep Space Network for NASA. It\u2019s Galileo time: Options for crystal oscillators in OSNMA-enabled receivers High-rate RTK: Helpful or hypeful? US Army selects Orolia Defense & Security as winner in XTech Plugfest This article is tagged with CASSIOPE, GPS interference, ionosphere, Jet Propulsion Laboratory, NASA, Richard Langley, signal"}, {"title": "bm25", "text": "and get bigger,\u201d he said. NASA\u2019s Deep Space Network, which tracks and communicates with spacecraft, is affected by the ionosphere. Komjathy and colleagues also work on mitigating and correcting for these distortions for the DSN. They can use GPS to measure the delay in signals caused by the ionosphere and then relay that information to spacecraft navigators who are using the DSN\u2019s tracking data. \u201cBy understanding the magnitude of the interference, spacecraft navigators can subtract the distortion from the ionosphere to get more accurate spacecraft locations,\u201d Mannucci said. Other authors on the study were Richard B. Langley of the Geodetic Research Laboratory, University of New Brunswick, Fredericton, New Brunswick, Canada; and Olga Verkhoglyadova and Mark D. Butala of JPL. Funding for the research came from NASA\u2019s Science Mission Directorate in Washington. JPL, a division of the California Institute of Technology in Pasadena, manages the Deep Space Network for NASA. More information about NASA\u2019s Space Communications and Navigation program is at: http://www.nasa.gov/scan California Institute of Technology in Pasadena Elizabeth Landau NASA's Deep Space Network NASA's Jet Propulsion Laboratory NASA's Science Mission Directorate Previous articleTennessee Highway Patrol announces 2014 Trooper and Dispatcher of the Year; District of the Year Next articleIRS gives Five Good Reasons why you should choose Direct Deposit NASA\u2019s Geotail Spacecraft ends Operations Come after 30 Years NASA\u2019s James Webb Space Telescope finds Exoplanet NASA\u2019s retired Earth Radiation Budget Satellite to Reenter Earth\u2019s Atmosphere"}, {"title": "bm25", "text": "minutes based on current data. This minimizes spatial sampling errors and improves space weather and climate change studies. Full ionosphere profiling Our fields of vision are, and therefore the measurements we take are located in the entire space below, above, and behind the spacecraft. This gives us insight to the ionosphere from 90 km above the Earth's surface all the way to directly above the spacecraft which is really important when monitoring the very dynamic changes in the ionosphere. Ionospheric Scintillation Detection and Localization This one is really cool, and a unique part of COSMIC-2. Scintillation is essentially these fluctuations in radio frequency signals through the ionosphere due to disturbances in the structure of plasma, or ionized gas. This phenomena can cause interruptions of some communications and navigation systems. Since COSMIC-2 uses GPS signals to make measurements, we can measure the scintillation, or interference.. Before COSMIC-2, these measurements could only be made from ground-based stations. We can now measure this phenomena across the entire globe, over land and sea.Although we can\u2019t really do anything about the effects of scintillation, being able to detect it allows us to understand where there may be interruptions in things like GPS. Observing scintillation is important for people who use information about radio signals to understand how to avoid it potentially, or to understand why they're seeing what they are seeing. It's a really new and emerging area in ionospheric physics and we were really quite lucky to be among the world leaders in making these scintillation measurements. Map of COSMIC-2"}, {"title": "bm25", "text": "of the broadcast signal may have an impact on the propagation time determination in the user receiver. Satellite position errors: if the spacecraft orbits are not properly determined by the system\u2019s ground segment, the user will not be able to precisely establish the spacecraft location at any given point in time. This will introduce an error when computing the user position. The size of the error affecting the range measurements depends on the user\u2019s location. Ionospheric effects: The ionosphere is the ionised layer of the Earth atmosphere located from around 60 kilometres to several thousand kilometres. When propagation through the ionosphere, navigation signals are disturbed, resulting in range measurement errors or reduced availability. Please refer to the article Ionospheric Delay for further information. Tropospheric effects: The troposphere is the lower part of the atmosphere where most weather phenomena take place. The signal propagation in this region will be affected by specific atmospheric conditions (e.g. temperature, humidity\u2026) and will result in range measurement errors. Tropospheric effects are further described in the article Tropospheric Delay. Local effects: When propagating in the local environment of a user receiver, navigation signals are prone to reflections or obstructions from the ground or nearby objects (buildings, vehicles...). Thermal noise, interference and user receiver design: the navigation signals have an extremely low power level when they reach the user receiver. When computing its position the user receiver combines the range measurements from the different satellites in view. Through this process, the individual errors affecting each range measurement are combined which results in an"}, {"title": "bm25", "text": "to the user if jamming or another problem is detected. The U.S. military has also deployed their Selective Availability / Anti-Spoofing Module (SAASM) in the Defense Advanced GPS Receiver (DAGR). In demonstration videos, the DAGR is able to detect jamming and maintain its lock on the encrypted GPS signals during interference which causes civilian receivers to lose lock.[77] ## Accuracy enhancement ### Augmentation Augmentation methods of improving accuracy rely on external information being integrated into the calculation process. There are many such systems in place and they are generally named or described based on how the GPS sensor receives the information. Some systems transmit additional information about sources of error (such as clock drift, ephemeris, or ionospheric delay), others provide direct measurements of how much the signal was off in the past, while a third group provide additional navigational or vehicle information to be integrated in the calculation process. Examples of augmentation systems include the Wide Area Augmentation System, Differential GPS, Inertial Navigation Systems and Assisted GPS. ### Precise monitoring The accuracy of a calculation can also be improved through precise monitoring and measuring of the existing GPS signals in additional or alternate ways. After SA, which has been turned off, the largest error in GPS is usually the unpredictable delay through the ionosphere. The spacecraft broadcast ionospheric model parameters, but errors remain. This is one reason the GPS spacecraft transmit on at least two frequencies, L1 and L2. Ionospheric delay is a well-defined function of frequency and the total electron content (TEC) along the path,"}], "hoverinfo": "text"}, {"x": [0.13592784106731415, 0.057930391281843185, 0.09687497466802597, -0.03220366686582565, -0.045510489493608475, 0.0741901695728302, -0.0046025351621210575, 0.04714220017194748, 0.05198638513684273, 0.034232065081596375, 0.14830344915390015, 0.09590820223093033, -0.06392093002796173, 0.0444394089281559, -0.03856964781880379, -0.0643482655286789, -0.0643482655286789, -0.11614260822534561, -0.11614260822534561, 0.041667524725198746, 0.03453998267650604, 0.038858868181705475, 0.03885861113667488, 0.028283191844820976, -0.07219704985618591, 0.036721792072057724, 0.037020664662122726, 0.03702089563012123, 0.0007258482510223985, 0.04278630018234253, 0.020213298499584198, 0.018413521349430084, -0.044046636670827866, -0.04404635727405548, 0.0028873928822577, -0.045510489493608475, -0.045510489493608475, 0.0290465597063303, 0.10207971185445786, 0.00365645345300436, 0.03213564306497574, -0.01362772285938263, 0.08940906077623367, 0.015142053365707397, 0.04292948916554451, -0.017635872587561607, -0.0038703593891113997, -0.0038703593891113997, 0.020642105489969254, 0.1323115974664688, 0.10821843147277832, 0.10734648257493973, -0.0574214793741703, 0.1181524395942688], "y": [-0.002024354413151741, -0.020081615075469017, -0.02513505332171917, 0.07655836641788483, 0.003181565785780549, 0.035632506012916565, -0.021458957344293594, -0.034904949367046356, -0.019090233370661736, 0.009307105094194412, 0.029961030930280685, -0.029996270313858986, 0.03778105601668358, 0.0048921057023108006, -0.02439238503575325, -0.09870590269565582, -0.09870590269565582, 0.043866176158189774, 0.043866176158189774, -0.05760083347558975, 0.09056055545806885, -0.051580656319856644, -0.05158098042011261, 0.029642559587955475, 0.03414439037442207, -0.009175000712275505, -0.058639779686927795, -0.05863967910408974, 0.030423887073993683, 0.05331847444176674, 0.027798980474472046, -0.030515296384692192, -0.01038401573896408, -0.010383984073996544, -0.003310585394501686, 0.003181565785780549, 0.003181565785780549, 0.042066965252161026, -0.04371047019958496, 0.0016628829762339592, -0.0015612649731338024, -0.055810246616601944, -0.016826502978801727, 0.026518533006310463, 0.009710063226521015, 0.009839940816164017, 0.04750622808933258, 0.04750622808933258, -0.11403196305036545, 0.007382795214653015, -0.03569283336400986, 0.012816130183637142, 0.025391997769474983, -0.016525350511074066], "mode": "markers", "name": "Cluster 1", "marker": {"size": 8, "color": "rgb(255,255,179)"}, "text": ["Document 70", "Document 83", "Document 172", "Document 224", "Document 232", "Document 262", "Document 271", "Document 314", "Document 318", "Document 367", "Document 406", "Document 503", "Document 519", "Document 601", "Document 643", "Document 647", "Document 648", "Document 651", "Document 652", "Document 658", "Document 677", "Document 694", "Document 695", "Document 706", "Document 710", "Document 734", "Document 739", "Document 740", "Document 746", "Document 753", "Document 761", "Document 787", "Document 840", "Document 842", "Document 869", "Document 883", "Document 884", "Document 926", "Document 928", "Document 933", "Document 939", "Document 940", "Document 946", "Document 948", "Document 949", "Document 955", "Document 972", "Document 973", "Document 997", "Document 1134", "Document 1364", "Document 1378", "Document 1409", "Document 1481"], "customdata": [{"title": "rpj-common-crawl-2020-05", "text": "particles in the ionosphere, causing them to absorb radio waves, causing communication fade-outs, he explained. \"That's the issue of the satellites themselves,\" Howard said. \"But with ionospheric disturbances, you are also getting an increase in electron density in certain areas, and this can cause failures in GPS.\" He added that there were about 30 minutes of complete GPS outage in December 2006. In addition to GPS, Howard noted that the effects of solar storms on communications satellites extend to such things as cell phones, pagers, television, the Internet and streaming video. \"Society is becoming increasingly dependent on space-based assets,\" he commented. Howard added that strong ionospheric disturbances can also cause ground controllers to lose track of low orbit satellites. \"Electromagnetic energy comes in and heats the atmosphere,\" he said. \"When you heat the atmosphere, you get increased density at spacecraft altitude, and that causes an increase in drag, and you can lose track of them.\" Solar radiation also can pose a threat to humans. \"The radiation can damage astronauts, or if you're flying [in an aircraft] over the polar regions, you have to worry about getting too much radiation from X-rays and ultraviolet radiation,\" he said. \"The transpolar routes are becoming extremely popular for the airlines,\" Howard added, \"so the crews have to wear radiation dosimeters to measure how much exposure they are getting.\" High-energy particles also pose a hazard to anyone working high in the atmosphere or in space, Howard said. \"Particles can also be released, and they're coming at fantastic speeds, 500 times that"}, {"title": "rpj-common-crawl-2023-06", "text": "The latest batch of Starlink satellites encountered a geomagnetic storm while still in very low-Earth orbit. Their engines could not overcome the significantly increased drag, and the satellites began slowly falling toward Earth and eventually burned up in the atmosphere. Drag is just one hazard that space weather poses to space-based assets. The significant increase in high-energy electrons within the magnetosphere during strong geomagnetic storms means more electrons will penetrate the shielding on a spacecraft and accumulate within its electronics. This buildup of electrons can discharge in what is basically a small lightning strike and damage electronics. Penetrating radiation or charged particles in the magnetosphere \u2013 even during mild geomagnetic storms \u2013 can also alter the output signal from electronic devices. This phenomenon can cause errors in any part of a spacecraft\u2019s electronics system, and if the error occurs in something critical, the entire satellite can fail. Small errors are common and usually fixable, but total failures, though rare, do happen. Finally, geomagnetic storms can disrupt the ability of satellites to communicate with Earth using radio waves. Many communications technologies, like GPS, for example, rely on radio waves. The atmosphere always distorts radio waves by some amount , so engineers correct for this distortion when building communication systems. But during geomagnetic storms, changes in the ionosphere \u2013 the charged equivalent of the thermosphere that spans roughly the same altitude range \u2013 will change how radio waves travel through it. The calibrations in place for a quiet atmosphere become wrong during geomagnetic storms. This, for example, makes"}, {"title": "rpj-common-crawl-2020-05", "text": "ionosphere. But is the transmitter powerful enough to have fried the electronics of Russia\u2019s Mars mission? The answer is categorically no, according to Craig Selcher, HAARP program manager with the Air Force Research Laboratory\u2019s Space Vehicles Directorate at Kirtland Air Force Base, N.M. For starters, HAARP\u2019s IRI has not been operated since September 3, he says. But even if the IRI had been on during the early days of the Mars mission, the beam couldn\u2019t have had any real impact on the craft. The beam\u2019s energy, although strong enough to affect overflying airplanes, which have an operating ceiling of about 26 kilometers (in Earth\u2019s stratosphere), is too diffuse by the time it reaches the ionosphere, part of the planet\u2019s upper atmosphere. Phobos\u2013Grunt\u2019s orbit has been between 200 and 400 kilometers. It turns out that the beam is indeed diffuse at that height. The maximum energy that Phobos\u2013Grunt could have felt from HAARP would have equaled a power density of 1.03 milliwatts per square centimeter, according to Selcher. That is like shining a 60-watt lightbulb on the craft from 21 meters, he says. The sun, on the other hand, blasts the top of the atmosphere with an average of 135,100 milliwatts per square centimeter. In fact, Cohen says, \u201cHAARP routinely points itself at full power towards certain satellites\u201d that monitor what happens at the top of the ionosphere above an IRI beam. He also notes that despite the relative density of low Earth orbit\u2013satellites, HAARP has not damaged a single one. None of these counterpoints is likely"}, {"title": "rpj-c4", "text": "with charge differences. If they encounter bodies on different orbits, electrical discharging is more likely. In the case of the Moon and Earth, if the Moon encountered Earth, they might not discharge much, since their charges would be about the same. When spacecraft come down to Earth, there's usually no discharge between them. See the thread on the Columbia disaster. 3. The Earth doesn't seem to be a very strong magnet, so Earth's magnetic attraction may not affect such a body as much as gravity does. Again, metal spacecraft as well as satellites and aircraft don't seem to be strongly attracted to Earth magnetically."}, {"title": "rpj-c4", "text": "low orbit was due to the Shuttle carrying up massive components to the station. After the Shuttle was retired and no more massive components were scheduled to be delivered, the ISS was given a big boost into a much higher 381 km by 384 km orbit. This means the resupply rockets can carry less station reboost propellant and more cargo payload. If the planet the station orbits has a magnetic field, it probably has a radiation belt. Needless to say this is a very bad place to have your orbit located, unless you don't mind little things like a radiation dosage of 25 Severts per year. And that is for Terra, Jupiter's radiation belts are a thousand times worse. In 1973 Pioneer 11 was surprised by radiation levels around Jupiter ten times greater than NASA had predicted. This is why Pioneer did not send back photos of the moon Io since the radiation belt had fried its imaging photo polarimeter. Work on the Voyager space probe came to a screeching halt as they frantically redesigned it to cope with the radiation, but still be assembled in time for the launch window. Terra's zone of glowing blue death is called the Van Allen radiation belts. The Inner Belt starts at an altitude from 400 km to 1,200 km, depending on latitude, and ends at an altitude of about 6,000 km, with its most lethal area 3,500 km out. The South Atlantic Anomaly can potentially disrupt satellites in polar orbits, but usually does not pose a problem for"}, {"title": "rpj-common-crawl-2021-04", "text": "by. These changes can cause (usually mild) electromagnetic disturbances on Earth. More serious are solar flares, which shower the upper atmosphere of Earth with X-rays, energetic particles, and intense ultraviolet radiation. The X-rays and ultraviolet radiation can ionize atoms in Earth\u2019s upper atmosphere, and the freed electrons can build up a charge on the surface of a spacecraft. When this static charge discharges, it can damage the electronics in the spacecraft\u2014just as you can receive a shock when you walk across a carpet in your stocking feet in a dry climate and then touch a light switch or some other metal object. Most disruptive are coronal mass ejections. A CME is an erupting bubble of tens of millions of tons of gas blown away from the Sun into space. When this bubble reaches Earth a few days after leaving the Sun, it heats the ionosphere, which expands and reaches farther into space. As a consequence, friction between the atmosphere and spacecraft increases, dragging satellites to lower altitudes. At the time of a particularly strong flare and CME in March 1989, the system responsible for tracking some 19,000 objects orbiting Earth temporarily lost track of 11,000 of them because their orbits were changed by the expansion of Earth\u2019s atmosphere. During solar maximum, a number of satellites are brought to such a low altitude that they are destroyed by friction with the atmosphere. Both the Hubble Space Telescope and the International Space Station (Figure 15.24) require reboosts to higher altitude so that they can remain in orbit. International"}, {"title": "rpj-common-crawl-2019-30", "text": "radiation field produced by the Sun and other stars (while substantial!) is no secret. All GPS satellites orbit above 22,000 miles (over ISS\u2019s paltry 250), while the Sun-observing STEREO satellites sit way out in front and behind the Earth acting exclusively as radiation monitors for solar storms. The radiation out there will cook circuits as much as it\u2019ll cook DNA, so communication/navigation satellite managers are awfully interested in the radiation out there (and it being accurate \u2014 our satellites aren\u2019t falling out of the sky). But you absolutely shouldn\u2019t take my word for it \u2014 you can see for yourself here at the Space Weather Prediction Center\u2019s stream of the STEREO and GOES radiation monitoring page \u2014 you can calculate the doses for yourself if you\u2019d like: http://www.swpc.noaa.gov/communities/satellites . So, given the wrong time in the solar cycle or too much time spent out there, it causes a problem for astronauts\u2019 career dose limits, but no ones\u2019 faces are melting off unless they catch a direct hit from a Coronal Mass Ejection or get marooned right in the thick of the Van Allan proton belt. I worked in NAS Headquarers during the Apollo Program. I worked on which missions to come next. Given the importance of the moon on human activities further ecploration of the other 99% was obvious. Once designed and flown building a few more Saturn V rockets is cheap. The DOD marching bands cost dozens of times more each year. It was not money that precluded more lunar visits. No one thought endless"}, {"title": "rpj-common-crawl-2022-05", "text": "constellation is operating properly, and so it is much less useful when the entire constellation is perturbed by global influences such as geomagnetic storms. Even if RAIM detects a loss of integrity in these cases, it may not be able to provide a useful, reliable signal. Satellite hardware damage Geomagnetic storms and increased solar ultraviolet emission heat Earth's upper atmosphere, causing it to expand. The heated air rises, and the density at the orbit of satellites up to about 1,000 km (621 mi) increases significantly. This results in increased drag, causing satellites to slow and change orbit slightly. Low Earth Orbit satellites that are not repeatedly boosted to higher orbits slowly fall and eventually burn up. Skylab's 1979 destruction is an example of a spacecraft reentering Earth's atmosphere prematurely as a result of higher-than-expected solar activity. During the great geomagnetic storm of March 1989, four of the Navy's navigational satellites had to be taken out of service for up to a week, the U.S. Space Command had to post new orbital elements for over 1000 objects affected and the Solar Maximum Mission satellite fell out of orbit in December the same year. The vulnerability of the satellites depends on their position as well. The South Atlantic Anomaly is a perilous place for a satellite to pass through. As technology has allowed spacecraft components to become smaller, their miniaturized systems have become increasingly vulnerable to the more energetic solar particles. These particles can physically damage microchips and can change software commands in satellite-borne computers. Another problem for"}, {"title": "rpj-common-crawl-2022-05", "text": "operating properly, and so it is much less useful when the entire constellation is perturbed by global influences such as geomagnetic storms. Even if RAIM detects a loss of integrity in these cases, it may not be able to provide a useful, reliable signal. Satellite hardware damage Geomagnetic storms and increased solar ultraviolet emission heat Earth's upper atmosphere, causing it to expand. The heated air rises, and the density at the orbit of satellites up to about 1,000 km (621 mi) increases significantly. This results in increased drag, causing satellites to slow and change orbit slightly. Low Earth Orbit satellites that are not repeatedly boosted to higher orbits slowly fall and eventually burn up. Skylab's 1979 destruction is an example of a spacecraft reentering Earth's atmosphere prematurely as a result of higher-than-expected solar activity. During the great geomagnetic storm of March 1989, four of the Navy's navigational satellites had to be taken out of service for up to a week, the U.S. Space Command had to post new orbital elements for over 1000 objects affected and the Solar Maximum Mission satellite fell out of orbit in December the same year. The vulnerability of the satellites depends on their position as well. The South Atlantic Anomaly is a perilous place for a satellite to pass through. As technology has allowed spacecraft components to become smaller, their miniaturized systems have become increasingly vulnerable to the more energetic solar particles. These particles can physically damage microchips and can change software commands in satellite-borne computers. Another problem for satellite operators"}, {"title": "rpj-c4", "text": "the electronic systems of spacecraft approaching the planet. And secondly, because the bombardment of Saturn\u2019s moons and moons by these high-energy particles alters their surface."}, {"title": "rpj-common-crawl-2022-05", "text": "World Heritage.\" From here. low-earth-orbit radiation radio-communication magnetosphere radio-astronomy $\\begingroup$ The Van Allen Belts are formed by the fairly constant magnetic field of the earth. But these VLF transmissions build an alternating magnetic field. If this field forms a barrier against high energy particles, the density of the barrier should also alternate with the VLF frequency used. If those particles are counted on earth, their rate should vary synchronous to the VLF frequency. $\\endgroup$ \u2013 Uwe $\\begingroup$ I was hoping the cows would be the antennas so we could model them as spherical antennas. $\\endgroup$ \u2013 Organic Marble $\\begingroup$ Spherical cows ahem antennas would be a problem of finanzing and construction for a wavelength of tenth of kilometers. $\\endgroup$ $\\begingroup$ @OrganicMarble so people DO read my questions! ;) $\\endgroup$ That paper \"Anthropogenic Space Weather\" runs to 55 pages, but only 5 pages discuss VLF impact on the ionosphere (chapter 8), while 35 pages (chapters 2-7) discuss EMP from high altitude nukes. This is for the simple reason that even a world-class VLF transmitter like Cutler 24kHz transmitter can only emit a few megawatts, while a big nuke emits billions of times more energy. Most planet-scale phenomena like the jet stream or tides are so enormous that we can't even begin to directly impact them on a global scale. So it's actually surprising that our comparatively tiny megawatt VLF transmitters and ionospheric heaters can have any detectable impact on the planet's ionosphere. (For example, the natural electrical power driving an aurora substorm has been estimated at 500,000"}, {"title": "rpj-common-crawl-2022-05", "text": "weather and communication satellites. American Idol? You may miss an episode, but that may not necessarily be a bad thing... Death by boredom. Are you starting to feel a pinch now? Large and turbulent changes in the ionosphere during geomagnetic storms triggered by these CME events interfere with high-frequency radio communications... just what your pilot is using to communicate with the control tower. As of today (24 January) Delta Airlines has started re-routing pole-crossing international flights away from the poles, where the dipolar nature of the Earth's magnetic field allows these huge ion-storms to penetrate deeply into our Earth's protective atmosphere. This is why the auroras will be so bright and far-reaching tonight. What about our astronauts in the International Space Station? They have a protective \"safe room\" to retreat to, but this is a partial mitigation at best. As I write this, all six astronauts in the ISS are being severely irradiated. The highly energetic particles during solar events like this cause temporary operational anomalies, damage critical electronics, degrade solar arrays, and blind optical systems such as imagers and star trackers. The latter are necessary to keep the solar arrays correctly oriented, and to keep one side of the ISS from broiling while the other side freezes. For the vast majority of us, there will likely be no manifestation of anything unusual. But then, when Hurricanes Andrew (1992), Isabel (2003), Katrina (2005) and Felix (2007) struck the eastern United States, most of the rest of us felt nothing... until the forced immigrants began to arrive."}, {"title": "rpj-common-crawl-2022-05", "text": "in Low Earth orbit. Geomagnetic storms due to increased solar activity can potentially blind sensors aboard spacecraft, or interfere with on-board electronics. An understanding of space environmental conditions is also important in designing shielding and life support systems for crewed spacecraft. Main pages: Astronomy:Space debris, Astronomy:Graveyard orbit, and Astronomy:Spacecraft cemetery Rockets as a class are not inherently grossly polluting. However, some rockets use toxic propellants, and most vehicles use propellants that are not carbon neutral. Many solid rockets have chlorine in the form of perchlorate or other chemicals, and this can cause temporary local holes in the ozone layer. Re-entering spacecraft generate nitrates which also can temporarily impact the ozone layer. Most rockets are made of metals that can have an environmental impact during their construction. In addition to the atmospheric effects there are effects on the near-Earth space environment. There is the possibility that orbit could become inaccessible for generations due to exponentially increasing space debris caused by spalling of satellites and vehicles (Kessler syndrome). Many launched vehicles today are therefore designed to be re-entered after use. Main page: Astronomy:Space law A wide range of issues such as space traffic management or liability have been issues of spaceflight regulation. Participation and representation of all humanity in spaceflight is an issue of international space law ever since the first phase of space exploration.[38] Even though some rights of non-spacefaring countries have been secured, sharing of space for all humanity is still criticized as imperialist and lacking, understanding spaceflight as a resource.[38] Further information: Physics:Human presence in"}, {"title": "rpj-common-crawl-2021-04", "text": "may cause damage to the central nervous system, cardiovascular system, and circulatory system of astronauts. There is evidence that humans exposed to large doses of radiation from radiotherapy experience cognitive and behavioral changes, and recent studies suggest these risks may occur at lower doses for GCR creating a possible risk for operating a space vehicle. Space environment variables (Ex. microgravity, CO2, lack of sleep, etc.) which produce stress could interact with radiation in a synergistic fashion exacerbating the impacts. With the recent upgrades to the NSRL, NASA is improving its ability to understand the effects of radiation on the body. The most notable upgrades were made to the GCR simulator, which was recently highlighted in ScienceDirect. \u201cThere is ample research on acute effects of radiation exposure but very little on latent effects, and the latter more closely resembles the health effects expected from long duration space flight,\u201d Lisa Carnell, Ph.D., Medical Countermeasure Lead for NASA Space Radiation said. \u201cImagine ion trajectories to be similar to rain; sometimes there is a downpour (solar particle event) and sometimes there a light drizzle or heavy, sparse droplets (similar to galactic cosmic radiation). With the upgrades we can simulate different types of ion rain with multiple types of ions sequentially versus only one type of ion at a time.\u201d The GCR upgrades enable researchers to rapidly switch ion types and energy intensities. To support these improvements, software controls were added to permit smooth movement from target to target. The cooling system in one of the Electron Beam Ion Source, or"}, {"title": "rpj-common-crawl-2022-05", "text": "when dust became airborne inside their spacecraft. A way to control that will need to be found. Radiation poses one of the biggest challenges. Outside the protective magnetic bubble surrounding Earth, astronauts are exposed to roughly three times the radiation dose per day they receive in low-Earth orbit. It contributes to an increased risk of long-term problems such as cancer and cardiovascular disease. The radiation comes from several sources. Galactic cosmic rays (GCRs) have lots of energy, but there are few of them. The Van Allen Belts around Earth contain trapped sub-atomic particles, but exposure to these is temporary. However, ways need to be found to protect against solar particle events (SPEs) - where the Sun periodically hurls electrically charged particles into space. Nasa\u2019s next-generation ship, Orion, uses materials within its structure to shield the occupants from radiation. The cornerstone of America\u2019s plan to return to the Moon is the Orion crew module. Its conical contours recall the Apollo command modules, rather than the spaceplane stylings of its immediate predecessor, the space shuttle. To many people, the spacecraft evokes a golden age of space exploration, when anything seemed possible. But the 10-tonne spacecraft makes use of technology unimaginable back in the 1960s, and even the methods being used to build it are innovative. At Lockheed Martin, which is building Orion for Nasa, engineers have been equipped with augmented reality (AR) headsets. \u201cYou\u2019re looking through a lens that\u2019s a see-through visor, but then you have these digital objects that are overlaid in the environment,\u201d explains Shelley Peterson,"}, {"title": "rpj-common-crawl-2023-06", "text": "a geomagnetic storm shortly after launch, but pose little menace to Earth as they burn up within the environment, the company stated. The most recent forty nine satellites from the Starlink community launched from the Kennedy Space Center in Florida on Feb. Three and efficiently assumed their preliminary orbit, with their nearest method to the floor 210 kilometers (130 miles) high. Geomagnetic storms are brought on by ejections of the photo voltaic corona into area, leading to disturbances to the Earth\u2019s higher ambiance and elevated drag on objects in low orbits. On Feb. 4, nonetheless, they had been struck by the area weather occasion, Elon Musk\u2019s company stated in a statement late Tuesday. The corporate locations them into this area to carry out last checks before flying further into house. \u201cThese storms cause the atmosphere to warm. Now, a little bit over five months after Crew Dragon C206\u2019s second profitable reentry and splashdown, the spacecraft is scheduled to launch another four astronauts \u2013 this time all private residents \u2013 to the ISS. It could be little surprise if combining a reusability pathfinder mission with the safety requirements of crewed spaceflight resulted in a need for extra inspections, testing, and evaluation than initially expected. Possibly explaining a number of the launch delays the mission has experienced, that implies that Ax-1 \u2013 a crewed launch \u2013 will likely be the primary time any Dragon 2 capsule flies for the third time. For an April third launch, they need to thus return to Earth on April thirteenth, leaving NASA"}, {"title": "rpj-common-crawl-2023-06", "text": "a geomagnetic storm shortly after launch, but pose little menace to Earth as they burn up within the environment, the company stated. The most recent forty nine satellites from the Starlink community launched from the Kennedy Space Center in Florida on Feb. Three and efficiently assumed their preliminary orbit, with their nearest method to the floor 210 kilometers (130 miles) high. Geomagnetic storms are brought on by ejections of the photo voltaic corona into area, leading to disturbances to the Earth\u2019s higher ambiance and elevated drag on objects in low orbits. On Feb. 4, nonetheless, they had been struck by the area weather occasion, Elon Musk\u2019s company stated in a statement late Tuesday. The corporate locations them into this area to carry out last checks before flying further into house. \u201cThese storms cause the atmosphere to warm. Now, a little bit over five months after Crew Dragon C206\u2019s second profitable reentry and splashdown, the spacecraft is scheduled to launch another four astronauts \u2013 this time all private residents \u2013 to the ISS. It could be little surprise if combining a reusability pathfinder mission with the safety requirements of crewed spaceflight resulted in a need for extra inspections, testing, and evaluation than initially expected. Possibly explaining a number of the launch delays the mission has experienced, that implies that Ax-1 \u2013 a crewed launch \u2013 will likely be the primary time any Dragon 2 capsule flies for the third time. For an April third launch, they need to thus return to Earth on April thirteenth, leaving NASA"}, {"title": "rpj-common-crawl-2020-05", "text": "a logical explanation that is consistent with what I do know about radiation. Without the Earth\u2019s atmosphere, there is nothing save the thin skin of the space craft to shield travelers from deadly radiation. There are also \u201chot particles\u201d that, if absorbed by the body, could easily spell doom for the recipient. Besides those, there are \u201cmicro-meteorites\u201d that travel at incredible speeds. Punching a hole through an object that is in essence little mare than an aluminum can would not be a challenge for them. I watched your video link (all 3 hours of it!) and they do raise some pretty pesky questions. In the interest of staying away from suspected motives, the actual technological challenges present enough problems of their own. As they say, why have we not returned? The degree of danger for radiation exposure, like other hazardous materials, are rated as the product of the level (dosage) over exposure time. It seems, at least from the video, that NASA was rather generous with their calculations as to exposure in the Van Allen Belt. While that is a formidable obstacle itself, once through the belt one is not exactly \u201chome free\u201d. Coupling that with the nature of the propellant used in the LEM, apparent visibility for landing both impeded by the apparent non-existent reaction of dust to thrust and the difficulty of landing in an area obscured by the terminal line of darkness on the Moon, as Desi says, \u201cyou\u2019ve got some \u2018splainin\u2019 to do\u201d. lophatt Correct, you\u2019re not home free outside the belts."}, {"title": "rpj-common-crawl-2020-05", "text": "a logical explanation that is consistent with what I do know about radiation. Without the Earth\u2019s atmosphere, there is nothing save the thin skin of the space craft to shield travelers from deadly radiation. There are also \u201chot particles\u201d that, if absorbed by the body, could easily spell doom for the recipient. Besides those, there are \u201cmicro-meteorites\u201d that travel at incredible speeds. Punching a hole through an object that is in essence little mare than an aluminum can would not be a challenge for them. I watched your video link (all 3 hours of it!) and they do raise some pretty pesky questions. In the interest of staying away from suspected motives, the actual technological challenges present enough problems of their own. As they say, why have we not returned? The degree of danger for radiation exposure, like other hazardous materials, are rated as the product of the level (dosage) over exposure time. It seems, at least from the video, that NASA was rather generous with their calculations as to exposure in the Van Allen Belt. While that is a formidable obstacle itself, once through the belt one is not exactly \u201chome free\u201d. Coupling that with the nature of the propellant used in the LEM, apparent visibility for landing both impeded by the apparent non-existent reaction of dust to thrust and the difficulty of landing in an area obscured by the terminal line of darkness on the Moon, as Desi says, \u201cyou\u2019ve got some \u2018splainin\u2019 to do\u201d. lophatt Correct, you\u2019re not home free outside the belts."}, {"title": "rpj-common-crawl-2023-06", "text": "that travel through it. If a satellite is hit by a high-energy proton, it can short-circuit and cause an event called SEU (Single Event Upset). This can cause the satellite\u2019s function to glitch temporarily or can cause permanent damage if a key component is hit. In order to avoid losing instruments or an entire satellite, operators commonly shut down non-essential components as they pass through the SAA. Indeed, NASA's ICON (Ionospheric Connection Explorer) regularly travels through the region and so the mission keeps constant tabs on the SAA's position. - The International Space Station, which is in low-Earth orbit, also passes through the SAA. It is well protected, and astronauts are safe from harm while inside. However, the ISS has other passengers affected by the higher radiation levels: Instruments like the GEDI (Global Ecosystem Dynamics Investigation) mission, collect data from various positions on the outside of the ISS. The SAA causes \u201cblips\u201d on GEDI\u2019s detectors and resets the instrument\u2019s power boards about once a month, said Bryan Blair, the mission\u2019s deputy principal investigator and instrument scientist, and a lidar instrument scientist at Goddard. - \u201cThese events cause no harm to GEDI,\u201d Blair said. \u201cThe detector blips are rare compared to the number of laser shots \u2013 about one blip in a million shots \u2013 and the reset line event causes a couple of hours of lost data, but it only happens every month or so.\u201d - In addition to measuring the SAA\u2019s magnetic field strength, NASA scientists have also studied the particle radiation in the region"}, {"title": "pes2o", "text": "Protection of Materials from Space Radiation Environments on Spacecraft Spacecraft in orbit will encounter space radiation environments such as electron, proton, heavy ions, gamma ray, etc; and results in the space radiation effects such as single event effects, total ionizing dose effects, displacement damage effects, surface charging and discharging or electrostatic discharging, internal charging effects. So protection from space radiation should be given to the spacecraft. The protection principle and validity from space environments on spacecraft is introduced firstly, and then mass shielding material, ESD protection material, and radiation hardening functional material, were discussed. At last, some development directions on protection material from space radiation environments are proposed. Introduction During the orbital operation of the spacecraft, it will encounter severe tests from various space radiation environments, such as electrons, protons, heavy ions, photons, etc., which can cause single-particle effects, total dose effects, and other total dose effects of spacecraft materials, components, subsystems, etc. Surface charge and discharge effects, internal charging effects, displacement damage effects, etc., cause degradation of material or device performance. Therefore, in the design and development of spacecraft, it is necessary to strengthen the material selection and structural protection design of spacecraft to ensure that the spacecraft does not cause failure or failure due to space radiation during the orbit, effectively improving the spacecraft space in orbit. At present, the world's major space powers have invested a lot of efforts in the research and development of spacecraft radiation protection materials, and have done a lot of work on spacecraft structural design, and have achieved"}, {"title": "rpj-common-crawl-2023-06", "text": "telemetry data. Since we are aware of these interferences in advance, engineers on the ground can take them into account and make corrections before firing any commands that may jeopardize the life of the spacecraft. The only real unpredictable danger is a total hardware failure, with a proton hitting an electronic component and killing it. But according to Biesecker, this \"is a very remote possibility.\" Global positioning systems are also affected\u2014and will be even more affected tomorrow. Regular humans will not notice this. You will be able to keep using your GPS normally, but people using high precision GPS equipment\u2014like oil drilling, military, engineering and mining operations\u2014will definitely notice the problems. According to Karen Fox at NASA Goddard Space Center, \"NASA alerted operators of their satellites that the CME was coming, so those operators can take whatever shielding precautions they can.\" The biological danger NOAA's scale says that an S3 proton storm may pose danger to passengers in high-flying aircraft at high latitudes, which is why some airplanes below the 65th parallel north are now actually flying at lower altitudes to avoid any kind of radiation nastiness. They also recommend that astronauts to stay home and avoid space walks but\u2014according to Biesecker\u2014this type of storm is \"far below the level needed for the ISS to take any extraordinary protection measures.\" If it's ok for them, you can be sure it's perfectly fine for you and me down here on good old planet Earth. What's happening with the Coronal Mass Ejection The Coronal Mass Ejection is caused"}, {"title": "rpj-common-crawl-2023-06", "text": "telemetry data. Since we are aware of these interferences in advance, engineers on the ground can take them into account and make corrections before firing any commands that may jeopardize the life of the spacecraft. The only real unpredictable danger is a total hardware failure, with a proton hitting an electronic component and killing it. But according to Biesecker, this \"is a very remote possibility.\" Global positioning systems are also affected\u2014and will be even more affected tomorrow. Regular humans will not notice this. You will be able to keep using your GPS normally, but people using high precision GPS equipment\u2014like oil drilling, military, engineering and mining operations\u2014will definitely notice the problems. According to Karen Fox at NASA Goddard Space Center, \"NASA alerted operators of their satellites that the CME was coming, so those operators can take whatever shielding precautions they can.\" The biological danger NOAA's scale says that an S3 proton storm may pose danger to passengers in high-flying aircraft at high latitudes, which is why some airplanes below the 65th parallel north are now actually flying at lower altitudes to avoid any kind of radiation nastiness. They also recommend that astronauts to stay home and avoid space walks but\u2014according to Biesecker\u2014this type of storm is \"far below the level needed for the ISS to take any extraordinary protection measures.\" If it's ok for them, you can be sure it's perfectly fine for you and me down here on good old planet Earth. What's happening with the Coronal Mass Ejection The Coronal Mass Ejection is caused"}, {"title": "rpj-common-crawl-2020-05", "text": "further from charged particle bombardment. But some particles get trapped in these cavities and they become radioactive belts surrounding Earth. Astronauts have to pass through these dangerous belts before they reach deeper space. Galactic Cosmic Radiation (GCR): Outside our solar system ionized atoms traveling at almost light speed pass through space matter, including humans and man-made objects unless they are properly shielded. Solar Particle Events (SPE): Sometimes the Sun flares and ejects copious amounts of highly charged radioactive particles into space. These particles travel so fast they are capable of reaching Earth within ten minutes of a solar or coronal flare event. These are dramatic happenings that temporarily drastically increase radiation exposure. Astronauts traveling through space radiation or living in the ISS have to be protected from space radiation. Radiation exposure causes damage to human cells. There is a scientific formula used to calculate how much radiation exposure an astronaut can expect when working on the ISS. It\u2019s a bit too complicated for the gringa to understand. These calculations are the reason ISS missions have a maximum six month cycle and spacewalks are limited. Exposure is increased during a spacewalk to perform repairs and maintenance. Shielding is preferred to be constructed of materials like polyethylene because it has a high hydrogen content. This kind of material is more effective than metals at reducing the ability of particles to pass through and enter the modules. Astronauts also wear monitors called \u201cdosimeters\u201d that constantly measure the level of radiation damage to the chromosomes in their blood cells. Every"}, {"title": "rpj-common-crawl-2023-06", "text": "the density must very low is simply to consider that the spacecraft is in orbit through the thermosphere: spacecraft do not orbit in atmosphere, or not for very long. The answer to the second question is subtle, and I'm not sure I understand it. I think that David Hammen's answer provides much better information than I could. Thanks for contributing an answer to Space Exploration Stack Exchange! Should we accept questions about information provided by ChatGPT? Would a Europa lander need radiation shielding similar to Juno? If Juno's long orbit means a lower rate of radiation damage, why the planned short orbit? How can SpaceX's Mars spacecraft be protected against solar flares? Can you avoid the costs of cooling superconductors for magnetic shields by separating them from the spacecraft and using shades? When a coronal mass ejection (CME) hits a spacecraft, from which direction will the particles come? How can they be so sure that Dragonfly will \"freeze to death\" as opposed to simply (and eventually) running out of RTG power? (238Pu decay) How much solar radiation hits a spacecraft in transit to Mars?"}, {"title": "rpj-common-crawl-2021-04", "text": "exposed to large doses of radiation from radiotherapy experience cognitive and behavioral changes, and recent studies suggest these risks may occur at lower doses for GCR creating a possible risk for operating a space vehicle. Space environment variables (Ex. microgravity, CO2, lack of sleep, etc.) which produce stress could interact with radiation in a synergistic fashion exacerbating the impacts. With the recent upgrades to the NSRL, NASA is improving its ability to understand the effects of radiation on the body. The most notable upgrades were made to the GCR simulator, which was recently highlighted in ScienceDirect. \u201cThere is ample research on acute effects of radiation exposure but very little on latent effects, and the latter more closely resembles the health effects expected from long duration space flight,\u201d Lisa Carnell, Ph.D., Medical Countermeasure Lead for NASA Space Radiation said. \u201cImagine ion trajectories to be similar to rain; sometimes there is a downpour (solar particle event) and sometimes there a light drizzle or heavy, sparse droplets (similar to galactic cosmic radiation). With the upgrades we can simulate different types of ion rain with multiple types of ions sequentially versus only one type of ion at a time.\u201d The GCR upgrades enable researchers to rapidly switch ion types and energy intensities. To support these improvements, software controls were added to permit smooth movement from target to target. The cooling system in one of the Electron Beam Ion Source, or EBIS magnets was upgraded to handle higher energy currents. In addition, new probes were installed in two of the beamline\u2019s"}, {"title": "rpj-c4", "text": "crew. They did three launches in August and September of 1958, but the scintillator detector on Explorer 4 failed before the third one. The sailors saw the flashes and then some striking auroras as the particles rained down. The particles also bounced around the field lines and came down over the Azores in the north Atlantic, causing more auroras. The satellite really did detect an increase in electron flux up in the Belts, and radio propagation was affected. The news of the test leaked out a year later. Detailed reports were published, and everyone congratulated themselves on an experiment well-done. Christofilos went on to lead an equally grandiose but actually useful project, the gigantic Ground Dipole Antenna for using 80 Hz radio waves to communicate with submarines. York became chancellor of UCSD, and later helped negotiate the Comprehensive Test Ban Treaty. Yet no one seemed to have stopped to think this through. Unless you did a lot more testing, how could you be sure this would have any effect on ICBMs? And how was that supposed to happen when atmospheric testing was both poisoning the planet and illegal? Even if this did work, the Van Allen belts start at about 500 miles up, and ICBMs can easily fly below that. Were they seriously thinking of spending extremely expensive H-bombs and rockets for something that could be dodged with a guidance tweak? And are warheads that enter the atmosphere at several miles per second really going to be bothered by a couple of minutes of radiation exposure?"}, {"title": "rpj-c4", "text": "crew. They did three launches in August and September of 1958, but the scintillator detector on Explorer 4 failed before the third one. The sailors saw the flashes and then some striking auroras as the particles rained down. The particles also bounced around the field lines and came down over the Azores in the north Atlantic, causing more auroras. The satellite really did detect an increase in electron flux up in the Belts, and radio propagation was affected. The news of the test leaked out a year later. Detailed reports were published, and everyone congratulated themselves on an experiment well-done. Christofilos went on to lead an equally grandiose but actually useful project, the gigantic Ground Dipole Antenna for using 80 Hz radio waves to communicate with submarines. York became chancellor of UCSD, and later helped negotiate the Comprehensive Test Ban Treaty. Yet no one seemed to have stopped to think this through. Unless you did a lot more testing, how could you be sure this would have any effect on ICBMs? And how was that supposed to happen when atmospheric testing was both poisoning the planet and illegal? Even if this did work, the Van Allen belts start at about 500 miles up, and ICBMs can easily fly below that. Were they seriously thinking of spending extremely expensive H-bombs and rockets for something that could be dodged with a guidance tweak? And are warheads that enter the atmosphere at several miles per second really going to be bothered by a couple of minutes of radiation exposure?"}, {"title": "rpj-common-crawl-2023-06", "text": "the protection of the magnetosphere and crossing the Van Allen Belts, two regions of trapped high-energy particles at the edges of the magnetosphere, and then enduring constant exposure to ionizing radiation in deep space for the rest of the trip. The astronauts who flew to the moon on the Apollo missions are the only humans who have ever been outside Earth\u2019s protective magnetosphere. Although the Apollo spacecraft offered some radiation shielding, they couldn\u2019t completely protect the astronauts. NASA\u2019s Van Allen Probes orbit through two giant radiation belts surrounding Earth. Their observations help explain how particles in the belts can be sped up to nearly the speed of light. (Credit: NASA) \u201cThe lunar astronauts also experienced a visual phenomenon of light flashes (~17/hour) when the spacecraft was dark, and tests indicated that the flashes were the result of HZE cosmic rays traversing the retina,\u201d wrote Delp and his colleagues. Until recently, though, everyone assumed that the trips to the moon had been too short to expose astronauts to enough ionizing radiation to do lasting damage. However, according to a preliminary study published today in Scientific Reports, that short exposure may have been enough to jeopardize the Apollo astronauts\u2019 long-term cardiac health. Increased Mortality Rate Delp and his colleagues compared the causes of death for 7 Apollo astronauts to those of 35 astronauts who had flown missions in low Earth orbit, along with 35 more who trained but never flew a space mission. Astronauts who had been to low Earth orbit died of cardiovascular disease at about the"}, {"title": "pes2o", "text": "altitudes. Figure 2 shows the focus/subdomains (the types of impacts and their sources) of the Space Radiation and Plasma Effects Working Team. Spacecraft Charging Spacecraft charging (see NASA Handbooks, NASA-HDBK-4002A w/CHANGE 1, NASA-HDBK-4006) remains a serious operational threat for the design and operation of space assets. It usually manifests as surface charging and/or internal charging. When charge is built up either in the outside (surface) material or in the material (internal), an electrostatic discharge (ESD) can occur when the electric field exceeds the breakdown strength of the material. If the discharge occurred at or near a sensitive component, these ESD currents can cause compromised function and/or catastrophic destruction of sensitive electronics, solar array failures, uncommanded change in system states (phantom commands), loss of synchronization in timing circuits, spurious mode switching, power-on resets, erroneous sensor signals, telemetry noise, and/or loss of data. Other concerns with discharges are possible electromagnetic interference and material damage. Electromagnetic interference can produce noise levels in receive bands that exceed the receiver sensitivity, communications issues due to the excess noise, or phantom commands or signals. ESDs can damage mission-critical materials, including thermal control coatings, reentry thermal protection systems, and optical materials such as dielectric coatings and mirror surfaces. The re-attracted photoionized outgassing materials can be deposited as surface contaminants. Surface and internal charging can also compromise science instrument and sensor functionality. The distinction between surface charging and internal charging is that internal charging is caused by energetic particles that can penetrate and deposit charge very close to a victim site (e.g., Garrett, 2016,"}, {"title": "rpj-common-crawl-2020-05", "text": "trapped in these cavities and they become radioactive belts surrounding Earth. Astronauts have to pass through these dangerous belts before they reach deeper space. Galactic Cosmic Radiation (GCR): Outside our solar system ionized atoms traveling at almost light speed pass through space matter, including humans and man-made objects unless they are properly shielded. Solar Particle Events (SPE): Sometimes the Sun flares and ejects copious amounts of highly charged radioactive particles into space. These particles travel so fast they are capable of reaching Earth within ten minutes of a solar or coronal flare event. These are dramatic happenings that temporarily drastically increase radiation exposure. Astronauts traveling through space radiation or living in the ISS have to be protected from space radiation. Radiation exposure causes damage to human cells. There is a scientific formula used to calculate how much radiation exposure an astronaut can expect when working on the ISS. It\u2019s a bit too complicated for the gringa to understand. These calculations are the reason ISS missions have a maximum six month cycle and spacewalks are limited. Exposure is increased during a spacewalk to perform repairs and maintenance. Shielding is preferred to be constructed of materials like polyethylene because it has a high hydrogen content. This kind of material is more effective than metals at reducing the ability of particles to pass through and enter the modules. Astronauts also wear monitors called \u201cdosimeters\u201d that constantly measure the level of radiation damage to the chromosomes in their blood cells. Every single astronaut is a hero. No matter what the"}, {"title": "rpj-common-crawl-2022-05", "text": "exposed to 200 times more radiation as a result of their work than would be experienced by an airline pilot or a radiology nurse. As a result, NASA is constantly monitoring local space weather information. If a burst of space radiation is detected, mission control in Houston, Texas, can instruct astronauts to abort space walks, move to more shielded areas of the orbiting laboratory and even adjust the station\u2019s altitude to minimise any health impacts. Solar flare activity can cause acute radiation exposure effects \u2014 such as changes to the blood, diarrhoea, nausea, and vomiting \u2014 which can be recovered from, and other impacts that are non-reversible and/or fatal. Long-term cosmic ray bombardment is a greater concern. This can increases the risks of cancer, generate cataracts and cause sterility. It can also cause damage to the brain, central nervous system and heart, paving the way for various degenerative diseases. DNA changes from space radiation can even be passed on to subsequent children. dailymailsciencetech The Queen was RIGHT to axe Prince Andrew for the sake of the monarchy, says AN WILSON Low levels of air pollution increases risk of disease, study finds Apple set to add 217 new emoji to iPhones on iOS 14.5 this month Meta teases \u2018Project Cambria\u2019 headset that will bring the firm\u2019s metaverse to life Apple releases iOS 14.4 to fix three flaws that \u2018may have been actively exploited\u2019 by hackers"}, {"title": "rpj-common-crawl-2023-06", "text": "space debris rather than failure of communication electronics. It would be challenging to prove or disprove the possibility of space debris induced vehicle destruction. Or, for that matter, the statistical odds for such an event. I don\u2019t believe space is as empty as we think it is. Space debris may be an insurmountable barrier to space travel. Prime says: Although this research isn\u2019t generally known to the public, it describes, in part, a non-rocket approach to the Magnetic Ion type shield. http://community-2.webtv.net/SkyVessel-1/doc0/ As you can see, there are many more advantages to this approach. dollhopf @ Prime says: ;))) oh my goodness ;))) amusing just another crazy idea would it be useful to upgrade the ISS with a Bamford small-scale magnetosphere generator? The ISS then possibly could orbit earth in a much higher orbit, because the crew\u2019s health would no longer depend on the protecting earth magnetosphere. Thus, the atmospheric drag of low orbit could be avoided. What side effects could such a magnetosphere have to the station\u2019s system? RetardedFishFrog says: They should make a very large solar-powered version of these. Put one at EM L1 and the other at EM L2 to shield a future moon base. Damion says: Wow, this is really amazing! I bet there going to use this for SPACE COMBAT!!!!! charbel says: i got you a tips for spare on energy to the spaceship the atmosfer of mars is big and the thing i wana say is you can get the energi from the atmosfer off mars but its will be"}, {"title": "rpj-common-crawl-2023-06", "text": "space debris rather than failure of communication electronics. It would be challenging to prove or disprove the possibility of space debris induced vehicle destruction. Or, for that matter, the statistical odds for such an event. I don\u2019t believe space is as empty as we think it is. Space debris may be an insurmountable barrier to space travel. Prime says: Although this research isn\u2019t generally known to the public, it describes, in part, a non-rocket approach to the Magnetic Ion type shield. http://community-2.webtv.net/SkyVessel-1/doc0/ As you can see, there are many more advantages to this approach. dollhopf @ Prime says: ;))) oh my goodness ;))) amusing just another crazy idea would it be useful to upgrade the ISS with a Bamford small-scale magnetosphere generator? The ISS then possibly could orbit earth in a much higher orbit, because the crew\u2019s health would no longer depend on the protecting earth magnetosphere. Thus, the atmospheric drag of low orbit could be avoided. What side effects could such a magnetosphere have to the station\u2019s system? RetardedFishFrog says: They should make a very large solar-powered version of these. Put one at EM L1 and the other at EM L2 to shield a future moon base. Damion says: Wow, this is really amazing! I bet there going to use this for SPACE COMBAT!!!!! charbel says: i got you a tips for spare on energy to the spaceship the atmosfer of mars is big and the thing i wana say is you can get the energi from the atmosfer off mars but its will be"}, {"title": "rpj-common-crawl-2019-30", "text": "By the time astronauts reach Mars will they forget why they are there? A recent study argues radiation exposure en route to Mars may cause the mission crew to develop brain damage. \u201cWhat happens to your brain on the way to Mars\u201d, a paper in Science Advance, by a group of radiation researchers, reports memory loss to mice caused by administering very large doses of galactic cosmic ray (GCR)-like high-energy radiation. They contend that long-term galactic cosmic ray exposure leads to dementia-like cognitive impairments, with serious implications for human Mars explorers. The lead author of the study, Charles Limoli of the University of California Irvine, adds in a university press release: The researchers found that exposure to these particles resulted in brain inflammation, which disrupted the transmission of signals among neurons. Imaging revealed how the brain\u2019s communication network was impaired through reductions in the structure of nerve cells called dendrites and spines. Additional synaptic alterations in combination with the structural changes interfered with the capability of nerve cells to efficiently transmit electrochemical signals. Furthermore, these differences were parallel to decreased performance on behavioral tasks designed to test learning and memory. However, Mars mission crusader Robert Zubrin challenges several components of the study in \u201cDebunking the invalid claims of a space radiation paper\u201d in The Space Review. The four-millionfold difference in dose rate between the lab study and spaceflight is of critical importance. It is a well-known finding of both chemical and radiation toxicology that the effects of large doses of toxins delivered suddenly is entirely different"}, {"title": "rpj-c4", "text": "low orbit was due to the Shuttle carrying up massive components to the station. After the Shuttle was retired and no more massive components were scheduled to be delivered, the ISS was given a big boost into a much higher 381 km by 384 km orbit. This means the resupply rockets can carry less station reboost propellant and more cargo payload. If the planet the station orbits has a magnetic field, it probably has a radiation belt. Needless to say this is a very bad place to have your orbit located, unless you don't mind little things like a radiation dosage of 25 Severts per year. And that is for Terra, Jupiter's radiation belts are a thousand times worse. In 1973 Pioneer 11 was surprised by radiation levels around Jupiter ten times greater than NASA had predicted. This is why Pioneer did not send back photos of the moon Io since the radiation belt had fried its imaging photo polarimeter. Work on the Voyager space probe came to a screeching halt as they frantically redesigned it to cope with the radiation, but still be assembled in time for the launch window. Terra's zone of glowing blue death is called the Van Allen radiation belts. The Inner Belt starts at an altitude from 400 km to 1,200 km, depending on latitude, and ends at an altitude of about 6,000 km, with its most lethal area 3,500 km out. The South Atlantic Anomaly can potentially disrupt satellites in polar orbits, but usually does not pose a problem for"}, {"title": "rpj-c4", "text": "low orbit was due to the Shuttle carrying up massive components to the station. After the Shuttle was retired and no more massive components were scheduled to be delivered, the ISS was given a big boost into a much higher 381 km by 384 km orbit. This means the resupply rockets can carry less station reboost propellant and more cargo payload. If the planet the station orbits has a magnetic field, it probably has a radiation belt. Needless to say this is a very bad place to have your orbit located, unless you don't mind little things like a radiation dosage of 25 Severts per year. And that is for Terra, Jupiter's radiation belts are a thousand times worse. In 1973 Pioneer 11 was surprised by radiation levels around Jupiter ten times greater than NASA had predicted. This is why Pioneer did not send back photos of the moon Io since the radiation belt had fried its imaging photo polarimeter. Work on the Voyager space probe came to a screeching halt as they frantically redesigned it to cope with the radiation, but still be assembled in time for the launch window. Terra's zone of glowing blue death is called the Van Allen radiation belts. The Inner Belt starts at an altitude from 400 km to 1,200 km, depending on latitude, and ends at an altitude of about 6,000 km, with its most lethal area 3,500 km out. The South Atlantic Anomaly can potentially disrupt satellites in polar orbits, but usually does not pose a problem for"}, {"title": "rpj-wikipedia", "text": "Space environment is a branch of astronautics, aerospace engineering and space physics that seeks to understand and address conditions existing in space that affect the design and operation of spacecraft. A related subject, space weather, deals with dynamic processes in the solar-terrestrial system that can give rise to effects on spacecraft, but that can also affect the atmosphere, ionosphere and geomagnetic field, giving rise to several other kinds of effects on human technologies. Effects on spacecraft can arise from radiation, space debris and meteoroid impact, upper atmospheric drag and spacecraft electrostatic charging. Radiation in space usually comes from three main sources: The Van Allen radiation belts Solar proton events and solar energetic particles; and Galactic cosmic rays. For long-duration missions, the high doses of radiation can damage electronic components and solar cells. A major concern is also radiation-induced \"single-event effects\" such as single event upset. Crewed missions usually avoid the radiation belts and the International Space Station is at an altitude well below the most severe regions of the radiation belts. During solar energetic events (solar flares and coronal mass ejections) particles can be accelerated to very high energies and can reach the Earth in times as short as 30 minutes (but usually take some hours). These particles are mainly protons and heavier ions that can cause radiation damage, disruption to logic circuits, and even hazards to astronauts. Crewed missions to return to the Moon or to travel to Mars will have to deal with the major problems presented by solar particle events to radiation safety,"}, {"title": "rpj-c4", "text": "Updated | NASA space probes have discovered an artificial barrier around Earth created through human activity\u2014showing we are not only responsible for shaping the environment on land, but that we are now having an impact on space too. The barrier, which comes and goes, is the result of very low frequency radio communications interacting with particles in space, which results in a sort of shield protecting Earth from high energy radiation in space. This, scientists say, is potentially very good news, as we could use the barrier to protect Earth from extreme space weather resulting from events like coronal mass ejections\u2014huge explosions on the sun, where plasmas and magnetic field are ejected from its corona, the outermost part of its atmosphere. These ejections can result in geomagnetic storms, which have the potential to knock out communication satellites and power grids. NASA scientists detected the barrier with the Van Allen Probes, which are designed to study electrons and ions in our new-space environment. Normally, very low frequency (VLF) signals from radio telescopes are transmitted from the ground and are used to communicate with submarines, deep below the surface of the ocean. However, they also end up going into the atmosphere. The result is a massive \u201cVLF bubble\u201d enshrouding Earth, NASA said. The bubble can be seen high above Earth\u2019s surface in the space environment surrounding it. Further analysis showed the bubble extends almost exactly to the inner edge of Van Allen radiation belts. These three belts are zones of energetic charged particles that come from solar wind\u2014the"}, {"title": "rpj-common-crawl-2022-05", "text": "decrease effect during coronal mass ejections can temporarily lower the flux of galactic cosmic rays, the short duration of the effect (1\u20133 days) and the approximately 1% chance that a CME generates a dangerous solar proton event limits the utility of timing missions to coincide with CMEs. Orbital selection Radiation dosage from the Earth's radiation belts is typically mitigated by selecting orbits that avoid the belts or pass through them relatively quickly. For example, a low Earth orbit, with low inclination, will generally be below the inner belt. The orbits of the Earth-Moon system Lagrange points L2 - L5 take them out of the protection of the Earth's magnetosphere for approximately two-thirds of the time.[citation needed] The orbits of Earth-Sun system Lagrange Points L1 and L3 - L5 are always outside the protection of the Earth's magnetosphere. Space portal Effect of spaceflight on the human body Lagrange point colonization List of microorganisms tested in outer space NASA Space Radiation Laboratory Proton: Human exposure Solar flare: Hazards Solar proton event Van Allen belt Central nervous system effects from radiation exposure during spaceflight ^ a b Schimmerling, Walter. \"The Space Radiation Environment: An Introduction\" (PDF). The Health Risks of Extraterrestrial Environments. Universities Space Research Association Division of Space Life Sciences. Archived from the original (PDF) on 26 April 2012. Retrieved 5 December 2011. ^ Chang, Kenneth (27 January 2014). \"Beings Not Made for Space\". New York Times. Retrieved 27 January 2014. ^ a b c d Fong, MD, Kevin (12 February 2014). \"The Strange, Deadly Effects Mars Would"}, {"title": "rpj-common-crawl-2020-05", "text": "recent studies suggest these risks may occur at lower doses for GCR creating a possible risk for operating a space vehicle. Space environment variables (Ex. microgravity, CO2, lack of sleep, etc.) which produce stress could interact with radiation in a synergistic fashion exacerbating the impacts. With the recent upgrades to the NSRL, NASA is improving its ability to understand the effects of radiation on the body. The most notable upgrades were made to the GCR simulator, which was recently highlighted in ScienceDirect. \u201cThere is ample research on acute effects of radiation exposure but very little on latent effects, and the latter more closely resembles the health effects expected from long duration space flight,\u201d NASA Space Radiation Medical Countermeasure Lead Lisa Carnell, Ph.D., said. \u201cImagine ion trajectories to be similar to rain; sometimes there is a downpour (solar particle event) and sometimes there is a light drizzle or heavy, sparse droplets (similar to galactic cosmic radiation). With the upgrades we can simulate different types of ion rain with multiple types of ions sequentially versus only one type of ion at a time.\u201d The GCR upgrades enable researchers to rapidly switch ion types and energy intensities. To support these improvements, software controls were added to permit smooth movement from target to target. The cooling system in one of the Electron Beam Ion Source, or EBIS magnets was upgraded to handle higher energy currents. In addition, new probes were installed in two of the beamline\u2019s magnets to speed up setting changes. Before these upgrades, switching radiation beams was not"}, {"title": "rpj-common-crawl-2021-04", "text": "charged particles and magnetic fields in cislunar space\". Explorer 21 \"Studied magnetic fields and their interactions with solar plasma, solar wind, cosmic rays, intensities and distribution of space radiation.\" Explorer 26 \"Studied how high-energy particles are injected, trapped, and lost in the Van Allen Belt\". The OGO satellites also studied the \"magnetosphere, and the space between the Earth and Moon\". And Pioneer 4 \"sent back excellent data about the Van Allen Belts\". 2. If it were true, like the debunkers maintain, that \u201ca lunar mission entails a total of radiation equivalent to an x-ray\u201d, why does NASA describe today the Van Allen belts as \u201can area of dangerous radiation\u201d? The NASA engineer, Kelly Smith, who says the Van Allen belts are dangerous in the clip starting at 1:09:44 actually explains the reason. He says \"radiation like this could harm the guidance systems, onboard computers or other electronics on Orion\". Smith does not say that the radiation is a danger to humans. NASA scientist David Sibeck gives more detail here, stating that \"Our current technology is ever more susceptible to these accelerated particles because even a single hit from a particle can upset our ever smaller instruments and electronics.\" It is the threat to sensitive electronics, not to people, which is the problem. 3. If it\u2019s true, like NASA maintains that during the trip to the moon 50 years ago \u201cthe astronaut doses were \u2018NEGLIGIBLE\u2019, why does NASA state today, in regards to the Van Allen belts, that \u201cwe must solve these challenges before we send people"}, {"title": "rpj-c4", "text": "the movement of the particles can play a critical role in protecting our satellite systems as they pass through the Van Allen Belts \u2013 and its far reaching radiation extensions. As we know, the Sun produces copious amounts of charged particles in the stellar winds and \u2013 at times \u2013 can blast in our direction during coronal mass ejections (CMEs) or shock fronts caused by fast solar winds overtaking slower winds called co-rotating interaction regions -CIRs). When directed our way, they disrupt Earth\u2019s magnetosphere in an event known as a geomagnetic storm. During a \u201cstorm\u201d the radiation belt particles have been known to decrease and empty the belt within hours\u2026 a depletion which can last for days. While this is documented, we simply don\u2019t know the cause, much less what causes the particles to leave! In order to get a firmer grip on what\u2019s happening requires multiple spacecraft measuring the changes at multiple points at the same time. This allows scientists to determine if an action that happens in one place affects another elsewhere. While we look forward to the Radiation Belt Storm Probes (RBSP) mission results, it isn\u2019t scheduled to launch until August 2012. In the interim, researchers have combined data from two widely separated spacecraft to get an early determination of what happens during a loss event. So where did this early support information come from? Fortunately the team was able to observe a small geomagnetic storm which occurred on January 6, 2011. By engaging the the three NASA THEMIS (Time History of Events"}, {"title": "rpj-common-crawl-2023-06", "text": "can be used to distinguish the ions escaping through the polar plume and those through the tail region. The contribution of the polar plume ion escape to the total escape rate will also be discussed. An all-woman crew to Mars: a radical proposal Landis, G. A. It is logical to propose that if a human mission is flown to Mars, it should be composed of an entirely female crew. On the average, women have lower mass and take less volume than males, and use proportionately less consumables. In addition, sociological research indicates that a female crew may have a preferable interpersonal dynamic, and be likely to choose non-confrontational approaches to solve interpersonal problems. Low Loss Tapered Fiber Waveguide Modulator for Crew Cognitive State Monitoring (CSM) National Aeronautics and Space Administration \u00e2\u20ac\u201d Many crew-related errors in aviation and astronautics are caused by hazardous cognitive states including overstress, disengagement, high fatigue and ineffective crew... Management of cosmic radiation exposure for aircraft crew in Japan Yasuda, H.; Sato, T.; Yonehara, H.; Kosako, T.; Fujitaka, K.; Sasaki, Y. The International Commission on Radiological Protection has recommended that cosmic radiation exposure of crew in commercial jet aircraft be considered as occupational exposure. In Japan, the Radiation Council of the government has established a guideline that requests domestic airlines to voluntarily keep the effective dose of cosmic radiation for aircraft crew below 5 mSv y -1 . The guideline also gives some advice and policies regarding the method of cosmic radiation dosimetry, the necessity of explanation and education about this issue, a"}, {"title": "rpj-c4", "text": "and Macroscale Interactions during Substorms) spacecraft, two GOES (Geostationary Operational Environment Satellite), operated by the National Oceanic and Atmospheric Administration (NOAA), and six POES (Polar Operational Environmental Satellite), run jointly by NOAA, and the European Organization for the Exploitation of Meteorological Satellites (EUMETSAT) spacecraft, they were able to catch electrons moving close to the speed of light as they dropped out of the belt for over six hours. Orbiting Earth\u2019s equatorial zones, the THEMIS and GOES spacecraft are just part of the team. The POES spacecraft passes through the radiation belts several times a day as it cruises at a lower altitude and near the poles. By combining data, the scientists were able to take several observational vantage points and proved \u2013 without a doubt \u2013 that the particles left the belt by way of space and did not return to Earth. During this time, the spacecraft also observed a low-density area of the Van Allen belts which appeared along the periphery and traveled inward. This appeared to be an indication the particles were outward bound. If this was a normal occurrence, it stands to reason that a type of \u201cwave\u201d must assist the motion, allowing the particles to reach the outer escape boundary. Discovering just what exactly triggers this escape mechanism will be one of the jobs for RBSP, says David Sibeck at NASA\u2019s Goddard Space Flight Center in Greenbelt, Md., who is NASA\u2019s mission scientist for RBSP and project scientist for THEMIS. Original Story Source: NASA THEMIS News Release."}, {"title": "rpj-common-crawl-2021-04", "text": "stored in a computer memory, causing malfunctions and restarts, or can damage permanently the sensors of a still camera or TV camera, as reported by astronaut Don Pettit: Free from the protection offered by the atmosphere, cosmic rays bombard us within Space Station, penetrating the hull almost as if it was not there. They zap everything inside, causing such mischief as locking up our laptop computers and knocking pixels out of whack in our cameras. The computers recover with a reboot; the cameras suffer permanent damage. After about a year, the images they produce look like they are covered with electronic snow. James Van Allen himself replies In February 2003, a member of the Cosmoquest forum reported that he had written to James Van Allen asking for information on the effects that belt radiation might have had on astronauts and that he had received the following answer: Dear Mr. Lambert, In reply to your e-mail, I send you the following copy of a response that I wrote to another inquiry about 2 months ago -- - The radiation belts of the Earth do, indeed, pose important constraints on the safety of human space flight. - The very energetic (tens to hundreds of MeV) protons in the inner radiation belt are the most dangerous and most difficult to shield against. Specifically, prolonged flights (i.e., ones of many months' duration) of humans or other animals in orbits about the Earth must be conducted at altitudes less than about 250 miles in order to avoid significant radiation exposure. -"}, {"title": "rpj-common-crawl-2023-06", "text": "as a natural radiation shield. (Credit: NASA) There are many astronauts experiences that are well understood. Everyone knows about \u201cweightlessness,\u201d or floating in a microgravity environment, (which is actually perpetual free-fall around the Earth, but that\u2019s a technicality for another post.) Everyone has heard about the problem of space sickness that hits some astronauts and not others. Disruptions in our sense of orientation (i.e., up and down,) are likely to blame. However, what many do not know about are the strange \u201cflashes\u201d of light astronauts see while in space and what it might mean for their future heath. With commercial space travel on the horizon and space tourists and commercial astronauts lining up to take part, the realities of space travel must be explored and disclosed. The Earth\u2019s atmosphere normally acts as a shielding layer, protecting the surface from cosmic and solar radiation. However, when we travel beyond the atmosphere, (i.e., space,) we increase our exposure to such radiation. In truth, these \u201cflashes\u201d reported by astronauts are actually electrochemical reactions occurring in astronauts\u2019 eyes as a result of high-energy radiation striking their retinas. A radiated particle passes through the lens of the eye, strikes the retina, and fakes out the optic nerve, which in turn interprets the signal as light. So, aside from being strange, what are the potential effects of these flashes? There appears to be a relationship between this radiation exposure and later development of cataracts, a disease characterized by a clouding of the lens of the eye. According to a 2001 study, a"}, {"title": "rpj-common-crawl-2023-06", "text": "as a natural radiation shield. (Credit: NASA) There are many astronauts experiences that are well understood. Everyone knows about \u201cweightlessness,\u201d or floating in a microgravity environment, (which is actually perpetual free-fall around the Earth, but that\u2019s a technicality for another post.) Everyone has heard about the problem of space sickness that hits some astronauts and not others. Disruptions in our sense of orientation (i.e., up and down,) are likely to blame. However, what many do not know about are the strange \u201cflashes\u201d of light astronauts see while in space and what it might mean for their future heath. With commercial space travel on the horizon and space tourists and commercial astronauts lining up to take part, the realities of space travel must be explored and disclosed. The Earth\u2019s atmosphere normally acts as a shielding layer, protecting the surface from cosmic and solar radiation. However, when we travel beyond the atmosphere, (i.e., space,) we increase our exposure to such radiation. In truth, these \u201cflashes\u201d reported by astronauts are actually electrochemical reactions occurring in astronauts\u2019 eyes as a result of high-energy radiation striking their retinas. A radiated particle passes through the lens of the eye, strikes the retina, and fakes out the optic nerve, which in turn interprets the signal as light. So, aside from being strange, what are the potential effects of these flashes? There appears to be a relationship between this radiation exposure and later development of cataracts, a disease characterized by a clouding of the lens of the eye. According to a 2001 study, a"}, {"title": "rpj-common-crawl-2022-05", "text": "events,\u201d said Jeff Newmark, interim director of the Heliophysics Division at NASA Headquarters in Washington. \u201cEruptive solar flares, coronal mass ejections and geomagnetic storms all involve the release, through reconnection, of energy stored in magnetic fields. Space weather events can affect modern technological systems such as communications networks, GPS navigation and electrical power grids.\u201d See our earlier MMS coverage. And see our Atlas archive for further information. If you will be away from your computer but would like to receive occasional status checks, sign up for our Twitter feed to get text message updates sent to your cellphone. U.S. readers can also sign up from their phone by texting \u201cfollow spaceflightnow\u201d to 40404. (Standard text messaging charges apply.) And check out Spaceflight Now\u2019s Facebook page! Atlas 5 rocket begins arriving in Florida for commercial crew test flight New Horizons phones home, confirms successful flyby SpaceX poised to launch planet-hunter"}, {"title": "bm25", "text": "solar flares, and cosmic rays from the wider galaxy and beyond, from reaching the Earth. Even though it does a good job of protecting us, the magnetosphere isn't completely benign. It is home to the dangerous radiation belts, regions of space filled with highly energetic protons and electrons that are harmful to astronauts and can damage spacecraft. The radiation belts are much more dangerous in the hours and days after the magnetosphere has been hit by a coronal mass ejection or exposed to particularly strong solar wind. The orbit of the GPS constellation and Geosynchronous orbit, the location of the vast majority of communications satelites, are both within the outer radiation belt which makes them vulnerable during some space weather events. Space Weather: Effects on the ground Space Weather and the dynamics in the magnetosphere can also effect the surface of the Earth and our atmosphere. During space weather events there is a higher than usual flux of charged particles impacting the upper atmosphere. This can subtly change the conditions in the ionosphere and interfere with radio and satellite comunications. These increased particle fluxes are strongest at the poles so can also result in diversion of transpolar flights. Space weather events can also interfere with power grids. The interaction between the solar wind and the Earth's magnetosphere can make the Earth's magnetic field oscillate. Oscillating magnetic fields can generate electric currents, which in the case of Earth's magnetic field can then flow in power grids. If this happens without warning, the extra current can sometimes overload"}, {"title": "bm25", "text": "shortwave radio communications, which were being used by amateurs and professionals in emergency response efforts, although it does not detail how emergency efforts may have been affected by the radio blackout. \u201cSafeguards put in place to prevent dangerous disruption to GPS from solar events worked,\u201d said Mike Hapgood, head of space weather at Rutherford Appleton Laboratory in the United Kingdom, and a scientist not connected to the new study. \u201cIn many ways, we were ready. Some things that could have caused big problems didn\u2019t, but shortwave radio is always tricky to use during solar events. But good radio operators are aware of the events and will work hard to overcome problems.\u201d \u201cIt\u2019s the Sun reminding us that it\u2019s there,\u201d Hapgood added. \u201cThe Sun\u2019s been very quiet for the last 10 years. It reminds people not to be complacent.\u201d Unexpected space weather The 2017 flares were the largest since 2005 and the best documented solar storm to date, observed from a fleet of spacecraft between the Earth and the Sun, in Earth\u2019s orbit, on Earth and Mars. Solar flares release bursts of X-rays from the Sun that travel outwards in all directions at the speed of light. Strong flares can disrupt radio and aviation communications. Space weather forecasters have only minutes to broadcast warnings to spacecraft, aviation and other administrators before affects are felt on Earth. X-rays from solar flares interact with Earth\u2019s atmosphere 50-1000 kilometers (30-600 miles) above the Earth, in a region called the ionosphere. Shortwave radio communication works by bouncing signals off the ionosphere"}, {"title": "bm25", "text": "this website includes a report of radiation levels in the atmosphere at aviation altitudes and higher in the stratosphere. In the following chart, \u201cdose rates are expressed as multiples of sea level. For instance, we see that boarding a plane that flies at 25,000 feet exposes passengers to dose rates ~10x higher than sea level. At 40,000 feet, the multiplier is closer to 50x.\u201d Source: spaceweather.com You\u2019ll also find a report of recent and upcoming near-Earth asteroids on the spaceweather.com website. This definitely broadens the meaning of \u201cspace weather.\u201d As you can seen the in the following table, no close encounters are predicted over the next two months. In summary, the effects of a solar storm may include: Interference with or damage to spacecraft electronics: induced currents and/or energetic particles may have temporary or permanent effects on satellite systems Navigation satellite (GPS, GLONASS and Galileo) UHF / SHF signal scintillation (interference) Increased drag on low Earth orbiting satellites: During storms, currents and energetic particles in the ionosphere add energy in the form of heat that can increase the density of the upper atmosphere, causing extra drag on satellites in low-earth orbit High-frequency (HF) radio communications and low-frequency (LF) radio navigation system interference or signal blackout Geomagnetically induced currents (GICs) in long conductors can trip protective devices and may damage associated hardware and control equipment in electric power transmission and distribution systems, pipelines, and other cable systems on land or undersea. Higher radiation levels experienced by crew & passengers flying at high latitudes in high-altitude aircraft or"}, {"title": "bm25", "text": "injuries Asthenization Ebullism Illness and injuries during spaceflight Medical treatment during spaceflight Space adaptation syndrome Space and survival Spaceflight osteopenia Aerospace Medical Association National Space Biomedical Research Institute Rubicon Foundation Space Nursing Society Adverse health effects from lunar dust exposure Cardiac rhythm problems during space flight Effects of sleep deprivation in space Epidemiology data for low-linear energy transfer radiation Sleep in space Health threat from cosmic rays Intervertebral disc damage and spaceflight Psychological and sociological effects of spaceflight Radiobiology evidence for protons and HZE nuclei Reduced muscle mass, strength and performance in space Renal stone formation in space Spaceflight radiation carcinogenesis Team composition and cohesion in spaceflight missions Visual impairment due to intracranial pressure Astrodynamics Asian Space Race Space launch Space law Outer Space Treaty Rescue Agreement Space Liability Convention Registration Convention Moon Treaty Space command Militarisation of space Private spaceflight Imagery and mapping Weather and environment monitoring Communications satellite Commercial use of space Space launch market competition Space architecture Life-support system Animals in space Extravehicular activity Overview effect Space toilet Space colonization Space diving Voskhod Apollo\u2013Soyuz Shuttle\u2013Mir Shenzhou Tiangong Space psychology Psychological and sociological effects Space capsule Orbital module Reentry capsule Robotic spacecraft Self-replicating spacecraft Space telescope Spacecraft propulsion Rocket engine Electric propulsion Solar sail Gravity assist Sub-orbital Geosynchronous Direct ascent Expendable and reusable launch systems Non-rocket spacelaunch Ground segment Mission control center WikiProject Radiation health effects Spaceflight health effects"}, {"title": "bm25", "text": "on the Sun-Earth line, 1.5 million km from the Earth. Gravitational stability in this region results in a stable orbit. Magnetogram an image displaying the strength and location of magnetic field regions on the sun. Image: Courtesy of NASA/SDO and the AIA, EVE, and HMI science teams. MOSWOC Met Office Space Weather Operations Centre. National Oceanic and Atmospheric Administration. bright and hot patches in the Sun's chromosphere. Plage are associated with concentrations of magnetic fields and sources of strong ultraviolet radiation. a super-heated, ionised gas of charged particles, accounting for 99% of all visible matter in the Universe. a positively charged subatomic particle. Radio blackout during a large space weather event, the ionosphere may start to absorb HF radiation instead of reflecting it. This causes problems with communication systems. low energy electromagnetic radiations, used for long distance communication. Solar and Heliospheric Observatory (SOHO) a space weather spacecraft launched in 1995, orbiting at L1. Its objective is to measure magnetic field regions in the chromosphere and corona, investigating the emission of solar wind. Solar cycle the 11-year periodic change in the sun\u2019s activity, including changes in the levels of radiation and solar wind emitted. Solar Dynamics Observatory (SDO) a space weather spacecraft launched in 2010, orbiting at an inclined geosynchronous orbit. Its objective is to image the Sun across different wavelengths to detect features appearing at varying depths of the Sun\u2019s surface and investigate the causes of solar variability. the sudden release of magnetic energy in the form of electromagnetic radiation, originating from the sun\u2019s atmosphere. Solar"}], "hoverinfo": "text"}, {"x": [-0.08369024097919464, -0.1247539222240448, -0.15017563104629517, -0.040144264698028564, -0.18323615193367004, -0.1114773377776146, -0.16943930089473724, -0.16943930089473724, -0.09859579056501389, -0.11110853403806686, -0.16554880142211914, -0.0913873240351677, -0.08897548913955688, -0.1691862940788269, -0.053259849548339844, -0.0772792175412178, -0.21356576681137085, -0.05471821501851082, -0.08491284400224686, -0.12377180904150009, -0.12844930589199066, -0.1974126100540161, -0.08686594665050507, -0.09280019998550415, -0.24210390448570251, -0.15017548203468323, -0.14450906217098236, -0.21356576681137085, -0.10899566859006882, -0.17277389764785767, -0.1691862940788269, -0.0772792175412178, -0.16076962649822235, -0.19498637318611145, -0.10422048717737198, -0.18684113025665283, -0.07856239378452301, -0.18739764392375946, -0.11192648112773895, -0.0658835768699646, -0.04113012179732323, -0.17578424513339996, -0.2128644734621048, -0.11010745912790298, -0.1967979371547699, -0.2100418210029602, -0.11773530393838882, -0.20220226049423218, -0.20220226049423218, -0.1847543865442276, -0.18209657073020935, -0.18209657073020935, -0.13231277465820312, -0.19295084476470947, -0.23077555000782013, -0.14450907707214355, -0.13156846165657043, -0.0517553947865963, -0.2291029691696167, -0.08919240534305573, -0.09317106753587723, -0.12037165462970734, -0.04724539816379547, -0.06285332888364792, -0.05171239748597145, -0.11773520708084106, -0.15494994819164276, -0.08959019929170609, -0.051329102367162704], "y": [0.15780474245548248, 0.1538589596748352, 0.1605263352394104, 0.15987002849578857, 0.15343371033668518, 0.10800430178642273, 0.03700653463602066, 0.03700653463602066, 0.2238437831401825, 0.1431589424610138, 0.08291652053594589, 0.1934840977191925, 0.0734819769859314, 0.022703349590301514, 0.03474913164973259, 0.15597599744796753, 0.1532316952943802, 0.09767301380634308, 0.12954950332641602, 0.020511837676167488, 0.10062874853610992, 0.03883266821503639, 0.05897834151983261, 0.09185399860143661, 0.14955058693885803, 0.16052594780921936, 0.16941936314105988, 0.1532316952943802, 0.03985889256000519, 0.099108025431633, 0.022703349590301514, 0.15597599744796753, 0.07091465592384338, 0.10295902192592621, 0.03271668776869774, 0.13021713495254517, 0.09136755764484406, 0.04139086231589317, 0.11882075667381287, 0.0857817530632019, 0.11581926792860031, 0.16238239407539368, 0.0849369466304779, 0.06252270936965942, 0.14554424583911896, 0.11813455075025558, 0.14662230014801025, 0.12105340510606766, 0.12105341255664825, 0.07799413055181503, 0.13340207934379578, 0.13340207934379578, 0.03255031630396843, 0.07050566375255585, 0.029020274057984352, 0.16941937804222107, 0.13367515802383423, 0.05349477380514145, 0.11015474051237106, 0.11808186769485474, 0.01593385450541973, 0.10345283150672913, 0.05874384939670563, 0.07547429949045181, 0.11808042228221893, 0.14662206172943115, 0.07733701914548874, 0.1508529633283615, 0.13149002194404602], "mode": "markers", "name": "Cluster 2", "marker": {"size": 8, "color": "rgb(190,186,218)"}, "text": ["Document 2", "Document 15", "Document 74", "Document 86", "Document 92", "Document 97", "Document 119", "Document 120", "Document 130", "Document 132", "Document 148", "Document 152", "Document 210", "Document 242", "Document 312", "Document 315", "Document 352", "Document 364", "Document 394", "Document 434", "Document 435", "Document 438", "Document 473", "Document 474", "Document 484", "Document 583", "Document 586", "Document 605", "Document 680", "Document 686", "Document 733", "Document 762", "Document 796", "Document 812", "Document 828", "Document 834", "Document 846", "Document 855", "Document 859", "Document 878", "Document 879", "Document 885", "Document 907", "Document 911", "Document 913", "Document 932", "Document 950", "Document 961", "Document 962", "Document 996", "Document 999", "Document 1001", "Document 1028", "Document 1050", "Document 1109", "Document 1111", "Document 1124", "Document 1130", "Document 1139", "Document 1184", "Document 1188", "Document 1223", "Document 1227", "Document 1241", "Document 1281", "Document 1365", "Document 1367", "Document 1379", "Document 1456"], "customdata": [{"title": "rpj-common-crawl-2021-04", "text": "converting its kinetic energy to thermal energy. This is the reason engineers pay special attention to deal with this heat and design a \u201cthermal protection system\u201d. There have been accidents in the past which have caused tremendous damage and loss of human life2. Artist\u2019s concept depicting the Apollo Command Module (CM) re-entering Earth\u2019s atmosphere after returning from a lunar landing mission (1968). Image was created by North American Rockwell for NASA. Another interesting effect of these physical phenomena is that because of the ionised state of air around the spacecraft during re-entry, the communication with the spacecraft does not work for these few minutes. This is termed as the \u201cre-entry blackout\u201d. It happens because the ionised air molecules interfere with the radio waves which we use to communicate with spacecraft. These moments of complete radio silence are therefore spent worrying and hoping that everything goes according to plan. Brief history of re-entry thermal protection The earliest techniques for re-entry, used during the Apollo era, were more rudimentary. The idea of adding more material to absorb the heat generated was one such example. This meant more weight had to be carried to space and it certainly was one of the expensive implementations. The Apollo heat shield was the beginning of a long race for a safer, cheaper, and more convenient thermal protection system. One of the next big programs by NASA, the space shuttle was a brilliant spacecraft primarily because it was reusable. For thermal protection, different types of special insulation tiles were used. These could be"}, {"title": "rpj-common-crawl-2021-04", "text": "reentry into Earth\u2019s atmosphere."}, {"title": "rpj-common-crawl-2019-30", "text": "RoePhilip Roe The spacecraft taking off is already outside the stratosphere when it has the speed that re-entry spacecraft posses when they enter the stratosphere. The stratosphere only extends for about 100 miles above sea level. Since a rocket takes off vertically it will clear the stratosphere in less than 8 minutes and way before it has the speed to cause any appreciable friction in said part of atmosphere. The re-entry spacecraft, on the other hand, is using the atmosphere to slow down from orbital velocity. It needs to slow from 8 to 10 km/sec to a much slower speed in which to either deploy parachute or land on an extended runway. This is a very significant reduction in speed and the friction in the atmosphere is what accomplishes this reduction. Since friction causes heat and it will have to spend considerable time in atmosphere to work off the speed, an evaporative tile heat shield is necessary. 0tyranny 0poverty0tyranny 0poverty Not the answer you're looking for? Browse other questions tagged temperature acceleration drag rocket-science space-mission or ask your own question. Temperature of a black-body in LEO on the dark side of the Earth Does the metal foam \u201cwhiffleball\u201d orbital reentry idea make any sense? Orbital mechanics and rocketry: Is it ever a good idea to intentionally lower periapsis? What exactly is \u201cpressure\u201d, and what's its relation to force? Non-Constant Acceleration due to Gravity Why is specific impulse measured in seconds? What's the difference between proper acceleration and coordinate acceleration? Projectile Path Farther Away From Earth How"}, {"title": "rpj-common-crawl-2023-06", "text": "Image: NASA Goddard, 2001 TRMM Workshop The onset of re-entry usually occurs at an altitude of 120 to 100 Kilometers when the spacecraft enters the dense atmosphere, initially not slowing down at a fast rate yet but already interacting with plenty of molecules in the upper reaches of the atmosphere. Given the high speed of the object, traveling at 7.7 Kilometers per second, air in front of the craft is compressed creating a shock wave layer in which some of the molecules are separated into ions, creating the typical visible plasma layer that can be present even minutes before disintegration starts. The Entry Point, as defined by USSTRATCOM and represented in all their data, refers to the spacecraft passing 80 Kilometers in altitude where drag builds up to a destructive force, triggering the onset of the disintegration of the spacecraft structure. The shock wave layer forming just in front of the spacecraft and any separated components leads to considerable heating that causes the incineration of the majority of the spacecraft structure. The mechanical deceleration experienced during re-entry can be up to 20Gs further crushing the structural components and causing the break-up of the spacecraft. The mechanical energy of a re-entering satellite is ~3.2 x 10^7 J/kg which would be sufficient to easily vaporize the entire satellite if all of this energy were converted into heat entirely absorbed by the satellite structure. However, only a fraction of a satellite\u2019s total energy is converted into heat absorbed by its body and depends on a number of factors such"}, {"title": "rpj-common-crawl-2019-30", "text": "abomination that doesn't present a smooth face to the airstream (unfolding is only effective at the level of individual parts. Combine that with needing a large wheelbase to make a reasonably stable rover on low-g worlds and you can end up with rovers you can't get in a fairing) you need to go farther out before you turn. Loren PechtelLoren Pechtel $\\begingroup$ Rather useful i must admit $\\endgroup$ \u2013 QuIcKmAtHs Jan 1 '18 at 12:39 Spacecraft do indeed heat up as they leave the atmosphere. They suffer aerodynamic heating just like everything else. However, there is a major different: direction. As you are accelerating upwards, you are traveling through thinner and thinner atmosphere, faster and faster. These partially cancel each other out, keeping your heating reasonable. On the way down, you are traveling into thicker and thicker atmosphere, and must dissipate the heat as you go. If you were, say, fired from a railgun, you'd experience the greatest heating at the start, where you are going very fast at low altitudes (thick atmosphere). If you feel the reentry should be more symmetric with the launch in terms of heating, consider this: on the bottom of the rocket being launched is a great big ball of angry fire that is at least as hot as the reentry. Cort AmmonCort Ammon When an object orbiting the earth enters the descending path of re-entry it has huge speed, hence huge kinetic energy and it also has potential energy of approximately m.g.h. Because 100 km is a fraction of 6.7"}, {"title": "rpj-common-crawl-2023-06", "text": "interacting with plenty of molecules that are broken up into atoms and ions leading to plasma forming around the spacecraft which would normally become self-luminous around 104 Kilometers in altitude. As the spacecraft re-enters, heat starts building on the vehicle and aerodynamic forces occurring at the high entry velocity cause the light propellant tank structures to break up soon into the entry process. Beak-up and disintegration of the vehicle usually occurs at around 80 Kilometers. Most components of the disintegrating spacecraft burn up harmlessly in the atmosphere and never reach the ground, especially for rocket bodies that consist for a large part of thin metal that forms the propellant tanks. However, dense components such as pressurant tanks and engine components can survive re-entry and reach the ground. The third stage of the Soyuz is 2.66 meters in diameter and 6.74 meters long with an empty mass of 2,410 Kilograms featuring a single RD-0110 engine with four chambers. During the ascent, the stage provided a thrust of 30 metric ton force over the course of a 4-minute burn to push its payload into orbit. The Joint Space Operations Center monitors the re-entry of objects through the use of ground and space-based sensors that can detect the infrared signature of re-entering objects, making it possible to precisely determine the timing and location of orbital decay \u2013 at least for sizeable objects like the Soyuz third stage. Space Surveillance Data places re-entry (=the object passing 80km in altitude) at 20:29 UTC on December 17 +/-1 Minute. The location of"}, {"title": "rpj-common-crawl-2020-05", "text": "antennas for ground communication I would guess that the shroud that covers the capsule during the boost phase only partially separated or, during separation, destroyed the antennas. The spacecraft is reported to be in a 2-3 RPM spin, not a roll. Stopping this would be beyond the capabilities of any thrusters currently available to the crew of ISS, including R-2. Safety wise, it\u2019s WAY too much of an unacceptable risk. It never made the ISS\u2019 orbit, anyway, which puts it out of reach of the crew, any way. EULER says: Con lo sucedido y en vista de la enorme importancia que requiere dia a dia la exploraci\u00f3n del universo, es hora de iniciar el dise\u00f1o de un remolque tipo universal, para recuperaci\u00f3n de naves espaciales que presenten fallas de control en sus misiones. Dr. Bees says: @Carol Manka: Without any kind of propulsive control, no. The best that can be done is to track the vehicle and provide warnings to those along the projected reentry path. But considering that the earth\u2019s surface is 3/4 water, most likely that\u2019s where it will end up. Even if it does come in over land, most likely it will not be a serious threat. The majority of the earth\u2019s land area has a population density of less than 25/km\u00b2, with the main exceptions being eastern China, Japan, India, northwestern Europe, the eastern US, central Mexico, and Africa\u2019s Gold Coast. The rest of the world is just too sparsely populated for it to be of great concern. Consider the breakup of"}, {"title": "rpj-common-crawl-2020-05", "text": "antennas for ground communication I would guess that the shroud that covers the capsule during the boost phase only partially separated or, during separation, destroyed the antennas. The spacecraft is reported to be in a 2-3 RPM spin, not a roll. Stopping this would be beyond the capabilities of any thrusters currently available to the crew of ISS, including R-2. Safety wise, it\u2019s WAY too much of an unacceptable risk. It never made the ISS\u2019 orbit, anyway, which puts it out of reach of the crew, any way. EULER says: Con lo sucedido y en vista de la enorme importancia que requiere dia a dia la exploraci\u00f3n del universo, es hora de iniciar el dise\u00f1o de un remolque tipo universal, para recuperaci\u00f3n de naves espaciales que presenten fallas de control en sus misiones. Dr. Bees says: @Carol Manka: Without any kind of propulsive control, no. The best that can be done is to track the vehicle and provide warnings to those along the projected reentry path. But considering that the earth\u2019s surface is 3/4 water, most likely that\u2019s where it will end up. Even if it does come in over land, most likely it will not be a serious threat. The majority of the earth\u2019s land area has a population density of less than 25/km\u00b2, with the main exceptions being eastern China, Japan, India, northwestern Europe, the eastern US, central Mexico, and Africa\u2019s Gold Coast. The rest of the world is just too sparsely populated for it to be of great concern. Consider the breakup of"}, {"title": "dpr-wiki", "text": "Atmospheric entry shield is due to adiabatic compression, the vehicle's kinetic energy is ultimately lost to gas friction (viscosity) after the vehicle has passed by. Other smaller energy losses include black body radiation directly from the hot gases and chemical reactions between ionized gases. Ballistic warheads and expendable vehicles do not require slowing at reentry, and in fact, are made streamlined so as to maintain their speed. Furthermore, slow-speed returns to Earth from near-space such as parachute jumps from balloons do not require heat shielding because the gravitational acceleration of an object starting at relative rest from within the atmosphere itself (or"}, {"title": "rpj-c4", "text": "bottom section of our atmosphere that is used to effectively slow the spacecraft to safe landing speed is not sufficiently thick (~ 100 km) to allow for vertical re-entry. So, the spacecraft is forced to re-enter at an angle to the horizontal of between 5.2o and 7.2o. This small angular corridor is called the re-entry window. If the astronauts re-enter at too shallow an angle, the spacecraft will bounce off the atmosphere back into space. If the astronauts re-enter at too steep an angle, both the g-forces and the heat generated will be too great for the crew to survive. Sometimes the gravitational fields of planets can be used to increase the speed of spacecraft relative to the Sun and thus reduce travel times and minimize fuel and energy demands. Such spacecraft are said to be on \u201cgravity-assist trajectories\u201d and the whole process is often referred to as the \u201cslingshot\u201d effect. Essentially, the spacecraft moves behind the planet as viewed from the Sun, and is accelerated by this moving gravity field, much as a surfer is pushed forward by a wave. The energy gained by the spacecraft does not actually come from the gravitational field but from the kinetic energy of the moving planet, which is slowed by a tiny amount in its orbit, causing it to drop very slightly closer to the Sun. Let us consider the example of the Cassini spacecraft that reached Saturn in 2004. On its long voyage, Cassini boosted its speed by passing close to Venus, Earth and Jupiter. With each"}, {"title": "rpj-c4", "text": "survive reentry into the Earth\u2019s atmosphere, let alone its ability to guide such a missile."}, {"title": "rpj-common-crawl-2020-05", "text": "a Faraday cage when lightning strikes. The charge disappears into the ground by traveling through the metal body frame. So, it\u2019s important that you don\u2019t lean on the door or touch any other metal part of the car\u2019s body during lightning. (1, 2, 3) 9. The heat generated during re-entry of a spacecraft isn\u2019t (primarily) the result of friction against the atmosphere. It\u2019s caused due to rapid compression of the atmosphere by the spacecraft. Image credits: Space We all know that that a meteor burns up when it enters Earth\u2019s atmosphere. This is due to the extreme heat generated due to friction with Earth\u2019s atmosphere. This can be dangerous when planning for space travel at extremely high speed. So, while planning for space programs, scientists take special precautions to protect the spaceship from heat. So, what causes the atmosphere to heat up while a spacecraft re-enters? The most common answer would be friction. While friction does play a role in a later part, the heat produced just as the spacecraft re-enters is actually due to compressive heating. During re-entry, the spacecraft arrives at a speed of about 17,000 miles per hour. As the spacecraft enters the atmosphere at such a high speed, it heavily compresses the air in front of it and pushes the air off to the side. This compression raises the air temperature as high as 3,000 degrees Fahrenheit! As the compressed air heats up, the expanding air cools down (according to the Ideal Gas Law). However, this super-hot air doesn\u2019t even touch the"}, {"title": "math", "text": "Before impacting, the comet had passed within Jupiter\u2019s Roche limit (probably several times), been pulled into a streamer of rocks, and slowed down. What is a \"Sun Synchronous\" orbit? (b) Why are satellites launched from near the equator? (1) Why don't its particles separate by weight? (2) What accelerates the solar wind? Science Fair Project on the Size of the Earth If you have a relevant question of your own, you can send it to audavstern(\"at\" symbol)erols.com ### 114. Why not use a heat shield going up? The other day a colleague asked me a question that I could not answer and which keeps intriguing me. \"We know that (the shield of) a spacecraft that re-enters the earth's atmosphere heats up spectacularly because it is hit and slowed down by air-molecules. Is there a similar problem when it is going the other way, at take off? It is going through the same amount of air and acceleration looks quite similar to deceleration, only the other way around.\" The only answer that I could think of is that a good part of the acceleration might take place at higher altitudes where there is less air, and braking is done only by using the atmosphere. Going up, it is the rocket engine which provides acceleration and energy. Because air resistance robs energy and is undesirable, the rocket deliberately rises vertically, to go though the denser atmosphere as quickly as possible. The vehicle gets most of its velocity, and almost all of the kinetic energy, at high altitudes where"}, {"title": "rpj-common-crawl-2020-05", "text": "the reports of non-deployment of the antennas for ground communication I would guess that the shroud that covers the capsule during the boost phase only partially separated or, during separation, destroyed the antennas. The spacecraft is reported to be in a 2-3 RPM spin, not a roll. Stopping this would be beyond the capabilities of any thrusters currently available to the crew of ISS, including R-2. Safety wise, it\u2019s WAY too much of an unacceptable risk. It never made the ISS\u2019 orbit, anyway, which puts it out of reach of the crew, any way. EULER says: Con lo sucedido y en vista de la enorme importancia que requiere dia a dia la exploraci\u00f3n del universo, es hora de iniciar el dise\u00f1o de un remolque tipo universal, para recuperaci\u00f3n de naves espaciales que presenten fallas de control en sus misiones. Dr. Bees says: @Carol Manka: Without any kind of propulsive control, no. The best that can be done is to track the vehicle and provide warnings to those along the projected reentry path. But considering that the earth\u2019s surface is 3/4 water, most likely that\u2019s where it will end up. Even if it does come in over land, most likely it will not be a serious threat. The majority of the earth\u2019s land area has a population density of less than 25/km\u00b2, with the main exceptions being eastern China, Japan, India, northwestern Europe, the eastern US, central Mexico, and Africa\u2019s Gold Coast. The rest of the world is just too sparsely populated for it to be of"}, {"title": "rpj-common-crawl-2022-05", "text": "atmosphere, so substances can stay in the stratosphere very long (unless destroyed in chemical reactions or heavy enough to fall down due to gravity). You don't need much mass to have a high impact. CFCs have concentrations in the parts per billion range, but with their lifetime of decades can and do break down large amounts of ozone. So we can't simply dismiss the problem based on atmospheric mass considerations alone. The materials from which satellites are built are different from propellants involved in launch. Therefore, you can't simply dismiss satellites as far less massive than rocket propellants and therefore declare the impact of re-entry negligible compared to the the impact of launch. Much of a satellite material is metal, which will deposit rather quickly (see next question), but other materials could in theory have an impact (John et al. considered paint and concluded its impact was negligible). Some satellites contain unusual materials: for example, Kosmos 1402 was a Soviet spy satellite containing a nuclear reactor and thus fuel. Leifer et al (1987) have shown that more than a year after Cosmos-1402 deorbited a 53\u00b120% excess of 235U was measured at an elevation of 36 km. I don't know what happened since then. Fortunately Starlink will not contain nuclear reactors. Lifetime, often defined using the half-life or the time it takes for the concentration to halve, is crucial to determine impact. A piece of metal that falls down has no impact on the atmosphere, but exclusively anthropogenic CFCs lingering around for decades may, even in relatively"}, {"title": "rpj-common-crawl-2023-06", "text": "of a hole in the ion stream (created by the shape of the orbiter) to transmit data to the satellites. A TDRS satellite on display at the Udvar-Hazy Center in Chantilly, Virginia, USA. So we have our object coming back through the atmosphere and is heated on one side by the sudden and intense compression of the air, and heated on the other side by the extremely hot ball of plasma that wraps around it before being left behind in a trail. It is time to introduce the notion of the boundary layer, which is a zone where fluid \u201csticks\u201d to and object according to its physical profile and the viscosity of the fluid. During our atmospheric entry, this layer limit will serve as a real \u201cair cushion\u201d and will push the shockwave farther away from the surface of the object, and will also push away the heat! We will see later (in the \u201cHow to protect a capsule or shuttle\u201d section) how modifying the shape of the object allows to push away the shockwave. After having endured the extreme temperatures of compression and plasma, as well as the aerodynamic forces of reentry, our object slows down more and more due to the shockwaves and air friction. Its speed will end up below hypersonic and enter supersonic, where the majority of the heat comes only due to air friction. The vehicle will then have to land, and in its own way: parachutes (Soyuz, Apollo, Dragon), rocket engines (Perseverance on Mars), or like a glider (space shuttles,"}, {"title": "math", "text": "out. Your thinking is reasonable as far as it goes... But once you lose too much velocity and ... \u2022 147k Accepted ### How does the Falcon 9 first stage avoid burning up on re-entry? The heat of re-entry is highly dependent on speed. The second stage of the rocket is responsible for providing most of the speed needed for orbit, after the first stage lifts it out of dense ... \u2022 163k Accepted ### Is it harder to enter an atmosphere perpendicular or at an angle \u201cBouncing off the atmosphere\u201d is a misleading turn of phrase. When returning to the Earth from the Moon, a spacecraft is on an elliptical orbit with the high end somewhere around the moon\u2019s altitude ... \u2022 163k Accepted ### Why does the SpaceX Falcon 9 rocket do a 180 flip for reentry? Hobbes has already showed you a diagram of the Falcon 9 launch profile, so I won't repeat that. Note: This answer is not intended to be a complete, scientific treatment of the subject. I knowingly ... \u2022 7,252 Accepted ### What eliminates the velocity when occupants return from ISS to earth, and how much? Nearly all the velocity is cancelled by atmospheric deceleration of the descent module, before its parachutes are deployed. ISS orbital velocity is around 7700 m/s. An initial retro-burn of the ... \u2022 163k ### Why does the SpaceX Falcon 9 rocket do a 180 flip for reentry? Trajectory of the Falcon 9 first stage: Graphic courtesy ZLSA Design (zlsa.github.io) As you can see,"}, {"title": "rpj-common-crawl-2023-06", "text": "attitude in the tenuous upper layers of the atmosphere. The speed of orbital decay will depend on a number of factors, not all of which can be known precisely such as the state of Earth\u2019s atmosphere that can only be estimated based on current solar weather using the 10.7cm radio flux, Kp-Index and space weather forecast models to feed decay simulations. Also, the spacecraft attitude plays a role in the level of drag experienced by the vehicle. Therefore, decay predictions are always associated with an error bar that corresponds to about 20% of the time from the prediction to the predicted decay time. Over its final hours in orbit, the craft will be tracked by ground-based radars to precisely determine its orbit. The United States operate a tracking system that provides data to the public to allow an independent calculation of the re-entry time. When re-entry comes, its position can be calculated from orbital data gathered in the last orbits ahead of the event, but the most precise data will be provided through space-based assets of the U.S. military that can track the signature of spacecraft re-entries and so pin-point their timing and location with high precision. As the spacecraft drops in altitude, it will approach the dense layers of the atmosphere for its steep plunge. The exact timing of orbital decay depends on the current state of the atmosphere which is known to expand and contract as a result of solar activity. Once hitting the dense atmosphere, Kanopus/Volga will start feeling the effects of re-entry."}, {"title": "rpj-common-crawl-2019-30", "text": "of the smaller debris \u2013 likely the heavy engine section of the rocket stage representing the most dense component with the highest kinetic energy. The media quickly reported and the Internet was a buzz within minutes of the event with meteor and UFO reports from a wide area under the entry footprint as is typical for re-entries occurring over densely populated areas. Impressive photos from Las Vegas were published showing a light show in the sky in addition to the iconic lights of the Las Vega Strip. Many observers were mesmerized by the falling rocket stage as it moved silently across the sky, visible for over a minute. The onset of re-entry normally occurs between 120 and 100 Kilometers in altitude when the spacecraft encounters the dense layers of the atmosphere, initially not slowing down at a fast rate, but already interacting with plenty of molecules that are broken up into atoms and ions leading to plasma forming around the spacecraft which would normally become self-luminous around 104 Kilometers in altitude. Credit: Christopher Boyd, @CJBear71Twitter Given the extremely high speed of the object at Entry Interface, air in front of the vehicle is compressed, creating a shock wave layer in which molecules are separated into ions and temperatures rise to the extreme. The Entry Point, defined by USSTRATCOM at an altitude of 80 Kilometers, marks the beginning of of the disintegration of the spacecraft (+/-10km) due to drag building up to a destructive force, triggering the onset of fragmentation of the spacecraft structure. The shock wave"}, {"title": "rpj-common-crawl-2020-05", "text": "all the spacefaring nations to put aside their differences \u2013 and probably a lot of their military secrets \u2013 and cooperate fully, in order to achieve a rapid amelioration of the situation. With such cooperation \u2013 a necessary prelude, I believe, to the economical exploration and utilization of space \u2013 it would surely then be possible to limit the on-orbit and re-entry debris problem at source by having only one common network of satellites for each specific global purpose: location, internet access, land, ocean and weather monitoring, et Will it happen? I\u2019m not holding my breath. Inside Spacecraft Atmospheric Reentry When Will Tiangong-1 Re-enter? Atlas V Centaur Hydrazine Tank Found In Spain Spectacular Re-Entry Over Hawai Mystery of Rocket Re-entry Over Spain Solved Japanese Cargo Vehicle HTV-5 Safely De-orbited A Fiery End for Kosmos 1315 Over Hawaii Long March 4C Rocket Debris Hit House TRMM Spacecraft Debris to Re-enter Over Tropics Russian Roulette - Space Debris Decoding the Mystery of Destructive Reentry Russian Roulette in Space: The Temporary Demise Of Foton M4 Cosmos 1220 Took the Plunge, But What\u2019s Left? Calling Debris on the Carpet Retrieving Space Debris Around the World: Interview with Dan Reichel Getting to the Root of Debris Predictions with Terminal Velocity Aerospace That Time a Space Station Became Part of the Miss Universe Pageant Chinese Aircraft Hit by Unknown Object at High Altitude Identifying Space Debris: Further Adventures in East Texas Is It Space Junk? Texan Electrician Finds Mysterious Sphere in his Backyard Orbcomm Satellite Stranded by Falcon 9 Falls Out of"}, {"title": "rpj-common-crawl-2023-06", "text": "(8,400 miles) in the position of the object when it reenters! This is why it is impossible to pinpoint the expected point of re-entry beforehand, when it is not a \"controlled\" re-entry. (in a \"controlled\" re-entry, the satellite operators send a command to the satellite to make a rocket burn at a precise time, kicking it down over a designated spot, usually the Pacific ocean. This Soyuz reentry was however not such a \"controlled\" reentry). Many people mistakenly think that in this day and age of supercomputers, scientists (or the military) can predict everything. In reality, satellite/rocket reentries like this are so complex that even the best computer models can only give rough indications untill just minutes before the actual re-entry. (A) Yes, it does. That last rocket stage is jettisoned that high above earth surface, that it does not just rapidly fall back on a ballistic trajectory (such as the 1st and 2nd stages do) but actually reaches Low Earth Orbit, and stays in orbit around the earth for several days. In effect, it becomes a satellite for a while in a very low orbit around Earth. Under influence of gravity and drag from the outer atmosphere, the orbit slowly evolves and becomes smaller and smaller. On the first day only gradually, but as it slowly comes down, this gradually goes faster and faster. The influence of our atmosphere reaches several hundreds of kilometers up: even the International Space Station experiences some atmospheric drag, and would fall down within a year if its orbit was"}, {"title": "rpj-common-crawl-2020-05", "text": "in 2002. No injuries on the ground were reported, and even property damage was pretty minimal. And that was over one of the aforementioned densely populated regions. @John Campbell: I think your \u201corbital tug boat\u201d would be somewhat impractical, at least if it depends on traditional combustive propulsion, as the fuel requirements would be prohibitive. It would only be useful for a very small percentage of possible failure modes; namely those in which the crippled craft is already in a rendezvous orbit with the ISS. Down the road, I could possibly see a version using ion propulsion becoming practical, but in this case I still don\u2019t think it would help, for a few reasons. First, Progress vehicles are launched into a \u201cparking orbit\u201d that naturally decays in only a few weeks. At this point, it is simply too far away from the ISS for an ion-drive-equipped recovery vehicle to reach it in time. Secondly, the spacecraft is tumbling at a rate of something like 20 revolutions per minute. This would make rendezvous and capture extremely hazardous, and would require completely new methods that would probably take years (if not decades) to develop. @Chris: As passengers on Soyuz 5 and Soyuz TMA-11 can attest, reentering without service module separation is bad. In this configuration, the most stable orientation tends to be nose-first, with the heat shield pointing uselessly to the rear. Fortunately, in the two aforementioned manned cases, the SM separated before maximum heating and the spacecraft reoriented itself aerodynamically, but these were very close calls that"}, {"title": "rpj-common-crawl-2023-06", "text": "common. Also, balloons are not capable of reaching space by simple definition of how they work (they need to displace atmosphere and thus cannot ever reach the \u2018top\u2019). Earths atmosphere extends all the way out to 600 kM which is well beyond the orbit of the ISS. This is done to intentionally avoid the infamous \u2018Kessler Syndrome\u2019. \u2018Orbital drag\u2019 is the reason why satellites eventually fall out of orbit and \u2018reenter\u2019 the atmosphere (can\u2019t re-enter if they never left now can they). {side note: Orbital drag is different from gravitational drag which also exists and can deorbit things\u2026 eventually} c x says: October 19th, 2014 at 9:15 pm Yelp?"}, {"title": "rpj-common-crawl-2021-04", "text": "Interface (EI) and usually occurs 30 minutes before touchdown at about 400,000 ft. At this time, a communications blackout occurs as the orbiter is enveloped in a sheath of plasma caused by electromagnetic forces generated from the high heat experienced during entry into the atmosphere. As the orbiter glides toward a landing, initially at a velocity of 25,000 feet per second at the EI point, its velocity is gradually slowed by a series of banks and roll reversals. As the atmospheric density increases, the forward RCS thrusters are turned off, while the aft RCS jets continue to maneuver the orbiter until a dynamic pressure of 10 lb. per square foot is sensed by instruments on board. At this point, the ailerons on orbiter's delta-shaped wings begin to operate and the aft RCS roll thrusters are stopped. When the dynamic pressure reaches 20 lb. per square foot, the orbiter's wing elevators become operational and the RCS pitch thrusters are stopped. A speed brake on the vertical tail opens when the orbiter's velocity falls below Mach 10. Then, at Mach 3.5, the rudder is activated and the final RCS burns -- the yaw jets -- are stopped. The orbiter is now at an altitude of 45,000 ft., and is beginning what are called \"area energy management maneuvers\" which enable it to intercept the landing approach corridor at the desired altitude and velocity. As it nears the landing site, the orbiter is steered into the nearest of two heading alignment circles called HACs. Each has a radius of 18,000"}, {"title": "rpj-common-crawl-2023-06", "text": "launch are basically the opposite of the requirements for re-entry. During the launch, we want to reduce drag as much as possible to increase thrust and lift, often resulting in the typical rocket shape. However, during re-entry, we need to increase drag to reduce our speed, utilizing a preferably broad, blunt design. Let\u2019s go over how different spacecraft handle re-entry: The Space Shuttles On the space shuttle, special silicone tiles on the aluminum skin helped provide insulation, but on the nose and edges of the wing where it would get hottest was a reinforced carbon-carbon (RCC) composite. (Columbia\u2019s RCC was damaged during liftoff which caused it to burn up during reentry and was the reason for the Columbia disaster.) The shuttles were gliders, meaning they were able to adjust their flight pattern to help reduce the amount of heat building up including S turns, making re-entry not too dissimilar from landing in an airplane. First, the shuttle flew backward to slow down from orbit speed, and then the orbital maneuvering engines (OMS) would thrust it out of orbit and toward Earth. Next, the shuttle turned nose-first once out of orbit and entered the atmosphere with its belly down toward the atmosphere to use drag along its blunt bottom to help slow it down and then pull the nose up to about 40 degrees. It utilized S turns and other flight patterns to increase drag, reduce speed, and reduce the heat that built up from the re-entry into the atmosphere. The shuttle would then land similar to"}, {"title": "rpj-common-crawl-2019-30", "text": "RoePhilip Roe The spacecraft taking off is already outside the stratosphere when it has the speed that re-entry spacecraft posses when they enter the stratosphere. The stratosphere only extends for about 100 miles above sea level. Since a rocket takes off vertically it will clear the stratosphere in less than 8 minutes and way before it has the speed to cause any appreciable friction in said part of atmosphere. The re-entry spacecraft, on the other hand, is using the atmosphere to slow down from orbital velocity. It needs to slow from 8 to 10 km/sec to a much slower speed in which to either deploy parachute or land on an extended runway. This is a very significant reduction in speed and the friction in the atmosphere is what accomplishes this reduction. Since friction causes heat and it will have to spend considerable time in atmosphere to work off the speed, an evaporative tile heat shield is necessary. 0tyranny 0poverty0tyranny 0poverty Not the answer you're looking for? Browse other questions tagged temperature acceleration drag rocket-science space-mission or ask your own question. Temperature of a black-body in LEO on the dark side of the Earth Does the metal foam \u201cwhiffleball\u201d orbital reentry idea make any sense? Orbital mechanics and rocketry: Is it ever a good idea to intentionally lower periapsis? What exactly is \u201cpressure\u201d, and what's its relation to force? Non-Constant Acceleration due to Gravity Why is specific impulse measured in seconds? What's the difference between proper acceleration and coordinate acceleration? Projectile Path Farther Away From Earth How"}, {"title": "rpj-common-crawl-2020-05", "text": "component parts taken to orbit on separate launches. Furthermore, rotation of space crews and emergency rescue missions require rendezvous and docking capability. Reentry refers to the return of a spacecraft into Earth\u2019s atmosphere. The blanket of relatively dense gas surrounding Earth is useful as a braking, or retarding, force resulting from aerodynamic drag. A concomitant effect, however, is the severe heating caused by the compression of atmospheric air in front of the rapidly moving spacecraft. Initially, heat shields were made of ablative materials that carried away the heat of reentry as they were shed, but the space shuttle introduced refractory materials\u2014silica tiles and a reinforced carbon-carbon material\u2014that withstood the heat directly. Newer vehicle designs use active cooling and refractory metallic alloys. Inherent in the safe reentry of a spacecraft is precise control of the angle of reentry. For Apollo, this angle with respect to Earth\u2019s horizon was \u22126.2\u00b0. If the reentry angle is too shallow, the spacecraft will skip or bounce off the atmosphere and back into space. If the angle is too great, the heat shield will not survive the extreme heating rates nor the spacecraft the high forces of deceleration. Returning Apollo Command Modules approached Earth at nearly 40,000 km (25,000 miles) per hour. Even with a satisfactory reentry angle, the capsules\u2019 heat shields were subjected to temperatures approaching 3,000 \u00b0C (5,400 \u00b0F). During the final phases of descent, some spacecraft\u2014especially capsule-type manned craft\u2014deploy parachutes, which lower the vehicle to a soft landing. The Apollo Command Modules employed this technique to make ocean splashdowns."}, {"title": "math", "text": "out. Your thinking is reasonable as far as it goes... But once you lose too much velocity and ... \u2022 147k Accepted ### How does the Falcon 9 first stage avoid burning up on re-entry? The heat of re-entry is highly dependent on speed. The second stage of the rocket is responsible for providing most of the speed needed for orbit, after the first stage lifts it out of dense ... \u2022 163k Accepted ### Is it harder to enter an atmosphere perpendicular or at an angle \u201cBouncing off the atmosphere\u201d is a misleading turn of phrase. When returning to the Earth from the Moon, a spacecraft is on an elliptical orbit with the high end somewhere around the moon\u2019s altitude ... \u2022 163k Accepted ### Why does the SpaceX Falcon 9 rocket do a 180 flip for reentry? Hobbes has already showed you a diagram of the Falcon 9 launch profile, so I won't repeat that. Note: This answer is not intended to be a complete, scientific treatment of the subject. I knowingly ... \u2022 7,252 Accepted ### What eliminates the velocity when occupants return from ISS to earth, and how much? Nearly all the velocity is cancelled by atmospheric deceleration of the descent module, before its parachutes are deployed. ISS orbital velocity is around 7700 m/s. An initial retro-burn of the ... \u2022 163k ### Why does the SpaceX Falcon 9 rocket do a 180 flip for reentry? Trajectory of the Falcon 9 first stage: Graphic courtesy ZLSA Design (zlsa.github.io) As you can see,"}, {"title": "rpj-common-crawl-2022-05", "text": "Figure 3), and fragments greater than 1 centimeter will threaten the habitability of the most heavily protected spacecraft, namely the ISS. So, in the near-term protection represents a risk-accepting band aid solution to the growing debris problem. 2.6 Controlled End of Life Satellite Disposal Practices Part of NASA\u2019s efforts focus specifically on reducing the number of large objects, such as non- operational spacecraft and spent rocket upper stages orbiting the Earth. One method of post- mission disposal is to allow the reentry of these spacecraft, either from natural orbital decay (uncontrolled) or a deliberate controlled entry. Orbital decay can be accelerated artificially in order to lower the perigee altitude of an eccentric orbit so that atmospheric drag will cause the spacecraft to enter the earth\u2019s atmosphere sooner. However, left to natural decay friction the surviving debris impact footprint on Earth often cannot be guaranteed. To minimize uncertainties, controlled entry is normally achieved by the burning of more propellant through a larger propulsion system to cause the spacecraft to reenter the atmosphere at a steeper flight path angle. The vehicle will then impact at a more precise latitude and longitude, and the debris footprint can be positioned over an uninhabited region, generally into the oceans or other bodies of water or onto sparsely populated regions like the Canadian Tundra, the Australian Outback, or Siberia in the Russian Federation. To minimize the chances of damage to other vehicles, designers of new vehicles or satellites are frequently required to demonstrate that they can be safely disposed of at the"}, {"title": "math", "text": "# Tag Info Accepted ### Why don't we know exactly where the Chinese rocket will fall? If the orbital period is about 90 minutes, that means \u00b145 minutes error at predicting the moment of landing means randomizing that point all around the globe. At the moment the prediction error is \u00b1 ... \u2022 53.6k Accepted ### Why not increase contact surface when reentering the atmosphere? I've done a lot of work on this subject with researchers and engineers at JPL, NASA Langley, and NASA Ames. There are some interesting things that come out of high-fidelity CFM (Computational Fluid ... \u2022 18.1k Accepted ### Why didn't the Space Shuttle bounce back into space as many times as possible so as to lose a lot of kinetic energy up there? Skipping reentries aren't unheard of. The Apollo command module performed a single skip when returning from lunar missions. However, there are several reasons why a skipping reentry (especially one ... \u2022 1,899 ### Why didn\u2019t the Spacecraft used for the Apollo 11 mission melt in the Earth\u2019s Atmosphere? Although the temperature at altitude can be several thousands of degrees, the atmosphere is so thin it does not transfer heat efficiently. Wikipedia explains it very well - The highly diluted gas ... \u2022 943 ### Why didn't the Space Shuttle bounce back into space as many times as possible so as to lose a lot of kinetic energy up there? I think bounce back causes intermittent heating so heat shield tiles get a lot of time of radiate heat"}, {"title": "rpj-common-crawl-2020-05", "text": "the reports of non-deployment of the antennas for ground communication I would guess that the shroud that covers the capsule during the boost phase only partially separated or, during separation, destroyed the antennas. The spacecraft is reported to be in a 2-3 RPM spin, not a roll. Stopping this would be beyond the capabilities of any thrusters currently available to the crew of ISS, including R-2. Safety wise, it\u2019s WAY too much of an unacceptable risk. It never made the ISS\u2019 orbit, anyway, which puts it out of reach of the crew, any way. EULER says: Con lo sucedido y en vista de la enorme importancia que requiere dia a dia la exploraci\u00f3n del universo, es hora de iniciar el dise\u00f1o de un remolque tipo universal, para recuperaci\u00f3n de naves espaciales que presenten fallas de control en sus misiones. Dr. Bees says: @Carol Manka: Without any kind of propulsive control, no. The best that can be done is to track the vehicle and provide warnings to those along the projected reentry path. But considering that the earth\u2019s surface is 3/4 water, most likely that\u2019s where it will end up. Even if it does come in over land, most likely it will not be a serious threat. The majority of the earth\u2019s land area has a population density of less than 25/km\u00b2, with the main exceptions being eastern China, Japan, India, northwestern Europe, the eastern US, central Mexico, and Africa\u2019s Gold Coast. The rest of the world is just too sparsely populated for it to be of"}, {"title": "rpj-common-crawl-2023-06", "text": "of a hole in the ion stream (created by the shape of the orbiter) to transmit data to the satellites. A TDRS satellite on display at the Udvar-Hazy Center in Chantilly, Virginia, USA. So we have our object coming back through the atmosphere and is heated on one side by the sudden and intense compression of the air, and heated on the other side by the extremely hot ball of plasma that wraps around it before being left behind in a trail. It is time to introduce the notion of the boundary layer, which is a zone where fluid \u201csticks\u201d to and object according to its physical profile and the viscosity of the fluid. During our atmospheric entry, this layer limit will serve as a real \u201cair cushion\u201d and will push the shockwave farther away from the surface of the object, and will also push away the heat! We will see later (in the \u201cHow to protect a capsule or shuttle\u201d section) how modifying the shape of the object allows to push away the shockwave. After having endured the extreme temperatures of compression and plasma, as well as the aerodynamic forces of reentry, our object slows down more and more due to the shockwaves and air friction. Its speed will end up below hypersonic and enter supersonic, where the majority of the heat comes only due to air friction. The vehicle will then have to land, and in its own way: parachutes (Soyuz, Apollo, Dragon), rocket engines (Perseverance on Mars), or like a glider (space shuttles,"}, {"title": "rpj-common-crawl-2021-04", "text": "orbiter during reentry, which causes turbulence at lower speeds. A turbulent air flow results in a mixing of hot and cold air which can have a major effect on the shuttle temperature. According to NASA, the gap fillers, which each serve different purposes, are not required for reentry. One filler prevents \"chattering\" of tiles during ascent, which would occur due to the sonic booms from the noses of the solid rocket boosters and the external fuel tank. The other, in a different location where there is a wider gap between tiles, simply functions to reduce the gap size between tiles, which in turn reduces heat transfer to the shuttle. Even without this filler NASA did not expect the increased heat to cause a problem during reentry (it is present to avoid a level of heating which would only be problematic if experienced many times over a vehicle's design life). Since the gap fillers are not necessary for re-entry, it was acceptable to simply pull them out. An overview of the situation, including procedures for dealing with the protrusions were sent electronically to the crew and printed aboard the shuttle. Once Discovery was ready to undock, Charles Camarda sent a command to release the docking mechanism. At initial separation of the spacecraft, springs in the docking mechanism pushed the Shuttle away from the Station. Discovery's steering jets were shut off to avoid any inadvertent firings during the initial separation. Once Discovery was about two feet (61 centimeters) from the Station, with the docking devices clear of one"}, {"title": "rpj-common-crawl-2022-05", "text": "refers to mating operations where an inactive vehicle is placed into the mating interface of another space vehicle by using a robotic arm.[14][16][17] Vehicles in orbit have large amounts of kinetic energy. This energy must be discarded if the vehicle is to land safely without vaporizing in the atmosphere. Typically this process requires special methods to protect against aerodynamic heating. The theory behind reentry was developed by Harry Julian Allen. Based on this theory, reentry vehicles present blunt shapes to the atmosphere for reentry. Blunt shapes mean that less than 1% of the kinetic energy ends up as heat reaching the vehicle, and the remainder heats up the atmosphere. Landing and recovery The Mercury, Gemini, and Apollo capsules all splashed down in the sea. These capsules were designed to land at relatively low speeds with the help of a parachute. Soviet/Russian capsules for Soyuz make use of a big parachute and braking rockets to touch down on land. Spaceplanes like the Space Shuttle land like a glider. After a successful landing the spacecraft, its occupants, and cargo can be recovered. In some cases, recovery has occurred before landing: while a spacecraft is still descending on its parachute, it can be snagged by a specially designed aircraft. This mid-air retrieval technique was used to recover the film canisters from the Corona spy satellites. Uncrewed Further information: Engineering:Uncrewed spacecraft and Engineering:Robotic spacecraft Sojourner takes its Alpha particle X-ray spectrometer measurement of Yogi Rock on Mars The MESSENGER spacecraft at Mercury (artist's interpretation) Uncrewed spaceflight is all spaceflight activity"}, {"title": "rpj-common-crawl-2021-04", "text": "with a small camera we\u2019ll be able to measure the spectra of the flow radiation in the shock layer as well as species emitted by the burning cork.\u201d The cork nose of the Qarman reentry CubeSat ablating during plasma wind tunnel tests. The stability provided by Qarman\u2019s side panels and front centre of gravity should also allow the CubeSat to transmit its findings to commercial Iridium telecommunication satellites \u2013 planning to transmit around 20 minutes of reentry data in three to five minutes. An inner \u2018survival kit\u2019 containing instruments and electronics and lined with protective ceramic carbon matrix with aerogel protection will likely survive reentry but will not be recovered, most likely splashing down in the sea. \u201cWe\u2019ve played a role in many ESA programmes, such as the IXV, the forthcoming Space Rider reusable spacecraft, as well as the Vega-C and Ariane 6 launchers,\u201d notes Prof. Chazot, \u201cbut up until now we\u2019ve focused on the modelling and experimental simulation side. \u201cThese kind of tests cannot tell you everything we want to know however \u2013 to really validate our codes and understand the reality of the physics involved, we need to actually fly in space. The idea came to design our own CubeSat when we were running the European Commission-led QB50 programme, which was an international CubeSat network to perform lower atmosphere and reentry research. We designed and built the entire mission, buying in parts and expertise as needed, with valuable technical and organisational support coming from ESA. As a follow-up we are interested in designing a"}, {"title": "rpj-common-crawl-2021-04", "text": "shuttle, as most of us still fondly remember, was a somewhat controllable spacecraft but most other re-entry vehicles do not have a lot of control on their trajectory as they start their return journey to Earth. Crew Dragon is one of those spacecraft that simply fall down to the Earth on a pre-calculated trajectory. Once the spacecraft has been carefully navigated to fall through the re-entry corridor, the thermodynamics comes into play. The air, as we know, is composed of mainly two diatomic molecules: oxygen and nitrogen. Ordinarily, when air pressure is low, they remain in this diatomic state. However, under special circumstances like atmospheric re-entry, they behave differently. During re-entry, as the spacecraft falls under gravity and enters Earth\u2019s atmosphere, the increasing density of the atmosphere combined with the tremendous speed of the spacecraft (of the order of 7-8,000 metres per second) causes a shock wave leading to an enormous rise in the pressure in front of it. At approximately 70 to 80 km above Earth, this pressure becomes so large that it causes the diatomic oxygen and (after some time) nitrogen to split causing further reactions. These reactions are extremely exothermic \u2013 meaning they release a lot of heat. This heat is so significant that we need special arrangements to protect what\u2019s inside the spacecraft. During this crucial period of high energy thermodynamic reactions, the spacecraft continues to fall and slow down gradually. This mechanism of re-entry is indeed by design, as it allows the spacecraft to slow down enough to land safely while"}, {"title": "rpj-common-crawl-2022-05", "text": "of the spacecraft after passing in the vicinity of heavy objects moving at high speeds. The D'Alembert's inertial forces created in the vehicle's structure during such changes of trajectory would kill the crew and destroy the antigravitational vehicle. One of the most serious problems resulting from the repulsion of the antigravitational spacecraft from every other object would be the impossibility of reaching the surface of heavier planets after leaving from lighter heavenly bodies. For example, having started from Earth the spacecraft would not be able to reach Jupiter or Saturn, whereas after starting from the Moon it would not be able to reach Earth. The reason for this is that the velocity gained by the vehicle during its interaction with the field of a lighter planet would not be sufficient to break through the sphere of the stronger repulsion from a heavier planet. Therefore it is possible that such a spacecraft once launched would never achieve its destination, and would also be unable to return. The last two subsections clearly illustrate that antigravity would not be, as some people expect, a submissive servant performing our wishes, but rather a blind, uncontrollable element able to turn against its own creators. HB12. Antigravity would introduce a number of serious dangers For reasons which I presented in subsection HB14, almost all speculation on antigravity considers only the positive aspects of this hypothetical field. But in fact it would be an incredibly dangerous and destructive force. An initial taste of its destructive capabilities was the explained in subsection HB10 phenomenon"}, {"title": "rpj-c4", "text": "at the trajectory of a rocket launch. During the first seconds of the launch, the rocket climbs almost vertically to exit the denser part of the atmosphere. Quite quickly, however, the rocket tilts to gain horizontal speed: a spacecraft needs to travel at almost 8km/s to stay in low orbit (just above 200km in altitude). When the first stage of Falcon 9 is jettisoned, the rocket is travelling at ten times the speed of sound, 90km above the surface. Without doing anything, the stage would reenter the atmosphere uncontrolled, which would make recovering the stage difficult. On this mission, the stage was flipped around, so that it would travel tail first, a moment after it was dropped. Three engines were relighted before reentry, to slow the stage down, and allow the computer to control orientation during reentry. It may sound easy, but it isn\u2019t. it means keeping control of the stage\u2019s attitude after it has been jettisoned, and igniting a rocket engine is everything but easy. But that burn went well. The second burn is even more tricky: the goal is to relight one engine, when the stage is coming low over the surface, to slow it down and make it touch down gently. This time, the stage is traveling in thick atmosphere, which makes attitude control even more complicated. And that is where the problem came from: while the engine was burning, the stage started spinning along its vertical axis. The fuel was centrifuged (pushed away from the centre, against the walls of the tanks),"}, {"title": "pes2o", "text": "loads to result in fragmentations or detachment of components from the spacecraft before re-entry. On one hand, this occurrence may release unwanted and dangerous debris into orbit, resulting in potential threats to other satellites, if the detached components skip the Earth's atmosphere. On the other hand, this phase of catastrophic decay may have potential benefits in reducing the casualty risk. In fact, a partial disassembly of the spacecraft can expose the internal components to early re-entry heating, and the possible decrease in entry speed and flight-path angle could generate higher heat loads, thus improving the demise. Fig. 6c also shows that a higher number of revolutions is associated with orbits with higher pericentre altitudes and lower eccentricities. As increasing the number of passages through the atmosphere can increase the chance of early breakups, this circularisation phenomenon should be avoided, if the risk of releasing unwanted debris into orbit must be minimised. Re-entry predictions with the overshoot boundary As outlined in Section 3, understanding what are the conditions leading to the final re-entry of the spacecraft required switching from the long-term propagation to the destructive re-entry analysis. This switching is necessary when performing a full demisability and casualty risk analysis. However, it might be a cumbersome procedure when the intention is limited to discerning between the entry/skip behaviour, such as in the design and optimisation of the disposal trajectory and limit the number of low-altitude passages. To tackle this problem, we introduced the concept of overshoot boundary in Section 2.4. Since the overshoot boundary can be precomputed"}, {"title": "math", "text": "for speci\ufb01c antennas due to the plume. Kinefuchi et al. [26] reports of these effects for the Japanese M-V rocket and the European VEGA launch vehicle due to the usage of solid propulsion systems. In this regard, the rocket ex- haust plume is seen as near \ufb01eld of the trail and starting point for further predictions of the trail [24]. Deposition and possible contamination of condensed species on the space transportation system and its com- ponents being optical surfaces, windows, solar panels or radiating heat emission surfaces due to plume impinge- ment on vehicle is a further aspect of consideration. At high altitudes, the supersonic plume exhibits a Prandtl- Meyer expansion angles larger than 90and the subsonic boundary layer, although low, but not negligible in mass \ufb02ow, can even travel further upstream with all associated issues induced by the exhaust gas. The current revival of reusable launch vehicles and SpaceX efforts with the Falcon 9 Reusable Development Vehicle (F9R Dev) as shown in Ref. [27] opens up a less investigated \ufb01eld for future investigations. Firing in retro mode certainly involves many of the above described challenges, e.g. instabilities as shown in Ref. [28], over a wide Mach number range in a different fashion. The aforementioned examples reveal that base region is an area of uncertainty in the current launch vehicle design process. In the past, base \ufb02ow effects have mostly been examined in experiments with cold supersonic jets, which have shown to not mirror the base \ufb02ow effects satisfacto- rily. The objective of the hot plume"}, {"title": "pes2o", "text": "in wind effects on the landing design of the vehicle. The GRAM thermodynamic model can be used from deorbit altitudes to the location at which the RRA will take effect. The U.S. Standard Atmosphere (NASA 1976) has also been used for certain reentry calculations, but should be used with due consideration for its lack of representativeness of the reentry atmospheric conditions. Atmospheric density and density perturbations generally play a big role in reentry heating and in fuel-budgeting calculations. ORBITAL ENVIRONMENTS Orbital environment parameters apply to LV concept development in two principal ways: (1) When a vehicle includes an upper stage that must operate in orbit; and (2) when a vehicle has reusable elements (spacecraft) that reach orbital altitude and then return to Earth. An important addition is the case of crewed vehicles, in which, because of their very high reliability requirements, the problems with ionizing radiation (classified here as an orbital environment) should be considered even in the launch phase (first and second stage) for the mission-critical avionics. In addition to the information present here and the references cited, the current space and orbital environment information online at the Space Environment Information System (SPENVIS) is recommended. Also, the European Space Agency's European Cooperation for Space Standardization presents a good space environment standard document on their website. Ionizing Radiation Hazard At the concept development stage, it is rarely necessary to select electronic parts, so there is usually no need to consider the specifics of the radiation environment. Rather, selecting and planning for the electronic"}, {"title": "rpj-book", "text": "of assistance, a survivable landing might be possible. So it's not all bad\u2014if you can survive the heat. But on the other, other hand, the atmosphere causes an additional problem. The steeper your re-entry angle from orbit, the faster you will be descending through the rapidly thickening atmosphere, and so your spacecraft will get hotter faster than it would if you came in at a shallower angle. But if you get things wrong and your angle is too shallow, you could be in a different kind of trouble. At the speeds involved the diffuse, wispy upper atmosphere of the Earth can seem as solid to your descending craft as the liquid surface of a still pond does to a flat-bottomed pebble expertly skimmed towards it at a similarly shallow angle. Like the pebble, your spacecraft may skip when it encounters the denser medium below it. Unlike the pebble (which, skillfully thrown, will skip a few times, losing momentum as it does so, before finally vanishing below the water) if your craft is going fast enough it may simply bounce off the atmosphere and head off into space. If your spacecraft is low on propellant (and at the time of re-entry they generally are) you may have no way of recovering the situation as you drift off into the cold, silent void. So the designer of a returnable spacecraft has two core problems to solve: how to survive the heat of atmospheric re-entry and, once a lower altitude and a slower speed have been reached, how to"}, {"title": "rpj-book", "text": "earth via a parachute, where it would then be fished from the sea. The challenges of testing that rocket and its eventual cancellation meant that this plan never came to fruition. As the Falcon 9 was developed, it became clear that parachutes would be insufficient for returning the twenty-ton first stage back to earth. Return from space brings us back once again to the physics of getting there. Remember, your vehicle's velocity must exceed 17,500 miles per hour to stay in orbit. To return to earth, you have no choice but to plunge back into the atmosphere at extremely high speed. As you do, the vehicle smacks into the air in front of you, cramming the gas tightly together and making it enormously hot. While it's comparatively easy to make metal structures that can withstand the physical force of reentry, dealing with the high temperatures is a more difficult engineering challenge. Space vehicles have typically relied on special shapes to move that heat away from vital areas, and special materials are used that can absorb this energy. The Apollo and Soyuz space capsules let their blunt bellies take the heat of reentry before deploying parachutes. The much larger, reusable space shuttle counted on its heat shielding to absorb the force, then used its glider body to slow down in a series of wide turns before landing on the runway. Yet it, too, was a cautionary tale\u2014not just because the _Columbia_ disaster revealed how vulnerable the shielding could be, but because the expense of refurbishing it turned"}, {"title": "rpj-common-crawl-2020-05", "text": "will be quite spectacular. The 13-ton object will enter at about 7.6 km/s, creating a multi-colored fireball with a series of catastrophic fragmentation events and a shower of blue and yellow fragments. The entry path is long, the whole event lasting about four minutes. The reentry is visible in its entirety from an aircraft at altitude, because of low extinction near the horizon. Both ESA and NASA are keen to observe the re-entry to better understand how the spacecraft breaks appart during entry. The main uncertainties in fragmentation models such as SCARAB concern the timing of the disruptions of the fuel tanks and their effect on the overall breakup. The SETI Institute is coordinating the science team. We have the expertise to observe this reentry, based on past airborne observing campaigns for the Stardust Sample Return Capsule entry and the Aurigid and Quadrantid MAC missions. We can measure the timing of breakup and explosion events and identify the fragments from their brightness, deceleration, and spectral properties. Figure 2 (below): The reentry of the MIR space station on 2001 March 23, as observed from Fiji. A private airborne mission with two small aircraft failed to observe the reentry because MIR's final de-orbit burn was longer than planned and the station entered earlier along its approach trajectory. [Other reentry images.] Mission profile The nominal mission would consist of two aircraft for stereoscopic measurements (and ability to adjust to overboost or underboost entry scenarios), one positioned sideways of the center of the entry track and one sideways of the"}, {"title": "rpj-book", "text": "land gently. (The problem of re-entry angle is more one of mission planning and spacecraft control, so we won't worry too much about that here.) Long before there were practical space rockets, much of the early theoretical work on returning spacecraft to Earth assumed some kind of reusable winged vehicle that could execute fully controlled flybacks to a desired location, where it would then perform a perfect aircraft-like landing. Rather than having conventional wings, some of these spacecraft might be 'lifting bodies' in which the vehicle's curved shape provides the required lift within the atmosphere. Some of them might be launched vertically like rockets and some might fly out to the upper atmosphere like an airplane before making the transition to orbit, as we saw earlier in this chapter. However the same problem remained: all of the energy used to get the craft into orbit would have to be dissipated in order to get it back to Earth. And most of that energy was going to manifest as heat. Which meant all that heat had to be handled somehow. You either had to endure it or get rid of it. Many of these early studies were really concerned with suborbital aircraft rather than true spacecraft: vehicles which could climb to the edge of space without quite enough velocity to actually achieve orbit before flying back down through the atmosphere to a landing halfway round the world. Despite not making it into orbit, these craft would have much the same problem with re-entry heat as a true"}, {"title": "rpj-common-crawl-2019-30", "text": "technical limits. Despite every optimization this is still not enough to leave Earth. So we need several stages to achieve orbit. So we can get finally out of the Earth, but...how do we get back? We would need fuel to slow us down again, but we haven't really fuel to spare. So the engineers decided to use atmospheric entry to slow down the spaceship with a heat shield. A softer method is aerobraking to reduce the speed with several passes through the atmosphere. If we would have a torchship that does not work with the rocket limitations, that would be a real nice thing because we wouldn't need the dangerous and unnecessary reentry phase. Thorsten S.Thorsten S. $\\begingroup$ \"Essentially we can move the spacecraft like a feather into orbit, vertically up and down...theoretically.\" <-- Uh, if I'm reading correctly, you're pointing out that a craft entering orbit can do so by using a thrust force only slightly greater than gravity? I'd have thought that was obvious. Trying to apply that to re-entry has issues though, you'd have to expend propellant to achieve a GEO orbital profile at a re-entry altitude, which is as insane as it sounds. $\\endgroup$ \u2013 Kaithar Jan 4 '18 at 12:28 $\\begingroup$ So obvious like that things in space are automatically weightless, that rockets can overtake other rockets on the same height level (You Only Live Twice), spaceships 2D fights (Star Trek)...? You are right that slowing down chemical rockets is insane, but Project Orion-like nuclear pulse spaceships can do that without"}, {"title": "pes2o", "text": "entry, descent, and landing (EDL) process, compared with the traditional reentry vehicle, the flexible reentry vehicle can decelerate at a higher altitude, which effectively reduces the surface heat flux of the vehicle, decreases the plasma density of the shock layer, and increases the communication possibility between ground and aerospace [1][2][3][4][5][6][7][8][9]. Recently, the Japan Aerospace Exploration Agency (JAXA) and many universities have cooperated to develop a membrane reentry vehicle with an inflatable torus. The target vehicle is sent into a predetermined orbit by a sounding rocket, and the membrane expands rapidly and is maintained by the inflatable torus under vacuum and microgravity conditions. After the highest point of the orbit, the vehicle returns to the atmosphere. It is worth noting that the expanded membrane has a flotation effect during the descent, so vehicle does not need to install a parachute, which can ensure the vehicle maintains a low ballistic coefficient flight during the whole EDL process by the advantage of its large area and small weight, and reduce the speed when landing to achieve a soft landing. As a new type of return vehicle with multiple reentry advantages in the future, aerospace agencies of various countries have been successively launching a series of studies on this type of reentry vehicle since the 1960s. Yamada et al. [10,11] used scientific balloons for free flight tests in 2004 and 2009, respectively. The first experiment aimed to establish that the flexible membrane technology could effectively achieve a soft landing of the vehicle without a parachute, which was the primary goal"}, {"title": "rpj-common-crawl-2021-04", "text": "moved several manned ships back and forth from space during the 1960s and 1970s, coated the command module with special ablative material that burned up upon re-entry, absorbing heat. Unlike the Apollo vehicles, which were built for one-time use, space shuttles are reusable launch vehicles (RLVs). So instead of merely using ablative material, they must incorporate durable insulation. On the next page, we'll delve more deeply into the modern re-entry process for shuttles. The Demise of the Satellite Satellites don't have to stay up in Earth's orbit forever. Old satellites sometimes fall back to Earth. Because of the harsh conditions of re-entry, they can severely burn up on their way down. However, some of them can survive the fall and hit the Earth's surface. In controlled falls, engineers manipulate the propulsion systems on a satellite to make it fall in a safe place, like the ocean. The Descent of a Space Shuttle Re-entering Earth is all about attitude control. And, no, this doesn't mean astronauts need to keep a positive attitude (although that's always helpful). Rather, it refers to the angle at which the spacecraft flies. Here's an overview of a shuttle descent: Leaving orbit: To slow the ship down from its extreme orbit speed, the ship flips around and actually flies backwards for a period of time. The orbital maneuvering engines (OMS) then thrust the ship out of orbit and toward Earth. Descent through atmosphere: After it's safely out of orbit, the shuttle turns nose-first again and enters the atmosphere belly-down (like a belly-flop) to"}, {"title": "rpj-common-crawl-2021-04", "text": "moved several manned ships back and forth from space during the 1960s and 1970s, coated the command module with special ablative material that burned up upon re-entry, absorbing heat. Unlike the Apollo vehicles, which were built for one-time use, space shuttles are reusable launch vehicles (RLVs). So instead of merely using ablative material, they must incorporate durable insulation. On the next page, we'll delve more deeply into the modern re-entry process for shuttles. The Demise of the Satellite Satellites don't have to stay up in Earth's orbit forever. Old satellites sometimes fall back to Earth. Because of the harsh conditions of re-entry, they can severely burn up on their way down. However, some of them can survive the fall and hit the Earth's surface. In controlled falls, engineers manipulate the propulsion systems on a satellite to make it fall in a safe place, like the ocean. The Descent of a Space Shuttle Re-entering Earth is all about attitude control. And, no, this doesn't mean astronauts need to keep a positive attitude (although that's always helpful). Rather, it refers to the angle at which the spacecraft flies. Here's an overview of a shuttle descent: Leaving orbit: To slow the ship down from its extreme orbit speed, the ship flips around and actually flies backwards for a period of time. The orbital maneuvering engines (OMS) then thrust the ship out of orbit and toward Earth. Descent through atmosphere: After it's safely out of orbit, the shuttle turns nose-first again and enters the atmosphere belly-down (like a belly-flop) to"}, {"title": "math", "text": "before the boostback burn, the stage flips so the engines point in the direction of travel. When ... \u2022 122k Accepted ### Did the astronauts seated on the space shuttle mid-deck have responsibilities during reentry and landing? There were no nominal activities for the middeck crew related to flying the vehicle. There were no switches or controls on the middeck accessible to seated crewmembers in the ascent/entry seats. The ... \u2022 169k Accepted ### What impact will the deorbiting of thousands of satellites have on the atmosphere? Not much research has been done on this question in recent years, but some researchers are worried enough to research into wooden satellites. The question on the environmental impact of deorbiting ... \u2022 11.2k Accepted ### Space Shuttle Challenger bringing back Salyut-7 No work was ever done on this in the Shuttle Mission Simulator (SMS), so they were nowhere \"close to an actual mission\". Not even any testing. Source: I worked to some extent on all missions ... \u2022 169k Accepted ### Why are spaceship capsules frustum shaped? The capsules designed to reenter the atmosphere have to slow down from about 8 km/s to zero by the time they get to the ground. They actually don't use the part that looks like a cone to do that. They ... \u2022 21k Accepted ### If I drop a feather from orbit, would it burn up or \"hit\" the ground? Throwing it down at 5 m/s will do basically nothing. That will simply cause it to advance in its orbit a"}, {"title": "rpj-common-crawl-2019-30", "text": "2 '18 at 8:34 $\\begingroup$ The Sprint anti-ballistic missile launches extremely fast and heats up a lot during launch, as it was designed to reach an altitude of 18 miles in about 15 seconds. It reaches Mach 10 in 5 seconds and requires an ablative heat shield to protect it from the heat (around 3400\u00b0C). It also forms a plasma sheath like a re-entry vehicle and needs special transmitters to get radio to it during ascent (if it works correctly, there is no descent!) $\\endgroup$ \u2013 Inductiveload Jan 3 '18 at 12:04 Recently I read up on spacecrafts entering earth using a heat shield. However, when exiting the earth atmosphere, it does not heat up, so it does not need a heat shield. Why is this so? A spacecraft on launch does heat up, just not to the degree that it does on reentry. And it heats up for the same reason--atmospheric drag, which includes adiabatic air compression and atmospheric friction. The key difference between launch and reentry is that they are two different flight profiles meant to optimize the drag variable (less drag on launch, more drag on reentry). (This is a simplified statement to address the OP's question regarding vehicle heating--real rocket launch and reentry dynamics are multi-variable optimizations.) On launch the rocket spends the initial portion of flight attempting to gain altitude to go into the upper atmosphere where the air is less dense. Then it switches into a lateral velocity regime to gain the necessary lateral velocity to obtain orbit. The rocket"}, {"title": "bm25", "text": "2 '18 at 8:34 $\\begingroup$ The Sprint anti-ballistic missile launches extremely fast and heats up a lot during launch, as it was designed to reach an altitude of 18 miles in about 15 seconds. It reaches Mach 10 in 5 seconds and requires an ablative heat shield to protect it from the heat (around 3400\u00b0C). It also forms a plasma sheath like a re-entry vehicle and needs special transmitters to get radio to it during ascent (if it works correctly, there is no descent!) $\\endgroup$ \u2013 Inductiveload Jan 3 '18 at 12:04 Recently I read up on spacecrafts entering earth using a heat shield. However, when exiting the earth atmosphere, it does not heat up, so it does not need a heat shield. Why is this so? A spacecraft on launch does heat up, just not to the degree that it does on reentry. And it heats up for the same reason--atmospheric drag, which includes adiabatic air compression and atmospheric friction. The key difference between launch and reentry is that they are two different flight profiles meant to optimize the drag variable (less drag on launch, more drag on reentry). (This is a simplified statement to address the OP's question regarding vehicle heating--real rocket launch and reentry dynamics are multi-variable optimizations.) On launch the rocket spends the initial portion of flight attempting to gain altitude to go into the upper atmosphere where the air is less dense. Then it switches into a lateral velocity regime to gain the necessary lateral velocity to obtain orbit. The rocket"}, {"title": "bm25", "text": "spacecraft\u2019s fall toward earth, a solid-fuel Antares II rocket behind the payload fired for 30 seconds, increasing the descent speed to 40,501 kilometers (25,166 miles) per hour. Instruments in the spacecraft radioed temperature data to the ground. The spacecraft exterior reached an estimated temperature of 11,400 K (20,000 degrees F). About 32 minutes after launch, the spacecraft impacted into the Atlantic Ocean. The mission, sponsored by Langley Research Center, provided reentry heating measurements needed to evaluate heatshield materials and information on the communications blackout during reentry. 1965 May 22 \u2013 . 21:55 GMT \u2013 . Launch Site: Cape Canaveral. Launch Complex: Cape Canaveral LC12. LV Family: Atlas. Launch Vehicle: Atlas D. LV Configuration: Atlas D 264D. FIRE 2 \u2013 . Nation: USA. Agency: USAF. Apogee: 817 km (507 mi). Suborbital reentry heating experiment using the FIRE subscale Apollo capsule. An Atlas D booster propelled the instrumented probe, called a \u201cflying thermometer,\u201d into a ballistic trajectory over 805 km (500 mi) high. After 26 minutes of flight, when the spacecraft began its descent, a solid-fueled Antares rocket accelerated its fall. The probe entered the atmosphere at a speed of 40,877 km (25,400 mph) and generated temperatures of about 11,206K (20,000 degrees F). Data on heating were transmitted to ground stations throughout the descent. Thirty-two minutes after the launch \u2013 and but six minutes after the Antares was fired \u2013 the device impacted in the Atlantic about 8,256 km (5,130 mi) southeast of the Cape. Fire 2 launched 22-May-1965 By 1967, most of the research in support of"}, {"title": "bm25", "text": "The Dragon spacecraft uses a carbon-based thermal protection system \u2013 a layer of ablative material which burns away, protecting the spacecraft. The importance of heat shielding was highlighted during the Columbia Shuttle incident, in which a tile was damaged on take off, resulting in the shuttle disintegrating upon reentry and killing the crew members. The heat generated will also depend on the entry angle. If the angle is too steep, the heat generated by the shockwave and friction at the front of the spacecraft will overwhelm the shielding, potentially causing the spacecraft to break apart or explode. Having said that, if all goes well, the advanced heat shielding materials used on the Dragon 2 are expected to withstand hundreds of atmospheric reentry flights. The human body has a limited tolerance to g-forces \u2013 most people will pass out at a sustained acceleration of 7g. As the Dragon 2 is designed to be the first commercial passenger spacecraft, the deceleration forces and heat tolerances must be demonstrably within safe limits on this test run. To test this safety for new astronauts, the Dragon 2 launch has a brave passenger. Ripley is a mannequin who is sat in one of the crew seats and will take data such as the internal temperature, pressure and g-forces experienced. This will ultimately determine if the reentry is safe for humans."}, {"title": "bm25", "text": "is a masterpiece of simplicity and is thus very reliable. The feathering system does not look to be any more complicated than ailerons. The use of passive stabilization on reentry eliminates dozens of failure points inherent in an active stabilization system. All your \\\"safety systems\\\" would increase vehicle weight increasing by an order of magnitude the likelihood of of an accident during reentry when an accident is most likely. The Space Shuttle is the most complicated machine ever built, and of its two catastrophic failures one was because it was launched in weather outside its flight envelope, and the other was because of bad design. Why do your arguments make me think you work for a different and larger aerospace firm, that has not been able to get its suborbital vehicle to fly? Will Sharp October 27, 2011 05:25 AM Gaetano Marano, Dude, the Space Shuttle didn\\'t have any of those \\\"safety features\\\" either. If a single thing failed on takeoff or landing, there was pretty much nothing that could be done. Same with pretty much any spacecraft out there. NASA takes delivery of Orion Artemis I spacecraft InSight's Mars \"mole\" abandoned after two years of troubleshooting Blue Origin's New Shepard completes 14th flight, with improved capsule Boeing to provide six new solar arrays for International Space Station"}, {"title": "bm25", "text": "component parts taken to orbit on separate launches. Furthermore, rotation of space crews and emergency rescue missions require rendezvous and docking capability. Reentry refers to the return of a spacecraft into Earth\u2019s atmosphere. The blanket of relatively dense gas surrounding Earth is useful as a braking, or retarding, force resulting from aerodynamic drag. A concomitant effect, however, is the severe heating caused by the compression of atmospheric air in front of the rapidly moving spacecraft. Initially, heat shields were made of ablative materials that carried away the heat of reentry as they were shed, but the space shuttle introduced refractory materials\u2014silica tiles and a reinforced carbon-carbon material\u2014that withstood the heat directly. Newer vehicle designs use active cooling and refractory metallic alloys. Inherent in the safe reentry of a spacecraft is precise control of the angle of reentry. For Apollo, this angle with respect to Earth\u2019s horizon was \u22126.2\u00b0. If the reentry angle is too shallow, the spacecraft will skip or bounce off the atmosphere and back into space. If the angle is too great, the heat shield will not survive the extreme heating rates nor the spacecraft the high forces of deceleration. Returning Apollo Command Modules approached Earth at nearly 40,000 km (25,000 miles) per hour. Even with a satisfactory reentry angle, the capsules\u2019 heat shields were subjected to temperatures approaching 3,000 \u00b0C (5,400 \u00b0F). During the final phases of descent, some spacecraft\u2014especially capsule-type manned craft\u2014deploy parachutes, which lower the vehicle to a soft landing. The Apollo Command Modules employed this technique to make ocean splashdowns."}, {"title": "bm25", "text": "Time-coordinated reentry guidance law for reusable launch vehicle Reusable launch vehicle (RLV) coordinated reentry guidance is one of the key conditions to determine the effect of coordinated flight. The existing RLV reentry guidance methods often take a single spacecraft as the research object and do not have the ability of coordinated reentry flight. To solve these problems, a coordinated reentry guidance scheme is designed. In this paper, a time coordination strategy is designed aiming at the predictability of reentry flight time. The pseudospectral method is used to predict the flight time of RLVs, and the coordinated flight time coordination of multiple RLVs is realized. Based on receding horizon control, a coordinated reentry guidance law is designed. In each guidance cycle, RLV flies according to the guidance instructions generated in the previous guidance cycle. At the same time, taking the previous reentry trajectory as the initial value and the coordinated flight time determined by the time coordination algorithm as the constraint condition, the pseudo-spectral method is used to generate the flight trajectory quickly. The angle of attack and inclination are used as guidance instructions for the next guidance cycle of RLV, so as to guide RLV to the target. Finally, the simulation results verify the performance of the reentry coordinated guidance law and the effectiveness of the whole reentry guidance scheme."}, {"title": "bm25", "text": "natural origin without any size limit) from comets, asteroids, and even differentiated bodies. With the exploration of space, anthropogenic objects like spacecraft and rocket bodies in orbit around Earth also enter the atmosphere. Upon reentry, bodies heat up and ablate depending on their physical and chemical properties. This way, matter in form of atoms and aerosols is injected into the atmosphere. With the steady growth of spaceflight activities with evermore nations operating space programs and the increase of commercialization, more and more objects are launched into orbit around Earth. This has raised major concerns about space debris (Klinkrad, 2006). As a result, standards have been introduced to minimize the amount of orbital debris (ISO Central Secretary, 2019) and space agencies like ESA and NASA have introduced guidelines and requirements, largely accepting those standards (see for example ESA, 2008;NASA, 2019). A consequence of these guidelines is that payload launched into low Earth orbit (LEO) has to be disposed of within 25 years after end of operation. This is achieved by reentry into the atmosphere. Hence, more and more anthropogenic material is injected into the atmosphere, raising questions about its significance in comparison to the natural injection caused by the ablation of meteoroids, and about possible impacts on the atmosphere itself. Several companies have proposed large satellite constellations of hundreds to thousands of small spacecraft in LEO providing global internet and other telecommunication services (Liou et al., 2018). The amount of spacecraft to be launched combined with their limited lifetime will dramatically increase the anthropogenic amount of mass"}, {"title": "bm25", "text": "bit. To deorbit, you need to throw it backwards, not down. However in this case, since the ... \u2022 58.1k ### During spacecraft reentry why is heatshield side down the most stable orientation? We\u2019re accustomed to seeing things travel pointy-end-first (bullets, rockets, arrows, Lamborghinis) so it seems \u201cnatural\u201d that Entry Vehicles (EV) should be most stable traveling pointy-end-first as ... \u2022 12.5k Accepted ### Gagarin not ejecting from capsule Initially, the USSR insisted that Gagarin had landed with the spacecraft, because of requirements for FAI certification of spaceflight records: One of the stipulations for spaceflight requires that ... \u2022 163k ### Apollo Command Module heatshield tube - what was it for? That is the remnant of one of the attachments between the Command and Service modules (there were three). Here is a cutaway drawing showing the bolt penetrating the heat shield (labeled \"tension tie\")... \u2022 169k Accepted ### Why did early satellites (e.g. China's Fanhui Shi Weixing) re-enter the atmosphere narrow end (nose)-first? The advantages of the blunt end first design were known well before either vehicle was launched (1958, a few years earlier for spy satellite designers). However, pointy end first is the simplest ... \u2022 2,247 Accepted ### Could one skydive from a space capsule that just had a parachute failure during re-entry? Would you even be able to open the door? It would depend on the capsule, but since the Apollo 1 fire, one expects crewed American capsules to have explosively-jettisoned hatches that can be ... \u2022 163k Accepted ### Is there such"}, {"title": "bm25", "text": "spacecraft as it goes into the atmosphere.\u201d Chew said, the problem is that the more material you use, the greater the weight of the spacecraft. That\u2019s why it\u2019s important to find the optimum thickness. \u201cWe know the rate at which the shield burns off from wind tunnel experiments and test data of the Orion spacecraft when it was launched into Earth\u2019s orbit in 2014,\u201d Harpale said. \u201cUsing this information as a starting point, we calibrated a numerical model to determine the heat shield material response for different flight profiles. We used multi-scale computations to find the rate at which AVCOAT burns. We know the heat flux on the surface for the reentry, so now we can figure out the temperature profile in the heatshield during reentry and ultimately the thickness required.\u201d Chew added, \u201cIn other words, we created an atomistic model to establish the chemistry of how the phenolic resin decomposes\u2014at what temperature they break up and become gases\u2014essentially the temperature at which it begins to burn. We used that information at the atomic-scale to create an engineering model capable of predicting the response at the structure level.\u201d One aspect Harpale said he didn\u2019t expect was learning that the actual recipe for AVCOAT mattered. When he began the research, he was just interested in understanding the atomistic response of the material at temperatures ranging from 440 to almost 4,000 degrees Fahrenheit in the spacecraft\u2019s trajectory. When attempting to recreate a data set from the 1960s, he realized that the material response is highly sensitive to the"}, {"title": "bm25", "text": "ESA Clean Space tackles space junk one component at a time VALETTA, Malta \u2014 Through a novel approach to testing, the European Space Agency\u2019s Clean Space initiative is assisting in the development of satellite components that are designed for demise, an approach to satellite development that advocates for the safe disposal of spacecraft by destructive atmospheric reentry. The ESA Clean Space initiative was launched in 2012 to consider the environmental impact of the agency\u2019s missions across their entire life cycle. A primary focus of Clean Space since its earliest days has been mitigating space debris through \u201cdesign for demise.\u201d The goal: making design choices that ensure a spacecraft component has less than a 1 in 10,000 chance of surviving reentry and posing a threat to people on the ground. When considering how to design components that are more likely to burn up in the atmosphere during reentry, the Clean Space team took a novel approach. Instead of relying on modeling software to understand the forces exerted on a specific component during a satellite\u2019s reentry, the team followed their models up with real-world testing. In order to simulate what a satellite and its components would experience during reentry, the team utilized a plasma wind tunnel at German space agency DLR\u2019s facility in Cologne. The wind tunnel is able to mimic the superheated gas, or plasma, that satellites encounter during reentry, subjecting individual components and sections of satellites to several thousands of degrees Celsius. Following a series of initial studies to identify which components of a satellite were"}, {"title": "bm25", "text": "Improved Air Turbo Rocket for Space Applications Application to Orbital Vehicles and Reentry An Air Turbo Rocket (ATR) is a propulsion system which combines a turbo jet with a rocket engine. Currently it is being touted as a propulsion system for future missile systems, as these engines have a higher thrust density when compared to other air breathing engines. This paper explores the possibility of modifying the ATR for use in space application as well as during spacecraft re-entry. Such modified ATR\u2019s could be used to power space vehicles up to the Low Earth Orbit (LEO) to dock with the International Space Station (ISS). In addition, thrust reversal techniques on the ATR systems could be used to improve the accuracy of Ballistic Missiles and hypersonic space planes upon Re-entry. Challenges faced would be in this type of air breathing engine would be operating at different atmospheric conditions. This paper will explore an ATR design, which will operate at different modes namely conventional mode, which will be used during below absolute ceiling, and the mission mode, which will be employed during flight in vacuum. Lastly, the reentry mode, which can be used for lessening the entry velocity of a vehicle to reduce the risks associated with reentry. The paper will try to emphasize the advantages of ATR as an affordable launch system for space shuttles and satellites with high maneuverability."}, {"title": "bm25", "text": "R-DBAS aims to provide direct reentry alerts to affected land, sea, and air craft (Credits: Kristhian Mason). The Reentry Direct Broadcasting Alert System (R-DBAS) is an evolution of the Reentry Breakup Recorder (REBR) concept, often called the black box of spacecraft. But unlike the REBR, which simply downloads data via satellite link for later analysis, the R-DBAS is intended as a direct communication tool with the end user. As a spacecraft carrying R-DBAS hits the atmosphere, it relays a message with the coordinates of the falling debris area to anyone with a receiver and a display, such as a laptop or iPad , warning them of the hazard. Despite increasing efforts to accurately predict space debris reentry, the exact time and location of reentry is still very uncertain. Partially, this is due to a skipping effect uncontrolled spacecraft may undergo as they enter the atmosphere at a shallow angle. Such an effect depends on atmospheric variations of density and winds that are difficult to model. When the skipping ends and atmospheric reentry starts, the trajectory and the overall location of surviving fragments can be precisely predicted but the time to impact the ground or to reach airspace is at that point very short. All of these factors together mean that population centers, ships, and aircraft have very little time to respond to incoming space debris. A GPS localizer combined with a pre-computed debris footprint area and direct broadcasting provides a solution. Schematic of the existing Reentry Breakup Recorder (Credits: The Aerospace Corporation). The risk to aviation"}, {"title": "bm25", "text": "Probabilistic Analysis of the Inadvertent Reentry of the Cassini Spacecraft's Radioisotope Thermoelectric Generators As part of the launch approval process, the Interagency Nuclear Safety Review Panel provides an independent safety assessment of space missions\u2014such as the Cassini mission\u2014that carry a significant amount of nuclear materials. This survey article describes potential accident scenarios that might lead to release of fuel from an accidental reentry during an Earth swingby maneuver, the probabilities of such scenarios, and their consequences. To illustrate the nature of calculations used in this area, examples are presented of probabilistic models to obtain both the probability of scenario events and the resultant source terms of such scenarios. Because of large extrapolations from the current knowledge base, the analysis emphasizes treatment of uncertainties."}, {"title": "bm25", "text": "is \"ultrasonic\". Etymology: The word supersonic comes from two Latin derived words; 1) super: above and 2) sonus: sound, which together mean above sound, or faster than sound. Supersonic objects The tip of a bullwhip is thought to be the first object designed to break the sound barrier, resulting in the telltale \"crack\" (actually a small sonic boom). The wave motion travelling through the bullwhip is what makes it capable of achieving supersonic speeds. However, the first man-made supersonic boom was likely caused by a piece of cloth, spurring the whip's eventual development. Most modern firearm bullets are supersonic, with rifle projectiles often travelling at speeds approaching and in some cases well exceeding Mach 3. Most spacecraft are supersonic at least during portions of their reentry, though the effects on the spacecraft are reduced by low air densities. During ascent, launch vehicles generally avoid going supersonic below 30 km (~98,400 feet) to reduce air drag. Note that the speed of sound decreases somewhat with altitude, due to lower temperatures found there (typically up to 25 km). At even higher altitudes the temperature starts increasing, with the corresponding increase in the speed of sound. When an inflated balloon is burst, the torn pieces of latex contract at supersonic speed, which contributes to the sharp and loud popping noise. Supersonic land vehicles To date, only one land vehicle has officially travelled at supersonic speed, the ThrustSSC. The vehicle, driven by Andy Green, holds the world land speed record, having achieved an average speed on its bi-directional run of"}, {"title": "bm25", "text": "entry, descent, and landing (EDL) process, compared with the traditional reentry vehicle, the flexible reentry vehicle can decelerate at a higher altitude, which effectively reduces the surface heat flux of the vehicle, decreases the plasma density of the shock layer, and increases the communication possibility between ground and aerospace [1][2][3][4][5][6][7][8][9]. Recently, the Japan Aerospace Exploration Agency (JAXA) and many universities have cooperated to develop a membrane reentry vehicle with an inflatable torus. The target vehicle is sent into a predetermined orbit by a sounding rocket, and the membrane expands rapidly and is maintained by the inflatable torus under vacuum and microgravity conditions. After the highest point of the orbit, the vehicle returns to the atmosphere. It is worth noting that the expanded membrane has a flotation effect during the descent, so vehicle does not need to install a parachute, which can ensure the vehicle maintains a low ballistic coefficient flight during the whole EDL process by the advantage of its large area and small weight, and reduce the speed when landing to achieve a soft landing. As a new type of return vehicle with multiple reentry advantages in the future, aerospace agencies of various countries have been successively launching a series of studies on this type of reentry vehicle since the 1960s. Yamada et al. [10,11] used scientific balloons for free flight tests in 2004 and 2009, respectively. The first experiment aimed to establish that the flexible membrane technology could effectively achieve a soft landing of the vehicle without a parachute, which was the primary goal"}, {"title": "bm25", "text": "ProjectOrion MPCV 4throck Enthusiast ! Great to see that Orion is generating the interest it deserves, with many add-ons to depict the different planned versions. Good work. Astro SG Wise Future Orion MPCV Pilot Just a few more photo ops. Thanks to francisdrake for tips of re-entry with Orion MPCV on Re-entering with Orion thread. Why does Orion re-enter the atmosphere twice, instead of once? I don't know if you remember me stating this, so I will restate it. I do not believe that you should put extra water around the CM when it splashes down. If you want to make it look like the bottom part of the CM is in water, you should cut off the round bottom in the mesh file. It was too marine/aqua colored as well. Thank you for the work! IronRain The One and Only (AFAIK) Moderator Donator Just a few more photo ops. Thanks to francisdrake for tips of re-entry with Orion MPCV on Re-entering with Orion thread. Why does Orion re-enter the atmosphere twice, instead of once? [ame=\"http://en.wikipedia.org/wiki/Skip_reentry\"]Skip reentry - Wikipedia, the free encyclopedia[/ame] Skip reentry is a reentry technique involving one or more successive \"skips\" off the atmosphere to achieve greater entry range or to slow the spacecraft before final entry, which helps to dissipate the huge amount of heat that is usually generated on faster descents. The range modulation made possible by skip entry allows a spacecraft to reach a wider landing area, or to reach a designated landing point from a wider range of possible"}, {"title": "bm25", "text": "of the computable modeling of Boltzmann-type velocity distribution function equation with internal energy excitation and the gas-kinetic massively parallel algorithm for hypersonic non-equilibrium aerothermodynamics during falling disintegration of the uncontrolled Tiangong-1 spacecraft. As this work is only the beginning of numerical forecast for un-controlling spacecraft falling from outer space, further investigations on the three-dimensional irregular multi-body flows with real gas effects involving internal energy excitation around disintegrating debris of uncontrolled spacecraft, need to be studied in the future. Reyhanoglu M, Alvarado J (2013) Estimation of debris dispersion due to a space vehicle breakup during reentry. Acta Astronautica 86:211\u2013218 Balakrishnan D, Kurian J (2014) Material thermal degradation under reentry aerodynamic heating. J Spacecr Rocket:1\u201310. https://doi.org/10.2514/1.A32712 Wu ZN, Hu RF, Qu X et al (2011) Space debris reentry analysis methods and tools. Chin J Aeronaut 24(4):387\u2013395 Caggiano A, Etse G (2015) Coupled thermo-mechanical interface model for concrete failure analysis under high temperature. Comput Methods Appl Mech Eng 289:498\u2013516 MathSciNet Article Google Scholar Li ZH, Ma Q, Cui JZ (2016) Finite element algorithm for dynamic thermoelasticity coupling problems and application to transient response of structure with strong aerothermodynamic environment. Commun Comput Phys 20(3):773\u2013810 MathSciNet MATH Article Google Scholar Peng AP, Li ZH, Wu JL, Jiang XY (2016) Implicit gas-kinetic unified algorithm based on multi-block docking grid for multi-body reentry flows covering all flow regimes. J Comput Phys 327:919\u2013942 Li ZH, Peng AP, Wu JL, Ma Q, Tang XW, Liang J, Gas-Kinetic Unified Algorithm for Computable Modeling of Boltzmann Equation for Aerothermodynamics during Falling Disintegration of Tiangong-type Spacecraft, Proc. of"}, {"title": "bm25", "text": "time. Mechanical insulation is commonly installed in industrial and commercial facilities. Refrigeration A refrigerator consists of a heat pump and a thermally insulated compartment.[3] Spacecraft Launch and re-entry place severe mechanical stresses on spacecraft, so the strength of an insulator is critically important (as seen by the failure of insulating tiles on the Space Shuttle Columbia, which caused the shuttle airframe to overheat and break apart during reentry, killing the astronauts onboard). Re-entry through the atmosphere generates very high temperatures due to compression of the air at high speeds. Insulators must meet demanding physical properties beyond their thermal transfer retardant properties. Examples of insulation used on spacecraft include reinforced carbon-carbon composite nose cone and silica fiber tiles of the Space Shuttle. See also Insulative paint. Automotive Internal combustion engines produce a lot of heat during their combustion cycle. This can have a negative effect when it reaches various heat-sensitive components such as sensors, batteries, and starter motors. As a result, thermal insulation is necessary to prevent the heat from the exhaust from reaching these components. High performance cars often use thermal insulation as a means to increase engine performance. Factors influencing performance Insulation performance is influenced by many factors, the most prominent of which include: It is important to note that the factors influencing performance may vary over time as material ages or environmental conditions change. Calculating requirements Industry standards are often rules of thumb, developed over many years, that offset many conflicting goals: what people will pay for, manufacturing cost, local climate, traditional building practices,"}], "hoverinfo": "text"}, {"x": [0.06282103061676025, -0.06524964421987534, 0.07413623481988907, -0.02645750157535076, 0.08525484055280685, 0.030234765261411667, 0.05134095251560211, -0.07064565271139145, 0.007844063453376293, 0.01070084422826767, 0.1226736307144165, -0.06837301701307297, -0.008295713923871517, 0.014195885509252548, 0.0032631983049213886, -0.046964533627033234, -0.028134360909461975, -0.03489575907588005, 0.007844063453376293, -0.06434353440999985, 0.07620507478713989, 0.008969474583864212, -0.02029586397111416, -0.02029586397111416, -0.04678775742650032, 0.06672302633523941, -0.033114392310380936, -0.04020049050450325, -0.07567931711673737, 0.06401538848876953, -0.07740265876054764, -0.07740265876054764, 0.020748011767864227, -0.03220014646649361, -0.07686194777488708, 0.026472996920347214, -0.08645984530448914, -0.10277356952428818, 0.03227740898728371, 0.03227740898728371, -0.13294489681720734, -0.033944811671972275, -0.036390118300914764, 0.00563822640106082, -0.043615616858005524, -0.0029159325640648603, 0.013731495477259159, -0.015275321900844574, 0.019767893478274345, 0.027041243389248848, 0.06282103061676025, 0.03742785379290581, -0.031702954322099686, -0.006128683686256409, 0.06608639657497406, 0.018834393471479416, -0.04194056615233421, 0.0667230486869812, -0.07686261832714081, 0.11220509558916092, 0.037352338433265686, -0.09390762448310852, -0.09390762448310852, -0.02116590365767479, -0.07005725055932999, -0.019808664917945862, 0.04071412980556488, -0.0650656446814537, 0.10357265174388885, -0.05790659785270691, 0.00938284583389759, -0.0839763730764389, -0.0774618610739708, 0.11226031929254532, 0.1226736307144165, -0.14022387564182281, -0.14022387564182281, 0.08525484055280685, 0.036034293472766876, -0.04157770797610283, 0.014874457381665707, 0.006999865639954805, -0.055484045296907425], "y": [-0.052582427859306335, -0.06586050242185593, -0.08465371280908585, -0.017277738079428673, -0.008661911822855473, -0.007740439847111702, 0.019623329862952232, -0.05870819091796875, -0.05471343919634819, -0.05361412465572357, -0.0805426612496376, -0.04360423609614372, -0.035149455070495605, -0.03635389357805252, -0.09372883290052414, -0.025040090084075928, -0.003128978656604886, 0.05409694463014603, -0.05471343919634819, -0.08337147533893585, 0.0019734830129891634, 0.03398246318101883, 0.08196409046649933, 0.08196409046649933, 0.00783409271389246, -0.03789883106946945, 0.0078180693089962, 0.06827021390199661, -0.1523989886045456, -0.105377696454525, -0.06451714038848877, -0.06451714038848877, -0.12149837613105774, -0.06438980996608734, -0.0605386458337307, -0.09636695683002472, -0.08226821571588516, -0.055817849934101105, -0.033239301294088364, -0.033239301294088364, -0.04488542303442955, -0.07130724936723709, -0.08723592013120651, -0.05294717475771904, -0.0877016931772232, -0.11621592193841934, -0.009697944857180119, -0.01982869766652584, -0.08849547803401947, -0.11130516976118088, -0.052582431584596634, -0.05238255858421326, -0.06293125450611115, -0.12358728796243668, -0.06693718582391739, -0.2159690409898758, -0.07538299262523651, -0.037898559123277664, -0.06053813546895981, -0.08198145776987076, -0.0971398651599884, -0.1521163433790207, -0.1521163433790207, 0.00455089146271348, -0.11008381843566895, -0.07105140388011932, -0.07965579628944397, -0.11825675517320633, -0.10043931752443314, -0.12347535789012909, -0.08934149146080017, 0.01272549293935299, -0.1011275127530098, -0.034215282648801804, -0.0805426612496376, -0.05224671959877014, -0.05224671959877014, -0.008661911822855473, -0.05329611152410507, -0.028451845049858093, -0.11628056317567825, -0.11075807362794876, -0.1506505310535431], "mode": "markers", "name": "Cluster 3", "marker": {"size": 8, "color": "rgb(251,128,114)"}, "text": ["Document 19", "Document 59", "Document 68", "Document 160", "Document 165", "Document 190", "Document 213", "Document 285", "Document 292", "Document 298", "Document 331", "Document 396", "Document 397", "Document 404", "Document 452", "Document 560", "Document 566", "Document 568", "Document 589", "Document 592", "Document 615", "Document 622", "Document 634", "Document 635", "Document 639", "Document 642", "Document 654", "Document 661", "Document 672", "Document 675", "Document 684", "Document 685", "Document 689", "Document 723", "Document 755", "Document 771", "Document 797", "Document 820", "Document 821", "Document 822", "Document 853", "Document 873", "Document 891", "Document 902", "Document 908", "Document 936", "Document 967", "Document 980", "Document 985", "Document 1000", "Document 1002", "Document 1033", "Document 1052", "Document 1062", "Document 1064", "Document 1066", "Document 1074", "Document 1077", "Document 1094", "Document 1122", "Document 1126", "Document 1127", "Document 1128", "Document 1147", "Document 1175", "Document 1196", "Document 1200", "Document 1239", "Document 1271", "Document 1290", "Document 1334", "Document 1335", "Document 1344", "Document 1366", "Document 1374", "Document 1443", "Document 1444", "Document 1448", "Document 1454", "Document 1467", "Document 1474", "Document 1480", "Document 1493"], "customdata": [{"title": "rpj-common-crawl-2019-30", "text": "Satellite's Last Days Improve Orbital Decay Predictions Posted December 15, 2015 6:21 PM Communication/Navigation Outage Forecasting System Scientists are learning more about how the upper atmosphere and ionosphere affect space satellites as well as communications and navigation here on Earth, thanks to new data from a U.S. Air Force satellite that recently completed a more than seven-year mission. The Communication/Navigation Outage Forecasting System (C/NOFS) satellite burned up in Earth's atmosphere during a planned reentry on Nov. 28, leaving behind a treasure trove of data about a part of the space environment that's difficult to study. The unique set of sustained observations from C/NOFS will greatly improve models currently used to predict satellite trajectories, orbital drag and uncontrolled re-entry. Scientists from the U.S. Air Force, NASA, and the University of Texas (UT) at Dallas are presenting the results at the American Geophysical Union Fall Meeting in San Francisco. Launched on April 16, 2008, C/NOFS studied a region high above in our atmosphere called the ionosphere, a layer of electrically charged particles created by ultra-violet radiation from the sun. This layer lies some 40 to 600 miles above the Earth's surface, where it interacts and co-mingles with the neutral particles of the tenuous upper atmosphere. The upper atmosphere and ionosphere change constantly in response to forces from above and below, including explosions on the sun, intense upper atmosphere winds, and dynamic electric field changes. In addition to interfering with satellite orbits, such changes can produce turbulence in the ionosphere that cause what's known as scintillations, which interfere with"}, {"title": "rpj-book", "text": "USA, Spain and Australia. Their spacing means that anything more than 30,000 km from the Earth should always be up for at least one of them. The European Space Agency has a similar facility (in Argentina, Spain and Australia), while other nations operate systems with less complete coverage.9 And, of course, for more distant craft you have to cope with that round-trip communications delay discussed earlier in this chapter. Finally, as we saw in Chap. , high speed entry into an atmosphere can generate a lot of heat. One consequence of this can be the creation of an envelope of ionized atmospheric gases around the craft, which interferes with or even totally blocks radio communications. Spacecraft returning to Earth will experience this comms blackout, as will probes landing on any other celestial body with enough of an atmosphere. The result is always several very tense minutes during which ground controllers have no idea what is happening to their craft. ## Engineering Success Regardless of how it is controlled, when you delve into the details of almost any space-based mission, at first it may seem rather astonishing how often something goes wrong at some point. When you pause and reflect, you may change that view. Given the size, complexity, duration and sheer difficulty of doing anything in space, it is not at all surprising that things frequently go wrong. What is surprising is how often and how quickly the mission recovers. In most cases this is _not_ just down to luck. An aspect of unmanned space missions"}, {"title": "rpj-common-crawl-2023-06", "text": "that interacts with them. And as the sun enters solar minimum \u2014 a low-activity period that happens every 11 years\u2014 the ionosphere expands. The Ion and Neutral Mass Spectrometer will have the chance to redeem itself from its defectiveness last year by sampling the densities of ionized and neutral atoms in this atmospheric region when Dellingr launches on its maiden journey this month. Editor's Note: This story was corrected at 8:15 p.m. EDT to clarify that \"6U\" refers to a cubesat's size, not the number of instruments it carries. Follow Doris Elin Salazar on Twitter @salazar_elin. Follow us @Spacedotcom, Facebook and Google+. Original article on Space.com. Doris Elin Urrutia Doris is a science journalist and Space.com contributor. She received a B.A. in Sociology and Communications at Fordham University in New York City. Her first work was published in collaboration with London Mining Network, where her love of science writing was born. Her passion for astronomy started as a kid when she helped her sister build a model solar system in the Bronx. She got her first shot at astronomy writing as a Space.com editorial intern and continues to write about all things cosmic for the website. Doris has also written about microscopic plant life for Scientific American\u2019s website and about whale calls for their print magazine. She has also written about ancient humans for Inverse, with stories ranging from how to recreate Pompeii\u2019s cuisine to how to map the Polynesian expansion through genomics. She currently shares her home with two rabbits. Follow her on twitter at"}, {"title": "rpj-common-crawl-2019-30", "text": "as others have stated, mostly due to the more sparse atmosphere. In LEO at 250km, there may be as many as $10^{-10}g/cm^3$ particles, whereas in GEO at 35,786km this is more like $10^{-20}g/cm^3$. Spacecraft in GEO experience other effects from the solar wind (surface charging and other electromagnetic effects). DiamondDiamond Another contributing factor is that the LEO satellite, at altitudes of 1-6 Mm, is getting pounded by the inner Van Allen belt. RogerRoger 1,02011 silver badge1414 bronze badges GEO satellites tend to be large satellites, because they have to be larger to support their missions. When you have to make them larger, then they are built with additional redundancy. In addition, GEO satellites do not have as many eclipses, they have them at most once a day for 90 minutes during eclipse season. For LEO satellites, their death tends to be due to poor batteries. The batteries are very stressed due to the constant use that they require. GEO satellites tend to end their lives when the fuel runs out. Fuel requirements are usually easier than batteries. LEO satellites tend to require a constellation to work effective. The redundancy in many ways is that there are usually other satellites in orbit that can \"pick up the slack\" if one of them fails. GEO satellites tend to require being in a specific location, and cannot support that kind of redundancy. Bottom line is, LEO satellites are built smaller, cheaper, and with lower lifetimes, and have more battery stress than GEO satellites. $\\begingroup$ I think you are quite"}, {"title": "rpj-common-crawl-2021-04", "text": "plane of the sky. The high gain antenna is pointing toward the Earth (toward the viewer).The spacecraft will first go behind the ionosphere (the yellow ring), then the neutral atmosphere (the blue ring) and then the planetary disc. The radio signal propagates from the spacecraft first through the ionosphere and later through the atmosphere towards the Earth. Timing and duration of planetary occultations during Mars Express's nominal and extended missions. Mars Express will differ from the other spacecraft that have performed similar experiments (Mariner 4 in 1965 and Mars Global Surveyor now) by using the S- as well as the X-band. \"The S-band is sensitive to plasma (ionised gas) densities,\" says P\u00e4tzold, which makes it particularly useful for studying the ionosphere, the ionised, outer part of the atmosphere. One of the outstanding questions about Mars is how it came to lose most of its atmosphere. One possibility is that the solar wind, the stream of charged particles flowing out from the Sun, has gradually stripped the atmosphere away through interactions with the ionosphere. The radio science experiment will measure density profiles in the ionosphere, which will help determine whether, how and when this happened. The speed of a spacecraft relative to the ground station can be measured with an accuracy of \"less than one tenth the speed of a snail at full pace,\" according to P\u00e4tzold. Such high precision is achieved by measuring the frequency change in the radio signal caused when the spacecraft moves towards or away from the ground station. (The phenomenon, called the"}, {"title": "rpj-common-crawl-2020-05", "text": "Jan 28 '17 at 0:35 $\\begingroup$ @DavidHammen OK ..my poor assessment of difficulty (of aiming the transmitter). $\\endgroup$ \u2013 Andrew Thompson Jan 28 '17 at 0:52 In space, there is a lot of electromagnetic radiation from sun and other space objects. No, there isn't. In classical physics, electromagnetic radiation is a wave phenomenon. Normally, waves of light pass through each other unperturbed. In quantum physics, there is such a thing as two-photon physics, but this takes very energetic photons. Neither the visible light from the Sun nor the radio waves from a spacecraft qualify as \"very energetic\". In short, there is no interference. There is a problem if (for example) Mars is close to being directly behind the Sun as seen from the perspective of the Earth. In this case, an Earth-bound antenna pointing toward Mars will also be pointing toward the Sun. This would be a very bad day for that Earth-bound antenna. This means that communications with Earth are suspended for about a week or two every other year for vehicles on or near Mars. Communications with Mars is not a problem outside of these solar connections. I see images of Mars by rovers, how is it noise-free and sharp? Designing communication protocols that are (to some extent) loss tolerant. This is, in part, the job of the Consultative Committee for Space Data Systems. Designing the communications capabilities of the spacecraft to be in line with the data to be gathered by the spacecraft. This is a collaborative effort between the designers of the"}, {"title": "rpj-common-crawl-2022-05", "text": "interference with the antenna)"}, {"title": "rpj-common-crawl-2022-05", "text": "22 watt transmitters onboard. NASA\u2019s JPL navigation teams have done an amazing job (ex the Mars Climate orbiter fiasco) and preparing now for the Perseverance rover landing on Mars. They use a quasar based positioning system and account for variables like the slight fluctuations in the Earth\u2019s rotational speed. My point in connection with this discussion is that the shielding requirements for a spacecraft traversing the interstellar medium at relativistic speeds are substantial and will require shielding for both charged and neutral particles. Outside the heliopause will be higher interaction with high energy Cosmic Rays but also energetic neutral atoms. A large piece of ice (or equivalent) be required at the front of the spacecraft for neutral atoms and an onboard magnetic deflector for charged particles. This additional shielding mass puts further load on the propulsion system. The James Webb IR telescope launch is now scheduled for October 31st ( fingers crossed). Scott #96: even if your prior tells you that the objects in these and other videos do not come from outer space, it remains to explain what they are. Unknown natural phenomena? Secret Chinese weapons? There could be some pretty interesting stuff to find out, even if the explanation is more mundane than the \u201calien from outer space\u201d one. I find it a little\u2026 unsatisfying, shall we say, that the skeptics typically dismiss the \u201calien\u201d hypothesis as implausible without bothering to propose a more plausible explanation. Rollo Burgess Says: In conversation on an episode of Sean Carroll\u2019s podcast (I forget which episode, sorry) he"}, {"title": "rpj-common-crawl-2022-05", "text": "to check that the electromagnetic emissions from various parts of the spacecraft \u2013 particularly the various radio antennas onboard \u2013 did not interfere with other spacecraft subsystems. During this phase of the tests, the spacecraft's high gain, medium gain and low gain antennas that will provide telemetry, tracking and communication (TT&C) for the mission were turned on one at a time, checking that all other systems were still operating properly. The engineers also had to verify the compatibility of the spacecraft's systems with sensitive external equipment. The Solar Orbiter EMC tests verified that no emissions from the spacecraft would interfere with the launch vehicle's radio receivers and transponders or with nearby radio antennas during the launch preparations and lift-off from the Cape Canaveral launch site in Florida, USA. Solar Orbiter in the magnetic field simulation facility. Credit: ESA\u2013S. Corvaja In addition, some specific compatibility tests were performed to determine whether the Radio and Plasma Waves (RPW) instrument would be affected by the spacecraft's electromagnetic emissions. This instrument is sensitive to electric and magnetic signals, so it was important to characterise the fields produced by the spacecraft in order to be discriminated later on from the actual measurements of the fields in space. Once in space, Solar Orbiter will deploy three 7-m long monopole antennas that are part of the RPW instrument. However, these are too long to be deployed in the EMC chamber, so the tests were carried out using shorter placeholder antennas plugged into the instrument, together with an external antenna linked to a receiver."}, {"title": "rpj-common-crawl-2021-04", "text": "he added, they shine incredibly faintly. This raises two main problems. First, the charged layer of Earth's atmosphere, the ionosphere, \"wreaks havoc\" with the radio waves that come through, Burns said, absorbing and refracting them until they're too difficult to interpret. And many of the wavelengths he's interested in run up against a major Earth emission \u2014 FM radio, which uses the same wavelengths of light and overwhelms the faint signal. [The Universe: Big Bang to Now in 10 Easy Steps] \"We've concluded that these observations are best done from a very quiet place that has no ionosphere,\" Burns said. \"And in the local part of our solar system nearest the Earth, that would correspond to the far side of the moon.\" DARE would take observations during the portion of its 2-hour orbit when the moon shields it from Earth's radio waves, while it's on the moon's far side. When shielded from the sun as well, the spacecraft could collect higher-quality data; the best possible time is during the full moon, DARE materials said. Blasting off Burns hopes to submit a proposal to NASA's Explorer program in December \u2014 if selected to do a concept study and chosen for flight after that, the mission could launch somewhere around 2021 or 2022, he said. The DARE team has partnered with Ball Aerospace, which is also based in Boulder, to develop plans to repurpose one of the company's smaller spacecraft to deliver the probe to lunar orbit. \"One of the main differences between this mission and most other"}, {"title": "rpj-common-crawl-2019-30", "text": "space weather The northern lights interfere with radio communications, GPS navigation and satellite communications. Researchers are now going to launch 20 satellites containing world class instruments from the University of Oslo to find out why. Satellites are becoming increasingly important in communications and navigation. This makes us more vulnerable to the northern lights, especially within offshore and aviation. In a worst case scenario an aircraft can lose contact with its surroundings. Oil tankers can struggle with precise navigation. In order to more precisely predict when radio communications and navigation will fail, researchers require more information about what happens when violent solar winds hit the Earth and produce the northern lights. The solar winds consist of charged particles and produce powerful turbulence in the ionosphere, which consists of plasma clouds with electrical particles at an altitude of 80 to 500 km. The turbulence interferes with radio signals. Sometimes they are reflected wrongly. On other occasions the signals are blocked altogether. \u201cIn the northern regions GPS satellites lie low in the sky. This means the signals have to pass through the ionosphere. This reinforces the navigation problems,\u201d says professor J\u00c3\u00b8ran Moen of the Department of Physics at University of Oslo (UiO), Norway. Full story: http://www.apollon.uio.no/english/articles/2012/spaceweather.html Categories: Astronomy, Astrophysics, Aurorae, CME (Coronal Mass Ejections), Earth, General Astronomy, Solar System, Sun Tags: astronomy, aurora, Nature, news, science, space AstroNews Is Coming Back Online May 14, 2012 astronewsus Leave a comment Okay, so it\u2019s been awhile but I\u2019ve got some help and we\u2019re looking to get AstroNews back up \u2018n running"}, {"title": "rpj-common-crawl-2020-05", "text": "enough not to harm the spacecraft. (The radio signal can't literally \"burn\" the spacecraft, but it seems conceivable that a radio receiver designed to listen for very faint radio signals from millions of kilometers away might be harmed by the loudness of the same signals sent from very short range.) Here's another interesting remark: Roscosmos head Vladimir Popovkin denied information on their existing spacecraft \"Phobos-Grunt\" design flaws that may prevent the establishment of contact with it. Earlier media reports that the device has a design flaw: one of its antennas pointing towards the ground, the other grayed [blocked by?] tank with fuel and propulsion system. \"I'm from you first hear it,\" - said Popovkin told reporters. He noted that currently the Russian Space Agency experts are trying to establish control over the \"Phobos-Grunt.\"This is referring to discussion taking place on many forums suggesting that the radio antenna that the spacecraft's controllers are trying so hard to talk to is blocked by the jettisonable fuel tank of the modified Fregat upper stage rocket engine. Speaking of forum discussions, they've started a new thread at nasaspaceflight.com to follow the continuing Phobos-Grunt saga. That and Russianspaceweb remain the best English-language places to find news. Read more: Phobos and Shuttle LIFE, Planetary Society Projects, mission status, Phobos-Grunt and Yinghuo-1 India's Vikram Spacecraft Apparently Crash-Lands on Moon Your Impact: Mission Success! Venus\u2019 Ocean of Air and Clouds Javier Peralta"}, {"title": "rpj-common-crawl-2023-06", "text": "paths, Earth had moved so far ahead that it finally was on the opposite side of the Sun from the spacecraft. You can visualize the alignment by imagining the face of a clock. If the Sun is at the center, then Earth is the same distance as the tip of the hour hand, and DS1, in its more distant orbit, is at the tip of the minute hand. Last month they were on opposite sides of the center, as if it were 6:00, in an arrangement astronomers call superior conjunction. Now in one way, this alignment is not special. After all, with so many bodies orbiting the Sun at different speeds, many coincidences of geometry occur. But it was significant for DS1, because the radio signals that normally take instructions from Earth to the probe and return data from the probe to Earth had to pass very near the Sun. The unpredictable turbulence of the plasma in the solar corona can cause strong interference, even to the point of completely drowning out these signals. So DS1\u2019s controllers had to assume that communications would be impossible during the time the spacecraft was nearly aligned with the Sun. Instructions were radioed to the craft in October to configure it for a month without ground assistance. From October 30 to November 28, it did not expect to hear from Earth at all. If any problems had occurred during the period of superior conjunction, DS1\u2019s terrestrial colleagues would have been unable to provide assistance. Although the ion propulsion system has"}, {"title": "rpj-c4", "text": "When a satellite is launched into orbit it has an expected life span. In some cases a satellite can continue to function well beyond what was predicted, such as in the case of NASA\u2019s world record-holding Landsat 5. Other times satellites just fail inexplicably. If you asked most people why a satellite fails they\u2019d probably guess that it was hit by something, either a man-made piece of space junk or a micro-meteoroid more commonly known as space dust. But a number of satellites have failed without any noticeable damage having been caused \u2014 their on board systems just shut down, and a Stanford researcher thinks she\u2019s figured out why. Satellites typically transmit a radio signal in order to communicate with Earth. And it is that signal that\u2019s allowing the satellites to be damaged to the point of shutting down. The culprit is space dust, but not because of a micro-meteoroid impact with the satellite causing physical damage. Sigrid Close, an assistant professor in aeronautics and astronautics at Stanford, has discovered that due to the speed at which space dust is traveling when it hits a satellite or nearby object, it turns into a \u201cquasi-neutral gas of ions and electrons.\u201d That plasma emits a signal in the form of an electromagnetic pulse (EMP) burst, which can either damage or completely shut down the electronics of the satellite. Professor Close tested her theory at the Max Planck Institute for Nuclear Physics in Germany by firing dust at an object at 60km/second. Sure enough, the dust created a gas"}, {"title": "rpj-common-crawl-2022-05", "text": "sure what that means, but I guess hope springs eternal. Erny72 says: No. Bird was not old, solar activity is insignificant and would not have effected proper engineered electronics. Greenies deliberately turning off the satellite vs. just complete ESA incompetence. If just ESA incompetence, its because its run by greenies more interested in the agenda then science, so either way \u2026. Very unprofessional writing. Look at the first sentence of the press release. The way it\u2019s worded, it\u2019s not Envisat that just celebrated it\u2019s tenth year in orbit, but COMMUNICATION with Envisat. John Blake Having realized to what misuse AGW Catastrophists typically applied its hard-earned data, Envisat has probably perished of a broken heart. DesertYote says: May 10, 2012 at 11:35 am No. Bird was not old, \u2026 whereas the lead-post story says: \u201cOld?\u201d; It would indeed seem so \u2026 kadaka (KD Knoebel) says on May 10, 2012 at 1:00 am Question: Given the various worries such as solar events, space junk, small asteroid and micro-meteorite impacts, and assorted semi-random death rays, could we make do about as we are now with no-satellite surface-based communications? I know there are frequencies that \u201cbounce\u201d around the ionosphere, as with shortwave radio. Can we get enough bandwidth? \u2026 This isn\u2019t 1950 (or even 1960 or 1970); there is more than sufficient capacity on fiber (fibre ?) running around the world, not to mention the lower latency (spell that: \u201cpropagation delay time\u201d) mentioned by \u2018Echo\u2019 \u2018Mike\u2019 Smith above. Geostationary satellite latency and time delay http://www.satsig.net/latency.htm If you are located on"}, {"title": "rpj-common-crawl-2021-04", "text": "groups to find it unsatisfying if any of Dawn's electronics produced signals that accidentally activated the rocket's self-destruct system. (That system is designed to be commanded with radio signals transmitted by range safety in the event of a serious malfunction during ascent.) Similarly, if Dawn's radio emissions interfered with the rocket's reception of range safety's self-destruct command, the legions of Dawnophiles throughout the Milky Way Galaxy, and the even greater number elsewhere, would no longer give this project their loyal support. In addition to testing Dawn's compatibility with other systems, engineers are testing its self-compatibility. It is essential to verify that none of the subsystems, including the radio used for interplanetary communications, emits electromagnetic radiation that might interfere with other subsystems. Of course, Dawn's designers and builders were well aware of these and other concerns, and they have methods to make the probe satisfy the many associated requirements, but only through testing may we be confident that the work was successful. With the completion of testing in the electromagnetic interference/electromagnetic compatibility facility, the spacecraft will be prepared for a series of mechanical tests. For the rocket's control systems to remain stable with Dawn perched at the top, it must be accurately balanced and must meet certain criteria for how stable it is when it is spun, and the next set of tests will help prepare for that. (As we will discuss in an upcoming log in more detail, the spacecraft will spin at about 50 rpm during a portion of the time it is on the"}, {"title": "rpj-c4", "text": "Why Doesn't The Signal From Spacecraft Get Lost? Radio signals can and do collide with other objects in space, and definitely do disperse between the spacecraft and the Earth, but they will reach the Earth for two reasons. The first; even though our solar system has a lot of stuff in it, the vast majority of it is still empty space. The second is that all spacecraft are equipped with finely tuned and precisely calibrated antennas, which allow them to aim their signal directly at the earth, rather than beaming its signal in every direction. Beaming signal in every direction would require a lot of power to produce, so it\u2019s much more efficient to use a smaller amount of power to limit the signal to only direction you care about, i.e., in the direction of Earth. Now, if you\u2019re a spacecraft orbiting another planet, you can easily imagine that the planet will occasionally get in the way of you beaming information back to the Earth. Radio signals do not go through planets, and nor do they go on curved paths. So the spacecraft, in these times, must be capable of running itself for a while, before it comes back around from the far side of the planet (from an Earthly perspective). During these times the spacecraft are always in a communications blackout, and totally unable to communicate with us on Earth. All spacecraft are designed to operate this way \u2013 they have to be able to run a series of tasks without continual monitoring by someone"}, {"title": "rpj-common-crawl-2020-05", "text": "Communication in Commercial Reusable Launch Vehicle Operations Hardy, Terry L. A number of inventors and entrepreneurs are currently attempting to develop and commercially operate reusable launch vehicles to carry voluntary participants into space. The operation of these launch vehicles, however, produces safety risks to the crew, to the space flight participants, and to the uninvolved public. Risk communication therefore becomes increasingly important to assure that those involved in the flight understand the risk and that those who are not directly involved understand the personal impact of RLV operations on their lives. Those involved in the launch vehicle flight may perceive risk differently from those non-participants, and these differences in perception must be understood to effectively communicate this risk. This paper summarizes existing research in risk perception and communication and applies that research to commercial reusable launch vehicle operations. Risk communication is discussed in the context of requirements of United States law for informed consent from any space flight participants on reusable suborbital launch vehicles. Informing people about radiation risks: a review of obstacles to public understanding and effective risk communication Covello, V.T. This paper reviews the literature on informing people about radiation risks. The paper focuses on obstacles to public understanding and effective risk communication. The paper concludes with a set of guidelines for communicating information about radiation risks to the public. The paper also includes an appendix that reviews the literature on one of the most important tools for communicating information about radiation risks: risk comparisons Development of Communication Strategies for the Marketing of Electronic"}, {"title": "rpj-common-crawl-2021-04", "text": "to check that the electromagnetic emissions from various parts of the spacecraft \u2013 particularly the various radio antennas onboard \u2013 did not interfere with other spacecraft subsystems. During this phase of the tests, the spacecraft's high gain, medium gain and low gain antennas that will provide telemetry, tracking and communication (TT&C) for the mission were turned on one at a time, checking that all other systems were still operating properly. The engineers also had to verify the compatibility of the spacecraft's systems with sensitive external equipment. The Solar Orbiter EMC tests verified that no emissions from the spacecraft would interfere with the launch vehicle's radio receivers and transponders or with nearby radio antennas during the launch preparations and lift-off from the Cape Canaveral launch site in Florida, USA. Solar Orbiter in the magnetic field simulation facility. Credit: ESA\u2013S. Corvaja In addition, some specific compatibility tests were performed to determine whether the Radio and Plasma Waves (RPW) instrument would be affected by the spacecraft's electromagnetic emissions. This instrument is sensitive to electric and magnetic signals, so it was important to characterise the fields produced by the spacecraft in order to be discriminated later on from the actual measurements of the fields in space. Once in space, Solar Orbiter will deploy three 7-m long monopole antennas that are part of the RPW instrument. However, these are too long to be deployed in the EMC chamber, so the tests were carried out using shorter placeholder antennas plugged into the instrument, together with an external antenna linked to a receiver."}, {"title": "rpj-common-crawl-2021-04", "text": "Archive Page \u2014 No Longer Maintained Return to Current Site Blogs | Dawn Journal | October 29, 2006 By Marc Rayman Dear Dawnvironments, The Dawn spacecraft is in space! Well, not quite, but it is getting a taste of the space environment, courtesy of the team preparing it for its mission. Although the individual components of the spacecraft have already been tested, the point of the testing in Orbital Sciences Corporation's Environmental Test Facility is to verify that the fully assembled spacecraft will survive the rigors of launch and be able to fulfill its ambitious mission of exploration in deep space. When Dawn is on the launch pad at Cape Canaveral and during the brief (but exciting!) trip from there to space, many radio signals between systems on the ground and between ground systems and the rocket will impinge upon it. Some of the tests are designed to verify that these signals will have no adverse effects on the spacecraft. Other tests show that Dawn's electronics do not produce signals that might interfere with these other systems. As one illustration of the importance of such tests, consider the scientists eager for Dawn's intimate portrait of the enormous asteroids Ceres and Vesta, the team members who have invested years of their lives in creating this spaceship and the means to use it to explore distant worlds, all people who thirst for greater knowledge of our solar system and the thrill of discovery, and taxpayers who make it possible. One may reasonably expect members of all of those"}, {"title": "pes2o", "text": "who specializes in UV transmitting fibres or radiation resistant fibres. THE PROPOSED MODEL: When a solar storm event occurs, in order to shield the satellites from the dielectric charging, it is necessary to power them down. While in this condition, they are to be replaced with an alternate link in order to process the highly critical communication. The basic model shown in Fig.4 includes a terrestrial optical mesh network. This has to be used to stop the radiation from interfering with the ground communications. This network is connected to another domain over the horizon via a mid-space repeater (MSR). The basic model (above) includes a terrestrial optical mesh network. This is to stop the radiations from interfering with the ground communications. This network is connected to another domain over the horizon via a mid-space repeater. These repeaters can be hot air balloons, mini aircrafts, UAVs, etc. These have to be shielded from the external environments by placing them in radiation proof cases. This setup takes up to 30mins from launch to transmission. This is to be used once the CME has passed the Earth's magnetosphere. These repeaters help in overcoming the Earth's curvature effect. The only disadvantage for this is a line of sight communication is necessary. Once the turbulence in the magnetosphere calms down, backup satellites or mini COMSATS kept ready for launch must be fired. These are to be set up at the LEO patch. Thus during the CME event, the communication is restored. The model has been thought over several times to eliminate"}, {"title": "rpj-common-crawl-2019-30", "text": "any possible blackout period, and a nominal likely trajectory to quantify likelihood of blackout for such cases. Morabito, David D.; Edquist, Karl T. The Mars Science Laboratory (MSL) is expected to be a long-range, long-duration science laboratory rover on the Martian surface. MSL will provide a significant milestone that paves the way for future landed missions to Mars. NASA is studying options to launch MSL as early as 2009. There are three elements to the spacecraft; carrier (cruise stage), entry vehicle, and rover. The rover will have a UHF proximity link as the primary path for EDL communications and may have an X-band direct-to-Earth link as a back-up. Given the importance of collecting critical event telemetry data during atmospheric entry, it is important to understand the ability of a signal link to be maintained, especially during the period near peak convective heating. The received telemetry during entry (or played back later) will allow for the performance of the Entry-Descent-Landing technologies to be assessed. These technologies include guided entry for precision landing, a new sky-crane landing system and powered descent. MSL will undergo an entry profile that may result in a potential communications blackout caused by ionized particles for short periods near peak heating. The vehicle will use UHF and possibly X-band during the entry phase. The purpose of this rep0rt is to quantify or bound the likelihood of any such blackout at UHF frequencies (401 MHz) and X-band frequencies (8.4 GHz). Two entry trajectory scenarios were evaluated: a stressful entry trajectory to quantify an upper-bound for"}, {"title": "rpj-common-crawl-2019-30", "text": "the parachute on a bridle. The swinging motion of the lander imparts high Doppler dynamics on the signal and causes the received signal strength to vary widely, due to changing antenna pointing angles. All this time, the vehicle transmits important health and status information that is especially critical if the landing is not successful. Even using the largest Deep Space Network antennas, the weak signal and high dynamics render it impossible to conduct reliable phase coherent communications. Therefore, a specialized form of frequency-shift-keying will be used. This paper describes the EDL scenario, the signal conditions, the methods used to detect and frequency-track the carrier and to detect the data modulation, and the resulting performance estimates. Planetary/DOD entry technology flight experiments. Volume 2: Planetary entry flight experiments Christensen, H. E.; Krieger, R. J.; Mcneilly, W. R.; Vetter, H. C. The technical feasibility of launching a high speed, earth entry vehicle from the space shuttle to advance technology for the exploration of the outer planets' atmospheres was established. Disciplines of thermodynamics, orbital mechanics, aerodynamics propulsion, structures, design, electronics and system integration focused on the goal of producing outer planet environments on a probe shaped vehicle during an earth entry. Major aspects of analysis and vehicle design studied include: planetary environments, earth entry environment capability, mission maneuvers, capabilities of shuttle upper stages, a comparison of earth entry planetary environments, experiment design and vehicle design. Composition of the earth's atmosphere by shock-layer radiometry during the PAET entry probe experiment. Whiting, E. E.; Arnold, J. O.; Page, W. A.; Reynolds, R."}, {"title": "rpj-common-crawl-2019-30", "text": "the parachute on a bridle. The swinging motion of the lander imparts high Doppler dynamics on the signal and causes the received signal strength to vary widely, due to changing antenna pointing angles. All this time, the vehicle transmits important health and status information that is especially critical if the landing is not successful. Even using the largest Deep Space Network antennas, the weak signal and high dynamics render it impossible to conduct reliable phase coherent communications. Therefore, a specialized form of frequency-shift-keying will be used. This paper describes the EDL scenario, the signal conditions, the methods used to detect and frequency-track the carrier and to detect the data modulation, and the resulting performance estimates. Planetary/DOD entry technology flight experiments. Volume 2: Planetary entry flight experiments Christensen, H. E.; Krieger, R. J.; Mcneilly, W. R.; Vetter, H. C. The technical feasibility of launching a high speed, earth entry vehicle from the space shuttle to advance technology for the exploration of the outer planets' atmospheres was established. Disciplines of thermodynamics, orbital mechanics, aerodynamics propulsion, structures, design, electronics and system integration focused on the goal of producing outer planet environments on a probe shaped vehicle during an earth entry. Major aspects of analysis and vehicle design studied include: planetary environments, earth entry environment capability, mission maneuvers, capabilities of shuttle upper stages, a comparison of earth entry planetary environments, experiment design and vehicle design. Composition of the earth's atmosphere by shock-layer radiometry during the PAET entry probe experiment. Whiting, E. E.; Arnold, J. O.; Page, W. A.; Reynolds, R."}, {"title": "rpj-c4", "text": "positioning dust sensitive apparatus at a distance as far as possible from the pedestal centre of operations. To prevent environmental disturbance as part of ESA\u2019s goal however, there is still good news that STS could still set up a lunar base on nearside but through a careful site selection approach integrating the lunar science\u2019s potentially completing interests, operational constraints, resource utilization and other important factors such as lunar landscape\u2019s topography, launch and landing trajectories of the transportation vehicles, safety considerations like free abort trajectories, probability of utilizing lunar resource, communications needs to, from and on to the lunar space and scientific objectives (June and Camp, 1983). All potential hazards brought about by launching and testing spacecrafts have to be dealt with agency. Studies indicate that exposure to recurrent nuclear blasts cause the problem of erosion (ablation) of the pusher plate. According to experiments and calculations, ablation of less than 1 mm happen incase a steel plate is not protected. This is a problem that is easily solved through spraying with oil. Additionally spalling can happen hence destroying the pusher plate; this problem is solved however by using alternative materials such as fiberglass and plywood (June and Camp, 1983). ESA is determined to minimize possible environmental and human health hazards hence this move will help attain it. A serious problem could occur from a launch of the spacecraft from the Earth\u2019s surface, the nuclear fallout. Researches indicate that any explosion in the magnetosphere could bring fissionable back to the earth\u2019s surface except if the launch happened from"}, {"title": "rpj-common-crawl-2021-04", "text": "Plunging into the ionosphere: Satellite's last days improve rrbital decay predictions NASA/Goddard Space Flight Center IMAGE: The US Air Force Communication/Navigation Outage Forecasting System re-entered Earth's atmosphere on Nov. 28, 2015, after a more than seven-year mission. Observations during its last year will help scientists better... view more Credit: NASA's Goddard Space Flight Center Scientists are learning more about how the upper atmosphere and ionosphere affect space satellites as well as communications and navigation here on Earth, thanks to new data from a U.S. Air Force satellite that recently completed a more than seven-year mission. The Communication/Navigation Outage Forecasting System (C/NOFS) satellite burned up in Earth's atmosphere during a planned reentry on Nov. 28, 2015 leaving behind a treasure trove of data about a part of the space environment that's difficult to study. The unique set of sustained observations from C/NOFS will greatly improve models currently used to predict satellite trajectories, orbital drag and uncontrolled re-entry. Scientists from the U.S. Air Force, NASA, and the University of Texas (UT) at Dallas are presenting the results at the American Geophysical Union Fall Meeting in San Francisco. Launched on April 16, 2008, C/NOFS studied a region high above in our atmosphere called the ionosphere, a layer of electrically charged particles created by ultra-violet radiation from the sun. This layer lies some 40 to 600 miles above the Earth's surface, where it interacts and co-mingles with the neutral particles of the tenuous upper atmosphere. The upper atmosphere and ionosphere change constantly in response to forces from above and below,"}, {"title": "rpj-common-crawl-2019-30", "text": "magnetosphere needs to also survive other, more persistent dangers. Constant exposure to ionising radiation, cosmic rays, and large temperature changes mean that electronic systems need to be designed with shielding, fail-safes, and redundancies in mind. While one would assume that modern spacecraft are filled to the brim with the latest technology, that is rarely the case. The major problem with space missions is that once a craft leaves Earth, there is very little that can be done when things go awry, especially during unmanned missions. That is why it is far more important to use technology that has been tried and tested which means that some of the components that make it into the spacecraft can be years or even decades old. You might ask, why do engineers go to such lengths to put electronic systems on spacecraft? Well, as it turns out, virtually every aspect of modern spaceflight relies on electronics. Key systems like navigation, communications, telemetry, and sensors are made possible thanks to electronics. Moreover, any unmanned missions, which make up the vast majority of space missions, would be impossible without electronics that enable the spacecraft to be controlled from Earth. Taking it a step further, probes that conduct missions in deep space need to be able to make their own, real-time decisions. This also necessitates the use of computers. Because of the vastness of space, it can take minutes or even hours for a signal to travel to Earth and back, making it impossible to control the craft remotely in situations where fast"}, {"title": "rpj-common-crawl-2022-05", "text": "Receiver: An electronic device that receives incoming radio signals and converts them to perceptible forms. Red dwarf: A small star, on the order of 100 times the mass of Jupiter. Redundancy: The duplication of certain critical components in a space vehicle. Reentry: The descent into Earth\u2019s atmosphere from space. Reentry interface: An altitude 400,000 feet; the point at which reentering spacecraft are considered to enter the Earth\u2019s atmosphere. Refraction: The deflection or bending of electromagnetic waves when they pass from one kind of transparent medium into another. Regenerative cooling: Circulation of a propellant through a jacket around the combustion chamber in order to cool the chamber wall, the propellant subsequently being injected into the combustion chamber. Relay: An electrical switch employing an armature to open and close circuits. Rem: Roentgen Equivalent Man. A measure of nuclear radiation causing biological damage. Remote sensing: Instruments that record characteristics of objects at a distance, sometimes forming an image by gathering, focusing, and recording reflected light from the Sun, or reflected radio waves emitted by the spacecraft. Rendezvous: A place of meeting at a given time, for example, a spaceship with a space station. Resolution: Ability to distinguish visual detail, usually expressed in terms of the size (in kilometers) of the smallest features that can be distinguished. Resonance: A relationship in which the orbital period of one body is related to that of another by a simple integer fraction, such as 1/2, 2/3, 3/5. Retrograde: Orbital motion in the direction opposite to the primary\u2019s rotation. Retrorocket: A rocket fired to"}, {"title": "rpj-common-crawl-2022-05", "text": "is sending more information per second.\u201d With NASA looking to return to the Moon by 2025 through the Artemis program and stay there longer, the scientist said the agency expects a greater volume of information and therefore a greater demand for improved and streamlined communications. Once in orbit, Ocasio said, the LCRD, designed by the Massachusetts Institute of Technology (MIT), will be \u201cin operation\u201d for the holidays, to prioritize other satellites. See also Guyana is investigating alleged violations of its airspace by Venezuela From that moment on, tests will begin, which will be expanded when the station is installed on the International Space Station next year. Ocasio also explained that these LCRD infrared systems weigh less, are smaller and use less energy than radio waves, allowing, among other things, more space for research instruments and less weight to launch missiles. One of the challenges she had to overcome in building the LCRD, Ocasio said, was the weather conditions in Earth\u2019s atmosphere, \u201cif it\u2019s not enough, the signal can be damaged a little bit\u201d because it doesn\u2019t go inside a cable connecting it. \u201cIt\u2019s a beam of light that has to pass through the clouds of the atmosphere, but once the communication is in space, we no longer have that problem,\u201d he said. Las Lopas will play the South American final against Brazil \u2018Tempranillo\u2019: Andrea Legareta mocks Lucia Mendes for mistaking the wine type for a moment of the day | Video"}, {"title": "rpj-common-crawl-2022-05", "text": "has weather. Rick Doe, a Senior Research Physicist at SRI International, explained that you can corrupt radio signals when you cross the ionosphere, and \u201cradio waves are particularly susceptible to distortions\u201d when they encounter disruptions to ions. We depend on these distorted radio signals for navigation on Earth, including commercial aircraft, so this distortion can be a key determinate when doing things like autonomously navigating aircraft. Being able to determine when signals are particularly distorted by concentrated distorting activity in the ionosphere can help make sure that autonomous navigation takes into account and forecasts for these things in order to help mitigate their impact. It\u2019s not about countering the effect of this activity \u2014 Doe notes that it\u2019s like a tornado in terms of terrestrial weather: You don\u2019t try to counter the tornado, you plan around it and its impact when you\u2019re able to predict its occurrence. The program will provide similar prediction and mitigation abilities for solar weather. SpaceX\u2019s mission is currently set for launch on June 24 at 11:30 PM ET, and it\u2019ll carry all of the above on behalf of client NASA. We\u2019ll have coverage of the launch, so check back later this month for more."}, {"title": "rpj-common-crawl-2022-05", "text": "to VAFB (Vandenberg Air Force Base). Therefore, they need to get a special permit which encompasses all of the constituent spacecraft, as well as the IPS elements. Evidence of all of the individual spacecraft permits are needed to accomplish this. Even more vital is FCC licensing. As part of the FCC frequency approval, they also review orbital debris policy compliance. This includes debris mitigation on orbit (recontact & conjunction analyses), reentry within 25 years, and reentry hazards at end of mission. For this, specific spacecraft information is included in the supporting analysis and application. Given the large number of spacecraft on SSO-A, this is not a trivial effort. As mentioned previously, a complex Monte Carlo separation and conjunction analyses was conducted for all of the separating objects on the mission. Similarly, a reentry debris hazard analysis was completed for the UFF and LFF structures and subsystems that remained after spacecraft separation. The results of these analyses, along with other required documentation, were reviewed with and submitted to the FCC for frequency approval. Getting frequency approvals is critical to facilitate the launch. When SpaceX applies for their FAA license to launch, they submit a list of all spacecraft on the mission. The FAA initiates an interagency review to assure all applicable US Government agencies do not have concerns with any elements of the mission. As part of this review, the FCC provides confirmation that all US-origin spacecraft have the proper licensing. If just one spacecraft on the mission \u2013 even a single CubeSat \u2013 does not have"}, {"title": "rpj-common-crawl-2022-05", "text": "to VAFB (Vandenberg Air Force Base). Therefore, they need to get a special permit which encompasses all of the constituent spacecraft, as well as the IPS elements. Evidence of all of the individual spacecraft permits are needed to accomplish this. Even more vital is FCC licensing. As part of the FCC frequency approval, they also review orbital debris policy compliance. This includes debris mitigation on orbit (recontact & conjunction analyses), reentry within 25 years, and reentry hazards at end of mission. For this, specific spacecraft information is included in the supporting analysis and application. Given the large number of spacecraft on SSO-A, this is not a trivial effort. As mentioned previously, a complex Monte Carlo separation and conjunction analyses was conducted for all of the separating objects on the mission. Similarly, a reentry debris hazard analysis was completed for the UFF and LFF structures and subsystems that remained after spacecraft separation. The results of these analyses, along with other required documentation, were reviewed with and submitted to the FCC for frequency approval. Getting frequency approvals is critical to facilitate the launch. When SpaceX applies for their FAA license to launch, they submit a list of all spacecraft on the mission. The FAA initiates an interagency review to assure all applicable US Government agencies do not have concerns with any elements of the mission. As part of this review, the FCC provides confirmation that all US-origin spacecraft have the proper licensing. If just one spacecraft on the mission \u2013 even a single CubeSat \u2013 does not have"}, {"title": "rpj-common-crawl-2022-05", "text": "long years before Williams\u2019 discovery in 2013 of its abrupt (and for some, alarming) revival. Titan-3A with LES-1 satellite Some speculate that the battery\u2019s demise may be allowing power to pass directly from the solar panels to the computer, with human error in the wiring of the device to blame for its premature failure. The satellite was originally launched to test the United States\u2019 capability to communicate via satellite after nuclear testing in the Pacific annihilated portions of the ionosphere and effectively halted high-frequency communications with their allies in Hawaii and New Zealand. In an article, Prof. Sean Victor Hum of the University of Toronto explains that, prior to nuclear testing, the allies could use \u201cionospheric skip\u201d, where signals could effectively be \u201cbounced\u201d off the ionosphere for transmission over the horizon where no line of sight existed. With parts of the ionosphere effectively turned into blackspots, the US was suddenly without a vital communication infrastructure, and, as Mark Wade described in an article on Astronautix.com, the LES program was started to guarantee vital lines of communication. NASA Solar and Heliospheric Observatory (SOHO) spacecraft Other programs ran concurrently, chief among them Project West Ford, which planned to disperse 500 million \u00be\u201d long 18 gauge copper needles into Earth orbit to reflect radio signals in place of the damaged ionosphere. But, even in the early days of the space program, scientists recognized the dangers of cluttering the orbit with debris and the program was ultimately terminated. The disappearance and reappearance of a manmade satellite is not without precedent"}, {"title": "rpj-common-crawl-2021-04", "text": "blocked for about two weeks every synodic period, around the time of superior conjunction when the Sun is directly between Mars and Earth,[22] although the actual duration of the communications blackout varies from mission to mission depending on various factors - such as the amount of link margin designed into the communications system, and the minimum data rate that is acceptable from a mission standpoint. In reality most missions at Mars have had communications blackout periods of the order of a month.[23] A satellite at either of the Earth-Sun L4/L5 Lagrange points could serve as a relay during this period to solve the problem; even a constellation of communications satellites would be a minor expense in the context of a full colonization program. However the size and power of the equipment needed for these distances make the L4 and L5 locations unrealistic for relay stations, and the inherent stability of these regions, while beneficial in terms of station-keeping, also attracts asteroids, which could pose a severe risk to any satellite.[24] Recent work by the University of Strathclyde's Advanced Space Concepts Laboratory, in collaboration with the European Space Agency, has suggested an alternative relay architecture based on highly non-Keplerian orbits. These are a special kind of orbit produced when continuous low-thrust propulsion, such as that produced from an ion engine or solar sail, modifies the natural trajectory of a spacecraft. Such an orbit would enable continuous communications during solar conjunction by allowing a relay spacecraft to \"hover\" above Mars, out of the orbital plane of the two"}, {"title": "rpj-common-crawl-2021-04", "text": "they need to get a special permit which encompasses all of the constituent spacecraft, as well as the IPS elements. Evidence of all of the individual spacecraft permits are needed to accomplish this. Even more vital is FCC licensing. As part of the FCC frequency approval, they also review orbital debris policy compliance. This includes debris mitigation on orbit (recontact & conjunction analyses), reentry within 25 years, and reentry hazards at end of mission. For this, specific spacecraft information is included in the supporting analysis and application. Given the large number of spacecraft on SSO-A, this is not a trivial effort. As mentioned previously, a complex Monte Carlo separation and conjunction analyses was conducted for all of the separating objects on the mission. Similarly, a reentry debris hazard analysis was completed for the UFF and LFF structures and subsystems that remained after spacecraft separation. The results of these analyses, along with other required documentation, were reviewed with and submitted to the FCC for frequency approval. Getting frequency approvals is critical to facilitate the launch. When SpaceX applies for their FAA license to launch, they submit a list of all spacecraft on the mission. The FAA initiates an interagency review to assure all applicable US Government agencies do not have concerns with any elements of the mission. As part of this review, the FCC provides confirmation that all US-origin spacecraft have the proper licensing. If just one spacecraft on the mission \u2013 even a single CubeSat \u2013 does not have a license, the FAA will not issue"}, {"title": "rpj-common-crawl-2020-05", "text": "survive all the way into orbit. That's why Raytheon tested its spacefaring Visible Infrared Imaging Radiometer Suite for Joint Polar Satellite System-2 by shaking it up. A lot. The Aurora Australis as seen from the Space Shuttle Discovery. Auroras are caused when high-energy electrons pour down from the Earth\u2019s magnetosphere and collide with atoms.(NASA photo) Forecasting the final frontier On Earth, a severe storm can wreak havoc on communities. But a weather event in space can impact entire planets. As satellites multiply and the U.S. prepares to send astronauts to Mars, space agencies increasingly need forecasts of \u201cspace weather\u201d \u2013 the storms of radiation that pour from the sun. Raytheon can meet that need with its Advanced Weather Interactive Processing System, which delivers terrestrial weather information to U.S. forecasters and can monitor, visualize and display space weather. A Delta IV-Heavy rocket lifts off from Space Launch Complex 37B at Cape Canaveral Air Force Station, Fla., June 11, 2016. (Photo courtesy of U.S. Air Force) Runway to space As a member of the joint venture RGNext, Raytheon uses instrumentation to monitor and ensure safety of all U.S. Air Force and NASA space launches from Cape Canaveral and Vandenberg Air Force base. Launch Infographic Raytheon Awarded $700 Million NORAD Contract NASA Extends Contract for Facilities that Support Human Spaceflight NASA Awards Raytheon $240 Million for Earth Science Data System NASA Recognizes Raytheon For Small Business Support Flying a telescope Prediction is the best protection Range Generation Next Raytheon Space Mission Solutions"}, {"title": "rpj-common-crawl-2019-30", "text": "trajectory that takes it beyond the Van Allen belts for many months, or longer, but that eventually takes it back to Earth. If so \u2013and as usual, I emphasize the \u201cIF\u201d \u2013 the capsule could make the reentry and landing that it was designed to do, we could recover our biomodule and study the organisms as planned. CategoriesMars, Missions TagsMars, Missions, Phobos LIFE, Phobos-Grunt 10 Replies to \u201cCan Phobos-Grunt Still be Saved? Scientists Hold Out Hope as Deadlines Loom\u201d why cant signal be relayed by other satellite? Although my knowledge of this topic is pretty small here\u2019s my understanding\u2026 Because Phobos-Grunt is in a fairly low orbit it\u2019s moving across the sky very quickly. According to russianspaceweb.com this issue presented itself once they realized there was a problem. The antennae set up to communicate with the satellite simply couldn\u2019t track fast enough to keep it in the signal beam. The same problem would likely affect any satellite in low earth orbit trying to communicate with Phobos-Grunt. The window would be so short that nothing useful could be transmitted. Could they send signals from a satellite higher up, say in geosynchronous orbit? I don\u2019t know. Is this something a communications satellite can even attempt? Is Phobos-Grunt listening on the same frequencies that those satellites are able to send on? Is Phobos-Grunt\u2019s antenna oriented correctly to receive those signals? Wezley Jackson says: Yes and what about ISS? too low? How about any craft visiting ISS \u2013 could they make a quick detour to a reasonable close (but safe)"}, {"title": "rpj-common-crawl-2023-06", "text": "the flight \u2013after a first burn of the Fregat was to raise the apogee (the highest point) of the spacecraft\u2019s orbit to an altitude of about 4,170 kilometers\u2013 the timing and geometry between Earth-bound transmitters and the spacecrafts antennae would have made signaling the craft a straight forward task. But with Grunt orbiting much lower (thus moving much faster with respect to the ground), and with an antenna that could receive the signal obstructed partially by a fuel tank that was to be jettisoned after the first Fregat burn, controllers have only a couple of minutes at a time to attempt communication. Since the spacecraft was not designed for this scenario, getting her attention may be depend on prospect of getting the signals toward her at some unlikely angle. In other words, restoring control over Phobos-Grunt may be a matter of luck. But if luck is a factor in recovering the spacecraft, then the extension of her expected time in orbit due to thruster firings may prove helpful. The more time that controllers have to attempt contact, the better the chances that they\u2019ll get lucky at some point before the craft reenters the atmosphere. If this should happen, however, where should the probe travel? As of yesterday, it no longer will be able to go Mars, land on the surface of Phobos, scoop a 200 gram sample into the specially-designed return capsule, and still have a window for the capsule to be launched on a trajectory back to Earth. Last week, a lunar mission was discussed"}, {"title": "rpj-c4", "text": "waves as an important element in their functioning, including retransmitting television broadcasts or transmitting imagery or scientific data that they have collected. Interference can be generated by other satellites, terrestrial systems, or space weather. Collisions and explosions can create large amounts of space debris. This debris poses a risk to everyone operating in space, and the pieces can stay in orbit for decades or even longer, depending on the object's altitude. A few especially difficult space operational activities, such as rendezvous and docking, require extra attention to prevent collisions or other mishaps. Conflict in space could have devastating consequences for the long-term sustainability of space. Destroying satellites can create huge amounts of debris that could render certain areas of Earth orbit unusable. Misperceptions and mistrust with regard to military activities in space could serve as a catalyst for conflict in space or on Earth. Frequency Interference through improper configuration or use of radio transmission equipment on satellites or on the ground can interrupt satellite communications, which can increase chances of collisions and misunderstandings. What is SWF Doing to Assist Space Sustainability? Not all space actors have the capacity to operate safely in space. They may lack the proper information about the space environment, tools to analyze information and make decisions, or experience and knowledge about best practices. SWF has developed a small booklet to inform interested parties about the dangers to Space Sustainability, which is available for distribution. All space actors and users should be made aware of the potential negative consequences of certain actions in"}, {"title": "rpj-c4", "text": "waves as an important element in their functioning, including retransmitting television broadcasts or transmitting imagery or scientific data that they have collected. Interference can be generated by other satellites, terrestrial systems, or space weather. Collisions and explosions can create large amounts of space debris. This debris poses a risk to everyone operating in space, and the pieces can stay in orbit for decades or even longer, depending on the object's altitude. A few especially difficult space operational activities, such as rendezvous and docking, require extra attention to prevent collisions or other mishaps. Conflict in space could have devastating consequences for the long-term sustainability of space. Destroying satellites can create huge amounts of debris that could render certain areas of Earth orbit unusable. Misperceptions and mistrust with regard to military activities in space could serve as a catalyst for conflict in space or on Earth. Frequency Interference through improper configuration or use of radio transmission equipment on satellites or on the ground can interrupt satellite communications, which can increase chances of collisions and misunderstandings. What is SWF Doing to Assist Space Sustainability? Not all space actors have the capacity to operate safely in space. They may lack the proper information about the space environment, tools to analyze information and make decisions, or experience and knowledge about best practices. SWF has developed a small booklet to inform interested parties about the dangers to Space Sustainability, which is available for distribution. All space actors and users should be made aware of the potential negative consequences of certain actions in"}, {"title": "rpj-common-crawl-2022-05", "text": "spacecraft is en route to its destination, it is completely isolated. No additional resources can be provided and repair (particularly for unmanned mission) can be impossible. Apollo 13\u2019s crew barely survived the notable mishap on its mission because of the resources of the docked Lunar Excursion Module (LEM) and the resourcefulness of the ground control team\u2019s experts. A less well-known failure occurred during the Galileo mission to Jupiter. After the Challenger disaster, NASA adopted safety standards that restricted the size of boosters carried in the Space Shuttle. (Renzetti, 1995) Galileo was delayed while the Shuttles were grounded and Galileo\u2019s trajectory was re-planned to include a Venus fly-by to accelerate and compensate for a smaller booster. Galileo\u2019s main antenna failed to deploy; lubricant had evaporated during the extended unplanned storage (Evans, 2003) and limited computer space led to the deletion of the antenna motor-reversing software to make room for thermal protection routines. When the antenna partially deployed, it was stuck in place with no way to re-furl and redeploy it. Engineers ultimately used an onboard tape recorder, revised transmission protocols, the available low-gain antenna, and ground-based upgrades to the DSN to save the mission. (Taylor, Cheung, and Seo, 2002) The Titan survey was ultimately successful because simulation techniques were able to verify the planned trajectory modifications and sufficient reaction mass was available to complete the necessary maneuvers. In addition, Smeds\u2019s analysis gave the mission team the time it needed to fully diagnose the problem and develop and implement the remedy. If this test were conducted the day"}, {"title": "rpj-common-crawl-2023-06", "text": "moving. Failure to do so would cause a dropped signal or loss of communication. \u201cThis pointing challenge is the equivalent of a golfer hitting a \u2018hole-in-one\u2019 from a distance of almost five miles,\u201d said Cornwell. \u201cDevelopers at the Massachusetts Institute of Technology\u2019s (MIT) Lincoln Laboratory have designed a sophisticated system to cancel out the slightest spacecraft vibrations. This is in addition to dealing with other challenges of pointing and tracking the system from such a distance. We are excited about these advancements.\u201d The LLCD mission will also serve as a pathfinder for the 2017 launch of NASA\u2019s Laser Communication Relay Demonstration (LCRD). That mission will demonstrate the long-term viability of laser communication from a geostationary relay satellite to Earth. In a geostationary orbit the spacecraft orbits at the same speed as Earth, which allows it to maintain the same position in the sky. Engineers believe that future space missions will be able to use laser communication technology with its low mass and power requirements, to provide increased data quantity for real-time communication and 3-D high-definition video. For example, using S-band communications aboard the LADEE spacecraft would take 639 hours to download an average-length HD movie. Using LLCD technology that time would be reduced to less than eight minutes. Prior to shipment from MIT, the LLCD spaceflight hardware was subjected to a rigorous set of flight test simulations such as the strong vibrations expected from a Minotaur V rocket, the launch vehicle for the LADEE mission. The LLCD hardware also had to withstand simulated extreme temperatures and"}, {"title": "rpj-common-crawl-2022-05", "text": "have as much communication with the craft as possible,\u201d notes Frank McKinney, project manager for spacecraft mission operations at Martin Marietta Astronautics in Denver. Cunningham says that if the transmitters had remained on during pressurization, engineers might have gathered more hints about the cause of the communications failure. But he adds that the manufacturer had recommended that NASA turn off the transmitters during such procedures, advice followed previously without problems. NASA expressed even greater pessimism about the fate of NOAA-13, a new weather satellite intended to replace an aging, but identical model that monitors Earth from a polar orbit. Researchers attribute the loss to a bad battery and don\u2019t expect to recover a signal. COPYRIGHT 1993 Science Service, Inc. Copyright 1993, Gale Group. All rights reserved. Gale Group is a Thomson Corporation Company. image from NASA of nasamtmountain"}, {"title": "rpj-common-crawl-2019-30", "text": "be stopped. It is not only the number of satellites but the number of customers they will serve that is the problem. A cell tower is more harmful than a radio station because instead of emitting just one signal it emits hundreds. Iridium is so impactful not only because it has 66 satellites but because it serves more than a million customers. Because of Iridium and Globalstar, standing barefoot on the earth is no longer as healthful and invigorating as it once was, anywhere on the planet. Grounding yourself increases the flow of qi through your body, but the qi has electronic noise on it. SpaceX\u2019s initial goal is to sign up 40 million subscribers. If OneWeb signs up another 40 million, and one-tenth of the subscribers are online at any given time, electronic noise from 8,000,000 additional signals, to start with, will pollute the global circuit. There are other serious environmental impacts from the intensive use of space, some of which I outlined in my first book. For example, the rockets of both SpaceX and OneWeb will burn kerosene. Burning kerosene in space produces prodigious amounts of black soot, which accumulates in the stratosphere. Black carbon absorbs so much solar energy that its contribution to global warming is two million times greater per unit mass than carbon dioxide. Just 35 launches of SpaceX\u2019s Falcon Heavy rocket per year would produce an amount of warming roughly equal to the amount of warming produced in a year by the world\u2019s one billion cars. I am extrapolating from"}, {"title": "rpj-common-crawl-2023-06", "text": "transmitter were automatic, it could have turned on while the spacecraft was still being built and tested here on Earth or during launch, posing a danger to people on the ground. Artist's view of the STEREO spacecraft. Image Credit: NASA Though spacecraft operators have an initial plan to make contact with STEREO-B, the path to recovery isn\u2019t clear or easy. Part of the problem is how little information we have about what caused the loss of communications with STEREO-B. \u201cThe only concrete information we have is that the IMU was feeding bad information to the guidance and control system,\u201d said Ossing. \u201cFrom there, we made educated guesses about what the spacecraft would do.\u201d Part of the problem is uncertainty about STEREO-B\u2019s position\u2014since it has been drifting out of contact for over a year, mission operators don\u2019t know exactly where it is. Further complicating this is the likelihood that STEREO-B would have used its thrusters as part of its effort to correct the nonexistent spin, possibly pushing it even further off course. This means that the STEREO team will have to sweep their signal over a significant portion of sky to make sure they reach STEREO-B. NASA has recovered spacecraft from similar situations before\u2014notably, ESA/NASA\u2019s Solar and Heliospheric Observatory, or SOHO, was out of contact for six weeks in 1998 before it was recovered. But the distance to SOHO was much smaller, only about a million miles, compared to the 189-million-mile gap between Earth and STEREO-B. As with all spacecraft, we don\u2019t know exactly what frequency STEREO-B"}, {"title": "rpj-c4", "text": "(NASA) \u2013 A new kind of atomic clock, non-toxic propellant system and missions to characterize how space weather interferes with satellites and communication transmissions are one step closer to liftoff. With the second-ever SpaceX Falcon Heavy launch complete, these NASA technologies await the powerful rocket\u2019s next flight. The Enhanced Tandem Beacon Experiment, or E-TBEx, CubeSats measure how radio signals can be distorted by large bubbles that form naturally in Earth\u2019s charged upper atmosphere. Such distortions can significantly interfere with communications and GPS in large regions near Earth\u2019s magnetic equator. The more we understand about the fundamental processes causing such disruptive bubbles, the more we can ultimately forecast and mitigate these disturbances. The Space Environment Testbeds mission studies how to protect satellites by assessing how the space environment near Earth affects hardware performance. Such information can be used to improve spacecraft design, engineering and operations in order to protect them from harmful radiation driven by the Sun."}, {"title": "rpj-common-crawl-2020-05", "text": "be rotated about their longitudinal axis, in order to avoid overheating. A battery pack provides supplementary power at necessary points in the mission, such as eclipse periods encountered during planetary flybys. The Telemetry, Tracking and Command Subsystem will provide a communication link capability with Earth in X-band, with the subsystem capable of handling telemetry, telecommand and ranging simultaneously. Low-Gain Antennas will be used for launch and early in the mission, and are available as back-up later. The Medium- and High-Gain Antennas used later in the mission are steerable, due to the need to point to a wide range of positions. This is necessary to achieve a link with the ground station and send down sufficient volumes of data. They must also cope with a high thermal load, as well as be able to avoid a build-up of electrostatic energy. The High-Temperature High-Gain Antenna can be folded in, so the Orbiter\u2019s heat shield can protect it. Due to the mission\u2019s unique orbit, the throughput of the data downlink is highly variable. Most data will therefore initially be stored in an onboard memory system and sent back to Earth at the earliest possible opportunity. The planned orbit so close to the sun will allow for observations of solar surface features and their connection to the heliosphere for much longer periods than from an Earth-orbit. According to ESA: \u201cThe view of the solar poles will help us to understand how dynamo processes generate the Sun\u2019s magnetic field. (\u2026) Since the orbital characteristics will change in the course of the"}, {"title": "rpj-c4", "text": "The final objective is to test for spacecraft Self-Compatibility, which demonstrates that the spacecraft will not electrically interfere with itself. To pass this test, the team had to verify 1) that the spacecraft operates as expected when it is not connected to any external ground-support equipment; 2) that there is no degradation in receiver (X-band) performance when exposed to the emissions generated by the spacecraft itself; 3) that the individual components on the spacecraft do not interfere with each other when all systems are operating; and 4) that there is no degradation in unit performance while the onboard transmitters (X-band) are transmitting. The test chamber simulates free space by absorbing all electromagnetic radiation. This test was performed in the same chamber as the mechanical environmental tests. This facility was modified to create an \u201canechoic chamber\u201d. The term anechoic can be broken down to \u201can-echoic\u201d, which basically means that the walls are non-reflective, non-echoing, or echo-free. For this test, we had to create a shielded room whose walls have been covered with a material that scatters or absorbs so much of the incident electromagnetic energy that it simulates free space. Testing for electromagnetic interference/electromagnetic compatibility (EMI/EMC) testing on the OSIRIS-REx spacecraft at Lockheed Martin. Overall, the test was completed without issue. At one point in the test an unexpected emission in the Global Positioning System (GPS) band was recognized. However, after a bit of troubleshooting, this emission was shown to be within specification. With the EMI/EMC test behind us, the last major environmental test, thermal vacuum testing,"}, {"title": "rpj-common-crawl-2022-05", "text": "increases availability, makes sure that lots of folks are able to access and use them,\u201d said Jason Mitchell, director of NASA\u2019s advanced communications and navigation technology division. \u201cBut from our perspective, one of the challenges is that direct Earth link. The atmosphere, depending on where you\u2019re at, can really impact the laser channel. Turbulence can sort of distort the beam.\u201d Satellite communications using radio frequencies can get around some atmospheric interference by increasing power. Some radio bands are also less susceptible to blockage by clouds and rain. \u201cThere\u2019s a certain point that that we can\u2019t turn up the power and get past the bad weather like you can on an RF (radio frequency) link,\u201d said Dave Israel, principal investigator for the LCRD mission at NASA\u2019s Goddard Space Flight Center. \u201cYou have to steer your laser beam someplace else. So we need to get a lot of operational experience before we\u2019re able to use optical communications for our our missions.\u201d NASA\u2019s Laser Communications Relay Demonstration experiment is seen mounted on the upper part of the STPSat 6 satellite. Credit: U.S. Space Force NASA has set up two ground sites in Hawaii and California to link up with the LCRD payload in space. Engineers are testing one-meter optical telescopes at both locations, which are positioned at high altitude to minimize cloud cover and other atmospheric effects on the laser link. Part of the LCRD experiment will involve collecting weather data at the Hawaii and California ground stations, according to Miriam Wennersten, ground segment manager on the LCRD mission"}, {"title": "bm25", "text": "USA-221, also known as FalconSat-5, is an American military minisatellite, which was launched in 2010. The fifth FalconSat spacecraft to be launched, it carries four technology development and ionospheric research experiments. The satellite was constructed and is operated by the United States Air Force Academy. Spacecraft USA-221 is a spacecraft, measuring by by . It operates in a low Earth orbit with an apogee of , a perigee of , and 72 degrees of orbital inclination. The Space Plasma Characterization Source (SPCS) studies how a cold gas ammonia thruster and a Hall effect thruster behave in space, and how they affect the spacecraft's surroundings. Meanwhile, the Wafer-Integrated Spectrometer, WISPERS, will observe the plume generated by the Hall thruster, allowing a comparison to be made to theoretical data. The other two experiments will study the Earth's ionosphere. SmartMESA, the Smart Miniaturized Electrostatic Analyzer, was designed to record the ion density of the ionosphere, as well as the temperature, to allow a study of how temperature affects ion density. It is a reflight of the original SmartMESA mission, which was lost when FalconSat-2 failed to achieve orbit. The Receiver UHF/VHF Signal Strength, or RUSS, experiment, is intended to receive radio signals in the UHF and VHF bands, to determine the levels and effects of ionospheric interference. SmartMESA, also known as the Integrated Miniaturized ElectroStatic Analyzer, and WISPERS were respectively ranked as the 26th and 31st most important experiments for DoD satellites in 2006, by the US Space Experiments Review Board. Launch USA-221 was launched from Pad 1 of"}, {"title": "bm25", "text": "Satellite's Last Days Improve Orbital Decay Predictions Posted December 15, 2015 6:21 PM Communication/Navigation Outage Forecasting System Scientists are learning more about how the upper atmosphere and ionosphere affect space satellites as well as communications and navigation here on Earth, thanks to new data from a U.S. Air Force satellite that recently completed a more than seven-year mission. The Communication/Navigation Outage Forecasting System (C/NOFS) satellite burned up in Earth's atmosphere during a planned reentry on Nov. 28, leaving behind a treasure trove of data about a part of the space environment that's difficult to study. The unique set of sustained observations from C/NOFS will greatly improve models currently used to predict satellite trajectories, orbital drag and uncontrolled re-entry. Scientists from the U.S. Air Force, NASA, and the University of Texas (UT) at Dallas are presenting the results at the American Geophysical Union Fall Meeting in San Francisco. Launched on April 16, 2008, C/NOFS studied a region high above in our atmosphere called the ionosphere, a layer of electrically charged particles created by ultra-violet radiation from the sun. This layer lies some 40 to 600 miles above the Earth's surface, where it interacts and co-mingles with the neutral particles of the tenuous upper atmosphere. The upper atmosphere and ionosphere change constantly in response to forces from above and below, including explosions on the sun, intense upper atmosphere winds, and dynamic electric field changes. In addition to interfering with satellite orbits, such changes can produce turbulence in the ionosphere that cause what's known as scintillations, which interfere with"}, {"title": "bm25", "text": "Sun; verification of predicted general relativity effects; determining the mass of the planet Mercury; the Earth\u2013Moon mass ratio; and the integrated electron density between the Helios spacecraft and the data receivig station on Earth. Coronal sounding experiment The Coronal Sounding Experiment developed by the University of Bonn measures the rotation (Faraday Effect) of the linear polarized radio beam from the spacecraft when it passes during opposition through the corona of the sun. This rotation is a measure of the density of electrons and the intensity of the magnetic field in the traversed region. Mission specifications Helios-A Helios-A was launched on December 10, 1974, from Cape Canaveral Air Force Station Launch Complex 41 in Cape Canaveral, Florida. This was the first operational flight of the Titan IIIE rocket. The rocket's test flight had failed when the engine on the upper Centaur stage did not light, but the launch of Helios-A was uneventful. The probe was placed in a heliocentric orbit of 192 days with a perihelion of from the Sun. Several problems affected operations. One of the two antennas did not deploy correctly, reducing the sensitivity of the radio plasma apparatus to low-frequency waves. When the high-gain antenna was connected, the mission team realized that their emissions interfered with the analyzer particles and the radio receiver. To reduce the interference, communications were carried out using reduced power, but this required using the large diameter terrestrial receivers already in place thanks to other space missions in progress. During the first perihelion in late February 1975, the spacecraft came"}, {"title": "bm25", "text": "Missions & Projects Mission Operations & Data Systems LASP Rocket Program Current Launch Status Introduction to Scientific Rockets Early History of Rocketry at LASP LASP Rocket Projects of Note Rocket Multimedia Gallery Quick Facts: Pioneer Venus Mission Introduction The Pioneer Venus Orbiter was the first of a two-spacecraft orbiter-probe combination designed to conduct a comprehensive investigation of the atmosphere of Venus. (Courtesy NASA/GSFC) The Pioneer Venus Orbiter was the first of a two-spacecraft orbiter-probe combination designed to conduct a comprehensive investigation of the atmosphere of Venus. The spacecraft was a solar-powered cylinder about 250 cm in diameter with its spin axis spin-stabilized perpendicular to the ecliptic plane. A high-gain antenna was mechanically despun to remain focused on the earth. The instruments were mounted on a shelf within the spacecraft except for a magnetometer mounted at the end of a boom to ensure against magnetic interference from the spacecraft. Pioneer Venus Orbiter measured the detailed structure of the upper atmosphere and ionosphere of Venus, investigated the interaction of the solar wind with the ionosphere and the magnetic field in the vicinity of Venus, determined the characteristics of the atmosphere and surface of Venus on a planetary scale, determined the planet\u2019s gravitational field harmonics from perturbations of the spacecraft orbit, detected gamma-ray bursts, and made UV observations of comets. The data indicated that Venus was much smoother and more spherical than Earth. The orbiter identified the highest point on Venus as Maxwell Montes, which rises 10.8 kilometers above the mean surface. Infrared observations revealed a clearing in the"}, {"title": "bm25", "text": "American agency overseeing development of spacecraft. Los Alamos, USA. Country: USA. Spacecraft: NASA-LANL Manned Mars Mission 1985, FORTE. 1977 September 2 - . 05:50 GMT - . Launch Site: Barking Sands. LV Family: Sandhawk. Launch Vehicle: Terrier Sandhawk. Active ionosphere mission - . Nation: USA. Agency: Los Alamos. Apogee: 261 km (162 mi). 1977 September 12 - . 06:00 GMT - . Launch Site: Barking Sands. LV Family: Sandhawk. Launch Vehicle: Terrier Sandhawk. Active ionosphere mission - . Nation: USA. Agency: Los Alamos. Apogee: 286 km (177 mi). 1997 August 29 - . 15:02 GMT - . Launch Site: Point Arguello. Launch Complex: Point Arguello WADZ. Launch Pad: Aircraft from Vandenberg.. Launch Platform: L-1011. LV Family: Pegasus. Launch Vehicle: Pegasus XL. FORTE - . Nation: USA. Agency: USAF STP. Manufacturer: Los Alamos. Class: Technology. Type: Navigation technology satellite. Spacecraft: FORTE. USAF Sat Cat: 24920 . COSPAR: 1997-047A. Apogee: 833 km (517 mi). Perigee: 799 km (496 mi). Inclination: 70.00 deg. Period: 101.20 min. FORTE - 'Fast On-orbit Recording of Transient Events' - was a US Los Alamos National Laboratory satellite designed to study natural and artificial radio emissions from the ionosphere. This data was needed to develop technology for monitoring nuclear test ban treaties. Air dropped in Point Arguello WADZ. 2000 March 12 - . 09:29 GMT - . Launch Site: Vandenberg. Launch Complex: Vandenberg 576E. LV Family: Taurus. Launch Vehicle: Taurus 1110. MTI - . Mass: 587 kg (1,294 lb). Nation: USA. Agency: Los Alamos. Manufacturer: Sandia. Class: Surveillance. Type: Military surveillance satellite. Spacecraft Bus:"}, {"title": "bm25", "text": "It observes particles of solar, interplanetary, interstellar, and galactic origins, spanning the energy range from solar wind ions to galactic cosmic ray nuclei. Exploring Polar Mesospheric Clouds (PMCs), also called noctilucent clouds, to find out why they form and why they are changing. Investigated and forecasted scintillations in the Earth's ionosphere. An international and multi-agency space mission that studies the cosmos in the energy range 10 rev-300GeV. Is a space telescope that was launched into low Earth orbit in 1009, and remains in operation. Although not the first space telescope, Hubble is one of the largest and most versatile, and is well known as both a vital research tool and a public relations boon for astronomy. Will investigate the forces at play in the near-space environment, leading the way in understanding disturbances that can lead to severe interference with communications and GPS signals. Observes how solar material moves, gathers energy, and heats up as it travels through a little-understood region in the sun's lower atmosphere. It will study every phase in the history of our Universe, ranging from the first luminous glows after the Big Band, to the formation of solar systems capable of supporting life on planets like Earth, to the evolution of our own Solar System. Robotic spacecraft currently orbiting the Moon in an eccentric polar mapping orbit. Data collected by LRO has been described as essential for planing NASA's future human and robotic missions to the moon. Investigated how the Sun's and Earth's magnetic fields connect and disconnect, explosively transferring energy from one"}, {"title": "bm25", "text": "the geostationary orbit in 2020. Amazonas 5 Communication Satellite The Amazonas 5 is a multi-session communication satellite launched aboard the Proton M Breeze M launch vehicle in September 2017. Ionospheric Connection Explorer (ICON) Satellite The Ionospheric Connection Explorer (ICON) satellite aims to explore Earth's ionosphere and thermosphere and is expected to be launched in November 2017. Heinrich Hertz Communications Satellite (H2Sat) Germany's new Heinrich Hertz communications satellite, being developed by OHB System, is scheduled to be launched into the geostationary orbit in 2021. Parker Solar Probe Spacecraft The Parker Solar Probe (previously Solar Probe Plus) spacecraft being developed by National Aeronautics and Space Administration (Nasa) aims to provide data on solar activity. Hard X-ray Modulation Telescope (HXMT) Satellite In June, China's first astronomical satellite, the Hard X-ray Modulation Telescope (HXMT), was launched from the 603 Launch Pad of the LC43 Launch Complex of the Jiuquan Satellite Launch Centre in north-west China. Inmarsat-5 F4 Communications Satellite Inmarsat-5 Flight 4 (I-5 F4) commercial communications satellite was launched aboard Falcon 9 rocket from Kennedy Space Centre in Florida, US, this May. Shijian-13 Telecommunications Satellite China's first high-throughput communications satellite Shijian-13 was launched from Xichang Satellite Launch Center in Sichuan Province in April 2017. James Webb Space Telescope (JWST), also known as Next Generation Space Telescope, is a space observatory and successor to Hubble Space Telescope (HST). Sentinel-2B Earth Observation Satellite Sentinel-2B is the second of the twin satellite Sentinel-2 constellation. Sentinel-2A, the first in the pair, was launched in June 2015. EchoStar XIX Communication Satellite The EchoStar XIX, the"}, {"title": "bm25", "text": "capsule to Earth, the solar-powered service module first loitered at Earth-Moon L2 and then moved into orbit around the Moon. Credit: CCTV/China Space Website That module remained at that location until January 4, 2015 then conducted a departure maneuver to leave EML2 and begin a transition into lunar orbit. The module arrived on January 11, 2015 in lunar orbit and then lowered closer to the Moon. It imaged the target landing zone for the 2017 Chinese lunar sample return mission \u2013 Chang\u2019e 5 \u2013 a touchdown site which has yet to be disclosed. Radio occultation finding \u201cDuring this period, we performed the radio occultation experiment to detect the lunar ionosphere,\u201d notes M. Y. Wang of China\u2019s National Astronomical Observatories. Illustration of the service module of the circumlunar return and reentry spacecraft mission used for a radio occultation experiment. Credit: M. Y. Wang/National Astronomical Observatories. The observation confirms the presence of a large ionosphere surrounding the Moon, and data was collected on the total electron content, M.Y. Wang and his research colleagues report. They add in their abstract for the upcoming meeting: \u201cIn the future, we will perform more observation and work on the lunar ionosphere and its distribution characteristics.\u201d Curiosity Rover Marks Two Mars Years of Exploration Curiosity\u2019s ChemCam Remote Micro-Imager took this image on Sol 1338, May 11m 2016. Yesterday, on May 11, NASA\u2019s Curiosity Mars rover has been on the surface of Mars for two Mars years \u2013 almost four Earth years. During that time, the rover has made systematic measurements to compare how"}, {"title": "bm25", "text": "Plunging into the ionosphere: Satellite's last days improve rrbital decay predictions NASA/Goddard Space Flight Center IMAGE: The US Air Force Communication/Navigation Outage Forecasting System re-entered Earth's atmosphere on Nov. 28, 2015, after a more than seven-year mission. Observations during its last year will help scientists better... view more Credit: NASA's Goddard Space Flight Center Scientists are learning more about how the upper atmosphere and ionosphere affect space satellites as well as communications and navigation here on Earth, thanks to new data from a U.S. Air Force satellite that recently completed a more than seven-year mission. The Communication/Navigation Outage Forecasting System (C/NOFS) satellite burned up in Earth's atmosphere during a planned reentry on Nov. 28, 2015 leaving behind a treasure trove of data about a part of the space environment that's difficult to study. The unique set of sustained observations from C/NOFS will greatly improve models currently used to predict satellite trajectories, orbital drag and uncontrolled re-entry. Scientists from the U.S. Air Force, NASA, and the University of Texas (UT) at Dallas are presenting the results at the American Geophysical Union Fall Meeting in San Francisco. Launched on April 16, 2008, C/NOFS studied a region high above in our atmosphere called the ionosphere, a layer of electrically charged particles created by ultra-violet radiation from the sun. This layer lies some 40 to 600 miles above the Earth's surface, where it interacts and co-mingles with the neutral particles of the tenuous upper atmosphere. The upper atmosphere and ionosphere change constantly in response to forces from above and below,"}, {"title": "bm25", "text": "they need to get a special permit which encompasses all of the constituent spacecraft, as well as the IPS elements. Evidence of all of the individual spacecraft permits are needed to accomplish this. Even more vital is FCC licensing. As part of the FCC frequency approval, they also review orbital debris policy compliance. This includes debris mitigation on orbit (recontact & conjunction analyses), reentry within 25 years, and reentry hazards at end of mission. For this, specific spacecraft information is included in the supporting analysis and application. Given the large number of spacecraft on SSO-A, this is not a trivial effort. As mentioned previously, a complex Monte Carlo separation and conjunction analyses was conducted for all of the separating objects on the mission. Similarly, a reentry debris hazard analysis was completed for the UFF and LFF structures and subsystems that remained after spacecraft separation. The results of these analyses, along with other required documentation, were reviewed with and submitted to the FCC for frequency approval. Getting frequency approvals is critical to facilitate the launch. When SpaceX applies for their FAA license to launch, they submit a list of all spacecraft on the mission. The FAA initiates an interagency review to assure all applicable US Government agencies do not have concerns with any elements of the mission. As part of this review, the FCC provides confirmation that all US-origin spacecraft have the proper licensing. If just one spacecraft on the mission \u2013 even a single CubeSat \u2013 does not have a license, the FAA will not issue"}, {"title": "bm25", "text": "Constellation Challenges and Contributions of Taiwan Weather Monitoring Satellites National Space Organization (NSPO) of Taiwan in the past ten years has successfully launched three different types of satellites. The latest one is FORMOSAT- 3/COSMIC, a joint Taiwan-US project, which was successfully launched on April 15, 2006. The FORMOSAT-3 is a constellation of 6 satellites and each satellite is equipped with GPS Occultation Receiver (GOX), Tri-Band Beacon (TBB), and Tiny Ionospheric Photometer (TIP). The constellation is on the way to its final orbit configuration. All satellites remain healthy except spacecraft flight model no. 2 (FM2) with a problem of power shortage and FM3 currently staying at an orbit of 711 km due to a mechanism issue to be solved. The current sounding profiles retrieved from the GPS occultation measurements are over an average of 1800 daily. The sounding profiles have been used to study atmospheric and ionospheric structures and total electron content, and assimilated into numerical atmospheric and space weather predictions models to improve the accuracy of prediction. Taiwan has taken an active role and grown remarkably well in remote sensing researches during the last decade. Taiwan will continue to share her resources with the international community for scientific research and applications. In this paper, we will present an overview of significant contributions of the FORMOSAT-3/COSMIC satellite mission to the global community. We will also describe the constellation challenges and novel operations solutions and the future follow-on mission planning."}, {"title": "bm25", "text": "the Republic of China, the instrument is a push-broom imager with a 45-centimetre (18-inch) Cassegrain reflector telescope. It is expected to produce panchromatic images with a resolution of up to two meters (6.5 feet) per pixel, and multispectral images with a resolution of four meters (12 feet) per pixel. Multispectral images will consist of red, green, blue and near-infrared bands. Taiwan\u2019s National Central University is responsible for the Advanced Ionospheric Probe (AIP) aboard the spacecraft. This payload consists of a planar Langmuir probe, a retarding potential analyzer, an ion trap and an ion drift meter. It will record the composition and density of plasma within Earth\u2019s ionosphere, the velocity of incident ions and the temperature of ions and electrons within the ionosphere. Taiwan\u2019s National Space Organisation \u2013 also known as the NSPO, an abbreviation of its previous name, the National Space Program Office \u2013 is the country\u2019s national space agency. Formosat-5 is the latest in a series of missions in the NSPO\u2019s Formosat series of remote sensing spacecraft. The first satellite, Formosat-1, was launched in January 1999 aboard Lockheed Martin\u2019s Athena I rocket. Formosat-2, the spacecraft which Formosat-5 will replace, was deployed by a Taurus rocket in May 2004. At the times of their launches, Formosat-1 and 2 were named ROCSAT-1 and ROCSAT-2 respectively, taking on their new names in late 2004. Although only designed for a five-year operational life, Formosat-2 completed twelve years of service before a malfunction last June forced its retirement two months later. These spacecraft were joined in orbit in April 2006"}, {"title": "bm25", "text": "Irish Space Agency\u2019s satellite design has changed to make it more robust The Irish Space agency\u2019s design for its new satellite, launched from Europe in January, has changed dramatically. The \u20ac20 million Irish Space Technology Programme (ISTP) mission is designed to send a communications satellite to a geosynchronous orbit in the Pacific Ocean. A series of computer simulations show the spacecraft will operate in a much more resilient way than it did in the past.ISTP chief executive Patrick O\u2019Sullivan said the team worked on the redesign to improve the spacecraft\u2019s ability to withstand the forces of reentry and to protect itself from debris during reentry. The changes will mean the satellite can be launched in 2018. The first test flight of the satellite is planned for 2021, with the next flight in 2023.ISTC\u2019s next satellites are due to be launched from France in 2020 and the United States in 2021. How to build your own game design network How to design a scalable network architecture and logistics network design guide"}, {"title": "bm25", "text": "Irish Space Agency\u2019s satellite design has changed to make it more robust The Irish Space agency\u2019s design for its new satellite, launched from Europe in January, has changed dramatically. The \u20ac20 million Irish Space Technology Programme (ISTP) mission is designed to send a communications satellite to a geosynchronous orbit in the Pacific Ocean. A series of computer simulations show the spacecraft will operate in a much more resilient way than it did in the past.ISTP chief executive Patrick O\u2019Sullivan said the team worked on the redesign to improve the spacecraft\u2019s ability to withstand the forces of reentry and to protect itself from debris during reentry. The changes will mean the satellite can be launched in 2018. The first test flight of the satellite is planned for 2021, with the next flight in 2023.ISTC\u2019s next satellites are due to be launched from France in 2020 and the United States in 2021. How to build your own game design network How to design a scalable network architecture and logistics network design guide"}, {"title": "bm25", "text": "Customers. Space Environment And Spacecraft Interaction. Universe, galaxy, solar system. Coordinate systems. Time. Solar cycle. Plasma. Geomagnetic field. Atmosphere, ionosphere, magnetosphere. Atmospheric drag. Atomic oxygen. Radiation belts and shielding. Orbital Mechanics And Mission Design. Motion in gravitational field. Elliptic orbit. Classical orbit elements. Two-line element format. Hohmann transfer. Delta-V requirements. Launch sites. Launch to geostationary orbit. Orbit perturbations. Key orbits: geostationary, sun-synchronous, Molniya. Space Mission Geometry. Satellite horizon, ground track, swath. Repeating orbits. Spacecraft And Mission Design Overview. Mission design basics. Life cycle of the mission. Reviews. Requirements. Technology readiness levels. Systems engineering. Mission Support. Ground stations. Deep Space Network (DSN). STDN. SGLS. Space Laser Ranging (SLR). TDRSS. Attitude Determination And Control. Spacecraft attitude. Angular momentum. Environmental disturbance torques. Attitude sensors. Attitude control techniques (configurations). Spin axis precession. Reaction wheel analysis. Spacecraft Propulsion. Propulsion requirements. Fundamentals of propulsion: thrust, specific impulse, total impulse. Rocket dynamics: rocket equation. Staging. Nozzles. Liquid propulsion systems. Solid propulsion systems. Thrust vector control. Electric propulsion. Launch Systems. Launch issues. Atlas and Delta launch families. Acoustic environment. Launch system example: Delta II. Space Communications. Communications basics. Electromagnetic waves. Decibel language. Antennas. Antenna gain. TWTA and SSA. Noise. Bit rate. Communication link design. Modulation techniques. Bit error rate. Spacecraft Power Systems. Spacecraft power system elements. Orbital effects. Photovoltaic systems (solar cells and arrays). Radioisotope thermal generators (RTG). Batteries. Sizing power systems. Thermal Control. Environmental loads. Blackbody concept. Planck and Stefan-Boltzmann laws. Passive thermal control. Coatings. Active thermal control. Heat pipes."}, {"title": "bm25", "text": "EOS-02 (formerly known as Microsat-2A) was an Indian Earth observation microsatellite developed by the Indian Space Research Organisation as a test payload on the maiden launch of the Small Satellite Launch Vehicle (SSLV). EOS-02 was based on Microsat-TD. The objective behind EOS-02 was to realize and fly an experimental imaging satellite with short turnaround time to showcase launch on demand capability. It was intended to be used for cartographic applications at a cadastral level, urban and rural management, coastal land use and regulation, utilities mapping, development and various other GIS applications. The satellite carried two payloads: a mid-wavelength and a long-wavelength infared camera with a 6m resolution. Launch EOS-02 was launched on Small Satellite Launch Vehicle's maiden flight SSLV-D1 at 03:48 UTC / 09:18 IST on 7 August 2022, but due to the final VTM stage failure, the rocket entered a transatmospheric orbit of 356 km x 76 km (221 mi x 47 mi) instead of the planned circular 356 km (221 mi) circular orbit. As a result, both satellites onboard (EOS-02 and AzaadiSAT) were destroyed during reentry. References Earth observation satellites of India Spacecraft launched by India in 2022 Small satellites"}, {"title": "bm25", "text": "the upper atmosphere layers, destroying the solar panels and finally leading to reentry on 6 December 1996. AMSAT P3E (Phase 3E) is a dedicated communication and scientific platform for a highly elliptical orbit around Earth. The spacecraft will be created in a joint process together with the AMSAT P5A Mars mission by an international team under leadership of AMSAT-DL and continues the successful series of AMSAT-Phase 3 satellites. Additionally the spacecraft will be a test bench for technology developed for the Mars mission. The main task of P3E is to act as communication platform for radio amateurs worldwide. A launch was planned in the period 2004 to 2006, but until now, no flight opportunity could be secured. Currently the project is on hold due to the unavailability of affordable launch opportunities. A potential launch opportunity arose in 2015, which involved the completition of the satellite at Virginia Tech university and a launch on a US rocket, but eventually was not used. AMSAT P3E (Phase 3E, AMSAT P3-Express) - on hold with ?"}, {"title": "bm25", "text": "FR-1 was the second French satellite. Planned as the first French satellite, it was launched on 6 December 1965\u2014ten days after the actual first French satellite, Ast\u00e9rix\u2014by an American Scout X-4 rocket from the Western Range at Vandenberg Air Force Base. The scientific satellite studied the composition and structure of the ionosphere, plasmasphere, and magnetosphere by measuring the propagation of very low frequency (VLF) waves and the electron density of plasma in those portions of the Earth's atmosphere. FR-1's VLF receiver operated until 26 August 1968. FR-1 remains in orbit as of 2023. Background FR-1 was the first step of an ambitious French plan to launch six FR-series satellites, each meant to study a different aspect of the Earth's atmosphere. FR-1 was generally designed to study the Earth's magnetic and electric fields in the ionosphere and magnetosphere. The satellite Ast\u00e9rix\u2014ultimately France's first satellite, launched ten days before FR-1\u2014was initially conceptualized as the second FR satellite under the name FR-2. Like FR-1, FR-2 would study the ionosphere. FR-3 was to be a \"scaled-up\" version of FR-2, with FR-4 to carry instruments measuring hydrogen distribution in the upper atmosphere, FR-5 to study \"magnetic impulses\" and serve as a platform for future research, and FR-6 to be a solar-stabilized spacecraft with final payload to be determined based on experimental results from its antecedents. The French space agencies Centre national d'\u00e9tudes spatiales (CNES) and Centre national d'\u00e9tudes des t\u00e9l\u00e9communications (CNET) were developing FR-1 concurrent with Ast\u00e9rix as early as 1963. That year, a model of FR-1 was displayed at the"}, {"title": "bm25", "text": "Spacecraft: Toronto GNB, HS 376, FS-1300, Star bus, Cubesat. Launch Vehicles: Deacon, Thor, R-7, Arcas, Black Brant, R-14, Proton, Tomahawk, Sonda, Super Loki, Viper, Hawk, PSLV, Ariane 5, Pantera. Projects: AIS, BSB, Thor Comsat. Launch Sites: Cape Canaveral, Baikonur, Plesetsk, Andoya, Kiruna, Kourou, Sriharikota, Marka, SvalRak, Dombarovskiy. Agency: ILS, NASA, NTNF, NASA Greenbelt, NDRE, ISRO, DLR, El Segu. 1962 August 18 - . 07:09 GMT - . Launch Site: Andoya. LV Family: Deacon. Launch Vehicle: Nike Cajun. Ferdinand 1 Ionosphere mission - . Nation: Norway. Agency: NTNF. Apogee: 100 km (60 mi). 1962 December 11 - . 03:27 GMT - . Launch Site: Andoya. LV Family: Deacon. Launch Vehicle: Nike Cajun. Ferdinand 3 Ionosphere mission - . Nation: Norway. Agency: NTNF. Apogee: 121 km (75 mi). 1962 December 14 - . 20:52 GMT - . Launch Site: Andoya. LV Family: Deacon. Launch Vehicle: Nike Cajun. Ferdinand 2 Ionosphere mission - . Nation: Norway. Agency: NTNF. Apogee: 123 km (76 mi). 1963 September 1 - . 08:03 GMT - . Launch Site: Andoya. LV Family: Deacon. Launch Vehicle: Nike Cajun. Ferdinand 5 Aeronomy / ionosphere / solar mission - . Nation: Norway. Agency: NDRE. Apogee: 100 km (60 mi). 1963 September 12 - . 06:20 GMT - . Launch Site: Andoya. LV Family: Deacon. Launch Vehicle: Nike Apache. Ferdinand 4 Ionosphere / plasma / solar mission - . Nation: Norway. Agency: NDRE. Apogee: 136 km (84 mi). 1964 March 12 - . 02:58 GMT - . Launch Site: Andoya. LV Family: Deacon. Launch Vehicle: Nike Apache. Ferdinand"}, {"title": "bm25", "text": "COSMIC-2 Achieves Full Operational Capability Diagram shows how COSMIC-2 satellites detect how GPS satellite signals are distorted, or bent, as they travel through the Earth's atmosphere. The Constellation Observing System for Meteorology, Ionosphere, and Climate (COSMIC-2) is a network of six small satellites, each about the size of a standard kitchen oven, designed to improve weather prediction and model accuracy as well as space weather monitoring capabilities. COSMIC-2 utilizes a technique called radio occultation to measure the \"bending\" of radio signals from global navigation satellites (such as GPS) as those signals pass through the Earth's atmosphere and ionosphere. This bending provides critical information such as the temperature, pressure, and water vapor content of the atmosphere, helping improve global forecasting and aid in studying Earth's climate. This also gives us better insight into the processes that cause tropical storms to develop, strengthen, or weaken. The same signals also give information about highly charged regions of the Ionosphere. This data is used to understand the effects and impacts of space weather, such as solar storms, on the Ionosphere and elements of daily life such as communications Following launch on June 25, 2019, the satellites underwent an initial seven-month instrument and data evaluation process to make sure they were working properly as they were moved into their proper orbit. This was then followed by a period of software updates to enhance performance. During this time, a series of reviews were held to make sure that numerous specific milestones were being met by the spacecraft and the associated ground systems."}, {"title": "bm25", "text": "Dnepr, Taurus 3210, Taurus 3110. Launch Sites: Cape Canaveral, Vandenberg, Vandenberg 576E, Cape Canaveral LC46, Dombarovskiy. Agency: TRW, NSPO. Bibliography: 2, 4, 13024, 13025, 13026. 1999 January 27 - . 00:34 GMT - . Launch Site: Cape Canaveral. Launch Complex: Cape Canaveral LC46. Launch Pad: SLC46. LV Family: Athena. Launch Vehicle: Athena-1. ROCSAT-1 - . Mass: 400 kg (880 lb). Nation: Taiwan. Agency: NSPO. Manufacturer: TRW. Class: Earth. Type: Seismology satellite. Spacecraft Bus: T200. Spacecraft: ROCSAT. USAF Sat Cat: 25616 . COSPAR: 1999-002A. Apogee: 523 km (324 mi). Perigee: 479 km (297 mi). Inclination: 34.96 deg. Period: 94.63 min. Taiwan's first satellite, with experimental communications, ocean imagery, and ionospheric studies instruments. The Primex OAM placed itself and the payload into an elliptical transfer orbit. A second OAM burn circularized the orbit, and ROCSAT separated into a 588 x 601 km x 35.0 deg orbit. 2004 May 20 - . 17:47 GMT - . Launch Site: Vandenberg. Launch Complex: Vandenberg 576E. LV Family: Taurus. Launch Vehicle: Taurus 3210. ROCSAT 2 - . Payload: LeoStar 500XO. Mass: 760 kg (1,670 lb). Nation: Taiwan. Agency: NSPO. Manufacturer: EADS Astrium. Class: Surveillance. Type: Civilian surveillance satellite. Spacecraft Bus: T200. Spacecraft: ROCSAT. USAF Sat Cat: 28254 . COSPAR: 2004-018A. Apogee: 891 km (553 mi). Perigee: 887 km (551 mi). Inclination: 99.10 deg. Period: 102.80 min. Delayed from October, November 25, 2003; January 17, February 26, April 9 and 22, May 17, 2004.. 2008 October 1 - . Launch Site: Dombarovskiy. LV Family: R-36M. Launch Vehicle: Dnepr. Theos - . Mass: 715"}, {"title": "bm25", "text": "You are here Home \u203a Directory \u203a Satellite Missions \u203a R \u203a RAX-2 RAX-2 RAX-2 (Radio Aurora Explorer-2) RAX-2 is a RAX a follow-on collaborative 3U CubeSat mission comprised of teams from the University of Michigan (UMich), Ann Arbor, MI (James W. Cutler), and SRI International, Menlo Park, CA (Hasan Bahcivan), USA. The payload was developed at SRI, and the satellite bus was developed in the Michigan Exploration Laboratory (MXL). The mission is funded by NSF (National Science Foundation) to study space weather. RAX is a space weather mission designed to study plasma field-aligned irregularities in the ionosphere. It has enabled undergraduate students, graduate researchers, engineers, and scientists to be involved in the design, building, and operations of two spacecraft, RAX-1 and RAX-2. Small spacecraft are more highly resource-constrained by mass, power, volume, delivery timelines, and financial cost relative to their larger counterparts. Small spacecraft are operationally challenging because subsystem functions are coupled and constrained by the limited available commodities (e.g. data, energy, and access times to ground resources). Furthermore, additional operational complexities arise because small spacecraft components are physically integrated, which may yield thermal or radio frequency interference. The project extended the initial MBSE (Model Based Systems Engineering) framework developed for a small spacecraft mission by demonstrating the ability to model different behaviors and scenarios. MBSE and SysML (Systems Modeling Language) were applied to model an actual CubeSat, the RAX (Radio Aurora Explorer) mission. 1) 2) Background: RAX-1 (launch Nov. 20, 2010) demonstrated the functionality of a scientific mission, a CubeSat-based bistatic radar experiment capable"}, {"title": "bm25", "text": "the startup process exits with exit * code 0 and we switch to PM_RUN state. * * Normal child backends can only be launched when we are in PM_RUN state. * (We also allow it in PM_WAIT_BACKUP state, but only for superusers.) * In other states we handle connection requests by launching \"dead_end\" * child processes, which will simply send the client an error message and * quit. (We track these in the BackendList so that we can know when they * are all gone; this is important because they're still connected to shared * memory, and would interfere with an attempt to destroy the shmem segment, * possibly leading to SHMALL failure when we try to make a new one.) * In PM_WAIT_DEAD_END state we are waiting for all the dead_end children * to drain out of the system, and therefore stop accepting connection * requests at all until the last existing child has quit (which hopefully * will not be very long). * * Notice that this state variable does not distinguish *why* we entered * states later than PM_RUN --- Shutdown and FatalError must be consulted * to find that out. FatalError is never true in PM_INIT through PM_RUN * states, nor in PM_SHUTDOWN states (because we don't enter those states * when trying to recover from a crash). * * RecoveryError means that we have crashed during recovery, and * should not try to restart. */ typedef enum { PM_INIT, /* postmaster starting */ PM_STARTUP, /* waiting for startup subprocess */ PM_STARTUP_PASS2,"}, {"title": "bm25", "text": "Laboratory. The spacecraft will eject a 8.5-pound subsatellite named NanoSail-D about a week after launch. NanoSail-D will unfurl a 100-square-foot solar sail to verify deployment mechanisms for future missions that could clear space debris from busy orbital lanes. Developed for less than $12 million, FASTSAT stands for Fast, Affordable, Science and Technology Satellite. It was built by engineers from Marshall Space Flight Center, Dynetics Inc. and the Von Braun Center for Science and Innovation, all in Huntsville, Ala. The FASTSAT project includes contributions from 13 local Huntsville firms. Three university satellites are also packed inside the Minotaur 4 rocket. Two FASTRAC satellites from the University of Texas at Austin will test autonomous formation-flying through crosslink communications and GPS navigation. One of the spacecraft also carries a micro-discharge plasma thruster. The Formation Autonomous Spacecraft with Thruster, Relnav, Attitude and Crosslink, or FASTRAC, program was selected by the Air Force's University Nanosat Program in 2005. More than 100 students worked on the FASTRAC satellites, which have a combined mass of more than 120 pounds at launch. The spacecraft will split up and perform formation demonstrations pivotal to future space research missions. FalconSat 5 is a cadet-built spacecraft from the U.S. Air Force Academy. Two payloads on FalconSat 5 include a small Hall Effect thruster for attitude control and an electrostatic analyzer/spectrometer suite to observe the effect of thruster plumes on the surrounding space environment. The $11 million mission began four years ago and is managed by the Air Force Research Laboratory. FalconSat 5 will also monitor ionospheric effects"}, {"title": "bm25", "text": "why it operates mainly on the night side. Any mission to Mars using radio signals for science observations needs to know how the ionosphere behaves. When a manned mission is sent to Mars, it will be important to know the state of the ionosphere in order to optimise communications to and from Earth, as well as on the surface.\" Mars Express was launched in June 2003 and became ESA's first visit to another planet in the Solar System. The scientific payload, provided by research institutes throughout Europe, consists of seven instruments that provide remote sensing measurements of the atmosphere, ground and below the surface. Since arrival in orbit around Mars in December 2003, Mars Express has been helping to answer fundamental questions about the geology, atmosphere, surface environment, history of water and potential for life on Mars. The Mars Radio Science Experiment (MaRS) uses radio waves to study both the surface and the atmosphere of Mars. It measures local variations of gravity over the surface of the planet as well as providing pressure and temperatures profiles of the atmosphere. The experiment relies on the observation of the phase, amplitude, polarisation, and propagation times of radio signals transmitted from the spacecraft and received at ground station antennas on Earth. Paul Withers Astronomy Department, Boston University Massachusetts, USA Email: withers bu.edu Martin P\u00e4tzold, Rheinisches Institut f\u00fcr Umweltforschung, Abt. Planetenforschung Email: Martin.Paetzold uni-koeln.de Olivier Witasse, Mars Express Project Scientist Research and Scientific Support Department Directorate of Science & Robotic Exploration ESA-ESTEC, The Netherlands Email: Olivier.Witasse esa.int https://sci.esa.int/s/890YO2W The ionosphere"}, {"title": "bm25", "text": "space weather The northern lights interfere with radio communications, GPS navigation and satellite communications. Researchers are now going to launch 20 satellites containing world class instruments from the University of Oslo to find out why. Satellites are becoming increasingly important in communications and navigation. This makes us more vulnerable to the northern lights, especially within offshore and aviation. In a worst case scenario an aircraft can lose contact with its surroundings. Oil tankers can struggle with precise navigation. In order to more precisely predict when radio communications and navigation will fail, researchers require more information about what happens when violent solar winds hit the Earth and produce the northern lights. The solar winds consist of charged particles and produce powerful turbulence in the ionosphere, which consists of plasma clouds with electrical particles at an altitude of 80 to 500 km. The turbulence interferes with radio signals. Sometimes they are reflected wrongly. On other occasions the signals are blocked altogether. \u201cIn the northern regions GPS satellites lie low in the sky. This means the signals have to pass through the ionosphere. This reinforces the navigation problems,\u201d says professor J\u00c3\u00b8ran Moen of the Department of Physics at University of Oslo (UiO), Norway. Full story: http://www.apollon.uio.no/english/articles/2012/spaceweather.html Categories: Astronomy, Astrophysics, Aurorae, CME (Coronal Mass Ejections), Earth, General Astronomy, Solar System, Sun Tags: astronomy, aurora, Nature, news, science, space AstroNews Is Coming Back Online May 14, 2012 astronewsus Leave a comment Okay, so it\u2019s been awhile but I\u2019ve got some help and we\u2019re looking to get AstroNews back up \u2018n running"}, {"title": "bm25", "text": "orbit until a self-diagnostic test confirms they are fully functional. This means it will take more time and propellant to get a satellite into its intended orbit, but the advantage is that if the craft ends up DOA, it\u2019s less likely to be a hazard to navigation. In a low orbit, even a non-functional spacecraft will dip back into the atmosphere and burn up in a relatively short period of time. SpaceX utilized this approach for the first Starlink launch, and in the end found that three of the sixty satellites never passed their self-check and failed to move on from their initial \u201cparking\u201d orbit. Finally, the SSC agrees with the European Space Agency that future satellites should utilize \u201cDesign for Demise\u201d or D4D. These are design principles which ensure that even a non-functional satellite will deorbit itself and completely burn up in the atmosphere. Techniques include spacecraft shapes and orientations that maximize atmospheric drag, and the use of thermal reactive adhesives which will release as the vehicle heats up during reentry. While the Space Safety Coalition\u2019s list of best practices for designing and operating spacecraft in Earth orbit are reasonable and in many cases logical, the group has no authority to actually enforce them. As such, any company that decides to follow these rules does so of their own volition. Smallsat launch providers Virgin Orbit and Rocket Lab have already decided to endorse the document, as have some companies which operate fleets of satellites, such as SES and Iridium. But while it\u2019s encouraging to see"}, {"title": "bm25", "text": "orbit until a self-diagnostic test confirms they are fully functional. This means it will take more time and propellant to get a satellite into its intended orbit, but the advantage is that if the craft ends up DOA, it\u2019s less likely to be a hazard to navigation. In a low orbit, even a non-functional spacecraft will dip back into the atmosphere and burn up in a relatively short period of time. SpaceX utilized this approach for the first Starlink launch, and in the end found that three of the sixty satellites never passed their self-check and failed to move on from their initial \u201cparking\u201d orbit. Finally, the SSC agrees with the European Space Agency that future satellites should utilize \u201cDesign for Demise\u201d or D4D. These are design principles which ensure that even a non-functional satellite will deorbit itself and completely burn up in the atmosphere. Techniques include spacecraft shapes and orientations that maximize atmospheric drag, and the use of thermal reactive adhesives which will release as the vehicle heats up during reentry. While the Space Safety Coalition\u2019s list of best practices for designing and operating spacecraft in Earth orbit are reasonable and in many cases logical, the group has no authority to actually enforce them. As such, any company that decides to follow these rules does so of their own volition. Smallsat launch providers Virgin Orbit and Rocket Lab have already decided to endorse the document, as have some companies which operate fleets of satellites, such as SES and Iridium. But while it\u2019s encouraging to see"}, {"title": "bm25", "text": "plane of the sky. The high gain antenna is pointing toward the Earth (toward the viewer).The spacecraft will first go behind the ionosphere (the yellow ring), then the neutral atmosphere (the blue ring) and then the planetary disc. The radio signal propagates from the spacecraft first through the ionosphere and later through the atmosphere towards the Earth. Timing and duration of planetary occultations during Mars Express's nominal and extended missions. Mars Express will differ from the other spacecraft that have performed similar experiments (Mariner 4 in 1965 and Mars Global Surveyor now) by using the S- as well as the X-band. \"The S-band is sensitive to plasma (ionised gas) densities,\" says P\u00e4tzold, which makes it particularly useful for studying the ionosphere, the ionised, outer part of the atmosphere. One of the outstanding questions about Mars is how it came to lose most of its atmosphere. One possibility is that the solar wind, the stream of charged particles flowing out from the Sun, has gradually stripped the atmosphere away through interactions with the ionosphere. The radio science experiment will measure density profiles in the ionosphere, which will help determine whether, how and when this happened. The speed of a spacecraft relative to the ground station can be measured with an accuracy of \"less than one tenth the speed of a snail at full pace,\" according to P\u00e4tzold. Such high precision is achieved by measuring the frequency change in the radio signal caused when the spacecraft moves towards or away from the ground station. (The phenomenon, called the"}, {"title": "bm25", "text": "Academy) at Colorado Springs, CO. \u2022 FASTRAC-1 and -2 (Formation Autonomy Spacecraft with Thrust, Relnav, Attitude and Crosslink). FASTRAC is a nanosatellite pair whose design and integration has been undertaken by students of the University of Texas at Austin (UTA). The project is sponsored by AFRL. Note: All S26 missions have been described separately on the eoPortal. Orbit: Circular orbit, altitude = 650 km, inclination = 72\u00ba, with an orbital period of 97.7 minutes. \u2022 June 20, 2011: The PISA (Plasma Impedance Spectrum Analyzer) instrument has now completed more than 120 days over the course of six months since it was first turned on. That corresponds to more than 1,600 hours of observations and more than 2 GB of raw data taken over a wide range of locations and environments (Ref. 18). - The TTI (Thermosphere Temperature Imager) continues to operate as planned, detecting FUV (Far Ultraviolet) airglow and FUV auroral signatures. The TTI is on track for achieving full science mode sometime in late April. - The PISA (Plasma and Impedence Spectrum Analyzer) instrument also continues to operate well. PISA is testing new measurement techniques for the thermal electron populations in the ionosphere, calculating their density structure, which can interfere with or scatter radio signals used for communication and navigation. MINI-ME achieved full science mode on January 20, 2011 and has been collecting science data since that time. Together with other instruments and payloads on the STP-S26 mission, such as the NSF RAX mission, FalconSat-5, and NanoSail-D (launched as a tertiary payload from FASTSAT), these"}, {"title": "bm25", "text": "This drawing shows Mars Global Surveyor taking measurements as it flew through the ionosphere of Mars during an early aerobraking pass. The orbit is shown by the dashed line. The ionosphere is shown by the shaded region circling the planet (not to scale). Image from: NASA/JPL The Exploration of Mars Mars Global Surveyor Image Archive Aerobraking The Mars Global Surveyor reached Mars in September of 1997. But it didn't make it into its final mapping orbit until February 1999. What took so long? Surveyor needed to reach a near-circular, low-altitude orbit in order to map the surface of Mars. In September 1997, the orbit of MGS was far from circular and at its farthest point in orbit, MGS was really far from Mars (56,000 kilometers above the surface)! Mission controllers needed MGS to be only ~400 kilometers above the surface. In order to adjust the orbit of MGS, the controllers used aerobraking. Controllers were going to send MGS through the atmosphere of Mars to slow it down. During these atmospheric passes, air resistance generated by the solar panels would slow the spacecraft and gradually lower its orbit. Surveyor was to use this aerobraking technique to lower the high point of its orbit from the initial 56,000 kilometers in altitude to about 400 kilometers. This aerobraking would also force the spacecraft into a near-circular orbit. Originally, this was only suppose to take 4 months. Unfortunately, one of the solar panels (which are used during aerobraking!) broke during the launch of MGS. This solar panel got stuck and"}, {"title": "bm25", "text": "in 3 million years Learn more about General Atomics Electromagnetic Systems and NASA's Deep Space Atomic Clock. NPSat hosts two experiments built by the Naval Research Laboratory (NRL) to investigate space weather and support space situational awareness (SSA), including ionospheric electron density structures that cause radio scintillations impacting communications and navigation. Monitors electron content and scintillations using radio frequency (RF) transmissions Conducts Coherent Electromagnetic Radio Tomography (CERTO) experiment NRL-built Langmuir probe takes in-situ measurements to improve ionospheric modeling Prox-1 is a microsat developed by students at the Georgia Institute of Technology in Atlanta through the Air Force\u2019s University Nanosat Program to demonstrate satellite close proximity operations and rendezvous. Demonstrates small satellite close-encounter operations Prox-1 deploys the LightSail 2 cubesat developed by the Planetary Society E-TBEx: Measures distortion of radio signals traveling through the ionosphere using beacon tones transmitted from eight orbital locations: the six COSMIC-2 satellites and the twin E-TBEx CubeSats Launch Environment Observer (LEO) & StangSat: Measures thermal and vibration environments during launch and demonstrates Wi-Fi data transmission between Cubesats (2 separate cubesats) PSAT: Supports global amateur radio data relay capabilities to assist students and researchers around the world TEPCE: Demonstrates the feasibility of using electrodynamic propulsion by deploying a 1 km electrically conductive tether, performing orbit-changing maneuvers without consuming any fuel LightSail 2:The Planetary Society\u2019s citizen-funded solar-sailing spacecraft propelled by the Sun Video of qLEuCn8RT14?&theme=dark&autohide=2&modestbranding=1&showinfo=0&rel=0 Falcon Heavy\u2019s first stage is composed of three Falcon 9 nine-engine cores whose 27 Merlin engines together generate more than 5 million pounds of thrust at liftoff, equal to"}, {"title": "bm25", "text": "first space hardware products during Alouette's construction. Spar, for instance, developed a new \" roll-up \" antenna for the Canadian satellite, a product that was later used in many variations for American satellites. After three and a half years of design and construction, the 145-kg satellite was flown to California and launched from the Pacific Missile Range at 2:06 a.m. (EST) on Saturday, September 29, 1962 . Sprung from a two-stage Thor-Agena rocket, Alouette-I was quickly put into a near perfect 1000 km orbit and soon began its top-down study of the ionosphere. Alouette-I was a tremendous success by any measure. The conservative research approach adopted by the DRTE team paid off manyfold as the satellite eventually stretched its one-year design life into an unprecedented 10-year mission, producing over one million images of the ionosphere in the process. Following the success of Alouette-I, Canada and United States signed an agreement to launch further satellites under a new program called International Satellites for Ionospheric Studies (ISIS). Under the program, the Alouette back-up model was refurbished and flown in 1965 as \" Alouette-II \" and two new satellites, named ISIS I and ISIS II, were successfully launched in 1969 and 1970 respectively. Alouette I paper model (PDF, 33.85 MB) Science satellites and spacecraft Canadian satellites Satellites in our everyday lives"}, {"title": "bm25", "text": "scientific payload consisting of eight high-resolution instruments used to probe the characteristics of near-Earth space, and Cascade, a high data rate, high capacity store and forward technology payload from MDA Corporation. Together, e-POP and Cascade will achieve both a scientific and a commercial objective. providing scientists with unprecedented details about the Earth\u2019s ionosphere, thermosphere and magnetosphere, helping scientists understand the cause and effects of potentially dangerous space weather. Cascade will demonstrate a new digital communications \u2018courier\u2019 service provided by MDA. Pending a successful mission with CASSIOPE, SpaceX will then move to the launch of what will be the debut launch of a geostationary satellite, with the launch of the SES-8 spacecraft from Cape Canaveral Air Force Station in Florida. Completing what is hoped to be a busy period of launches for SpaceX and their new Falcon v1.1, the company plan to loft Commercial Launches for Orbcomm and Thailand\u2019s Thai Comm. The next Dragon spacecraft would then greet the upgraded Falcon 9 for their CRS-3 (SpX-3) mission to the International Space Station (ISS), which currently has a place-holder of December. However, according to L2 information, ongoing discussions are taking place relating to a potential Visiting Vehicle (VV) conflict. Providing Orbital\u2019s OrB-D mission proceeds as planned, allowing for a December launch of OrB-1, one of the CRS missions will have to move to change its docked period to Node-2 Nadir between January 26 to February 25, 2014. A decision won\u2019t be made until later this year, following the OrB-D mission and SpaceX\u2019s progress during their busy upcoming mission"}], "hoverinfo": "text"}, {"x": [0.17405936121940613, 0.07360421866178513, 0.22341744601726532, 0.19000063836574554, 0.1670163869857788, 0.1670163869857788, 0.21028995513916016, 0.22163653373718262, 0.17362070083618164, 0.11332090944051743, 0.1557311713695526, 0.19322443008422852, 0.2233155071735382, 0.16798068583011627, 0.1627362072467804, 0.17188942432403564, 0.23688757419586182, 0.20481745898723602, 0.1435982882976532, 0.19180633127689362, 0.1639101505279541, 0.1303103119134903, 0.1932680606842041, 0.1932680606842041, 0.22663214802742004, 0.21876820921897888, 0.17628006637096405, 0.14851680397987366, 0.14114350080490112, 0.16350743174552917, 0.1925046592950821, 0.11947112530469894, 0.2176256626844406, 0.18993963301181793, 0.1820938140153885, 0.22309139370918274, 0.16230052709579468, 0.17393848299980164, 0.20773130655288696, 0.1802646815776825, 0.1802653670310974, 0.20204892754554749, 0.19332504272460938, 0.18556053936481476, 0.13160847127437592, 0.2121875286102295, 0.20534686744213104, 0.19602733850479126, 0.10503272712230682, 0.2122780680656433, 0.2342568039894104, 0.21755070984363556, 0.19995099306106567, 0.14465481042861938, 0.15794026851654053, 0.17277485132217407, 0.1897154152393341, 0.18442825973033905, 0.19313237071037292, 0.07475728541612625, 0.2056352198123932, 0.11332090944051743, 0.11332084238529205, 0.19863612949848175, 0.15913720428943634, 0.14419937133789062], "y": [0.06375504285097122, 0.06711039692163467, 0.028599921613931656, 0.10535576194524765, 0.002688328269869089, 0.0026882074307650328, 0.07594072073698044, 0.10878327488899231, 0.14520762860774994, -0.007723938673734665, -0.003717675805091858, 0.06810954213142395, 0.06768910586833954, 0.10722587257623672, 0.012900506146252155, 0.1049269512295723, 0.05497191846370697, 0.10868601500988007, 0.052013833075761795, 0.15665121376514435, 0.08363115042448044, 0.034326259046792984, -0.010691680945456028, -0.010691680945456028, 0.07372017204761505, 0.027488406747579575, 0.0009862222941592336, 0.04756998270750046, -0.04214012995362282, 0.048736970871686935, 0.03247542306780815, 0.0031884275376796722, 0.0775483027100563, 0.09893014281988144, 0.0767301544547081, 0.1235676258802414, -0.021426187828183174, 0.03832414373755455, 0.0710248053073883, 0.0016321325674653053, 0.0016320324502885342, 0.12209688127040863, 0.15974101424217224, 0.08845030516386032, 0.15444044768810272, 0.08089136332273483, 0.06832370162010193, 0.0654604583978653, 0.021653635427355766, 0.08187615871429443, 0.07750488817691803, 0.07448386400938034, 0.07070186734199524, 0.04246578365564346, 0.0817536786198616, 0.006859347689896822, 0.06081762537360191, 0.04956415295600891, 0.02406071126461029, -0.04649105668067932, 0.0496075339615345, -0.007723938673734665, -0.007724439725279808, 0.03244158253073692, 0.04517354816198349, 0.015599430538713932], "mode": "markers", "name": "Cluster 4", "marker": {"size": 8, "color": "rgb(128,177,211)"}, "text": ["Document 32", "Document 34", "Document 51", "Document 57", "Document 62", "Document 63", "Document 65", "Document 69", "Document 99", "Document 103", "Document 118", "Document 123", "Document 129", "Document 136", "Document 137", "Document 138", "Document 140", "Document 151", "Document 161", "Document 167", "Document 187", "Document 191", "Document 194", "Document 195", "Document 198", "Document 202", "Document 204", "Document 227", "Document 229", "Document 234", "Document 251", "Document 252", "Document 255", "Document 259", "Document 260", "Document 273", "Document 287", "Document 302", "Document 304", "Document 307", "Document 308", "Document 309", "Document 310", "Document 322", "Document 351", "Document 358", "Document 383", "Document 403", "Document 413", "Document 416", "Document 428", "Document 432", "Document 442", "Document 450", "Document 451", "Document 467", "Document 491", "Document 499", "Document 534", "Document 536", "Document 588", "Document 626", "Document 627", "Document 839", "Document 968", "Document 1256"], "customdata": [{"title": "rpj-common-crawl-2022-05", "text": "with the atoms and molecules in Earth\u2019s atmosphere, stripping off electrons and generating a layer of plasma. Earth\u2019s ionosphere ranges from about 60 km (37 miles) to over 1,000 km (621 miles) above the surface, encompassing many satellites in low-Earth orbit as well as the International Space Station. At its densest, the ionosphere reaches a few million electrons in a single cubic centimeter. The ionospheric plasma is highly variable, changing with the time of day, season, phase of the solar activity cycle, and in response to any transient solar events like flares or coronal mass ejections. As Marconi discovered over a century ago, we can use the ionosphere to help us communicate over long distances. As radio waves pass through a plasma, the electrons respond to the electric field of the wave and begin to wiggle around at the same frequency as the wave. (The ions in the plasma respond too, but since they\u2019re so much more massive than the electrons they do it much more slowly.) Depending on the frequency of the wave, the electrons will either keep pace with the wave and reflect it back toward the ground or be unable to keep up and allow the wave to pass through. This cartoon shows how radio waves travel large distances around Earth by bouncing off of plasma in the atmosphere. Whether or not a radio wave can escape the atmosphere depends on its frequency as well as the angle at which it\u2019s transmitted. Credit: NASA/GSFC The highest frequency that the electrons can match is"}, {"title": "rpj-common-crawl-2022-05", "text": "could affect visibility, but planes generally fly on instruments anyway, so this will not be an issue in itself. Can a normal person land a plane? Short answer: maybe, if he or she had plenty of help from air-traffic control and were good at multitasking. In movies, normal people are often put in situations where they have to land a plane. How do satellites survive the thermosphere? Many satellites orbit within the thermosphere and changes in the density of (the very, very thin) air at orbital altitudes, brought on by heating and expansion of the thermosphere, generates a drag force on satellites. These waves and tides help move energy around within the atmosphere, including the thermosphere. How does the ionosphere work? The ionized part of the Earth's atmosphere is known as the ionosphere. Ultraviolet light from the sun collides with atoms in this region knocking electrons loose. This creates ions, or atoms with missing electrons. This process also works in reverse for radio waves produced on the earth. Is the ionosphere hot or cold? Due to fluxes in solar radiation, temperatures in the ionosphere vary from 200 Kelvin (or -99 degrees Fahrenheit) to 500K (or 440 degrees Fahrenheit). Where does the ionosphere start? The ionosphere begins at a height of about 50 km (30 miles) above the surface, but it is most distinct and important above 80 km (50 miles). What is the altitude of the ionosphere? The ionosphere is an abundant layer of electrons and ionized atoms and molecules that stretches from about 48 kilometers"}, {"title": "rpj-common-crawl-2023-06", "text": "to provide much indication one way or the other. The ionosphere extends from about 80 to 1000 km (50 \u2013 600 miles), above the earth\u2019s surface. Below, lie the mesosphere, stratosphere, and the troposphere where we live. These layers are a good thing, as they protect us from solar radiation. The ionosphere exists because of ultraviolet radiation from the sun. It breaks apart the atmospheric molecules that remain at these altitudes, knocking off electrons, leaving a sea of ions and charged electrons. This region of charged particles exists alongside the very thin upper atmosphere. We need to understand how earth\u2019s weather patterns, including thunderstorms, snow, rain and heat, hurricanes, etc. affect this region, because many low-earth satellites that orbit the Earth, including the International Space Station, fly right through the ionosphere. Interestingly, the ionosphere actually supports some of the radio waves and signals that we rely on, such as GPS signals. When the ionosphere is unpredictably changed, creating ripples and bubbles of dense plasma, the impact on our communication technology can be significant. On the other hand, some signals, like those of short-wave radio, bounce off the ionosphere and rely on it for communications around the globe. Changes in the ionosphere can affect the signals that must go through it, like GPS, and those that bounce off of it, like short wave radio. For a long time, researchers thought that only space weather \u2013 sun activity \u2013 affected the ionosphere, but now we are learning that earth\u2019s weather also has an impact, and we need to"}, {"title": "rpj-common-crawl-2022-05", "text": "to density, and therefore inversely proportional to the altitude of the layer. This is because at altitudes of higher density, there are more ions and subsequently more possibility for collisions, which are the cause of deionization. In the E and F layers, the density is low enough such that these collisions do not happen as often as in the D layer, meaning that these two layers remain ionized long after radiation has stopped being applied. In fact, they remain ionized throughout the entire night, whereas the D layer loses its ionization during the night. This property of the ionosphere is what allows for radio communication via sky waves. At the ion density of the E and F layers during both day and night, LF and VLF radio waves reflect off of the ions, propagating back down to the surface of the earth. However, the properties of the D layer provide some difficulties. During the day, the ion density is too high for some LF, and especially VLF, radio waves to pass through to then be reflected off of the E or F layers. Instead, the waves are absorbed by the ions. During the night, the ion density is low enough for LF and VLF radio waves to pass through it undisturbed, and reach the reflective E and F layers. Brody, K., & Lukes, L., Dr. (n.d.). The EclipseMob Experiment. Retrieved September 17, 2017, from http://eng.umb.edu/~eclipsemob/images/Lesson-3-The-EclipseMob-Experiment.pdf Thurber, K. T. (1998, May). A Beginners Guide To Radio Propagation. Retrieved September 17, 2017, from https://archive.org/details/ABeginnersGuideToRadioPropagation Tran, L. (2017, August"}, {"title": "rpj-common-crawl-2022-05", "text": "of the electromagnetic spectrum also invisibly dominate the sky and are stronger than the emissions in the visible spectrum. Many of the spacecraft sent to space are not for exploring the universe, but rather for the practical purpose of GPS, TV, weather predictions, etc. These near-Earth satellites orbit relatively close to Earth and communicate with each other and stations on Earth through the use of lasers. The ionosphere and the ions present there tend to interfere with these signals. Changes in the ions, their density, and localization in the ionosphere will affect how satellites record data and communicate it. But the ionosphere is just invisible air, after all, right? Correct, but airglow is like an indicator to see and observe changes in the ionosphere. Changes in the characteristic photometric spectrum emitted by the ionosphere is how changes in the ionosphere are detected. The composition of the ionosphere is affected by the weather in space, as well as the weather conditions on Earth. The weather on Earth, the intensity of solar radiation, and gravity waves are some of the causes of changes in the ionosphere. Gravity waves are created when there is a disturbance between a fluid medium and gravity or buoyancy tries to restore the fluid to how it originally was or attain equilibrium. The ripples seen in a pond when a stone is dropped in is due to gravity waves. They are different from gravitational waves. The different altitudes of various near-Earth orbiting satellites (Photo Credit : Rrakanishu/Wikimedia Commons) Since the time it was first"}, {"title": "rpj-common-crawl-2022-05", "text": "of the electromagnetic spectrum also invisibly dominate the sky and are stronger than the emissions in the visible spectrum. Many of the spacecraft sent to space are not for exploring the universe, but rather for the practical purpose of GPS, TV, weather predictions, etc. These near-Earth satellites orbit relatively close to Earth and communicate with each other and stations on Earth through the use of lasers. The ionosphere and the ions present there tend to interfere with these signals. Changes in the ions, their density, and localization in the ionosphere will affect how satellites record data and communicate it. But the ionosphere is just invisible air, after all, right? Correct, but airglow is like an indicator to see and observe changes in the ionosphere. Changes in the characteristic photometric spectrum emitted by the ionosphere is how changes in the ionosphere are detected. The composition of the ionosphere is affected by the weather in space, as well as the weather conditions on Earth. The weather on Earth, the intensity of solar radiation, and gravity waves are some of the causes of changes in the ionosphere. Gravity waves are created when there is a disturbance between a fluid medium and gravity or buoyancy tries to restore the fluid to how it originally was or attain equilibrium. The ripples seen in a pond when a stone is dropped in is due to gravity waves. They are different from gravitational waves. The different altitudes of various near-Earth orbiting satellites (Photo Credit : Rrakanishu/Wikimedia Commons) Since the time it was first"}, {"title": "math", "text": "for a larger image \u2022 The ionosphere is a region of electrically charged particles or gases in the earth\u2019s atmosphere, extending from approximately 50 to 600 km above the earth\u2019s surface. Ionization, the process in which electrons are stripped from atoms and produces electrically charged particles, results from solar radiation. When the ionosphere becomes heavily ionized, the gases may even glow and be visible. This phenomenon is known as Northern and Southern Lights. \u2022 Why is the ionosphere important in HF radio? Well, this blanket of gases is like nature\u2019s satellite, making HF BLOS radio communications possible. When radio waves strike these ionized layers, depending on frequency, some are completely absorbed, others are refracted so that they return to the earth, and still others pass through the ionosphere into outer space. Absorption tends to be greater at lower frequencies, and increases as the degree of ionization increases. \u2022 The angle at which sky waves enter the ionosphere is known as the incident angle. This is determined by wavelength and the type of transmitting antenna. Like a billiard ball bouncing off a rail, a radio wave reflects from the ionosphere at the same angle it hits it. Thus, the incident angle is an important factor in determining communications range. If you need to reach a station that is relatively far from you, you would want the incident angle to be relatively large. To communicate with a nearby station, the incident angle should be relatively small. Ground station HF radio operators worry about the angle of incidence as"}, {"title": "pes2o", "text": "Sun. As the ionization of the upper layers of the ionosphere is strongly dependent on the Sun's radiation, the ionosphere varies both daily and seasonally. Because the energy from the Sun varies both daily and seasonally, the ionosphere is never static. The Sun, for instance, has times of extreme activity that causes storms and severe disruption to the propagation. Moreover, the ionosphere's behavior is affected by even more parameters, such as the height and the mixture of gasses [17]. This chemistry that was just mentioned also directly affects the rate of ionization, just as the density of atoms and the intensity of radiation do. Some chemical reactions take place quickly, causing high ionization, while others are slower, resulting in less ionization [10]. All the ionization that was explained illustrates the ionosphere's interaction with radio waves. When a radio wave reaches the ionosphere, the electric field in the wave forces the electrons in the ionosphere into oscillation at the same frequency as the radio wave. Some of the radiofrequency energy is released due to this resonant oscillation, on which the oscillating electrons may either recombine, thereby losing the radio energy, or re-radiate the original wave energy (refraction) [17]. The refraction phenomenon is fundamental in all ionospheric links, and it occurs because ionized molecules present free electrons that are able to vibrate in response to the radio signals reaching them. The behavior of each of these moving electrons resembles small dipole antennas. Radio waves are bent away from areas of high ionization because these areas have a lower"}, {"title": "math", "text": "A plasma is formed, which consists of negative free electrons and positive ions. The part of the atmosphere that is ionized by solar radiation is called the ionosphere . At the same time that ionisation takes place however, an opposing process called recombination also begins. Some of the free electrons are drawn to the positive ions, and combine again with them if they are in close enough contact. Since the gas density increases at lower altitudes, the recombination process occurs more often here because the gas molecules and ions are closer together. The ionisation process produces energy which means that the upper parts of the thermosphere, which are dominated by ionisation, have a higher temperature than the lower layers where recombination takes place. Overall, temperature in the thermosphere increases with an increase in altitude. ## The ionosphere and radio waves The ionosphere is of practical importance because it allows radio waves to be transmitted. A radio wave is a type of electromagnetic radiation that humans use to transmit information without wires. When using high-frequency bands, the ionosphere is used to reflect the transmitted radio beam. When a radio wave reaches the ionosphere, the electric field in the wave forces the electrons in the ionosphere into oscillation at the same frequency as the radio wave. Some of the radio wave energy is given up to this mechanical oscillation. The oscillating electron will then either recombine with a positive ion, or will re-radiate the original wave energy back downward again. The beam returns to the Earth's surface, and"}, {"title": "rpj-common-crawl-2020-05", "text": "lie about other things, it lends to their character. The HAARP experiments interact with the ionosphere. The ionosphere begins 30 miles above the surface of the earth and extends up to around 250 miles. The highest passenger jets fly at about 10 miles (with the vast majority at around 4-6 miles). That\u2019s why the proposal talks about using satellites. That is why they would NOT use planes, they can\u2019t fly high enough. Yes it does. It\u2019s a research facility, and not an operational facility. It has no real ability to DO anything other than excite the ionosphere in a spot for a few minutes. The military\u2019s interest is partly explained in the FAQ: Because the DoD operates numerous communication and navigation systems whose signals either depend on reflection from the ionosphere or must pass through the ionosphere to satellites, there is obvious DoD interest in understanding the ionosphere\u2019s effect on these systems to improve their reliability and performance. You didn\u2019t respond to the patent that states a proposal for releasing barium clouds\u2026\u2026. I wonder if the \u201cexcitement\u201d in the sky they conduct is visible? We had a sky full of clouds with squared off edges that fit perfectly into eachother\u2026horizon to horizon. I\u2019d never seen anything quite like it. The spaces between the jagged clouds were the same width as the clouds. As the clouds left the area, there was a definite \u201cpattern\u201d at the edge of the cloud line as well. I felt like I\u2019d stepped onto an X-Files set. I sent copies to two"}, {"title": "rpj-common-crawl-2020-05", "text": "on scientific missions that usually last five to 20 minutes. The ionosphere is called so because it is ionised by solar radiation. It plays an important part in atmospheric electricity and forms the inner edge of the magnetosphere. Ionosphere stretches from 50 to 1,000 km and typically overlaps both the exosphere and the thermosphere. It has practical importance because it influences, for example, radio propagation on the Earth. It is also responsible for auroras. Month: Current Affairs \u2013 June, 2017 Categories: Science & Technology Tags: Current Affairs - 2017 \u2022 Ionosphere \u2022 NASA \u2022 Science and Technology 12345...10203040...\u00bbLast \u00bb"}, {"title": "rpj-common-crawl-2021-04", "text": "of continual additions to our knowledge of the things that happen to the signals We launch so hopefully into space. It's helpful, now and then, to take stock of that knowledge. The accompanying article, extracted from the Bureau of Standards' Letter Circular LC-575, is an up-to-date summary of known ionosphere effects. \"Must\" reading for the chap who wants to keep well informed. In the high atmosphere, above about 50 kilometers (30 miles), the air particles are separated so far that collisions between them are far less frequent than in the lower atmosphere, and when an air particle is ionized by ultraviolet radiation from the sun it remains ionized for a considerable time. Therefore at any given time a large proportion of the air particles are in an ionized condition. This does not occur much below about 50 kilometers (30 miles), because the ionizing radiations from the sun are largely absorbed in the higher regions of the atmosphere. Likewise there is not very great ionization density above about 400 kilometers (250 miles), because the air is so rare at such heights that there are not enough atoms to provide for great ionization density. The region in which the ionization is great, great enough in fact to affect radio wave transmission, is thus between 50 and 400 kilometers (30 and 250 miles) above the earth's surface, and this region is called the \"ionosphere\". The ionization in the ionosphere is not uniformly distributed with altitude but is stratified, and there are certain definite layers in which the ionization density"}, {"title": "rpj-c4", "text": "of the ionosphere varies according to the amount of solar radiation. Solar flares, solar wind variability and geomagnetic storms affect the density of the ionosphere. Since the sun is the main cause of ionization, the night side of the earth and the poles are less ionized than those parts of the planet that point more directly to the sun. Sunspots-dark areas on the surface of the sun, affect the ionosphere due that the areas that surround the spots emit larger amounts of ultraviolet radiation, which is the main cause of ionization. The quantity of spots on the sun vary according to an 11 year cycle. radio communications may be less during a solar minimum than during a solar maximum. Check your Knowledge of the Ionosphere! The F2 region is the most used for radio communication due that it\u00b4s permanent day and night. The altitude at which it\u00b4s located allows for more ample communication and it reflects the higher frequencies. During the day, signals of medium wave frequency travel only as ground waves. As frequency increases, ionospheric attenuation decreases allowing signals to pass through the D region and on to the E region, where signals are reflected back to earth passing through the D region and landing at a great distance from the transmitter. As signal frequency increases further, The E region electron density is not sufficient to refract signals and signals reach the F1 region where they are reflected back through the E and D region, eventually landing at an even greater distance fom the transmitter."}, {"title": "math", "text": "the ionosphere, and therefore the most important for long-haul communications, is the F layer. At this altitude, the air is thin enough that the ions and electrons recombine very slowly, so the layer retains its ionized properties even after sunset. \u2022 In the daytime, the F layer consists of two distinct layers, F1 and F2. The F1 layer, which exists only in the daytime and is negligible in winter, is not important to HF communications. The F2 layer reaches maximum ionization at noon and remains charged at night, gradually decreasing to a minimum just before sunrise. \u2022 During the day, sky wave reflection from the F2 layer requires wavelengths short enough to penetrate the ionized D and E layers, but not so short as to pass through the F layer. Generally, frequencies from 10 to 20 MHz will accomplish this, but the same frequencies used at night would penetrate the F layer and pass into outer space. The most effective frequencies for long-haul nighttime communications are normally between 3 and 8 MHz. There are free electrons everywhere and when these electrons attach themselves to molecules in the atmosphere these molecules are said to be ionized. An ionized molecule is good for bouncing radio waves so an ionized layer of atmosphere is good for long distance communications. Where the knowledge shown here comes in handy is when selecting a frequency. During the day the lowest ionosphere is as ionized as it gets and a higher frequency (with the shortest wavelength) bounces best. During the night this layer"}, {"title": "rpj-common-crawl-2020-05", "text": "The Chirpsounder / Ionosonde Nov 21 Posted by Paula Livingstone in Radio Anybody who has ever set up a working international HF link will know it can be a tricky business. You see there's a pesky movable thing called the ionosphere which is pretty fundamental to the whole business. Communicating with a point halfway round the planet using HF is like trying to play that old 70's children's game called Rebound. Since radio links are usually close to or distinctly line of sight links, communicating with a point on the other side of a sphere would seem like a fairly insurmountable problem. I'd think the first time this problem was solved using the ionosphere it was probably an accident caused by some early radio pioneers receiving signals for their fellow pioneers some way round the planet and beginning to wonder why and how it was happening. The reason it was and does happen is because of a thin layer of the Earths atmosphere called the ionosphere. The ionosphere is a region of the upper atmosphere, from about 85 km (53 mi) to 600 km (370 mi) altitude, and includes the thermosphere and parts of the mesosphere and exosphere. It is distinguished because it is ionized by solar radiation. It plays an important part in atmospheric electricity and forms the inner edge of the magnetosphere. It has practical importance because, among other functions, it influences radio propagation to distant places on the Earth. This is the reason we as Telecommunications Engineers are interested in it. The ionosphere"}, {"title": "rpj-c4", "text": "to affect radio propagation. This portion of the atmosphere is ionized and contains a plasma which is referred to as the ionosphere. In a plasma, the negative free electrons and the positive ions are attracted to each other by the electromagnetic force, but they are too energetic to stay fixed together in an electrically neutral molecule. This entry was posted in earth, Environment. Bookmark the permalink."}, {"title": "rpj-arxiv", "text": "\\section{Introduction} \\label{sec:introduction} The impact of the Earth's ionosphere is one of the major challenges in low-frequency ($\\lesssim$\\,1.0\\,GHz) radio observations. It is a perturbing medium for transionospheric radio signals measured by Earth-based radio telescopes, which suffer from phase corruption. To perform sensitive measurements at low radio frequencies, it is necessary to accurately calibrate the ionosphere-induced path length differences from the measured signal. \\par The ionosphere consists of partially ionized plasma, which extends from about 60\\,km to beyond 1000\\,km altitude, transitioning smoothly into the plasmasphere. The ionosphere is formed as X-ray, and extreme ultraviolet (EUV) light from the Sun provides the energy that ionizes the atoms and molecules present in the upper atmosphere. At nighttime, the recombination process occurs, and the number of electron-ion pairs decrease. Other sources such as cosmic rays, can ionize the atmosphere, though not nearly as strong as the Sun. At night, the electron density peak lies at an altitude of about 250-500\\,km \\citep[see][]{Mannucci1998RaSc...33..565M}. The ionosphere is a highly dynamic region that varies with latitude and time. The electron density changes dramatically from local daytime to nighttime, peaking in the early afternoon and progressively declining after midnight. The electron density increases as one descends in the latitude of both hemispheres, reaching a maximum around the geomagnetic equator with a trough somewhere between the geographic and geomagnetic equators. As a result, the ionospheric activity is continuously varied during the daytime and has unanticipated changes during the nighttime, especially at low-latitude regions ($\\pm$20\\,degree magnetic latitudes). \\par The ionosphere has been investigated for decades with ionosondes and"}, {"title": "rpj-c4", "text": "which a free electron is \"captured\" by a positive ion if it moves close enough to it. As the gas density increases at lower altitudes, the recombination process accelerates since the gas molecules and ions are closer together. The point of balance between these two processes determines the degree of ionization present at any given time. The ionization depends primarily on the Sun and its activity. The amount of ionization in the ionosphere varies greatly with the amount of radiation received from the sun. Thus there is a diurnal (time of day) effect and a seasonal effect. The local winter hemisphere is tipped away from the Sun, thus there is less received solar radiation. The activity of the sun is associated with the sunspot cycle, with more radiation occurring with more sunspots. Radiation received also varies with geographical location (polar, auroral zones, mid-latitudes, and equatorial regions). There are also mechanisms that disturb the ionosphere and decrease the ionization. There are disturbances such as solar flares and the associated release of charged particles into the solar wind which reaches the Earth and interacts with its geomagnetic field. The D layer is the innermost layer, 50 km to 90 km above the surface of the Earth. Ionization here is due to Lyman series-alpha hydrogen radiation at a wavelength of 121.5 nanometre (nm) ionizing nitric oxide (NO). In addition, when the sun is active with 50 or more sunspots, hard X-rays (wavelength < 1 nm) ionize the air (N2, O2). During the night cosmic rays produce a residual amount"}, {"title": "rpj-c4", "text": "conditions in the ionosphere. Note that some absorption of sky waves may also occur at lower atmospheric levels because of the presence of water and water vapor. However, this becomes important only at frequencies above 10,000 megahertz. They bounce the signal off the ionosphere! Also known as the K\u00e1rm\u00e1n line. There's more in my next post. So much for satellites. All these three technologies use the cellphone tower network for their operation and bounce the signal near the speed of light off the ionosphere. Case closed. Now we know why they have chosen those low microwave frequencies that fry our brain. They are the only ones which bounce off the ionosphere without delays and allow the gps devices and phones to not need antennae! We must live in an absolute sea of brain-frying low microwave radiation. Last edited by totalrecall on Wed Jan 09, 2013 12:25 am, edited 3 times in total. Amateur radio enthusiasts primarily use this quality of the ionosphere to help propagate lower frequency HF signals around the world: the waves are trapped, bouncing around in the upper layers of the ionosphere until they are refracted down at another point on the Earth. This is called skywave transmission. UHF TV signals are not carried along the ionosphere but can be reflected off of the charged particles down at another point on Earth in order to reach farther than the typical line-of-sight transmission distances; this is the skip distance. UHF transmission and reception are enhanced or degraded by tropospheric ducting as the atmosphere warms"}, {"title": "rpj-common-crawl-2021-04", "text": "km (50 mi), in the thermosphere, the atmosphere is so thin that free electrons can exist for short periods of time before they are captured by a nearby positive ion. The number of these free electrons is sufficient to affect radio propagation. This portion of the atmosphere is ionized and contains a plasma which is referred to as the ionosphere. In a plasma, the negative free electrons and the positive ions are attracted to each other by the electrostatic force, but they are too energetic to stay fixed together in an electrically neutral molecule. Ultraviolet (UV), X-Ray and shorter wavelengths of solar radiation are ionizing, since photons at these frequencies contain sufficient energy to dislodge an electron from a neutral gas atom or molecule upon absorption. In this process the light electron obtains a high velocity so that the temperature of the created electronic gas is much higher (of the order of thousand K) than the one of ions and neutrals. The reverse process to ionization is recombination, in which a free electron is \"captured\" by a positive ion. Recombination occurs spontaneously, and causes the emission of a photon carrying away the energy produced upon recombination. As gas density increases at lower altitudes, the recombination process prevails, since the gas molecules and ions are closer together. The balance between these two processes determines the quantity of ionization present. Ionization depends primarily on the Sun and its activity. The amount of ionization in the ionosphere varies greatly with the amount of radiation received from the Sun. Thus"}, {"title": "rpj-common-crawl-2022-05", "text": "known as the plasma frequency. Let\u2019s say you have a blob of plasma and you disturb it in some way. Maybe you push some electrons together so that one area has more negative charge than the rest. Because the like charges repel each other, the electrons spring apart and inevitably overshoot their original positions and end up sloshing back and forth, forming plasma waves. The frequency of these waves depends on how dense the plasma is; denser plasma has a higher intrinsic plasma frequency. For a density of one million electrons per cubic centimeter (typical of Earth\u2019s ionosphere), the plasma frequency comes out to about 9 MHz. This is glossing over a lot of the details of how radio waves interact with a plasma, but the bottom line is that high-frequency radio waves will be reflected at higher altitudes (where the plasma density is greater) than low-frequency radio waves, if they are reflected at all. This is true for radio waves that originate outside Earth\u2019s atmosphere as well, so while the ionosphere enables radio communication, it also prevents us from observing the universe or receiving any potential SETI signals at any frequency below the plasma frequency. This cartoon shows the wavelengths that are blocked by Earth\u2019s atmosphere. For any opaque wavelengths shorter than ~5 centimeters, absorption by atoms and molecules in Earth\u2019s atmosphere is responsible for the opacity. Above ~20 meters, Earth\u2019s ionosphere reflects the waves back to space. Credit: NASA What We Might Be Missing So we\u2019re unable to observe a huge chunk of the"}, {"title": "rpj-common-crawl-2022-05", "text": "the rest of the ionspheric heaters. Did you miss the bit where it said it heats up a larger area than where it was aimed. They say it is to communicate with submarines, but there is evidence they are trying to own the weather. All that power being absorbed by the Ionosphere, heating the particles up there, it is very irresponsible, when they don\u2019t even know what it could be doing to our planet. Darcy Cowan says: Derek, no, not really. Have a look at the make-up of the Earth\u2019s atmosphere, the ionosphere is above the point where the temperature could reasonably be expected to be transmitted back down to Earth. Good thing \u2018cos up there it\u2019s routinely hundreds of degrees, sometime breaching thousands on degrees. The \u201cheating\u201d achieved by HAARP does not make much difference. Note, from a different portion of the web page you quote (and don\u2019t reference by the way, that\u2019s getting very old.): \u201cThis power is partially absorbed by the ionosphere, and though only a tiny fraction of the power it naturally receives from the sun, can still produce subtle changes that can be detected with sensitive instruments.\u201d http://vlf.stanford.edu/research/experiments-haarp-ionospheric-heater I put heating in quotes as while it is real, it\u2019s not quite the same as putting something under a heat lamp. The atmosphere up there is extremely attenuated, consisting of gas and free ions (hence ionosphere), the temperature reflects the energy these particles have but you would still freeze to death if you were up there. \u201cWithin the thermosphere temperatures rise continually"}, {"title": "rpj-common-crawl-2020-05", "text": "certainly not related to the claims that are made in Ata-ur-Rahman's article. Just a very brief primer on our ionosphere: This is a thin layer of atmosphere containing charged particles (ions - and hence the name ionosphere) extending roughly from 80 kms to 300 kms above the surface (Rahman got this thing correct). Most of the weather is shaped by lower layers (the stratosphere and the troposphere). Indeed, ionosphere is important for communication systems - as our transmitters often bounce off radio waves in the ionosphere. Therefore, it is important to understand variations in this layer of the atmosphere. Can this have a military connection? Of course. Militaries all over the world are worried about maintaining communication links in all eventualities. For example, solar flares emit charged particles - and these particles can disrupt satellites as well as they can have an impact on the ionosphere. Therefore, while solar flares are of interest to astronomers, many militaries in the world are also monitoring the Sun for the same purpose. But, the fallacy comes in when we jump from a military application...to the assumption of a weapon of mass-destruction. Wait a minute. So where does the HAARP and earthquake connection comes in. After all, Ata-ur-Rahman has quoted President Hugo Chavez of Venezuela of blaming the US for causing Haiti's earthquake (yes, all we need is a President of a country believing in quack science!). This is an interesting question. I know that radio waves are used to monitor movement of plates and any earthquakes (for example, here"}, {"title": "rpj-common-crawl-2020-05", "text": "certainly not related to the claims that are made in Ata-ur-Rahman's article. Just a very brief primer on our ionosphere: This is a thin layer of atmosphere containing charged particles (ions - and hence the name ionosphere) extending roughly from 80 kms to 300 kms above the surface (Rahman got this thing correct). Most of the weather is shaped by lower layers (the stratosphere and the troposphere). Indeed, ionosphere is important for communication systems - as our transmitters often bounce off radio waves in the ionosphere. Therefore, it is important to understand variations in this layer of the atmosphere. Can this have a military connection? Of course. Militaries all over the world are worried about maintaining communication links in all eventualities. For example, solar flares emit charged particles - and these particles can disrupt satellites as well as they can have an impact on the ionosphere. Therefore, while solar flares are of interest to astronomers, many militaries in the world are also monitoring the Sun for the same purpose. But, the fallacy comes in when we jump from a military application...to the assumption of a weapon of mass-destruction. Wait a minute. So where does the HAARP and earthquake connection comes in. After all, Ata-ur-Rahman has quoted President Hugo Chavez of Venezuela of blaming the US for causing Haiti's earthquake (yes, all we need is a President of a country believing in quack science!). This is an interesting question. I know that radio waves are used to monitor movement of plates and any earthquakes (for example, here"}, {"title": "rpj-common-crawl-2022-05", "text": "electron density pro\ufb01le D region absorption irregularities particle precipitation 100s km range errors 100 deg bearing errors intersymbol interference changes in E and F region electron density pro\ufb01le D region absorption irregularities multipath >20 dB fades at HF even no signal total electron content variations single frequency position errors up to 35 metres loss of position update Ionospheric propagation 315 pulses which may be distinct or which may overlap. This situation is further complicated because the signals can also bounce o\ufb00 the ionosphere more than once, having been re\ufb02ected from the ground in between. The earth\u2019s magnetic \ufb01eld also splits an arbitrary signal into two orthogonal polarisations which travel at a di\ufb00erent speed and follow a slightly di\ufb00erent path. There sometimes exist the so-called high and low-angle paths. At VHF and above the multipath manifests itself as rapid phase and amplitude scintillation of the signal [3, 4]. The ionosphere is in constant turmoil; more so at some latitudes than at others. This introduces Doppler shifts and spreads to the signals. 16.2 Ionospheric morphology The ionosphere is a lightly ionised region of the atmosphere lying mainly in the altitude range 60 km to 1000 km, Figure 16.1. This ionisation is caused by several mechanisms. The most important of these, at nonauroral latitudes, are the sun\u2019s extreme ultra violet (EUV), X-ray and Lyman \u03b1 radiation together with solar cosmic rays. At high latitudes, particularly during magnetically active periods, the e\ufb00ects of energetic particles and electric \ufb01elds are also important. The rates of ionisation at any altitude depend on"}, {"title": "rpj-common-crawl-2020-05", "text": "waves in electron content disturbances emanating from totality primarily over central/eastern United States. Study of wave characteristics reveals complex interconnections between the sun, moon, and Earth\u2019s neutral atmosphere and ionosphere.\u201d The ionosphere stretches from about 50 km to 1000 km in altitude during the day. It swells as radiation from the Sun reaches Earth, and subsides at night. Its size is always fluctuating during the day. It\u2019s called the ionosphere because it\u2019s the region where charged particles created by solar radiation reside. The ionosphere is also where auroras occur. But more importantly, it\u2019s where radio waves propagate. The ionosphere surrounds the Earth, extending from about 80 km to 650 km. Image Credit: NASA\u2019s Goddard Space Flight Center/Duberstein The ionosphere plays an important role in the modern world. It allows radio waves to travel over the horizon, and also affects satellite communications. This image shows some of the complex ways our communications systems interact with the ionosphere. This graphic shows some of the effects that the ionosphere has on communications. Image: National Institute of Information and Communications Technology There\u2019s a lot going on in the ionosphere. There are different types of waves and disturbances besides the bow wave. A better understanding of the ionosphere is important in our modern world, and the August eclipse gave scientists a chance not only to observe the bow wave, but also to study the ionosphere in greater detail. The GNSS data used to observe the bow wave was key in another study as well. This one was also published in the"}, {"title": "rpj-common-crawl-2019-30", "text": "on Aug. 21, scientists will know exactly how much solar radiation is blocked, the area of land it's blocked over and for how long. Combined with measurements of the ionosphere during the eclipse, they'll have information on both the solar input and corresponding ionosphere response, enabling them to study the mechanisms underlying ionospheric changes better than ever before. Tying the three studies together is the use of automated communication or navigation signals to probe the ionosphere's behavior during the eclipse. During typical day-night cycles, the concentration of charged atmospheric particles, or plasma, waxes and wanes with the Sun. \"In the daytime, ionospheric plasma is dense,\" Earle said. \"When the Sun sets, production goes away, charged particles recombine gradually through the night and density drops. During the eclipse, we're expecting that process in a much shorter interval.\" The denser the plasma, the more likely these signals are to bump into charged particles along their way from the signal transmitter to receiver. These interactions refract, or bend, the path taken by the signals. In the eclipse-induced artificial night the scientists expect stronger signals, since the atmosphere and ionosphere will absorb less of the transmitted energy. \"If we set up a receiver somewhere, measurements at that location provide information on the part of the ionosphere between the transmitter and receiver,\" Marshall said. \"We use the receivers to monitor the phase and amplitude of the signal. When the signal wiggles up and down, that's entirely produced by changes in the ionosphere.\" A layer of charged particles, called the ionosphere, surrounds"}, {"title": "rpj-common-crawl-2022-05", "text": "\u201cThe Universe Beyond the Plasma Frequency\u201d by Kerry Hensley After centuries of watching the night sky with increasingly sophisticated tools, there\u2019s still plenty we don\u2019t know about the universe. Part of the challenge is that we\u2019re stuck on a planet that\u2019s surrounded by an atmosphere that blocks certain types of radiation from reaching the ground. It\u2019s hard to complain too much, since if X-rays could make it to Earth\u2019s surface humans would either be dead or a very different kind of organism, but it has certainly slowed our progress. We\u2019ve managed to launch telescopes into orbit around Earth to observe most wavelengths of light, but there\u2019s a huge chunk of extraterrestrial radiation that we currently have no means to observe. The culprit? A layer of plasma in Earth\u2019s atmosphere called the ionosphere. A Brief Overview of the Ionosphere In 1901, Guglielmo Marconi made a discovery that would change the way the world communicates: he received a radio transmission from over 2,000 miles away, demolishing the idea that radio signals can travel only as far as the visible horizon. Marconi was wrong about how the radio waves made it that far (he thought they would naturally follow Earth\u2019s curvature rather than traveling in straight lines), but the discovery prompted Oliver Heaviside and Arthur Kennelly to propose that the waves had actually been reflected by plasma\u2014atoms and molecules split into electrons and positively charged ions\u2014in the atmosphere. Two decades later, scientists were able to prove that such a layer of plasma existed and dubbed it the ionosphere. (Fans"}, {"title": "rpj-common-crawl-2022-05", "text": "this very well.\" Conditions in the upper atmosphere, which vary based on particles and radiation coming from the sun as well as weather patterns on Earth, are poorly understood. But this information is critical to communications and navigation systems, because radio waves bounce off of the atmosphere, and satellite-Earth communications (and GPS signals) must pass through it. Communications between satellites and Earth-based antennas must pass through the ionosphere. (Image credit: NASA/GSFC/CIL/Krystofer Kim) In addition, space weather \u2014 the sun's variation, changes in Earth's magnetic field and changes in near-Earth space \u2014 can disrupt electric power systems and grids on Earth in severe cases, Talaat said. The better scientists can understand and model the region, the better they can monitor and predict the effects it will have on Earth and low Earth orbit. \"This is a really incredible region where terrestrial weather from below percolates up and mixes with solar influences like geomagnetic storms and solar extreme ultraviolet radiation from above,\" said Katelynn Greer, a research scientist at LASP. \"With GOLD, we're going to be able to get to observe this with measurements of temperature and composition on the whole disk [nearly a whole hemisphere of Earth] every half-hour. And we've never had information like this before.\" Layers of Earth's upper atmosphere \u2014 GOLD focuses on the neutral thermosphere and the charged particles, called the ionosphere, embedded within it. (Image credit: NASA Goddard/Genna Duberstein ) Coming online SES-14 and GOLD will take about 4 and a half months to maneuver to their high perch in geostationary orbit"}, {"title": "rpj-common-crawl-2019-30", "text": "Why Do Radio Signals Travel Further At Night? Jason Fitzpatrick @jasonfitzpatric Geek Trivia Stations boost the power at night The ionosphere shifts FCC regulations are relaxed after 9PM The air is colder In The Mid-1960s, There Was A Brief But Intense Fashion Fad Focused On Wearing? Answer: The ionosphere shifts While the phenomenon of better night-time radio reception might be foreign to a generation brought up on podcasts and streaming media, anyone who grew up tuning into far off radio channels late at night (or continuing to do so) can attest to the startling clarity a midnight stroll around the radio dial can provide. Why exactly are distant AM and shortwave radio stations so much clearer at night? While it would be tempting to imagine it has something to do with the cool night air or the silence that typically permeates the evening, the secret lies miles and miles above the surface of the Earth in the ionosphere. During the day, the ionosphere is bombarded by sunlight which ionizes the molecules in it. At night when the sun is blocked by the Earth, the lower levels lose their ionization while the upper and less dense levels remain fairly well ionized and full of energy. During this period of time, radio waves pass into the upper reaches of the ionosphere where they collide with the highly energized electrons of the ionized molecules. When the radio wave frequency and the electrons fall into alignment, the electrons give the signal a boost and shoot it back down to Earth."}, {"title": "rpj-common-crawl-2021-04", "text": "about 27 to over 540 nautical miles above the Earth\u2019s surface (commercial aircraft typically fly under a fifth of the lowest limit - 5-1/2 nautical miles) and is generally divided into layers which differ in their behavior. At the altitude it exists, the density of the air has dropped so much that atmospheric molecules are far apart, and when hit by solar (mostly UV) radiation the gas molecules can lose one or more electrons, turning air into plasma. Most importantly, it refracts radio waves, affecting radio communication around the world. Ionospheric propagation varies day by day and season by season, but the High Frequency radio spectrum, from 3 to 30 MHz, is the only place in the entire electromagnetic spectrum where worldwide communication is routine without man-made infrastructure such as towers or radio relays. I subscribe to the ARRL Propagation Bulletin, which is mailed out at the end of the work week by the American Radio Relay League and available on their website for non-members. This week's bulletin had a link to a really interesting paper about a new discovery out of Sydney, Australia. The research comes from a new Australian radio telescope,the Murchison Widefield Array (MWA). The article, by senior research and lecturer Tara Murphy, describes how an undergraduate researcher, Cleo Loi, has confirmed the existence of something previously theorized: there are tubes of plasma drifting above the earth in the ionosphere. The story is worth reading. In these days of rampant junk science and papers that can't be independently verified, it starts with a"}, {"title": "rpj-common-crawl-2022-05", "text": "of Andrew Lloyd Webber musicals might remember a mention of the Heaviside Layer in Cats; the Heaviside Layer is another name for a part of the ionosphere. So while cats may or may not go to heaven, they do make it as far as the ionosphere. Now you know.) Auroral emission, seen here from the International Space Station, is generated within the ionosphere by particles funneled into Earth\u2019s atmosphere by its magnetic field. Credit: NASA Despite their importance to radio communication, ionospheres are rarely referenced directly in SF. One exception that I can think of is Kim Stanley Robinson\u2019s 1992 novel Red Mars, in which Mars\u2019s small radius and tenuous ionosphere (about ten times less dense than Earth\u2019s) are noted to make surface-to-surface radio communications more challenging. In Fritz Leiber\u2019s 1951 short story, \u201cA Pail of Air,\u201d it\u2019s the complete lack of an ionosphere that\u2019s important; after Earth is knocked out of orbit, it ends up far enough from the Sun that its whole atmosphere falls to the ground as snow. As a result, the survivors lose the ability to communicate long-distance via radio. The ionosphere is also indirectly implicated in any SF story where a solar storm impacts radio communications or GPS on Earth; other than the electronics themselves being fried by high-energy particles and radiation, what\u2019s being affected during a solar storm that causes communications to go haywire is the ionosphere. The ionosphere is formed when ultraviolet and X-ray photons from the Sun, as well as high-velocity particles from faraway sources like supernovae, collide"}, {"title": "rpj-common-crawl-2023-06", "text": "TechnologyBasics Ionospheric Propagation By Jairam Sankar The ionosphere is a part of the upper atmosphere, from about 85 km to 600 km altitude, comprising portions of the mesosphere, thermosphere, and exosphere, thermosphere and exosphere, distinguished because it is ionized by solar radiation. It plays an important part in atmospheric electricity and forms the inner edge of the magnetosphere. It has practical importance because, among other functions, it influences radio wave Propagation to distant places on the earth. In a region extending from a height of about 90 km to over thousands of kms, most of the molecules of the atmosphere are ionized by radiation from the Sun. This region is called the ionosphere. At greater heights- intensity of ionizing radiation is very high, few molecules are available for ionization, ionisation density is low As height decreases- more molecules are available due to reduced atmospheric pressure, ionization density is higher (closer to the earth) But as height decreases further, ionization density decreases though more molecules are available since the energy in the ionizing radiation has been used up to create ions. Hence, ionization is different at different heights above the earth and is affected by the time of day and solar activity There are three main regions within the ionosphere: D region: The D region within the ionosphere is the first region above the Earth\u2019s surface where there is an appreciable level of ionisation that is sufficient to affect radio signals. This typically region attenuates the signals as they pass through as a result of the higher"}, {"title": "rpj-common-crawl-2021-04", "text": "ionization takes place at three or four distinct layers. The lowest ionized region is called the D layer. It exists at an altitude of about 30 mi (50 km), and is ordinarily present only on the daylight side of the planet. This layer absorbs radio waves at some frequencies, impeding long-distance ionospheric propagation. The E layer, about 50 mi (80 km) above the surface, also exists mainly during the day, although nighttime ionization is sometimes observed. The E layer can provide medium-range radio communication at certain frequencies. The uppermost layers are called the F1 layer and the F2 layer. The F1 layer, normally present only on the daylight side of the earth, forms at about 125 mi (200 km) altitude; the F2 layer exists at about 180 mi (300 km) over most, or all, of the earth. Sometimes the distinction between the F1 and F2 layers is ignored, and they are spoken of together as the F layer. Communication by means of F-layer propagation can usually be accomplished between any two points on the earth at some frequencies between 5 MHz and 30 MHz. Tropospheric Propagation At frequencies above about 30 MHz, the lower atmosphere bends radio waves toward the surface. Tropospheric banding occurs because the index of refraction of air, with respect to EM waves, decreases with altitude. The effect is similar to the way sound waves sometimes travel long distances over the surface of a calm lake in the early morning or early evening, letting you hear a conversation more than a mile away."}, {"title": "rpj-c4", "text": "affect the extent of ionization in the ionosphere. Describe the frequency selection consideration for HF propagation."}, {"title": "rpj-c4", "text": "plasma. This process is based on solar activity and therefor only takes place when it\u2019s daytime. At night, when the solar source has ceased, the plasma density decreases again. The free electrons and ions attract each other and form neutral atoms and molecules again (recombination). By sunrise the process starts anew. The up and down of the ionization is similar to the daily temperature variations on Earth: At sunrise the air heats up; with fading solar radiation it cools down again. In order to ionize atoms and molecules the energy of the radiation must be sufficiently high (at short waves, extreme ultraviolet). By this energy consuming process, dangerous radiation is completely absorbed above 60 km in altitude (about 35 miles). Our atmosphere is also an important protective shield against the dangerous part of the solar radiation, like X-ray radiation. Short-wave X-ray radiation from solar eruptions and charged particles from the solar wind (SWACI Sun) ionize the lower ionosphere at an altitude of 100 km. This additional ionization modifies this layer in a way that affects the propagation of radio waves. During high-energy radio bursts the propagation conditions for VLF-waves change in such a way that one can immediately see the effect in the received signal strength of the SOFIE receiver. Considering its enormous solar radio bursts and mass ejections, the ionosphere is a very dynamic and fluctuating system, similar to the weather on Earth. Radio waves with frequencies below 30 MHz are mostly reflected by the ionosphere whereas radio waves with frequencies above 30 MHz (e.g."}, {"title": "rpj-common-crawl-2022-05", "text": "the aurora. The ionosphere is traditionally very difficult to measure. Balloons cannot reach it because the air is too thin, but satellites cannot orbit there because the air is too thick. Hence, most experiments on the ionosphere give only small pieces of information. HAARP approaches the study of the ionosphere by following in the footsteps of an ionospheric heater called EISCAT near Troms\u00f8, Norway. There, scientists pioneered exploration of the ionosphere by perturbing it with radio waves in the 2\u201310 MHz range, and studying how the ionosphere reacts. HAARP performs the same functions but with more power and a more flexible and agile HF beam. Copyright [oceanwp_date] - Schumann.ie"}, {"title": "rpj-common-crawl-2023-06", "text": "thick enough that there are enough molecules present to absorb those rays. Consequently, the ionosphere consists of a rapid increase in density of free electrons, beginning at ~70 km, reaching a peak at ~300 km, and then falling off again as the atmosphere disappears entirely by ~1,000 km. Various aspects of HAARP can study all of the main layers of the ionosphere. The profile of the ionosphere is highly variable, changing constantly on timescales of minutes, hours, days, seasons, and years. This profile becomes even more complex near Earth's magnetic poles, where the nearly vertical alignment and intensity of earth's magnetic field can cause physical effects like the aurora. The ionosphere is traditionally very difficult to measure. Balloons cannot reach it because the air is too thin, but satellites cannot orbit there because the air is too thick. Hence, most experiments on the ionosphere give only small pieces of information. HAARP approaches the study of the ionosphere by following in the footsteps of an ionospheric heater called EISCAT near Troms\u00f8, Norway. There, scientists pioneered exploration of the ionosphere by perturbing it with radio waves in the 2\u201310 MHz range, and studying how the ionosphere reacts. HAARP performs the same functions but with more power and a more flexible and agile HF beam. Some of the main capabilities of HAARP include: Generating very low frequency (VLF) radio waves by modulated heating of the auroral electrojet, useful because generating VLF waves ordinarily requires gigantic antennas Generating artificial Airglow, which is typically subvisual but routinely detectable. Under certain geophysical"}, {"title": "rpj-common-crawl-2021-04", "text": "ionosphere is turbulent, stratification is destroyed, and radio wave propagation erratic. During the later stages of very severe storms and during the whole of more moderate storms, the upper part of the ionosphere, principally the F2 layer, is expanded and diffused. The critical frequencies are much lower than normal and the virtual heights much greater, and therefore the maximum usable frequencies are much lower than normal. It is often necessary to lower the working frequency in order to maintain communication during one of these storms. There is also increased absorption of radio waves during an iono\u00adsphere storm. Ionosphere storms are most severe in auroral latitudes .and decrease in intensity as the equator is approached. Ionosphere storms occur approximately simultaneously over wide geographical areas. The condition of the ionosphere is much less uniform from point to point than on undisturbed days. Posted October 16, 2020(original 12/9/2015)"}, {"title": "rpj-common-crawl-2019-30", "text": "one of the studies. \"Without ionizing radiation, the ionosphere will relax, going from daytime conditions to nighttime conditions and then back again after the eclipse.\" Stretching from roughly 50 to 400 miles above Earth's surface, the tenuous ionosphere is an electrified layer of the atmosphere that reacts to changes from both Earth below and space above. Such changes in the lower atmosphere or space weather can manifest as disruptions in the ionosphere that can interfere with communication and navigation signals. \"In our lifetime, this is the best eclipse to see,\" said Greg Earle, an electrical and computer engineer at Virginia Tech in Blacksburg, Virginia, who is leading another of the studies. \"But we've also got a denser network of satellites, GPS and radio traffic than ever before. It's the first time we'll have such a wealth of information to study the effects of this eclipse; we'll be drowning in data.\" The Moon's shadow will dramatically affect insolation -- the amount of sunlight reaching the ground -- during the total solar eclipse. Credit: NASA's Scientific Visualization Studio Pinning down ionospheric dynamics can be tricky. \"Compared to visible light, the Sun's extreme ultraviolet output is highly variable,\" said Phil Erickson, a principal investigator of a third study and space scientist at Massachusetts Institute of Technology's Haystack Observatory in Westford, Massachusetts. \"That creates variability in ionospheric weather. Because our planet has a strong magnetic field, charged particles are also affected along magnetic field lines all over the planet\u2014all of this means the ionosphere is complicated.\" But when totality hits"}, {"title": "rpj-common-crawl-2019-30", "text": "one of the studies. \"Without ionizing radiation, the ionosphere will relax, going from daytime conditions to nighttime conditions and then back again after the eclipse.\" Stretching from roughly 50 to 400 miles above Earth's surface, the tenuous ionosphere is an electrified layer of the atmosphere that reacts to changes from both Earth below and space above. Such changes in the lower atmosphere or space weather can manifest as disruptions in the ionosphere that can interfere with communication and navigation signals. \"In our lifetime, this is the best eclipse to see,\" said Greg Earle, an electrical and computer engineer at Virginia Tech in Blacksburg, Virginia, who is leading another of the studies. \"But we've also got a denser network of satellites, GPS and radio traffic than ever before. It's the first time we'll have such a wealth of information to study the effects of this eclipse; we'll be drowning in data.\" The Moon's shadow will dramatically affect insolation -- the amount of sunlight reaching the ground -- during the total solar eclipse. Credit: NASA's Scientific Visualization Studio Pinning down ionospheric dynamics can be tricky. \"Compared to visible light, the Sun's extreme ultraviolet output is highly variable,\" said Phil Erickson, a principal investigator of a third study and space scientist at Massachusetts Institute of Technology's Haystack Observatory in Westford, Massachusetts. \"That creates variability in ionospheric weather. Because our planet has a strong magnetic field, charged particles are also affected along magnetic field lines all over the planet\u2014all of this means the ionosphere is complicated.\" But when totality hits"}, {"title": "math", "text": "ultraviolet (UV) and shorter X-Ray wavelengths is considered to be ionizing since photons of energy at these frequencies are capable of dislodging an electron from a neutral gas atom or molecule during a collision. At the same time, however, an opposing process called recombination begins to take place in which a free electron is \"captured\" by a positive ion if it moves close enough to it. As the gas density increases at lower altitudes, the recombination process accelerates since the gas molecules and ions are closer together. The point of balance between these two processes determines the degree of ionization present at any given time. The ionization depends primarily on the Sun and its activity. The amount of ionization in the ionosphere varies greatly with the amount of radiation received from the sun. Thus there is a diurnal (time of day) effect time and a seasonal effect. The local winter hemisphere is tipped away from the Sun, thus there is less received solar radiation. The activity of the sun is associated with the sunspot cycle, with more radiation occurring with more sunspots. Radiation received also varies with geographical location (polar, auroral zones, mid-latitudes, and equatorial regions). There are also mechanisms that disturb the ionosphere and decrease the ionization. There are disturbances such as solar flares and the associated release of charged particles into the solar wind which reaches the Earth and interacts with its geomagnetic field. ## The Ionospheric Layers Solar radiation, acting on the different compositions of the atmosphere with height, generates layers of ionization:"}, {"title": "rpj-common-crawl-2020-05", "text": "wave, which varies with the activity of the sun. Since the atmosphere is bombarded by ultraviolet light waves of different frequencies, several ionized layers are formed at different altitudes. Lower frequency ultraviolet waves penetrate the atmosphere the least; therefore, they produce ionized layers at the higher altitudes. Conversely, ultraviolet waves of higher frequencies penetrate deeper and produce layers at the lower altitudes. An important factor in determining the density of ionized layers is the elevation angle of the sun, which changes frequently. For this reason, the height and thickness of the ionized layers vary, depending on the time of day and even the season of the year. Recombination Recall that the process of ionization involves ultraviolet light waves knocking electrons free from their atoms. A reverse process called RECOMBINATION occurs when the free electrons and positive ions collide with each other. Since these collisions are inevitable, the positive ions return to their original neutral atom state. The recombination process also depends on the time of day. Between the hours of early morning and late afternoon, the rate of ionization exceeds the rate of recombination. During this period, the ionized layers reach their greatest density and exert maximum influence on radio waves. During the late afternoon and early evening hours, however, the rate of recombination exceeds the rate of ionization, and the density of the ionized layers begins to decrease. Throughout the night, density continues to decrease, reaching a low point just before sunrise. Four Distinct Layers The ionosphere is composed of three layers designated D, E,"}, {"title": "rpj-common-crawl-2022-05", "text": "propagation environment Except for the inter-satellite service, where the propagation path may be entirely in near free-space conditions, propagation for all radio applications may be a\ufb00ected by the earth and its surrounding atmosphere. The upper atmosphere has a temperature pro\ufb01le as sketched in Figure 1.2. Of particular interest are the troposphere and the variations in atmospheric temperature, pressure and humidity, which are largely con\ufb01ned below the temperature minimum at the tropopause, and the ionosphere which is largely above about 80 km in the thermosphere. Propagation within the troposphere, which is of most importance owing to Regions of the earth\u2019s atmosphere, showing the mean temperature pro\ufb01le and approximate heights of the lettered ionospheric regions and of other features the wide variety of uses and the very wide available bandwidths at higher frequencies, is complex due to irregularities in the refractive index pro\ufb01le and to the presence of rain and other hydrometeors. The e\ufb00ects are summarised diagrammatically in Figure 1.3. The pro\ufb01le of electron density in the ionosphere acts as a re\ufb02ecting layer capable of re\ufb02ecting signals at HF and lower frequencies back to earth. There are occasional e\ufb00ects which permit some re\ufb02ection or scatter back to earth at VHF. The ionosphere also has some important e\ufb00ects on earth\u2013space paths up to SHF. In addition, di\ufb00raction, re\ufb02ection and scatter in relation to the ground and both man-made and natural structures on the surface are of great importance. All of these aspects will be addressed in subsequent chapters. 1.5 Spectrum use It is useful to review the way in"}, {"title": "rpj-stackexchange", "text": "the surface to about 10 km (6.2 mi). Above that is the stratosphere, followed by the mesosphere. In the stratosphere incoming solar radiation creates the ozone layer. Now if all the radiation (charged particles) would be deflected, then we would not have an ozone layer, and we would not be protected from UV radiation. Ultraviolet (UV), X-ray and shorter wavelengths of solar radiation are ionizing, since photons at these frequencies contain sufficient energy to dislodge an electron from a neutral gas atom or molecule upon absorption. In this process the light electron obtains a high velocity so that the temperature of the created electronic gas is much higher (of the order of thousand K) than the one of ions and neutrals. The reverse process to ionization is recombination, in which a free electron is \"captured\" by a positive ion. Recombination occurs spontaneously, and causes the emission of a photon carrying away the energy produced upon recombination. As gas density increases at lower altitudes, the recombination process prevails, since the gas molecules and ions are closer together. The balance between these two processes determines the quantity of ionization present. It is very important to understand that the solar wind could strip away the ozone layer. But your question is about the stripping away of the atmosphere, and why the solar wind does not do that. Now the solar wind exerts a pressure. If this pressure reached the atmosphere, it would strip it away. Now the magnetosphere has a pressure too, and it counterbalances the pressure of the"}, {"title": "rpj-c4", "text": "The ionosphere is a name for the layer of the earth\u2019s atmosphere that is ionized by solar wind. Even though many believe the space around earth is a vacuum, it is not completely empty. The sun\u2019s upper atmosphere (the corona) is very hot and some of its hydrogen and helium are able to escape the sun\u2019s gravity. Because the gas is hot and is in a constant stream of solar energy it becomes a fully ionized plasma. This streaming plasma is the solar wind, and it flows out past the earth affecting the earth\u2019s magnetic field, the magnetosphere and ionosphere(read here about Anatomy of Sun). The Earth receives a lot of energy from the sun in the form of radiation- about 1370 Watts per square meter.The ionosphere is the uppermost part of the atmosphere, distinguished because it is ionized by solar radiation. It plays an important part in atmospheric electricity and forms the inner edge of the magnetosphere. It has practical importance because, among other functions, it influences radio propagation to distant places on the Earth. The lowest part of the Earth\u2019s atmosphere, the troposphere extends from the surface to about 10 km. Above 10 km is the stratosphere, followed by the mesosphere. In the stratosphere incoming solar radiation creates the ozone layer. At heights of above 80 km (50 miles), in the thermosphere, the atmosphere is so thin that free electrons can exist for short periods of time before they are captured by a nearby positive ion. The number of these free electrons is sufficient"}, {"title": "dpr-wiki", "text": "Ionosphere during disturbed conditions. At mid-latitudes, the F layer daytime ion production is higher in the summer, as expected, since the Sun shines more directly on the Earth. However, there are seasonal changes in the molecular-to-atomic ratio of the neutral atmosphere that cause the summer ion loss rate to be even higher. The result is that the increase in the summertime loss overwhelms the increase in summertime production, and total F ionization is actually lower in the local summer months. This effect is known as the winter anomaly. The anomaly is always present in the northern hemisphere, but is usually absent"}, {"title": "rpj-common-crawl-2019-30", "text": "ionosphere collide and generate heat among themselves. A dense layer of molecules and electrically charged particles, called the ionosphere, hangs in the Earth\u2019s upper atmosphere starting at about 35 miles (60 kilometers) above the planet\u2019s surface and stretching out beyond 620 miles (1,000 km). Solar radiation coming from above buffets particles suspended in the atmospheric layer. Radio signals from below bounce off the ionosphere back to instruments on the ground. Where the ionosphere overlaps with magnetic fields, the sky erupts in brilliant light displays that are incredible to behold. Where is the ionosphere? Several distinct layers make up Earth\u2019s atmosphere, including the mesosphere, which starts 31 miles (50 km) up, and the thermosphere, which starts at 53 miles (85 km) up. The ionosphere consists of three sections within the mesosphere and thermosphere, labeled the D, E and F layers, according to the UCAR Center for Science Education. Extreme ultraviolet radiation and X-rays from the sun bombard these upper regions of the atmosphere, striking the atoms and molecules held within those layers. The powerful radiation dislodges negatively charged electrons from the particles, altering those particles\u2019 electrical charge. The resulting cloud of free electrons and charged particles, called ions, led to the name \u201cionosphere.\u201d The ionized gas, or plasma, mixes with the denser, neutral atmosphere.Advertisement The concentration of ions in the ionosphere varies with the amount of solar radiation bearing down on the Earth. The ionosphere grows dense with charged particles during the day, but that density subsides at night as charged particles recombine with displaced electrons. Entire"}, {"title": "rpj-common-crawl-2019-30", "text": "\u2014 to reconfigure the ionosphere. Mirage would employ a microwave transmitter on the ground and a small rocket that shoots chaff into the air to produce about a liter of plasma at 60-100 km. (36- 60 mi.) in altitude, changing the number of electrons in a select area of the ionosphere to create a virtual barrier. Ionosphere reconfiguration offers two major applications of interest to the military: bouncing radars off the ionosphere, also known as over-the-horizon radar, and the ability to jam signals from the Global Positioning Satellite system, according to John Kline, the lead investigator for Mirage.\" Tactical weather control for the U.S. military. It makes me a little uneasy. March 6, 2006 at 3:45:00 PM CST Also, weaponized meteorology."}, {"title": "rpj-common-crawl-2020-05", "text": "for sky wave propagation. The following in-depth study of the ionosphere and its effect on sky waves will help you to better understand the nature of sky wave propagation. STRUCTURE OF THE IONOSPHERE As we stated earlier, the ionosphere is the region of the atmosphere that extends from about 30 miles above the surface of the Earth to about 250 miles. It is appropriately named the ionosphere because it consists of several layers of electrically charged gas atoms called ions. The ions are formed by a process called ionization. Ionization occurs when high energy ultraviolet light waves from the sun enter the ionospheric region of the atmosphere, strike a gas atom, and literally knock an electron free from its parent atom. A normal atom is electrically neutral since it contains both a positive proton in its nucleus and a negative orbiting electron. When the negative electron is knocked free from the atom, the atom becomes positively charged (called a positive ion) and remains in space along with the free electron, which is negatively charged. This process of upsetting electrical neutrality is known as IONIZATION. The free negative electrons subsequently absorb part of the ultraviolet energy, which initially freed them from their atoms. As the ultraviolet light wave continues to produce positive ions and negative electrons, its intensity decreases because of the absorption of energy by the free electrons, and an ionized layer is formed. The rate at which ionization occurs depends on the density of atoms in the atmosphere and the intensity of the ultraviolet light"}, {"title": "rpj-c4", "text": "The Earth's ionosphere consists of plasma produced by thephotoionization of thin upper atmospheric gases by UV raysand photons of short wavelength from the sun. The upperionosphere is used for radio communication and navigationas it reflects long, medium, as well as short radio waves. Sincesolar radiation is the main cause of the existence of ionosphere,any variation in the radiations can affect the entireradio communication system. This article attempts to brieflyintroduce the readers to the study of ionosphere in the contextof its use as a radio reflector, with particular reference toIndia."}, {"title": "pes2o", "text": "tropospheric refraction may have an indirect impact through duct formation (Hitney et al. 1985) which enables long distance radio-frequency interference (RFI) propagation and therefore occasionally causes significant data excision rates. In the following subsections we will present some properties of the ionosphere most relevant to the global EoR experiments. Ionosphere The ionosphere is the part of the Earth's atmosphere where there is sufficient ionization to affect the propagation of radio waves. It consists of several layers: D-layer at height 50 \u2212 90 km; E-layer at 90 \u2212 140 km; and F-layer at heights above 140 km (Davies 1990;Evans & Hagfors 1968). The most relevant to single antenna, high precision measurements of sky brightness temperature at low frequencies are the D-layer and F-layer. (i) F-layer: most of the ionospheric electron column density is accounted for by the F-layer, where electron density is \u223c 10 12 e \u2212 /m 3 during the daytime and typically an order of magnitude less during the nighttime (Davies 1990;Evans & Hagfors 1968). Measurements of the total electron content (TEC) 2 , routinely monitored by measuring the propagation delay of GPS signals, are dominated by electrons in the F-layer. Due to very high electron content the F-layer dominates refractive effects, which may play a non-negligible role for global EoR experiments by shifting radio sources within the antenna beam. Based on equation 6 in Bailey (1948), we estimated the average position offsets of radio sources for typical nighttime electron density 10 11 e \u2212 /m 3 to be \u223c 0.1 arcmin at 100 MHz"}, {"title": "rpj-common-crawl-2022-05", "text": "ultraviolet (EUV) and X-rays. In the thermosphere, the temperature increases rapidly upwards towards the limiting exospheric temperature, which on average is about 1000 K. In the exosphere, above about 600 km, individual atoms move freely in satellitelike orbits controlled by the earth\u2019s gravity. The solar EUV and X-rays dissociate Typical mid-latitude N(h) electron density pro\ufb01les for moderate solar activity, showing the radiations that produce the ionospheric layers (Contemp. Phys., 1973 16, 230 (Taylor & Francis, London) ) and ionise the atmospheric gases in the upper mesosphere and thermosphere to create the ionosphere. 15.1.3 When was the ionosphere discovered? Gauss in 1839 speculated on the existence of electrical phenomena in the upper atmosphere, and Balfour Stewart in 1883 postulated a conducting layer as the site of the currents that cause the small daily variations of the earth\u2019s magnetic \ufb01eld. This conducting layer, now called the ionosphere, can be said to have been discovered by Marconi when he sent radio signals across the Atlantic in 1901. Basic physics of the ionosphere Lodge in 1902 correctly surmised that it contains free electrons and ions produced by solar ionising radiation. Research really began in 1924 when Appleton and Barnett and Breit and Tuve measured the height of the re\ufb02ecting layers. 15.1.4 How do we study the ionosphere? Ground-based techniques sound the ionosphere with radiowaves, which are returned from the ionosphere in three ways: by total re\ufb02ection (ionosondes); by partial re\ufb02ection or coherent scatter from small-scale structures in the ionosphere; or by incoherent scatter from the ion and electrons. These techniques"}, {"title": "rpj-common-crawl-2020-05", "text": "year with some accuracy. The critical frequency is also highest in years with large sunspot numbers, in accordance with the eleven-year sunspot cycle. However, additional \"abnormal\" variations may occur, such as meteor showers, sporadic-E ionization, sudden ionospheric disturbances (s.i.d.) , solar flares, and polar blackouts due to aurora and cosmic rays, all of which reduce the reliability of ionospheric skip communication. While some ionospheric changes may be forecast, the many unpredictable events which may completely block or destroy the signal make skip communication networks far from dependable. It might be thought that high-power ground wave would be more reliable, but it is not the complete answer. This wave is so severely attenuated at the higher frequencies as to be of no use. In the broadcast band, another difficulty presents itself. At night the D layer disappears and with it the absorption so that now some sky wave is returned to earth. At a receiving point, the phase difference between sky and ground wave causes fading. Due to the frequency differences among carrier, upper, and lower sidebands, there is frequency selective fading with resultant audio distortion. This interference at the outer limits of the ground wave may actually reduce the service area. \"Churns\" and \"Blobs\" In general, this was the status of the long range communication art prior to World War- II. Tremendous development and progress in electronics came about because of the war. In particular, radar work resulted in better tubes, high-gain antennas, higher power high-frequency transmitters, and sensitive receivers with low noise factors. These improvements"}, {"title": "math", "text": "the Earth look like a silvery ball from space, like the glass face of an underwater wristwatch viewed obliquely. It goes on saying the atmosphere is not perfectly transparent at any radio frequency. And moreover it adds noise. It explains why the best sites for radio observation at higher frequencies are exceptionally high and dry. \u2022 Those are some great illustrations! Figure 5 is noteworthy, because it shows that for transmitted rays, they return approximately to their original direction once they leave the ionized regions. This is different than for refraction by air, because once the ray enters air, it says in air. But the ionized layers are shells. There will be an effect because the shells are curved and not slabs, but now I realize it will be a much smaller effect than I thought. OK I'll take a closer look at your links. Thanks! \u2013 uhoh Aug 29 '17 at 14:36 \u2022 Refraction by a slab with parallel faces does not change the direction of a ray: i.stack.imgur.com/k0QK4.png and also i.stack.imgur.com/ZMrgu.png \u2013 uhoh Aug 29 '17 at 14:37 \u2022 This is a helpful answer. HF waves experience much stronger effects than VHF or UHF. There is plenty of short-wave radio and amateur radio experience here, but most radio astronomy is done at much higher frequency where the ionospheric deflection is much smaller. This is due in part to the science available at those wavelengths, and in part due to the better angular resolution a given instrument has as the wavelength decreases. I added an"}, {"title": "rpj-common-crawl-2020-05", "text": "effects on radio propagation. By no coincidence, Russia's Sputnik and the U.S.'s Explorer satellites were launched then, directly leading to the discovery of the Van Allen radiation belt. How the short-wave bands will be in March and April plus some information on the poor conditions expected During ionospheric storms the normal day-to-day structure of the reflecting layers undergoes immense changes. Particles from the sunspots are caught in the earth's magnetic field and find their way into the ionosphere. The F layer (responsible for most long-distance radio communication) is weakened. Signals either pass through this layer into space or are weakly reflected. The D layer absorbs an abnormal number of radio signals passing through this region, further reducing signal strengths. Sunspots, or explosions on the surface of the sun, are caused by factors unknown to us at this time. These explosions release a shower of particles that have been recorded by satellites launched specifically for this purpose. The particles do not travel with the speed of light and seemingly take 20-30 hours to reach the earth. Scientists refer to the spreading out of particle streams as a \"garden hose\" effect. Severe ionospheric storms will occur in March. The relative number of ionospheric storms varies according to the month, or season of the year. It also varies with sunspot activity - more sunspots mean more ionospheric storms. Ionospheric disturbances are more frequent during the equinox due to the position of the earth in its orbital plane. WWV Propagation Forecasts. To enable users of the ionosphere, SWL's included, to"}, {"title": "rpj-common-crawl-2019-30", "text": "that ionisation is due to the sun\u2019s influence. At sunset, the intensity of the sun\u2019s radiation will be much less at the surface of the earth than it is high up in the atmosphere. This means ionic recombination will progress slowly from lower altitudes to higher ones and therefore the height at which waves are reflected slowly increases as the sun sets. The basic idea behind Appleton\u2019s work is so simple that it is hard to understand at first how he devoted almost all of his scientific career to its study. However, in the last couple of paragraphs some of the complexities of the subject have been introduced. Like many other fields, it is one that grows in intricacy the more it is studied. By the end of his life, ionospheric observatories had been set up all over the world to provide a global map of the reflecting layers. Links were found to the 11 year sunspot cycle and the Aurora Borealis, the magnetic storms that occur in high latitudes. This became particularly relevant during the Second World War when the storms would lead to radio blackouts. Thanks to Appleton\u2019s research, the periods when these would occur could be predicted and communication could be switched to wavelengths that would be least affected. Radar, another crucial wartime innovation, was one that came about thanks to Appleton\u2019s work. On a very general level, his research consisted in determining the distance of reflecting objects from radio signal transmitters. This is exactly the idea of radar and the flashing dots"}, {"title": "rpj-common-crawl-2022-05", "text": "be used by HAARP is not absorbed in either the troposphere or the stratosphere - the two levels of the atmosphere that produce the earth's weather. Electromagnetic interactions only occur in the near-vacuum of the rarefied region above about 70 km known as the ionosphere. The ionosphere is created and continuously replenished as the sun's radiation interacts with the highest levels of the Earth's atmosphere. The downward coupling from the ionosphere to the stratosphere/troposphere is extremely weak, and no association between natural ionospheric variability and surface weather and climate has been found, even at the extraordinarily high levels of ionospheric turbulence that the sun can produce during a geomagnetic storm. If the ionospheric storms caused by the sun itself don't affect the surface weather, there is no chance that HAARP can do so either. How long do the effects of ionospheric heating last? Since the ionosphere is, inherently, a turbulent medium that is being both \"stirred up\" and renewed by the sun, artificially induced effects are quickly obliterated. Depending on the height within the ionosphere where the effect is originally produced, these effects are no longer detectable after times ranging from less than a second to ten minutes. A good analogy to this process is dropping a stone into a fast moving stream. The ripples caused by the stone are very quickly lost in the rapidly moving water and, a little farther down the stream, are completely undetectable. A University of Alaska, Geophysical Institute scientist has compared HAARP to an \"immersion heater in the Yukon River.\""}, {"title": "rpj-common-crawl-2021-04", "text": "affected due to radiation, or when the HF communication or satellite navigation is impacted, an advisory message is sent out through the standard communication networks defined by the International Civil Aviation Organization (ICAO). The advisories have a standard format. Radiation at flight level During solar storms, solar particles like protons can suddenly be accelerated, heading into space at great speed. When they arrive at Earth, these energetic particles can penetrate the atmosphere at the magnetic poles. They bombard atmospheric particles and create a shower of particles possibly reaching the Earth\u2019s surface. When this happens, crew and passengers onboard airplanes are more vulnerable to this harmful radiation. The effect is stronger at high altitudes and latitudes. The ionosphere plays also a crucial role in satellite navigation. The signal sent by the satellite has to pass through the ionosphere to reach the receiver. Solar storms can introduce small scale structures in the ionosphere. When the signal encounters these obstacles, its amplitude and phase can alter very rapidly. Similarly, when the number of electrons in the ionosphere increases dramatically due to a solar storm, positioning errors are introduced in satellite navigation. HF communication The ionosphere is a layer at the top of our atmosphere which is ionised due to sunlight (at ultraviolet and x-ray wavelengths). Because the layer is ionised, it has the ability to reflect HF radio waves allowing long distance radio communication, which is crucial for aviation. HF radio waves have frequencies between 3 and 30 MHz.However, during solar storms, extra energy is deposited into the ionosphere,"}, {"title": "rpj-c4", "text": "With more launches than Russia last year, Elon Musk\u2019s rocket company SpaceX made waves in 2017. It also tore a hole in the ionosphere. Scientists have determined that the launch of the company\u2019s Falcon 9 rocket on Aug. 24 punched a temporary hole into a layer of the Earth\u2019s atmosphere nearly 560 miles wide. While the effect is not permanent, here is how the rocket impacted the ionosphere and what it means as humans move forward with space flight. The ionosphere is the layer of our planet\u2019s upper atmosphere between 75 km and 1000 km (or between 46 and 621 miles) where the sun\u2019s energy and cosmic radiation ionize atoms. The solar and cosmic rays strip atoms in the area of one or more of their electrons, giving them a positive charge and leaving the electrons to act as free particles. This is the part of the atmosphere where auroras occur. It overlaps the mesosphere, thermosphere, and exosphere. The ionosphere is important because the concentration of ions and free electrons allows it to reflect radio waves. This facilitates radio communications across distant points on Earth as well as between satellites and Earth. During the day, X-rays and UV light from the sun provide energy that continuously knocks electrons from atoms, creating ions and free electrons. These separate particles are constantly colliding, recombining, and becoming electrically neutral atoms again. So at night, without the energy from the sun, more particles combine than are ionized and the ionosphere shrinks. While the cosmic radiation still affects this part of"}, {"title": "pes2o", "text": "under the influence of the Sun and the lower atmosphere. The ionospheric plasma density and structure affect the reflection and absorption of radio waves in the mid-and short-wave bands, communication and positioning using satellites, and delays and fluctuations of radio waves in the UHF band. Therefore, space weather phenomena in the ionosphere can affect short-wave HF communication/broadcasting used for aviation (Sect. \"Aviation operation\"), VHF communication/broadcasting used for disaster prevention and firefighting radio, and UHF communications used in satellite communications. As mentioned above, effects depend on the system details and usages. Although the role of HF communication/broadcasting is limited owing to its existing use by communication satellites and submarine cables, it is continuously used for aviation radio, ship radio, disaster radio, and long-distance communication such as international radio broadcasting. The ionospheric phenomena that affect HF communication are ionospheric negative storms, the Dellinger phenomenon, PCA, and plasma bubbles. Ionospheric negative storms are an unusual decrease in plasma density. As they are mostly associated with geomagnetic storms, their occurrence is anticipated in periods of medium and high solar activity. During the former, foF2 is typically about 2-8 MHz. If a moderate event (once per year) with ~ 30% plasma decrease occurs during nighttime (daytime), the corresponding MUF for a great-circle distance of 2000 km will typically decrease from about 12-48 to 8.4-34 MHz. If a severe event (once per 10 years) with 50% plasma decrease occurs, the MUF will decrease from 12-48 to 6-24 MHz. Part (most) of the HF communication frequency range, up to 30 MHz, is affected"}, {"title": "rpj-common-crawl-2020-05", "text": "lie about other things, it lends to their character. The HAARP experiments interact with the ionosphere. The ionosphere begins 30 miles above the surface of the earth and extends up to around 250 miles. The highest passenger jets fly at about 10 miles (with the vast majority at around 4-6 miles). That\u2019s why the proposal talks about using satellites. That is why they would NOT use planes, they can\u2019t fly high enough. Yes it does. It\u2019s a research facility, and not an operational facility. It has no real ability to DO anything other than excite the ionosphere in a spot for a few minutes. The military\u2019s interest is partly explained in the FAQ: Because the DoD operates numerous communication and navigation systems whose signals either depend on reflection from the ionosphere or must pass through the ionosphere to satellites, there is obvious DoD interest in understanding the ionosphere\u2019s effect on these systems to improve their reliability and performance. You didn\u2019t respond to the patent that states a proposal for releasing barium clouds\u2026\u2026. I wonder if the \u201cexcitement\u201d in the sky they conduct is visible? We had a sky full of clouds with squared off edges that fit perfectly into eachother\u2026horizon to horizon. I\u2019d never seen anything quite like it. The spaces between the jagged clouds were the same width as the clouds. As the clouds left the area, there was a definite \u201cpattern\u201d at the edge of the cloud line as well. I felt like I\u2019d stepped onto an X-Files set. I sent copies to two"}, {"title": "rpj-common-crawl-2020-05", "text": "lie about other things, it lends to their character. The HAARP experiments interact with the ionosphere. The ionosphere begins 30 miles above the surface of the earth and extends up to around 250 miles. The highest passenger jets fly at about 10 miles (with the vast majority at around 4-6 miles). That\u2019s why the proposal talks about using satellites. That is why they would NOT use planes, they can\u2019t fly high enough. Yes it does. It\u2019s a research facility, and not an operational facility. It has no real ability to DO anything other than excite the ionosphere in a spot for a few minutes. The military\u2019s interest is partly explained in the FAQ: Because the DoD operates numerous communication and navigation systems whose signals either depend on reflection from the ionosphere or must pass through the ionosphere to satellites, there is obvious DoD interest in understanding the ionosphere\u2019s effect on these systems to improve their reliability and performance. You didn\u2019t respond to the patent that states a proposal for releasing barium clouds\u2026\u2026. I wonder if the \u201cexcitement\u201d in the sky they conduct is visible? We had a sky full of clouds with squared off edges that fit perfectly into eachother\u2026horizon to horizon. I\u2019d never seen anything quite like it. The spaces between the jagged clouds were the same width as the clouds. As the clouds left the area, there was a definite \u201cpattern\u201d at the edge of the cloud line as well. I felt like I\u2019d stepped onto an X-Files set. I sent copies to two"}, {"title": "rpj-common-crawl-2020-05", "text": "and the positive ions are attracted to each other by the electromagnetic energy from the sun\u2019s ultraviolet radiation, but are too energetic to remain in an electrically neutral molecule, creating a plasma. The plasma in these ionized portions of the atmosphere is the ionosphere, which extends from a height of about 30 miles above the earth\u2019s surface to more than 360 miles. This is where auroras are made. Northern Lights over Yellowknife, Northwest Territories The ionosphere has mirror-like effects, making it an excellent reflector of radio waves. Countless military and civilian operations rely on it for their communications systems, groups as diverse as the U.S. Navy and the BBC. Much of the ionospheric research mentioned here is done, in large part, because of concerns that such communications will be disrupted or even shut down entirely by solar activity or \u201cenemy\u201d technology, but scientists are deeply interested in the chemical composition and behaviour of the ionosphere. Studying the ionosphere is problematic. Its lower levels are below the orbital altitudes needed for satellites, yet far too high up for balloons or aircraft. Nonetheless, ground-based tests utilizing sounding equipment (ionosondes) and satellites began in the early \u201960s. Then, in the mid-\u201960s, scientists hit upon the idea of using rockets to shoot barium into the ionosphere, creating \u201cclouds\u201d of barium particles that would be ionized by the sun\u2019s ultraviolet light, then become trapped by Earth\u2019s magnetic field, making magnetic field lines briefly visible to ground- or air-based observers. These \u201cclouds\u201d are essentially artificial auroras. In later experiments, barium clouds were"}, {"title": "rpj-common-crawl-2022-05", "text": "ionosphere (the upper part of Earth\u2019s air that takes its name from the ion particles that occupy it) and consequently they can propagate past the Earth air and go into space. AM is the older kind of modulation used \u2013 the groups can travel above the ground following the Earth curvature and because they are refracted by the ionosphere they can propagate farther than FM ones which ultimately leave Earth for the space. An AM signal is unfortunately more inclined to interferences because of its smaller bandwidth and consequently has worst sound quality than the higher-bandwidth FM signal. It is also more prone to noise which affects amplitude, not frequency. However modulation and demodulation of AM signal is less complicate than in FM systems, and consequently AM is nevertheless widely used. Once the information is applied on the carrier wave, an antenna transforms the electrical signal to an electromagnetic wave which is then propagated. The electromagnetic wave is then inclined to alterations due to reflection (which can happen due to obstacles), refraction (due to hitting the ionosphere or because of weather conditions) or diffraction (when radio groups hit and bend around an object with sharp ends) before it reaches the receiver aerial. It is thanks to the receiver that this signal is intercepted, picked up, demodulated (re-converted), and the communicated information can be processed, shared, relayed or broadcasted to an audience. Once the receiving antenna has detected the radio signal, it\u2019s the receiver that filters out unwanted signals and retains only the desired frequencies \u2013 it"}, {"title": "bm25", "text": "heavily ionised, such as during the day, in summer and especially at times of high solar activity. At night, especially in winter months and at times of low solar activity, the ionospheric D layer can virtually disappear. When this happens, MF radio waves can easily be received hundreds or even thousands of miles away as the signal will be refracted by the remaining F layer. This can be very useful for long-distance communication, but can also interfere with local stations. Due to the limited number of available channels in the MW broadcast band, the same frequencies are re-allocated to different broadcasting stations several hundred miles apart. On nights of good skywave propagation, the signals of distant stations may reflect off the ionosphere and interfere with the signals of local stations on the same frequency. The North American Regional Broadcasting Agreement (NARBA) sets aside certain channels for nighttime use over extended service areas via skywave by a few specially licensed AM broadcasting stations. These channels are called clear channels, and the stations, called clear-channel stations, are required to broadcast at higher powers of 10 to 50 kW. Uses and applications A major use of these frequencies is AM broadcasting; AM radio stations are allocated frequencies in the medium wave broadcast band from 526.5 kHz to 1606.5 kHz in Europe; in North America this extends from 525 kHz to 1705 kHz Some countries also allow broadcasting in the 120-meter band from 2300 to 2495 kHz; these frequencies are mostly used in tropical areas. Although these are medium frequencies,"}], "hoverinfo": "text"}, {"x": [-0.029538428410887718, -0.0567939393222332, -0.14201244711875916, -0.22955431044101715, -0.08647610992193222, -0.07519819587469101, -0.07519819587469101, -0.15140850841999054, -0.11645185947418213, -0.13863912224769592, -0.08156190067529678, -0.1026093065738678, -0.14127413928508759, -0.13584165275096893, -0.18122097849845886, -0.18122097849845886, -0.14670328795909882, -0.07031511515378952, -0.12810592353343964, -0.16295477747917175, -0.11791548132896423, -0.12217574566602707, -0.22505824267864227, -0.19385980069637299, -0.15497630834579468, -0.14277224242687225, -0.0941622257232666, -0.15647242963314056, -0.10882504284381866, -0.14699065685272217, -0.17424574494361877, -0.24126991629600525, -0.24127018451690674, -0.2099044919013977, -0.22741737961769104, -0.26451408863067627, -0.14691324532032013, -0.18961940705776215, -0.11094982177019119, -0.19827473163604736, -0.25225964188575745, -0.22645927965641022, -0.23615214228630066, -0.09827829152345657, -0.15989363193511963, -0.14122195541858673, -0.03817151114344597], "y": [-0.01990434341132641, -0.007837649434804916, -0.021526560187339783, 0.059027671813964844, -0.04902583733201027, -0.11023429781198502, -0.11023429781198502, -0.053077127784490585, 0.036244627088308334, -0.02969338186085224, 0.02170749567449093, -0.05454229190945625, -0.06487239897251129, -0.03605310246348381, -0.00034997620969079435, -0.00034997620969079435, 0.003134693019092083, -0.035822544246912, -0.09307702630758286, -0.05783948674798012, -0.004762467462569475, 0.021068938076496124, 0.02132216840982437, -0.0040548620745539665, -0.012150800786912441, -0.027271630242466927, -0.17009314894676208, -0.06282559782266617, -0.015081088989973068, -0.06851011514663696, -0.1256857067346573, -0.09334997832775116, -0.09335025399923325, -0.11228898912668228, -0.01622161455452442, -0.04345843940973282, -0.11595166474580765, -0.14393213391304016, -0.10232909023761749, -0.04606181010603905, -0.057366013526916504, -0.04778551310300827, -0.02299853228032589, -0.10491902381181717, -0.07886847108602524, -0.013559258542954922, -0.14234809577465057], "mode": "markers", "name": "Cluster 5", "marker": {"size": 8, "color": "rgb(253,180,98)"}, "text": ["Document 219", "Document 399", "Document 419", "Document 439", "Document 497", "Document 521", "Document 522", "Document 527", "Document 569", "Document 608", "Document 664", "Document 673", "Document 688", "Document 747", "Document 791", "Document 792", "Document 845", "Document 872", "Document 889", "Document 893", "Document 951", "Document 977", "Document 993", "Document 1117", "Document 1121", "Document 1131", "Document 1173", "Document 1212", "Document 1226", "Document 1236", "Document 1242", "Document 1265", "Document 1267", "Document 1299", "Document 1306", "Document 1311", "Document 1338", "Document 1351", "Document 1397", "Document 1402", "Document 1411", "Document 1413", "Document 1414", "Document 1464", "Document 1476", "Document 1477", "Document 1490"], "customdata": [{"title": "rpj-common-crawl-2020-05", "text": "without a crew & then re-boarded for the Earth-return, would have strong significance for future orbiter-with-specialized-lander expeditions to other planets. Such a spacecraft, the technological descendant of the old Apollo Command & Service Module (CSM), would play a major role in the new Moon program. Plus, it\u2019d be the model for such an analogous craft, used in the future Mars-reaching program. It is true, I have disdain toward the idea of a Lagrange point station, because the rationale behind it, and the basic result, is identical to the ISS project: our astronauts do nothing more than \u201creach space\u201d just for that to be the final & only \u201cdestination\u201d. \u201cThe Earthian Ionosphere is roughly between 53 miles & 370 miles up.\u201d Formally, yes, I figured you\u2019d say that. But the F-layer, which is the highest layer, doesn\u2019t really reach to the ISS, except by extrapolation. The effects of the atmosphere at that altitude are really very small, and aren\u2019t relevant to test-bedding for deeper space. \u201c\u2026the basic result, is identical to the ISS project: our astronauts do nothing more than \u2018reach space\u2019 just for that to be the final & only \u2018destination\u2019. As to \u201creaching space\u201d, that\u2019s exactly what we\u2019re trying to do. You, on the other hand, seem to need to reach rocks (that happen to be in space) I\u2019ll try to read your motivation into that. I have to guess what you\u2019re after is resources that can be derived from those rocks, or maybe a place to hammer in fenceposts. Such resources might be handy"}, {"title": "rpj-common-crawl-2023-06", "text": "rendezvous flight plan, the astronauts will need their main trans-lunar vehicle put into a parking orbit, say, 70 miles above the surface, either left attended by a crew person or not attended\u2014-with nobody left on board\u2014-for the duration of the surface landing. The designing of such a vehicle, particularly being capable of orbiting the Moon without a crew & then re-boarded for the Earth-return, would have strong significance for future orbiter-with-specialized-lander expeditions to other planets. Such a spacecraft, the technological descendant of the old Apollo Command & Service Module (CSM), would play a major role in the new Moon program. Plus, it\u2019d be the model for such an analogous craft, used in the future Mars-reaching program. It is true, I have disdain toward the idea of a Lagrange point station, because the rationale behind it, and the basic result, is identical to the ISS project: our astronauts do nothing more than \u201creach space\u201d just for that to be the final & only \u201cdestination\u201d. \u201cThe Earthian Ionosphere is roughly between 53 miles & 370 miles up.\u201d Formally, yes, I figured you\u2019d say that. But the F-layer, which is the highest layer, doesn\u2019t really reach to the ISS, except by extrapolation. The effects of the atmosphere at that altitude are really very small, and aren\u2019t relevant to test-bedding for deeper space. \u201c\u2026the basic result, is identical to the ISS project: our astronauts do nothing more than \u2018reach space\u2019 just for that to be the final & only \u2018destination\u2019. As to \u201creaching space\u201d, that\u2019s exactly what we\u2019re trying to"}, {"title": "rpj-common-crawl-2020-05", "text": "radiation doses inside the cabin \u2013 critical data for mission planners considering the best way to safely send astronauts into deep space in the future. Orion\u2019s cameras will be turned off during its passes through the belts to protect them. Three hours, 23 minutes into flight, the Orion crew module will fly on its own following separation from its service module and the Delta IV Heavy second stage. The spacecraft will be aimed at Earth\u2019s atmosphere and it will be up to Orion\u2019s onboard computers to set the spacecraft in the right position so its base heat shield can bear the brunt of the intense reentry heat. NASA Orion Flight Test EFT1 Logo Hitting the atmosphere at 20,000 mph four hours and 13 minutes after launch, Orion will encounter about 80 percent of the heat it would endure during a return from lunar orbit with astronauts aboard. Ground controllers will lose contact with Orion for 2 1/2 minutes during re-entry when the spacecraft is surrounded by plasma. They should regain communications with the craft just before the forward bay cover is jettisoned in a process that will begin the parachute deployment. After about four hours, 23 minutes, Orion will be bobbing in the Pacific Ocean off the coast of Baja California as recovery forces move in. Teams from NASA\u2019s Ground Systems Development and Operations Program based at Kennedy will work with U.S. Navy and Lockheed Martin personnel to bring the spacecraft into the well deck of the USS Anchorage, an amphibious ship with a protective enclosure"}, {"title": "math", "text": "Tag Info 37 TL;DR: The low technology readiness, the very, very low thrust, and the need for a catalyst bed means this was and still is the wrong technology for the intended purpose of a launch abort system and maneuvering in low Earth orbit. Low technology readiness SpaceX began working on Dragon V2 over five years ago. At that point, AF-M315E had a rather low ... 22 As @OrganicMarble alluded to, the Buran Soviet shuttle was designed with turbojet engines (see here; and here, under \"The engines\") to extend the range of possible landing locations given the re-entry circumstances. Test versions had those engines (the same engines used in the Su-27 fighter) installed, but those were never launched into space. The version ... 21 Heat doesn't. The intense heat does, however, strip off electrons from molecules in the upper atmosphere, leaving an electrically charged plasma. This plasma interferes with radio communications to such an extent there is a complete radio blackout until the capsule has decelerated to such an extent plasma is no longer formed - this can take 30 seconds or ... 18 I don't believe any vehicles equipped with air-breathing engines have flown to space and returned. Some test vehicles for Buran had jet engines installed, but they did not fly to space. In this picture of a Buran test vehicle, you can see that the jet engine mounts interfere with the reaction control jet nozzles, showing that this configuration could not be ... 16 Capsules like Apollo and Orion are mainly open space"}, {"title": "rpj-common-crawl-2021-04", "text": "by Curious Droid; Apollo Rocketed Through the Van Allen Belts, by Amy Shira Teitel, Popular Science, 19 September 2014; Why Aren\u2019t the Van Allen Belts a Barrier to Spaceflight?, Jillian Scudder, assistant professor of physics and astronomy, Forbes.com, 16 June 2017. NEXT: 8.2 If the Van Allen belts weren\u2019t a problem for Apollo, why does NASA need to test the new Orion spacecraft? Etichette: C08 (Physical Anomalies)"}, {"title": "rpj-common-crawl-2021-04", "text": "key component of Artemis I, an uncrewed test flight around the Moon that paves the way for the Artemis III mission which will land the first woman and next man on the lunar surface by 2024. ESA is designing and supplying the European Service Module for Orion \u2013 the bottom part of the spacecraft in the picture \u2013 that provides electricity, water, oxygen and nitrogen as well as keeping the spacecraft at the right temperature and on course (image credit: NASA\u2013Marvin Smith) \u2022 March 3, 2020: Radio frequency testing has begun on the first Orion spacecraft that will fly around the Moon for the Artemis I mission, just two weeks after thermal and environmental tests were completed at NASA\u2019s Plum Brook Station in Ohio, USA. 28) - EMC (Electromagnetic Compatibility) testing is routine for spacecraft. All electronics emit some form of electromagnetic waves that can cause interference with other devices. Think of the buzz that speakers give out right before an incoming call on a mobile phone. - Spacecraft electronics can cause similar interference, but out in space such interference can have disastrous consequences, so all systems must be checked before launch. - EMC tests often take place in a special shielded room constructed of metal walls and doors and foamy spikes (aka Absorbers) that block out unwanted external electromagnetic radiation, like ESA\u2019s Maxwell chamber at its technical site in the Netherlands. - Though not an EMC chamber, Plum Brook\u2019s thermal vacuum chamber is made of aluminum that does provide electromagnetic shielding, making it a suitable"}, {"title": "rpj-common-crawl-2021-04", "text": "key component of Artemis I, an uncrewed test flight around the Moon that paves the way for the Artemis III mission which will land the first woman and next man on the lunar surface by 2024. ESA is designing and supplying the European Service Module for Orion \u2013 the bottom part of the spacecraft in the picture \u2013 that provides electricity, water, oxygen and nitrogen as well as keeping the spacecraft at the right temperature and on course (image credit: NASA\u2013Marvin Smith) \u2022 March 3, 2020: Radio frequency testing has begun on the first Orion spacecraft that will fly around the Moon for the Artemis I mission, just two weeks after thermal and environmental tests were completed at NASA\u2019s Plum Brook Station in Ohio, USA. 28) - EMC (Electromagnetic Compatibility) testing is routine for spacecraft. All electronics emit some form of electromagnetic waves that can cause interference with other devices. Think of the buzz that speakers give out right before an incoming call on a mobile phone. - Spacecraft electronics can cause similar interference, but out in space such interference can have disastrous consequences, so all systems must be checked before launch. - EMC tests often take place in a special shielded room constructed of metal walls and doors and foamy spikes (aka Absorbers) that block out unwanted external electromagnetic radiation, like ESA\u2019s Maxwell chamber at its technical site in the Netherlands. - Though not an EMC chamber, Plum Brook\u2019s thermal vacuum chamber is made of aluminum that does provide electromagnetic shielding, making it a suitable"}, {"title": "rpj-common-crawl-2022-05", "text": "Falcon 9 rocket, dust particles landed on the dark shields protecting the cameras from direct sunlight, and reflected sunlight, thus \"blinding\" the cameras. Bold and creative solutions. The mission\u2019s control room during Beresheet landing | Photo: Eliran Avital, SpaceIL Initial attempts to work around this problem with new software commands failed, prompting the engineers to seek creative solutions, such as rolling the spacecraft during maneuvers, and using the accelerometers instead of the star trackers in maneuvers where sunlight could not be avoided. However, these changes made it difficult to pinpoint the spacecraft\u2019s location and also spelled much extra work for the team, since each small tilt can also shift its trajectory. Another complication emerged a few days after launch, when the computer unexpectedly rebooted itself and canceled a planned orbital maneuver. This problem continued to plague the lander on its journey to the moon, probably due to a malfunction in the electronics box connecting the computer to the other spacecraft systems. The box may have been damaged as a result of its exposure to radiation in space. This is part of the price paid for a small, light spacecraft with minimal radiation protection and relatively inexpensive components, some of which, like this electronics box, were designed exclusively for Beresheet and never tested in space. The minimal budget meant that the spacecraft only had one computer. Therefore, any software patches designed to address problems that emerged during the mission were not coded into the computer\u2019s hard-drive but only into its working memory (RAM). As a result, the"}, {"title": "rpj-common-crawl-2021-04", "text": "turbojets, can rise high into an atmosphere, above the worst air resistance, without having to expend the reaction mass of a rocket. Likewise it can land more easily and safely in the first place. The aircraft which we carry, dismantled, are intended to leave their orbiting mother ship with a short rocket burst, slip into the atmosphere of a new planet, and descend. The return is more difficult, of course, but they get into the stratosphere before applying the non-ionic rocket drive. This in turn takes them into space proper, where their ion accelerators will work. Naturally, the cabins being sealed, any kind of atmosphere will serve them. \u201cNow, this is for exploration purposes. But these auxiliary craft are also capable of landing on rockets alone. When the time has come to establish a beam-relay station, some airless lifeless satellite is chosen, to avoid the necessity of quarantine. The craft shuttle back and forth, carrying the ship\u2019s dismantled transceiver. This is reassembled on the surface. Thereby the satellite\u2019s own mass becomes available to the matterbank, and any amount of material can be reconstructed according to the signals from the home station. The first things sent through are usually the parts for a much larger transceiver station, which can handle many tons of mass at a time.\u201d \u201cWell, good,\u201d said Maclaren. \u201cThat was more or less what I thought. Let\u2019s land and \u2014 oh, oh.\u201d Ryerson felt a smile tugging his lips, though it was not a happy one. \u201cYou see?\u201d he murmured. Maclaren regarded him closely."}, {"title": "rpj-common-crawl-2022-05", "text": "getting hit with a stray particle of radiation wouldn\u2019t have had enough energy to damage big wires and vacuum tubes,\u201d he says. \u201cAs things get smaller, it\u2019s easier to flip a bit from a zero to a one or to damage the electrical circuitry. That\u2019s one reason that spacecraft might not use the latest and greatest computer chips like your iPad might use.\u201d So shielding and redundancy have been added. Going long, the astronauts will depend on the Deep Space Network for communication and must be more self-reliant; there are fewer chances for help. \u201cOn [the space station] or shuttle,\u201d says Hopkins, \u201cif something goes wrong [like a sick astronaut], you have the option to come home pretty quickly.\u201d So the Orion design includes many levels of redundancies and \u201cdown modes,\u201d says Lockheed\u2019s Lacefield. \u201cWe could lose [Orion\u2019s main engine] on the other side of the moon,\u201d he says, holding a model of the Orion and its Space Launch System rocket, \u201chave a problem with our primary avionics, and have a hole in the cabin and still get the crew back.\u201d Things learned with Apollo are reflected here: For example, because of the fire hazard of an all-oxygen cabin, the astronauts will breathe a mixture of gases, even in flight. The carbon dioxide \u201cscrubbers,\u201d whose pending failure was famously depicted in the film Apollo 13, have been replaced, Hopkins says, with a new system that can absorb carbon dioxide and release it later. When the reusable absorber becomes saturated, the astronauts will open a vent and"}, {"title": "rpj-common-crawl-2021-04", "text": "that's a thunderstorm. Granted, high winds can also be problematic. And it should go without saying that you don't want to launch during a hurricane or tornado. Rockets are perfectly capable of launching directly into a thunderstorm, just as a civil airliner might do, but there's a wee bit of a problem with doing so. Rockets are made of metal, and their exhaust is partially ionized, so during liftoff the entire rocket+exhaust trail is like a giant conductive wire tying the rocket to the ground. If the rocket flies into a thunderstorm then it will attract lightning strikes. Rockets can be made to withstand such strikes, and most of the current flows over the skin of the vehicle (just as with an airliner) but that adds a lot of difficulty. This actually happened during the Apollo 12 launch, and the lightning strike caused a huge number of problems with the onboard computers and with the telemetry link until folks were able to fix the telemetry and then slowly get everything else in order (fortunately the flight computers continued running normally). As with all inherently dangerous activities the basic principle is generally to \"stack the odds in your favor\", so if you can avoid launching a hypersonic rocket packed with literally kilotons of explosive fuel into a scenario where it is almost certain to draw a lightning strike then you do so. So why does weather cause so many launch delays? Well, that's mostly just an issue for the US. For orbital dynamics reasons it is most"}, {"title": "rpj-common-crawl-2021-04", "text": "with the MET was caused by a mistimed polling of the time from the Atlas rocket by the spacecraft. When the time was polled, the MET was incorrectly set eleven hours off. As such, once Starliner had reached space, it continued following its preprogrammed commands from the time it had on board. In this instance, it believed it was eleven hours ahead in the mission and in a different orbit. In trying to maintain this precise orbit, Starliner began to use propellant to correct itself. This issue was confounded by the communication error. Once controllers recognized that the craft was rapidly firing thrusters to maintain the orbit it was not in, there was a delay in communications with the craft, resulting in a missed opportunity to react to the issue and reconfigure the craft to attain the needed orbit to dock. The communications error is an interesting case, as part of the blame is being place on Earth-generated background noise. Specifically, they believe the issue was caused by signals from cell phone towers being radiated into space. This is a known issue in spaceflight and is typically mitigated for by using a larger band of frequencies for communications. It is not apparent what the underlying cause of the frequency interruption was, or what the fix will be. While, before Thursday, both the MET error and the communications issue were known publicly, the coding issue with the SM was not In essence, two lines of code for the sequence to fire thrusters to deorbit the SM after"}, {"title": "math", "text": "the scheduled touchdown, a series of technical glitches caused the engine to shut down, sending Beresheet on a hard landing on the surface. Later that night, SpaceIL and Israel Aerospace Industries (IAI) representatives explained that the cause of the malfunction was one of the accelerometers and pledged to conduct a detailed investigation and make their findings public. Although the investigation has concluded, its details were never published officially; we bring them here, for the first time, with substantial new information about the mission. A crater was left on the moon: Pictures of Beresheet\u2019s crash-landing site before and after the crash | LRO satellite photos, courtesy of NASA As with most space accidents, Beresheet\u2019s crash-landing was caused by a series of malfunctions, rather than a single problem. Some of the issues stemmed from the original design of the spacecraft, which was very small and built on a relatively low budget for comparable space missions ($100 million, including launch and operation costs). Others originated in human error. Almost immediately after launch, Beresheet\u2019s engineers reported a problem with its star trackers \u2013 a pair of cameras designed to take pictures of the sky, identify specific stars, and thus determine the orientation of the spacecraft in space \u2013 i.e., whether it was flying \u201cforwards,\u201d \u201cbackwards,\u201d or \u201csideways.\u201d This information is crucial for engine operation, because a wrong angle can significantly alter spacecraft\u2019s trajectory. It is probable that during the separation from the Falcon 9 rocket, dust particles landed on the dark shields protecting the cameras from direct sunlight, and reflected"}, {"title": "rpj-common-crawl-2021-04", "text": "SLS. Figure 12: Illustration of the various stages of the EFT-1 mission (image credit: NASA) While not producing entry velocities as high as those experienced in returning from a lunar orbit, the trajectory was chosen to provide higher stresses on the thermal protection and guided entry systems, as compared against a lower energy LEO entry. However the required entry geometry with constraints on inclination and landing site result in a trajectory that lingers for many hours in the Van Allen radiation belts. This exposes the vehicle and avionics to much higher levels of high energy proton radiation than a typical LEO or lunar trajectory would encounter. As a result, Van Allen radiation poses a significant risk to the Orion avionics system, and particularly the FCM (Flight Control Module) computers that house the GN&C flight software (Ref. 39). The promise of crucial flight test data: Orion only has two flight test opportunities before astronauts climb aboard for the first crewed mission in 2021 - so gleaning the maximum information possible from EFT-1 (Exploration Flight Test-1) in December 2014 (and later, Exploration Mission-1 in 2017) is of the highest priority. The following five items are of special importance for the flight engineers: 40) 1) Launch Abort System Separation - The LAS (Launch Abort System) is a key reason that Orion is intended to become the safest spacecraft ever built. In an emergency, it could activate to pull the crew module and the astronauts it will carry away from the launch pad and the rocket in milliseconds. Hopefully it's"}, {"title": "rpj-common-crawl-2023-06", "text": "still doesn\u2019t realize, after it\u2019s been pointed out to him several times, that the HLV that Inspiration Mars wants is not the same HLV that NASA is pursuing under the SLS project. I\u2019m not requiring you to know basic physics and the rocket equation. Any pre-K kid who can compare two numbers could understand that SLS as NASA is pursuing it doesn\u2019t have the necessary throw weight, and that Tito is asking for a different HLV. And as you have repeatedly demonstrated, an idiot of your caliber can\u2019t even compare two numbers. \u201cI\u00e2\u20ac\u2122ll leave you with this quote from Taber McCallum\u201d Verbal quotes (probably taken out of context or misquoted by the reporter) in a popular science rag don\u2019t trump what Taber wrote in black and white in his own report. To repeat, for the third time, that is: \u201cUnfortunately, the Primary team\u00e2\u20ac\u2122s evaluation of the SLS-Orion option uncovered many technical challenges. First, while the Orion spacecraft is being designed to perform a wide variety of mission scenarios, many aspects of the IM mission fall outside of that design envelope. One of these critical areas was the reentry speed. Orion\u00e2\u20ac\u2122s missions only require reentry into the Earth\u00e2\u20ac\u2122s atmosphere at speeds up to 11.2 km/sec, whereas the special IM trajectory would have the spacecraft reentering at speeds near 14.2 km/sec. While this is only a 27% increase in reentry speed, the physics of atmospheric heating produce heat loads that are several times greater. To survive the Orion spacecraft would need a new, thicker, heavier heat shield along"}, {"title": "rpj-common-crawl-2023-06", "text": "still doesn\u2019t realize, after it\u2019s been pointed out to him several times, that the HLV that Inspiration Mars wants is not the same HLV that NASA is pursuing under the SLS project. I\u2019m not requiring you to know basic physics and the rocket equation. Any pre-K kid who can compare two numbers could understand that SLS as NASA is pursuing it doesn\u2019t have the necessary throw weight, and that Tito is asking for a different HLV. And as you have repeatedly demonstrated, an idiot of your caliber can\u2019t even compare two numbers. \u201cI\u00e2\u20ac\u2122ll leave you with this quote from Taber McCallum\u201d Verbal quotes (probably taken out of context or misquoted by the reporter) in a popular science rag don\u2019t trump what Taber wrote in black and white in his own report. To repeat, for the third time, that is: \u201cUnfortunately, the Primary team\u00e2\u20ac\u2122s evaluation of the SLS-Orion option uncovered many technical challenges. First, while the Orion spacecraft is being designed to perform a wide variety of mission scenarios, many aspects of the IM mission fall outside of that design envelope. One of these critical areas was the reentry speed. Orion\u00e2\u20ac\u2122s missions only require reentry into the Earth\u00e2\u20ac\u2122s atmosphere at speeds up to 11.2 km/sec, whereas the special IM trajectory would have the spacecraft reentering at speeds near 14.2 km/sec. While this is only a 27% increase in reentry speed, the physics of atmospheric heating produce heat loads that are several times greater. To survive the Orion spacecraft would need a new, thicker, heavier heat shield along"}, {"title": "rpj-common-crawl-2023-06", "text": "vomiting, and anorexia and fatigue. Without pressure, human blood heats up. Despite the training, behavioural issues may crop up due to isolation leading to depression, fatigue, sleep disorders and psychiatric disorders. Critical Technologies for Human Space Flight (HSF): According to ISRO, most of the indigenously developed technologies required for the mission have already been tested. These include crew module re-entry, crew escape mechanism in case of a glitch during launch, a deep space network and the astronaut\u2019s space suit. Orbital Module: Divided into a crew module to house the astronauts and a service module that maintains the speed and orientation of the spacecraft using rocket motors apart from the power supply generated from solar sails. Crew Escape System: In case of a malfunction at launch, crew capsule will be ejected to a safe distance Integration facility: for integrating orbit module with launcher and modifying Launchpad for human interface Crew Module: Has to be tested for maintaining temperature and pressure comfortable for humans Deep Space Network: Need to track the module 24*7 as it orbits the earth Re-entry and Recovery system: System to withstand high temperatures (due to friction with the air) when the spacecraft re-enters earth\u2019s atmosphere. Mission Control: Monitors and communicates with the orbiter and astronauts throughout the mission Rocket Launcher: The GSLV Mark III has been modified to improve reliability and accommodate orbital module Recovery logistics: ISRO will interface with the Navy to pick up the astronauts when the crew module splashes down. Astronaut Training: Crew has to be trained to operate in zero"}, {"title": "rpj-common-crawl-2022-05", "text": "back safely requires technologies that can help a spacecraft endure speeds 30 times the speed of sound and heat twice as hot as molten lava or half as hot as the sun. Its advanced heat shield, made with a material called AVCOAT, is designed to wear away as it heats up and withstand temperatures around 5,000 degrees Fahrenheit. Protection from Radiation As a spacecraft travels on missions beyond the protection of Earth\u2019s magnetic field, it will be exposed to a harsher radiation environment than in low-Earth orbit with greater amounts of radiation from charged particles and solar storms that can cause disruptions to critical computers, avionics and other equipment. The crew, if exposed to radiation, will face extreme risks of cancer in long\u2013term. To avoid this, Orion comes with a storm shelter below the main deck of the crew module. Communication and Navigation Spacecraft venturing far from home go beyond the Global Positioning System (GPS) in space and above communication satellites in Earth orbit. Orion\u2019s communication and navigation systems will switch from NASA\u2019s Tracking and Data Relay Satellites (TDRS) system used by the International Space Station, and communicate through the Deep Space Network. International Space StationNASAOrionSatellitesSpace travelSpacecraft Home Remedies to Get Rid of Dandruff Naturally China Successfully Tests First Experimental Superfast Hypersonic Aircraft Nuclear-Powered \u2018Tunnelbot\u2019 to Search For Life on Jupiter\u2019s Moon Europa WhatsApp For Android Gets Picture-in-Picture Feature For All Users Hubble Space Telescope Discovers Planet Vanishing at Record Speed Trade War: Apple May Move iPhone Production Out of China if Tariffs Hit 25%"}, {"title": "rpj-common-crawl-2019-30", "text": "roughly the size of a refrigerator and has room for an experimental payload \u2014 this time around it\u2019s going to be driven by the new green propulsion subsystem. This spacecraft will have five thrusters on board that will help test this propellant through various maneuvers to be performed. The combined capabilities of the propellant can also return the craft to Earth\u2019s atmosphere at the end of its mission. \u201cWe\u2019re not leaving any orbital debris up there, which is part of the \u2018green\u2019 of this experiment, in my opinion,\u201d noted McClean. Debate has renewed of late about the responsibilities of launch and spacecraft companies regarding orbital debris, sparked in part by SpaceX\u2019s recent launch of part of its Starlink satellite constellation. This new fuel is not only better-performing, but is actually easier to work with because of its non-toxic nature, and it can be transported in spacecraft, so that opens up the possibility of shipping fueled craft and also using it safely in research and academic environments, which is huge for unlocking work and study potential. Space Environment Testbed The Space Environment Testbed (SET \u2014 NASA loves acronyms) project that will fly through medium Earth orbit to help determine whether this region of space (called the \u201cslot\u201d because it slots between two radiation belts) has less radiation than lower-orbit space, which could make it a prime locale for navigation and communication satellites that are negatively affected by the radiation present in low Earth orbit. NASA Heliophysics Division Director Nicky Fox explained how the SET payloads will be"}, {"title": "rpj-common-crawl-2020-05", "text": "horizontally inside the Launch Abort System Facility at the Kennedy Space Center, Florida, prior to installation atop the crew module. Credit: Ken Kremer/kenkremer.com The video below shows the simulation of an ascent abort scenario, where the LAS has detached from the SLS and is traveling at close to the speed of sound. The abort process initiates with the ignition of the LAS motor and then slows down as the pressure and airflow conditions become particularly harsh. The colored plumes indicate high pressure (red) and low pressure (blue), with pixels changing from blue to red (and vice versa) in relation to pressure waves that cause vibrations on the vehicle (white). The regions where the color changes abruptly, but remains generally blue or red over time, indicates the presence of shock waves. In the end, these simulations are directly impacting the spacecraft\u2019s design and will help ensure astronaut safety and spacecraft performance. \u201cWe\u2019re still asking lots of questions,\u201d said Cadieux. \u201cLike, how do the loads on the LAV surface change at higher angles of attack? How do we best use data from wind tunnel tests to predict loads for actual flight conditions where the vehicle is accelerating?\u201d The answers to these questions will will be used to design the next series of ground tests, crew mockup tests, and critical flight tests, which will will prepare the Orion spacecraft for its first crewed mission \u2013 Exploration Mission 2 (EM-2). This mission, which is scheduled for launch by 2023, will consist of four crew members conducting a lunar flyby and"}, {"title": "rpj-common-crawl-2021-04", "text": "launch pad of this reusable prototype rocket that is most impressive. This test flight marks the first time the rocket used its navigation sensors to return to its launch pad. Unlike other rockets, Grasshopper is designed to be able to re-enter the Earth's atmosphere whereas other rockets burn up upon re-entry. I guess you could say Grasshopper is a smoother operator... smooth operator. What's not smooth? The surface of an asteroid. Researchers recently found that rubble and dust covering asteroids and comets could feel changes between particles over much larger distances than Earth making them less stable...meaning AVALANCHE! Scientists likened it to pulling out an orange from a pile in the supermarket. Some come out easily, and some send the whole bunch crashing down. The findings come from an experiment in microgravity. This could have an effect on NASA's asteroid mission, as well as private companies looking to mine asteroids. A spacecraft landing on one side of an asteroid could cause an avalanche on the other side, by long-range transmission of forces through chains, but there are a lot of variables involved. Well, isn't that just the story of life? Cause and effect. And then there's always positive and negative in life, which is a whole other web. And that's precisely what one researcher at UC Berkeley is looking at. He found that spider webs don't attract the prey; rather the prey attracts the web. As insects fly through the air they generate a positive charge. This charge can be helpful, in bees for example, it"}, {"title": "rpj-common-crawl-2022-05", "text": "handle surface-to-orbit ferry ships. One of the major constraints on spaceport design is the danger level of the spacecraft propulsion systems. It isn't so bad if the spacecraft is actually parked in orbit with the cargo being ferried down in winged space shuttles. It becomes more of a concern if the spacecraft are chemically powered tail-landers. And things get very dangerous if the spacecraft are nuclear powered. If the spacecraft is antimatter powered it probably is not going to be allowed anywhere near a planet, much less land on it. The danger level of the spacecraft using the port will also influence how far away from cities and major populated areas the spaceport is located. Nuclear powered spacecraft will mandate that the potential footprint of the fallout plume goes through only barren and uninhabited areas. An Orion-drive ship can lift-off with little or no fallout if the launch pad is armor plate with a coating of graphite dust. If the spaceport is on a planet with an atmosphere, do not land under Orion-drive power. The nuclear pulse units in an atmosphere will generate horrible nuclear fireballs that the landing ship will fly into, instantly voiding its warranty. The energy of the ship's exhaust is: Fp = (F * Ve) / 2 Fp = thrust power (watts) F = thrust (newtons) Ve = exhaust velocity (m/s) TIMOTHY LITTLE LANDING ANALYSIS [1] Exhaust power. Say we have a gas core rocket with an exhaust velocity of 50,000 m/s and 1,000,000 newtons of thrust. We've got 25,000,000,000 watts on"}, {"title": "rpj-common-crawl-2023-06", "text": "architecture being suboptimal for moon/Mars caused us to change focus to parachutes. \u2014 Elon Musk (@elonmusk) August 2, 2020 Secondly, when you consider the fact that most of the planet is covered with water, it\u2019s obviously a lot easier to aim for the water than for the land. There\u2019s certainly less room for error when it comes to aiming a capsule for a water landing. However, water landings aren\u2019t completely without risk. What are the risks of water landings? As we already mentioned, NASA stopped doing splashdown landings after the Apollo-Soyuz mission\u2019s water landing in July of 1975. During this reentry, the crew splashed down safely, but there was one serious problem. During reentry, the crew was accidentally exposed to toxic hydrazine and nitrogen tetroxide fumes from unignited rocket propellant. This led to breathing and eye problems for the astronauts aboard, who were hospitalized for two weeks after splashdown. In the case of astronauts Bob and Doug, engineers aboard recovery ship GO Navigator detected high levels of dinitrogen tetroxide around the capsule. After a 30-minute purge of the remaining fuel in the thruster system, they were able to open the hatch and be loaded onto the recovery ship safely. .@AstroBehnken and @Astro_Doug have been lifted out of the water and are aboard the Go Navigator. Welcome home. #LaunchAmerica pic.twitter.com/gjqUcLMy8X \u2014 NASA (@NASA) August 2, 2020 There was one other issue with Bob and Doug\u2019s reentry \u2014 after the capsule landed in the Gulf of Mexico, several privately-owned boats filled with curious onlookers surrounded it. SpaceX officials"}, {"title": "bm25", "text": "fraction of the fuel needed compared to launching it vertically from the surface of the Earth. [float=right][smg id=272 width=220 caption=\"SpaceShipOne in flight\"][/float]The SpaceShip One project has already proven that a spacecraft can be launched from a mothership at an altitude of 15,200 m (50,000 ft), and can go supersonic within 8 seconds. After 70 seconds, the rocket motor cuts out and the spacecraft coasts to its peak altitude (suborbital). SpaceShip Two will be the next generation suborbital air-launched spaceplane designed for space tourism. It uses a feathered reentry system, feasible due to the low speed of reentry \u2013 by contrast, the Space Shuttle and other orbital spacecraft re-enter at orbital speeds, closer to 25,000 km/h (16,000 mph), using heat shields. SpaceShipTwo is furthermore designed to re-enter the atmosphere at any angle. [float=left][smg id=271 width=280 caption=\"SpaceShipTwo (central fuselage) carried under its mothership, White Knight Two\"][/float] I see no reason why the same principles used by the SpaceShip One and Two programs cannot be used to launch larger spacecraft into orbit. The Space Shuttle has been retired. NASA experimented with some replacement vehicles, but to date nothing concrete is on the cards to replace the Shuttle. NASA has retired its Space Shuttles to focus on future missions to an asteroid and eventually Mars. Meanwhile, the private sector has been charged with developing spacecraft to reach the International Space Station and other possible destinations in low-Earth orbit. My next suggestion is to assemble inter planetary spacecraft in orbit. Why continue to launch rockets from the Earth? It is extremely"}, {"title": "bm25", "text": "Intergalactic travel Space agencies Private spaceflight Bigelow Aerospace Orbital ATK Spaceflight portal Animal-powered Human-powered Transport portal Spaceflight (also written space flight) is ballistic flight into or through outer space. Spaceflight can occur with spacecraft with or without humans on board. Examples of human spaceflight include the U.S. Apollo Moon landing and Space Shuttle programs and the Russian Soyuz program, as well as the ongoing International Space Station. Examples of unmanned spaceflight include space probes that leave Earth orbit, as well as satellites in orbit around Earth, such as communications satellites. These operate either by telerobotic control or are fully autonomous. Spaceflight is used in space exploration, and also in commercial activities like space tourism and satellite telecommunications. Additional non-commercial uses of spaceflight include space observatories, reconnaissance satellites and other Earth observation satellites. A spaceflight typically begins with a rocket launch, which provides the initial thrust to overcome the force of gravity and propels the spacecraft from the surface of the Earth. Once in space, the motion of a spacecraft\u2014both when unpropelled and when under propulsion\u2014is covered by the area of study called astrodynamics. Some spacecraft remain in space indefinitely, some disintegrate during atmospheric reentry, and others reach a planetary or lunar surface for landing or impact. 2.1 Launch 2.2 Reaching space 2.2.1 Alternatives 2.3 Leaving orbit 2.4 Astrodynamics 2.5 Transfer energy 2.6 Reentry 2.7 Landing 2.8 Recovery 3.1 Uncrewed 3.1.1 Benefits 3.1.2 Telepresence 3.3 Sub-orbital 3.4 Point-to-point 3.5 Orbital 3.6 Interplanetary 3.7 Interstellar 3.8 Intergalactic 4 Spacecraft 4.1 Propulsion 4.2 Launch systems 4.2.1 Expendable 4.2.2 Reusable"}, {"title": "bm25", "text": "fairing panels (SAJ) which provide a partial load path from the CMA to SA but also protect the solar arrays, radiators, and thrusters from launch and ascent loads. The fairings will be jettisoned during the ascent phase or following main engine cut-off of the launch vehicle. The SA (Spacecraft Adapter) provides the interface to the launch vehicle during launch. During launch and ascent, the ESM and SA will be enclosed by the SAJ. The SA attaches to the aft end of the ESM to the Launch Vehicle and includes the structural interface, separation mechanisms, and umbilical connectors for communication between the launch vehicle and the Orion Spacecraft. At launch vehicle burnout, the Orion Spacecraft separates from the SA at the ESM/SA separation plane. Figure 3: Overview of the Orion spacecraft architecture (image credit: NASA, ESA) Figure 4: Orion schematic layout (image credit: NASA) Orion EM-1 CM (Crew Module) The milestones for the Orion EM-1 mirror the path taken by the Orion EFT-1 (Exploration Flight Test-1) spacecraft. However, the Orion EM-1 will sport a number of improvements based on the experiences of the December 2014 test flight. NASA is beefing up the critical TPS (Thermal Protection System) that will protect astronauts from the searing heats experienced during reentry as the human rated vehicle plunges through the Earth's atmosphere after returning from ambitious expeditions to the Moon and beyond. Based in part on lessons learned from EFT-1, engineers are refining Orion's heat shield to enhance the design, ease manufacturing procedures and significantly strengthen is heat resistant capabilities for"}, {"title": "bm25", "text": "cargo spacecraft Aug. 14 from the Kennedy Space Center in Florida. The next Falcon 9 launch, of the U.S. Air Force\u2019s X-37B spaceplane, is planned for early September from Florida. SpaceX launched its fortieth Falcon 9 Thursday, carrying the Formosat-5 spacecraft for the Taiwan\u2019s National Space Organisation and the Republic of China\u2019s National Space Organisation. The launch, which included a successful landing of the first stage aboard the Autonomous Spaceport Drone Ship, occurred at the start of a 44-minute window that opened at 11:50 local time (18:50 UTC) from Vandenberg Air Force Base in California. Formosat-5 is an Earth remote sensing satellite which was built and operated by the National Space Organisation of the Republic of China (Taiwan). It is the first spacecraft larger than a CubeSat to be developed and constructed by the Republic of China, although Taiwanese officials proudly insist this is an ingenious spacecraft. Equipped with the Remote Sensing Imager (RSI) payload, providing multispectral and panchromatic imaging capabilities, Formosat-5 will replace the Formosat-2 satellite which was retired last August. Formosat-5 also carries the Advanced Ionospheric Probe, or AIP, package, which will study the behavior of plasma within Earth\u2019s ionosphere. The spacecraft has a mass of 475 kilograms (1050 lb) and is expected to operate for at least five years. It will be placed into a near-polar sun-synchronous orbit at an altitude of about 720 kilometers (447 miles, 389 nautical miles). The Remote Sensing Imager is the primary instrument aboard Formosat-5. Built by a partnership of the National Space Organisation and industrial partners within"}, {"title": "bm25", "text": "Moon: \u2022 EM-1 (Exploration Mission-One), scheduled for 2017, will send an uncrewed Orion MPCV on a high-angle lunar trajectory to test the spacecraft's systems\u2014especially the heat shield and reentry parachutes\u2014as well as the SLS rocket. \u2022 EM-2 (Exploration Mission-Two), scheduled to fly in 2021, will send a crew into orbit around the Moon and back for the first time since 1972. The Orion spacecraft will provide emergency abort during the launch ascent phase, sustain the crew during space travel, and provide safe reentry from deep space return velocities. Figure 3: Orion schematic layout (image credit: NASA) Orion's service module is designed to be the powerhouse that fuels and propels the Orion spacecraft in space. Located directly below the crew module, it will contain the in-space propulsion capability for orbital transfer, attitude control, and high-altitude ascent aborts. It will also generate power using solar arrays and provide thermal control, water, and air for the astronauts until just before their return to Earth, when it will separate from the crew module. The SM provides in-space power, propulsion capability, attitude control, thermal control, water and air for the astronauts. For the EFT-1 flight, the SM is not fully outfitted. It is a structural representation simulating the exact size and mass. In a significant difference from Apollo, Orion is equipped with a trio of massive fairings that encase the SM and support half the mass of the crew module and the launch abort system during launch and ascent. The purpose is to improve performance by saving weight from the service"}, {"title": "bm25", "text": "It also contained three racks dedicated to science, FIR (Fluids Integrated Rack) and the first Materials Science Research Rack (MSRR-1) to be placed in Destiny and MELFI-2 (Minus Eighty Laboratory Freezer for ISS) to be placed in Kibo. The FIR enabled detailed study of how liquids behave in microgravity, a crucial detail for many chemical reactions. One experiment, for instance, examined how mixtures known as colloids behave without being stirred by sedimentation and convection. Another using the Light Microscopy Module (LMM) will examine how an ideal heat pipe works without the distortions of gravity. Mission experiments The STS-128 mission (as did STS-125 and STS-127) took part in crew seat vibration tests that will help engineers on the ground understand how astronauts experience launch. They will then use the information to help design the crew seats that will be used in future NASA spacecraft. STS-128 repeated the Boundary Layer Transition (BLT) Detailed Test Objective (DTO) experiment that was done by the same shuttle during STS-119. In this experiment, one of the thermal protection systems was raised to create a boundary layer transition in which the air flow becomes turbulent beyond a certain speed. During STS-119 the tile was raised above the others, tripping the flow at Mach 15 during reentry. In the modification being done, the tile has been raised to trip at Mach 18 producing more heat. Discovery undertook the testing of a catalytic coating which was meant to be used by the Orion (spacecraft). Two TPS tiles located in the protuberance downstream from the BLT"}, {"title": "bm25", "text": "return capsule, and the orbiter will depart lunar orbit on 10 December for another 112 hour transfer to Earth. The return capsule will separate from the orbiter for reentry and landing on 15 December. The capsule will land under parachute in Siziwang Banner, Inner Mongolia, People\u2019s Republic of China. The sealed samples will then be collected and transported for study and analysis. European scientists are expected to access these samples and collaborate with Chinese teams on the subsequent research, but United States scientists will likely be excluded as American law forbids the use of federal funding to collaborate with Chinese scientists. The European Space Agency is an active partner in the Chang\u2019e 5 mission, assisting in tracking the spacecraft during two crucial phases of flight. Graphic showing the phases of flight during which ESA ground stations will support the Chang\u2019e 5 mission \u2013 via ESA Shortly after launch, an ESA ground station in Kourou, French Guiana \u2014 home to the European launch provider Arianespace \u2014 will establish a communications link and verify the health of the spacecraft. Near the conclusion of the mission, a ground station in Maspalomas, Spain, will track the spacecraft during its return to Earth. Other ESA ground stations will be on standby as backups to Chinese tracking stations throughout the mission. The launch of Chang\u2019e 5 will likely preface the use of the Chang Zheng 5 rocket to construct a new Chinese space station in low Earth orbit beginning in 2021. With regards to the Chinese National Space Administration\u2019s lunar exploration program,"}, {"title": "bm25", "text": "Liftoff is expected at 17:52 UTC Sept. 22, 2018. It was set to launch a week earlier on Sept. 14, however, an issue with a liquid oxygen vent valve was found during a post-fueling inspection, forcing a scrub of that launch attempt so engineers could investigate. When it does launch, liftoff will be from the Japan Aerospace Exploration Agency\u2019s Tanegashima Space Center on the island of Tanegashima located about 40 kilometers south of Kyushu, the southernmost of the four main island of the Japanese archipelago. It is expected to rendezvous with the ISS and be captured by the 17.6-meter Canadarm2 robotic arm several days after launch and subsequently berthed to the Earth-facing port of the Harmony module. NASA TV live coverage should begin about a half hour before launch. Inside the Pressurized Logistics Module, Kounotori 7 is carrying 4,300 kilograms. In addition to food and other crew supplies, this includes two U.S. experiment racks (EXPRESS Racks 9B and 10B), a U.S. Life Sciences Glovebox (which will be the second to be delivered to the ISS) and the European Space Agency-developed Life Support Rack. Additionally, a device called HTV Small Re-entry Capsule, abbreviated HSRC, will also be aboard. According to JAXA, it is designed to demonstrate reentry technology and cargo recovery functions from the ISS. Currently, the only vehicles that can return any cargo from the space station are the crewed Russian Soyuz spacecraft (which offers minimal down-mass capability) and SpaceX\u2019s cargo Dragon spacecraft (which offers a large amount of down-mass capability). HSRC is inside Kounotori 7"}, {"title": "bm25", "text": "suit. Elon Musk tweeted late March 1 that there was also a \u201csuper high tech zero-g indicator\u201d onboard: a plush toy resembling the Earth, sitting on one of the seats inside the capsule. Super high tech zero-g indicator added just before launch! pic.twitter.com/CRO26plaXq \u2014 Elon Musk (@elonmusk) March 2, 2019 Demo-1 is the first of two test flights of Crew Dragon as part of SpaceX\u2019s commercial crew contract with NASA. The flight is intended to test key subsystems on the spacecraft and identify problems that will need to be corrected before NASA approves flying its astronauts on the spacecraft. Those milestones include testing Crew Dragon as it approaches and docks with the station and, later, its reentry and splashdown. This mission will mark the first time a Dragon spacecraft has docked with the station, as previous cargo Dragon spacecraft were berthed by the station\u2019s robotic arm. Musk said the biggest risk may be reentry, given the asymmetric shape of the capsule\u2019s backshell, unlike the cargo Dragon. \u201cThat could potentially cause a roll instability on reentry,\u201d Musk said, but added it felt it was unlikely given the simulations. \u201cI would say hypersonic reentry is probably the biggest concern.\u201d Planning for Demo-2 The second test flight, Demo-2, will carry NASA astronauts Bob Behnken and Doug Hurley. That mission is scheduled for no earlier than July, although agency leaders emphasized before the Demo-1 launch that they will not rush the launch of Demo-2 to meet a certain schedule. The Falcon 9 Demo-1 launch seen from the Kennedy Space Center"}, {"title": "bm25", "text": "suit. Elon Musk tweeted late March 1 that there was also a \u201csuper high tech zero-g indicator\u201d onboard: a plush toy resembling the Earth, sitting on one of the seats inside the capsule. Super high tech zero-g indicator added just before launch! pic.twitter.com/CRO26plaXq \u2014 Elon Musk (@elonmusk) March 2, 2019 Demo-1 is the first of two test flights of Crew Dragon as part of SpaceX\u2019s commercial crew contract with NASA. The flight is intended to test key subsystems on the spacecraft and identify problems that will need to be corrected before NASA approves flying its astronauts on the spacecraft. Those milestones include testing Crew Dragon as it approaches and docks with the station and, later, its reentry and splashdown. This mission will mark the first time a Dragon spacecraft has docked with the station, as previous cargo Dragon spacecraft were berthed by the station\u2019s robotic arm. Musk said the biggest risk may be reentry, given the asymmetric shape of the capsule\u2019s backshell, unlike the cargo Dragon. \u201cThat could potentially cause a roll instability on reentry,\u201d Musk said, but added it felt it was unlikely given the simulations. \u201cI would say hypersonic reentry is probably the biggest concern.\u201d Planning for Demo-2 The second test flight, Demo-2, will carry NASA astronauts Bob Behnken and Doug Hurley. That mission is scheduled for no earlier than July, although agency leaders emphasized before the Demo-1 launch that they will not rush the launch of Demo-2 to meet a certain schedule. The Falcon 9 Demo-1 launch seen from the Kennedy Space Center"}, {"title": "bm25", "text": "of Alabama is also a NASA stronghold, further decried the launch as a display merely replicating what \u201cNASA accomplished in 1964.\u201d Ball park date but he\u2019s not as far off the mark as, perhaps, the orbital parameters of Tumblin\u2019 Dice 1, aka Deadweight Dragon. Elon Musk had this response to Sen. Hutchison\u2019s statement in a post-launch teleconference with reporters. \u201cI don\u2019t understand why she\u2019s trying to hurt a Texas company. We do all of our engine development and testing in Texas. We\u2019re one of the fastest growing employers in Texas. Why is she trying to hurt a Texas company? That\u2019s wrong, and the people of Texas ought to be aware of that.\u201d <\u2014 Uh, SpaceX is headquartered in the Hawthorne/El Segundo area of Los Angeles, CA (near by is LAX.) Know the area well. It most definitely is not Texas. Don\u2019t make stupid statements out of ignorance. <\u2013 Speak for yourself. Again, please share the date/time/coordinates for controlled reentry, splashdown and recovery of boilerplate Dragon, by the private recovery fleet owned and operated by SpaceX. Otherwise, again, nations above the groundtrack take note\u2013 if this new piece of \u2019space junk\u2019 reenters a la Skylab and does any damage, send the bill to SpaceX, not the USA. @MajotTom- And please note your own \u2018boilerplate\u2019 reference is to manned spacecraft testing used for instrumentation and data collection. Was this a test of the Dragon spacecraft? Uh, no. Please share the instrumentation and data being collected aboard the deadweight \u2018Tumblin\u2019 Dice 1,\u2019 aka your unmanned, non-operational Dragon spacecraft. This"}, {"title": "bm25", "text": "encounter during a normal ascent. - For this test, SpaceX will configure Crew Dragon to intentionally trigger a launch escape prior to 1 min, 30 seconds into flight to demonstrate Crew Dragon\u2019s capability to safely separate from the Falcon 9 rocket in the unlikely event of an in-flight emergency. Once the launch escape sequence begins, Falcon 9\u2019s first stage Merlin engines will shut down and Crew Dragon\u2019s SuperDraco thrusters will begin their firing sequence. The launch vehicle and spacecraft will separate, and Crew Dragon\u2019s SuperDracos will burn to completion. - After Crew Dragon\u2019s SuperDracos shutdown, the spacecraft will passively coast to apogee, the highest point in its arc. Near apogee, Crew Dragon\u2019s trunk will separate and the smaller Draco thrusters will re-orient the spacecraft for reentry and parachute deploy. At the appropriate conditions, Dragon\u2019s drogue and main parachutes will sequence to provide for a soft landing in the Atlantic Ocean near SpaceX Dragon recovery teams. - Following Crew Dragon\u2019s separation, Falcon 9 is expected to aerodynamically break up offshore over the Atlantic Ocean. Expected breakup time will vary based upon a number of factors, including day of launch winds and expected minor variations in vehicle attitudes and positions, but could occur shortly after separation or later upon reentry from the upper atmosphere. In either scenario, a dedicated team of SpaceX Falcon 9 recovery personnel will be staged and ready to begin recovering debris immediately after breakup. - As part of the Dragon recovery operation, Air Force Detachment-3 personnel will work with the SpaceX recovery team to"}, {"title": "bm25", "text": "made yesterday\u2019s launch and today\u2019s docking a success. These amazing feats show not how easy our mission is, but how capable we are of doing hard things. Welcome to the new era in spaceflight.\u201d The Falcon 9, with Crew Dragon on top, on the pad at Launch Complex 39A during final launch preparations March 1. (credit: J. Foust) Schedules and safety There\u2019s still a lot of hard things to go on the Demo-1 mission. Crew Dragon will remain docked until Friday, when it will depart the station and reenter, splashing down off the Florida coast at around 8:45 am Eastern that morning. That may be the toughest test yet for the spacecraft. Speaking at a post-launch press conference, Musk said the asymmetric shape of the Crew Dragon backshell, with protuberances to accommodate the Super Drago thrusters for the capsule\u2019s launch abort system, could create a \u201croll instability\u201d in the capsule as it reentered, while emphasizing that was a low-probability event based on simulations. \u201cI would say hypersonic reentry is probably the biggest concern,\u201d he said. Even if Crew Dragon aces the rest of the Demo-1 mission\u2014undocking, reentry, parachute deployment, splashdown, and recovery\u2014there\u2019s still work to be done on the spacecraft before it will be ready to carry people. In addition to any issues identified during the mission itself, there are other aspects of the vehicle that need to be taken care of before NASA considers it ready to carry its astronauts. One set of tasks involves those systems that weren\u2019t needed to meet the objectives of"}, {"title": "bm25", "text": "UTC Aerospace Systems provides critical control systems for NASA's Orion spacecraft launched today CHARLOTTE, N.C., Dec. 5, 2014 /PRNewswire/ -- UTC Aerospace Systems' employees helped build NASA's Orion spacecraft, which completed its Exploration Flight Test (EFT-1) today from Kennedy Space Center in Florida. The team provided critical control systems, including active thermal control, pressure control, power control and switching hardware for the Orion spacecraft, as well as key systems for the Delta IV Heavy launch vehicle. UTC Aerospace Systems is a unit of United Technologies Corp. (NYSE: UTX). \"We are honored to partner with Lockheed Martin and United Launch Alliance in this important milestone for NASA,\" said Allen Flynt, General Manager, Human Exploration and Launch Vehicles. \"Orion is the vehicle for the next generation of space exploration, and our employees are helping to make that a reality.\" The active thermal control system provides pumps and thermal expansion control of fluid circuits for cooling of the avionics boxes. The power control and switching hardware provide power connectivity from external power sources, conditioned power to the crew and service modules, and communication to environmental control and life support systems components. The pressure control equipment consists of a negative pressure relief valve, which allows for pressure equalization between the vehicle interior and the outside air during reentry in the event the cabin pressure has leakage. \"These systems are key to crew and craft survivability,\" said Flynt. \"Results of this flight test will help inform the development of the crewed version of the Orion spacecraft, which our employees are already"}, {"title": "bm25", "text": "precision and ensure its crew can get home, communication and navigation systems to maintain contact with the ground and orient the spacecraft, systems and features to handle radiation events, as well as a heat shield that can handle a high-speed reentry from the Moon. Both distance and duration demand that spacecraft must have systems that can reliably operate far from home, be capable of keeping astronauts alive in case of emergencies and still be light enough that a rocket can launch it,\u201d says NASA. While @NASA_Orion is in distant retrograde orbit, flight controllers at @NASA_Johnson will monitor key systems and perform checkouts in the environment of deep space. We're testing critical systems on Orion during #Artemis I to prepare for carrying @NASA_Astronauts on Artemis II. pic.twitter.com/r0CWi6Ozks The Artemis 1 mission and Orion capsule have been performing admirably with only a few minor issues since its launch on Nov. 16 Water reflecting view of nature and space as NASA\u2019s Space Launch System (SLS) rocket carrying the Orion spacecraft launches on the Artemis I lunar flight test, Wednesday, Nov. 16, 2022, at 1:47 a.m. ET from Launch Pad 39B at the Kennedy Space Center as bird observes from the Turn Basin. Artemis 1 is first integrated flight test of Orion and SLS rocket around the Moon and back. Credit: Ken Kremer/spaceupclose.com \u201cIn terms of overall systems failures, we haven\u2019t seen a single thing on the rocket or on the spacecraft that would have caused us to question our reliability or our redundancy,\u201d said Mike Sarafin, NASA Artemis 1"}, {"title": "bm25", "text": "is unusual in that it allows for an extended 30 minute launch window, allowing time to resolve technical glitches or for foul weather to clear. Launch schematic for OA-4 from launch to interception with the International Space Station. Image credit: Orbital ATK It will take the spacecraft approximately 2.5 days to intercept the space station once it launches. It will stay attached for a month as astronauts unload cargo and refill the spacecraft with garbage. This is a one-way trip for Cygnus: when it undocks, it\u2019ll burn up in the Earth\u2019s atmosphere during destructive reentry. If today\u2019s launch is also scrubbed, two additional windows are open on December 5th and 6th. After that, mission planners will need to be creative about how to create orbital intercepts, possibly including a launch where the spacecraft will loiter in orbit for a few weeks before intercepting the space station. Due to an annual sun-angle blackout, no spacecraft can dock with the space station between Christmas Eve and January 3, 2016. This is the fourth commercial cargo mission for Orbital, OA-4, since 2014. The company is contracted to deliver 28,700 kilograms (63,272 pounds) of cargo to the space station over approximately ten missions. Artist\u2019s concept of the Enhanced Cygnus approaching the International Space Station. Image credit: Orbital ATK Update 6:03pm: Although the weather was better than during yesterday\u2019s attempt, gusts of wind delayed today\u2019s launch three times. Each failure reset the countdown clock to the final 4-minutes, and the rocket and spacecraft experienced no technical issues. With the final attempt"}, {"title": "bm25", "text": "the meteor shower. That was in the wrong direction,\" Montalbano said. \"We've got some work to do with imagery to better understand if it was a meteorite hit or if it was a hardware issue.\" The damage could have been caused by another meteorite, unrelated to the Geminids, or a piece of orbital space debris, according to Montalbano. The space station as seen from the SpaceX Crew Dragon Endeavour during its departure on Nov. 8, 2021. (Image: NASA) NASA Astronaut Frank Rubio, Prokopyev and Petelin arrived at the ISS in September onboard the Soyuz, and the Russian spacecraft is also their ride home. WHY A SPACECRAFT CLAW WAS BUILT TO CLEAN UP SPACE JUNK Kirkalev said mission managers are still trying to determine if the Soyuz can undock and re-enter Earth's atmosphere safely with the three crew members or if another Soyuz will need to bring them home. \"Now we are doing formal analysis to see if we can use this vehicle to do a nominal reentry with the crew \u2026 or we need to send a rescue vehicle to the station in the future,\" Kirkalev said. The Soyuz and SpaceX Crew Dragon spacecraft docked at the ISS are the only way astronauts can get back to Earth. Another Soyuz was scheduled to launch in March. Kirkalev said that the launch could be moved up several weeks if needed. NASA astronaut Josh Cassada rides the CanadaArm2 while holding a new solar array during installation outside the International Space Station on Dec. 3, 2022. (Image: NASA) It's"}, {"title": "bm25", "text": "SpaceX tests new engine for Dragon capsule An artistic illustration of Dragon spacecraft's landing. A SpaceX photo HAWTHORNE (BNS): Private US space firm SpaceX has successfully tested a new engine for the Dragon spacecraft which it says will ensure safety of astronauts during space flight missions. The new powerful SuperDraco engine, an advancement of the Draco engines currently used by SpaceX's Dragon spacecraft to maneuver on orbit and during reentry, will enable astronauts to eject to safety in the event of an emergency during launch. As part of SpaceX's state-of-the-art launch escape system, eight SuperDraco engines built into the side walls of the Dragon spacecraft will produce up to 120,000 pounds of axial thrust to carry astronauts to safety should an emergency occur during launch. The eight SuperDracos provide redundancy, so that even if one engine fails an escape can still be carried out successfully. The engines can also be restarted multiple times if necessary and they will have the ability to deep throttle, providing astronauts with precise control and enormous power, SpaceX said. In addition, as a part of a recoverable Dragon spacecraft, the engines can be used repeatedly, helping to advance SpaceX's long-term goal of making spacecraft more like airplanes, which can be flown again and again with minimal maintenance between flights, it said. The company had received a $75 million contract from NASA's Commercial Crew Programme in April, 2011 to develop the escape system in order to prepare the Dragon spacecraft to carry astronauts. Less than nine months later, SpaceX engineers have designed,"}, {"title": "bm25", "text": "& Smithsonian (CfA), stressed that we cannot assume the spacecraft is a space plane. \"'Reusable' doesn't necessarily mean 'winged,'\" he wrote on Twitter on Sunday. \"Still could be a [SpaceX] Dragon-style capsule, with a parachute, landing in the Taklamakan somewhere. Exact launch and landing times not announced by China.\" China has announced the name of the spacecraft, which is called Chongfu Shiyong Shiyan Hangtian Qi, McDowell said on Twitter on Friday. The name \"translates as Repeat Use Test Space Craft (let's say Reusable Test Spacecraft a bit more loosely),\" McDowell added. Also, analysis of a newly found object in space suggests that the Chinese spacecraft released something while it was in orbit, according to SpaceNews, although what that may be is pure speculation. \"My analysis suggests it was ejected from China's experimental spacecraft near 22:25 UT [6:25 p.m. EDT] on the 5th, about two revolutions before landing,\" Marco Langbroek, a Leiden University space situational awareness consultant, wrote on Twitter on Sunday. He credited McDowell with spotting the object in the first place. SpaceNews said that, whatever the object was, it was released two orbits before the spacecraft began its return to Earth. Neither Chinese nor United States space-tracking organizations have released details, the report added. \"Chinese crew capsules have previously released 'Banxing' small companion satellites for monitoring,\" SpaceNews said. \"An experimental new-generation crew spacecraft released a test inflatable reentry and descent technology module in May. The experiment suffered an anomaly during reentry.\" To be fair, the Chinese aren't alone in keeping the activities of experimental spacecraft"}, {"title": "bm25", "text": "profile completely autonomously. That presents its own set of challenges, said Ferguson, adding that the flight software, avionics, docking sensors and propulsion, reentry and landing systems all have to work completely independently without human input. Manual controls are there as a safety valve. \u201cIf we see something we don\u2019t like or if the system is doing something it\u2019s not supposed to, we can take over and get the vehicle back on track. Integrating the autonomy and manual control such that the transitions are seamless has been a unique challenge,\u201d he said. SpaceX, on the other hand, is using its Dragon spacecraft, which has carried cargo to the ISS since 2012. The Dragon is capable of carrying up to seven passengers to and from Earth orbit. The pressurized section of the capsule is designed to carry both people and environmentally sensitive cargo. Toward the base of the capsule and contained within the nose cone are the Draco thrusters, which allow for orbital maneuvering. Dragon\u2019s trunk not only carries unpressurized cargo but also supports the spacecraft during ascent. The trunk remains attached to Dragon until shortly before reentry into Earth\u2019s atmosphere. To support human spaceflight, Crew Dragon features an environmental control and life support system. The spacecraft is equipped with a launch escape system capable of carrying crew to safety at any point during ascent or in the unlikely event of an anomaly on the pad. While the crew can take manual control of the spacecraft if necessary, Crew Dragon missions will autonomously dock and undock with the"}, {"title": "bm25", "text": "launch, orbit and during reentry. Once completed it will be the largest and most powerful vibration test facility every built. \u2014 The design of a high-speed data acquisition system that will be used to collect and analyze data from the two testing facilities. \u2014 The design and delivery of all control systems for both testing facilities. These two new testing facilities and the other facilities being readied under separate efforts will allow the Orion spacecraft, consisting of the launch abort system and the crew and service modules, to undergo thermal- vacuum, acoustic, mechanical vibration and electromagnetic compatibility evaluations within the confines of the SPF during development and qualification. These new testing facilities also will support NASA\u2019s Constellation Program\u2019s future spacecraft and other systems required for exploration missions to the moon, Mars and other destinations in the solar system. \u201cWe look forward to leading the design-build effort to deliver one of the world\u2019s largest high-intensity acoustic test chamber and the world\u2019s largest and most powerful spacecraft vibration test system for NASA and the Orion Program,\u201d said Bill Steen, Benham project director for the NASA contract. Benham, a wholly owned subsidiary of SAIC, provides integrated architectural design, engineering, procurement and construction services for a broad spectrum of industries and facilities, delivering end-to-end solutions for government and private customers. SAIC is a leading provider of scientific, engineering, systems integration and technical services and solutions to all branches of the U.S. military, agencies of the Department of Defense, the intelligence community, the U.S. Department of Homeland Security and other U.S."}, {"title": "bm25", "text": "Saturday. Meteorologists with the U.S. Air Force 45th Space Wing predict a 90% chance of favorable weather, with the primary concerns for launch day being the flight through precipitation rule during the four-hour launch window. \u201cPrior to launch, SpaceX and NASA teams will practice launch day end-to-end operations with NASA astronauts, including final spacecraft inspections and side hatch closeout. Additionally, SpaceX and NASA flight controllers along with support teams will be staged as they will for future Crew Dragon missions, helping the integrated launch team gain additional experience beyond existing simulations and training events,\u201d said NASA officials. \u201cAfter liftoff, Falcon 9\u2019s ascent will follow a trajectory that will mimic a Crew Dragon mission to the International Space Station matching the physical environments the rocket and spacecraft will encounter during a normal ascent. \u201cFor this test, SpaceX will configure Crew Dragon to intentionally trigger a launch escape prior to 1 min, 30 seconds into flight to demonstrate Crew Dragon\u2019s capability to safely separate from the Falcon 9 rocket in the unlikely event of an in-flight emergency. Once the launch escape sequence begins, Falcon 9\u2019s first stage Merlin engines will shut down and Crew Dragon\u2019s SuperDraco thrusters will begin their firing sequence. The launch vehicle and spacecraft will separate, and Crew Dragon\u2019s SuperDracos will burn to completion. \u201cAfter Crew Dragon\u2019s SuperDracos shutdown, the spacecraft will passively coast to apogee, the highest point in its arc. Near apogee, Crew Dragon\u2019s trunk will separate and the smaller Draco thrusters will re-orient the spacecraft for reentry and parachute deploy. At the"}, {"title": "bm25", "text": "impact sub-orbital flights because one might say the launch and reentry of such vehicles is relatively seamless \u2014 with tourists enjoying 5-10 minutes of weightlessness. Indeed, the regulations actually define \u201claunch\u201d of a reusable launch vehicle for sub-orbital flight as only ending when the vehicle touches down \u2013 so the launch license already covers everything, i.e. in essence, at least from a regulatory perspective, there is no in-space activity or reentry in such a case. But for the other activities, the United States obligation to \u201cauthorize and continually supervise\u201d may not be provided for in the current U.S. system. Some have suggested leveraging launch licensing authority, perhaps under the guise of the payload safety review, to at least create non-interference zones. Indeed, the FAA does institute a non-interference zone around the ISS. And, FAA said as much to Bigelow Aerospace in its request in the form of a payload safety review. At the time the FAA response became public earlier this year, I blogged the following: \u201cThe US government (FAA AST in consultation with State Dept., Dept. of Defense, NASA, NOAA and other agencies) is saying that it will use its current launch licensing authority as best it can to protect space facilities, hardware and personnel by ensuring zones of non-interference with commercial operations. The zones of non-interference will only apply vis a vis others being licensed by FAA AST, largely US corporations. The decision is a sign that the US government is fully engaged in this issue and recognizes the importance of protecting and stimulating"}, {"title": "bm25", "text": "August 12 \u2013 August 18, 2019 ULA Vulcan Rocket Selected To Launch Sierra Nevada Corp. Dream Chaser SNC Dream Chaser on ULA Vulcan Centaur Rocket. Image Credit: Sierra Nevada Corporation/United Launch Alliance August 15, 2019 \u2013 Sierra Nevada Corporation (SNC) has selected United Launch Alliance (ULA) as the launch vehicle provider for the Dream Chaser spacecraft\u2019s six NASA missions to the International Space Station. The Dream Chaser will launch aboard ULA\u2019s Vulcan Centaur rockets for its cargo resupply and return services to the space station, starting in 2021. Read More GOLD Reveals Unexpected Changes In Earth\u2019s Nighttime Ionosphere This October 15, 2018, GOLD image of daytime airglow clearly shows the equatorial ionization anomaly (EIA) as two arcs on either side of the magnetic equator, which extend across the nightside of the disk. The colors represent an increase in oxygen emissions from blue to red, with the left side of the Earth lit by the Sun, which has set over most of South America. Image Credit: GOLD August 14, 2019 \u2013 NASA\u2019s Global-scale Observations of the Limb and Disk (GOLD) mission has observed dramatic and unexplained shifts in the location of features in the Earth\u2019s ionosphere surrounding the equator. Unanticipated changes in the nighttime ionosphere can lead to disruptions in communication and navigation that depend on satellites, such as GPS. Read More James Webb Space Telescope Could Begin Learning About TRAPPIST-1 Atmospheres In A Year This artist\u2019s concept appeared on the Feb. 23, 2017 cover of the journal Nature announcing that the nearby star TRAPPIST-1, an ultra-cool"}], "hoverinfo": "text"}, {"x": [-0.13440987467765808, -0.022711854428052902, -0.18204224109649658, -0.09660869836807251, -0.09660869836807251, -0.10879440605640411, -0.01711539551615715, -0.1719384342432022, -0.09245329350233078, -0.10489664226770401, -0.04553230479359627, -0.1403363049030304, -0.10879440605640411, -0.15900325775146484, -0.13440987467765808, -0.07981559634208679], "y": [0.04038099944591522, 0.15462626516819, -0.027509963139891624, 0.07092872262001038, 0.07092872262001038, 0.04353747516870499, 0.029101457446813583, -0.037380415946245193, 0.024919766932725906, 0.03654788061976433, 0.07804430276155472, -0.04201851785182953, 0.04353747516870499, 0.019112056121230125, 0.04038099944591522, -0.039276447147130966], "mode": "markers", "name": "Cluster 6", "marker": {"size": 8, "color": "rgb(179,222,105)"}, "text": ["Document 46", "Document 60", "Document 360", "Document 388", "Document 389", "Document 422", "Document 433", "Document 459", "Document 514", "Document 537", "Document 576", "Document 578", "Document 621", "Document 703", "Document 767", "Document 800"], "customdata": [{"title": "rpj-common-crawl-2023-06", "text": "inside a very narrow pie-shaped wedge and I think we were continually being pushed off that wedge. The reason was, we found out about 2-3 months after from analysis, was the lander\u2019s venting of cooling vapor. The way we cool the electronic systems in LM was to pass water through a heat exchanger, and that water evaporates into space. That evaporation \u2014 which would be insignificant during a normal lunar landing mission \u2014 was going on for the 4 days we were using the LM as a lifeboat, acting as a small force, forcing us off the initial trajectory.\u201d Coming in on a shallower trajectory would result in a longer period in the upper atmosphere where there was less deceleration of the spacecraft. In turn, the reduced pace of deceleration lengthened the time that the heat of reentry produced the ionized gasses that would block communications. The Apollo 13 spacecraft heads toward a splashdown in the South Pacific Ocean. Note the capsule and its parachutes just visible against a gap in the dark clouds. Credit: NASA. But NASA engineer Jerry Woodfill offers additional insight into the communication delays. He recently spoke with Jerry Bostick, the Flight Dynamics Officer (FIDO) for Apollo 13, who told him, \u201cMany believe the added time resulted from the communication signal skipping, like a stone, over layers of the upper atmosphere because of the shallow entry angle.\u201d \u201cBostick likened the radio signals to a stone skipping on a pond, and finally, the signal found a location to sink Earthward,\u201d Woodfill said. However,"}, {"title": "rpj-common-crawl-2023-06", "text": "and ready to land. It is far from reaching the sound barrier! Photo credits unfortunately unknown Let\u2019s (finally?) get back to our subject of atmospheric entry! When an object penetrates the atmosphere at the crazy speeds of orbital mechanics, the air is compressed into a shockwave in front of the object and heats up to very high temperature. After colliding with our object, the air in the zone of the shockwave can achieve local temperature of several thousand to several tens of thousands of degrees. This has the effect of ripping electrons from atoms, ionizing the matter, and causing it to enter into a plasma phase: the fourth, and little known state of matter (gas, liquid, solid, and plasma). The plasma is then a \u201csoup of electrons and ions\u201d that glows red/orange. This is what creates the beautiful light trail in the sky! Photo taken during the atmospheric entry of STS-42 In addition, the plasma interferes with the radio signals the vehicle might send or receive. It blocks all communication with the crew during their atmospheric entry! The phenomenon known as \u201cradio blackout\u201d can last approximately 3 to 5 minutes for a capsule returning to Earth (using the figures from the Apollo missions). In the same way, the Martian probes or the Huygens probe that landed on Titan, endured the same phenomenon. The space shuttles endured a radio blackout for as much as 30 minutes ( ! ) during their returns, up until the deployment of the Tracking and Data Relay Satellite System that takes advantage"}, {"title": "rpj-common-crawl-2021-04", "text": "does not help either. GSY wrote: NASA engineers had to shed every possible ounce to get the Apollo ships (in full view of the world before launch) to the moon. There certainly was not an additional lunar lander in the stack. In-flight broadcasts showed astronauts in the capsule, the command model, and the lunar lander. In weightlessness. Which cannot be faked within the 45 seconds of weightlessness a Vomit Comet plane can provide. Second launch? No. Remember, this was during the cold war. All the major powers were keeping constant watch for unexpected launches \u2014 they might mean an ICBM attack! And, military and astronomers tracked every item in space even back then. The sudden appearance of a spacecraft in low earth orbit would be front page news! Was everyone in NORAD in on the conspiracy?? And no one has ever said anything?? Re-entry from lunar orbit is much different than re-entry from low earth orbit. Astronomers would not be fooled. And they would have been following the spacecraft since it launched. Why bother with all those Apollo space-rendezvous-practice and around-the-moon missions? They could have simply made Apollo 8 a fake landing mission. Done! Were the Apollo 13 astronauts \u2014 close to death for five days \u2014 really in near earth orbit, but NASA wouldn\u2019t let them land, because they had to pretend to complete their lunar orbit, else it would \u201cruin the plan\u201d? ? ? And everyone at every network and all aeronautical journalists and astronomers and sky trackers AROUND THE WORLD were tricked for"}, {"title": "rpj-common-crawl-2020-05", "text": "Chinese. Nice one there. People will always give excuses why good advances shouldnt be made, while ignorantly using technologies that they would have criticised if they were alive when they were built. I think pessimists (retrogressers and status quo guys) are too many for the good of mankind, and we really need to build a machine with which to tweak and tinker with their mind sets. I need a pessimist to criticise what I just said. Well, you won't get me to disagree. We live in the most amazing world ever. To denigrate it because we are still trying to solve the problems is to negate the historical and anthropological process is sheer ignorance. The Flavored Coffee Guy The problem is simple. Re-entry caused these kinds of problems before and that was the Moon Missions back in the late 60s and early 70s. Plasma coats craft and cuts off communications. If you use the old math and old school methods on a craft travelling allot faster, you wind up loosing your signal anyway. The hotter the plasma, the better a short circuit if makes for radio waves. The more aerodynamic the design of the craft, the more even the sheet of plasma. So, it probably left several bands of radar and couldn't be followed by a list of frequencies, and included in that was the communications channels. There is a way to look signal analysis vs imaging to detect via spectrometer or color analysis about what temperature the skin of the craft was, altitude and pressure"}, {"title": "rpj-common-crawl-2020-05", "text": "Chinese. Nice one there. People will always give excuses why good advances shouldnt be made, while ignorantly using technologies that they would have criticised if they were alive when they were built. I think pessimists (retrogressers and status quo guys) are too many for the good of mankind, and we really need to build a machine with which to tweak and tinker with their mind sets. I need a pessimist to criticise what I just said. Well, you won't get me to disagree. We live in the most amazing world ever. To denigrate it because we are still trying to solve the problems is to negate the historical and anthropological process is sheer ignorance. The Flavored Coffee Guy The problem is simple. Re-entry caused these kinds of problems before and that was the Moon Missions back in the late 60s and early 70s. Plasma coats craft and cuts off communications. If you use the old math and old school methods on a craft travelling allot faster, you wind up loosing your signal anyway. The hotter the plasma, the better a short circuit if makes for radio waves. The more aerodynamic the design of the craft, the more even the sheet of plasma. So, it probably left several bands of radar and couldn't be followed by a list of frequencies, and included in that was the communications channels. There is a way to look signal analysis vs imaging to detect via spectrometer or color analysis about what temperature the skin of the craft was, altitude and pressure"}, {"title": "rpj-common-crawl-2023-06", "text": "of ice? Had the Inertial Measurement Unit (IMU) gyros failed, having inadequate time to warm-up causing the capsule to skip off the atmosphere, or incinerate with the crew in a fiery death plunge to Earth? Of course, the crew finally did answer, but confirmation that Lovell, Haise and Swigert had survived reentry came nearly a minute and a half later than expected. Some might feel director Ron Howard may have over-sensationalized the re-entry scenes for dramatic effect. But in listening to the actual radio communications between Mission Control and the ARIA 4 aircraft that was searching for a signal from the Apollo 13 crew, the real drama is just as palpable \u2013 if not more \u2014 than in the movie. For virtually every reentry from Mercury through Apollo 12, the time of radio blackout was predictable, almost to the second. So why did Apollo 13\u2019s radio blackout period extend for 87 seconds longer than expected, longer than any other flight? The view in Mission Control after Apollo 13 landed safely. Credit: NASA. During the Apollo era, the radio blackout was a normal part of reentry. It was caused by ionized air surrounding the command module during its superheated reentry through the atmosphere, which interfered with radio waves. The radio blackout period for the space shuttle program ended in 1988 when NASA launched the Tracking and Data Relay Satellite System (TDRS), which allowed nearly constant communication between the spacecraft and Mission Control. It is difficult to find official NASA documentation about the extended radio blackout time for"}, {"title": "rpj-common-crawl-2023-06", "text": "a spacecraft experiences during re-entry into Earth\u2019s atmosphere. The blackout is a result of the craft being surrounded by a plume of incandescent plasma generated by the heat of re-entry. Such a plasma is impenetrable by radio waves, but can be pierced by x-rays. Using their prototype, Mr Hang and his colleagues are able to encode messages into x-rays, transmit them through a vacuum, and then decode them at the other end. A practical version of this system would not broadcast signals directly to Earth from the re-entering craft. Rather it would transmit them to a satellite that then relayed the message Earthward by more conventional means. The reason for the detour is that, though x-rays penetrate dust, they are absorbed by the sorts of gases that make up Earth\u2019s atmosphere. The re-entry transceiver works because the period of re-entry blackout happens high in the atmosphere, where the air is thin. A signal beamed through the thick air of the lower atmosphere would, by contrast, be absorbed. xcom, as Mr Hang dubs his putative x-ray Aldis lamp, would be a more powerful version of such a spacecraft transmitter. To avoid atmospheric absorption it would have to be put into space to operate. Ideally, it would sit on the far side of the Moon, shielded from interference from Earth. By a lucky coincidence, the China National Space Administration, the country\u2019s space agency, has just demonstrated, with the landing of its lunar probe Chang\u2019e-4, that it can position equipment on that part of Earth\u2019s natural satellite. Whether the"}, {"title": "rpj-common-crawl-2021-04", "text": "And they actually wage their own war on science which does not help either. Sigmetnow GSY wrote: NASA engineers had to shed every possible ounce to get the Apollo ships (in full view of the world before launch) to the moon. There certainly was not an additional lunar lander in the stack. In-flight broadcasts showed astronauts in the capsule, the command model, and the lunar lander. In weightlessness. Which cannot be faked within the 45 seconds of weightlessness a Vomit Comet plane can provide. Second launch? No. Remember, this was during the cold war. All the major powers were keeping constant watch for unexpected launches \u2014 they might mean an ICBM attack! And, military and astronomers tracked every item in space even back then. The sudden appearance of a spacecraft in low earth orbit would be front page news! Was everyone in NORAD in on the conspiracy?? And no one has ever said anything?? Re-entry from lunar orbit is much different than re-entry from low earth orbit. Astronomers would not be fooled. And they would have been following the spacecraft since it launched. Why bother with all those Apollo space-rendezvous-practice and around-the-moon missions? They could have simply made Apollo 8 a fake landing mission. Done! Were the Apollo 13 astronauts \u2014 close to death for five days \u2014 really in near earth orbit, but NASA wouldn\u2019t let them land, because they had to pretend to complete their lunar orbit, else it would \u201cruin the plan\u201d? ? ? And everyone at every network and all aeronautical journalists"}, {"title": "rpj-common-crawl-2021-04", "text": "the radio blackout was a normal part of reentry. It was caused by ionized air surrounding the command module during its superheated reentry through the atmosphere, which interfered with radio waves. The radio blackout period for the space shuttle program ended in 1988 when NASA launched the Tracking and Data Relay Satellite System (TDRS), which allowed nearly constant communication between the spacecraft and Mission Control. It is difficult to find official NASA documentation about the extended radio blackout time for Apollo 13. In the mission\u2019s Accident Review Board Report, there\u2019s no mention of this anomaly. The only discussion of any communication problem comes in a section about reentry preparations, after the Service Module was jettisoned. There was a half-hour period of very poor communications with the Command Module due to the spacecraft being in a poor attitude with the Lunar Module still attached. Some of the reentry preparations were unnecessarily prolonged by the poor communications, but was more of a nuisance than an additional hazard to the crew, the report said. In numerous interviews that I\u2019ve done and listened to in preparation for this series of articles, when those involved with the Apollo 13 mission are asked about why the blackout period was longer than normal, the answer normally comes as a hedged response, with the crew or a flight director indicating they don\u2019t know exactly why it happened. It seems analysis of this has defied a reasonable and irrefutable scientific explanation. Overall view showing some of the activity in the Mission Operations Control Room during"}, {"title": "rpj-common-crawl-2021-04", "text": "going on for the 4 days we were using the LM as a lifeboat, acting as a small force, forcing us off the initial trajectory.\u201d Coming in on a shallower trajectory would result in a longer period in the upper atmosphere where there was less deceleration of the spacecraft. In turn, the reduced pace of deceleration lengthened the time that the heat of reentry produced the ionized gasses that would block communications. The Apollo 13 spacecraft heads toward a splashdown in the South Pacific Ocean. Note the capsule and its parachutes just visible against a gap in the dark clouds. Credit: NASA. But NASA engineer Jerry Woodfill offers additional insight into the communication delays. He recently spoke with Jerry Bostick, the Flight Dynamics Officer (FIDO) for Apollo 13, who told him, \u201cMany believe the added time resulted from the communication signal skipping, like a stone, over layers of the upper atmosphere because of the shallow entry angle.\u201d \u201cBostick likened the radio signals to a stone skipping on a pond, and finally, the signal found a location to sink Earthward,\u201d Woodfill said. However, this explanation too, leaves questions. Woodfill said he has studied the \u201csignal skipping\u201d phenomenon, and has found information to both support and refute the concept by virtue of when such an occurrence could be expected. \u201cThe consensus was it is a night time phenomena,\u201d Woodfill said. \u201cApollo 13 entered in daylight in the Pacific and in Houston. Nevertheless, the question to this day demonstrates just how near Apollo 13 came to disaster. If the"}, {"title": "rpj-c4", "text": "An artist's illustration of the superhot plasma around a spacecraft like NASA's Apollo command module that can block communications and cause a radio blackout during the critical re-entry of a spacecraft. When future spacecraft re-enter the atmosphere, a new kind of antenna might help them keep in contact with ground control, despite the fiery sheaths of superhot plasma around them, researchers say. The technology might also help keep communication lines open to other hypersonic vehicles, such as military planes and ballistic missiles. As NASA's Apollo 13 crisis revealed in 1970, this radio silence can be fraught with extraordinary tension. As the crippled spacecraft plummeted back toward Earth, the communications blackout lasted more than a minute longer than expected, leaving ground control in tortured suspense over whether the three astronauts aboard had survived. \"When a re-entry vehicle is unable to be connected, the only thing you can do is pray for it,\" study lead author Xiaotian Gao, a physicist at the Harbin Institute of Technology in China, said in a statement. Prior studies have tried to solve this communication blackout problem, but they all had their shortcomings. For instance, scientists have suggested changing the shape of hypersonic vehicles, because sharp-nosed vehicles have thinner plasma sheaths than blunt-nosed ones. But sometimes, blunt-nosed bodies are preferable because they can withstand heat better and slow down more quickly. Other approaches involve using magnetic fields to control the plasma sheath, or injecting water or other liquids into the plasma sheath to make it more permeable to radio signals, but these methods"}, {"title": "rpj-common-crawl-2020-05", "text": "\u2013 just vanished. They hadn\u2019t even reached the moon. All their training and simulations had always relied on backup systems to keep the mission going, nobody had been game enough to introduce a complete failure of all the power systems into the simulations. As one of the Flight Controllers said later, \u201cThis was so far down the line, if anyone had asked us to simulate it ahead of time we would all have said he was being unrealistic.\u201d Liebergot: \u201cI had all the feelings that went with not having the answers to the problem and not seeing any way out of it. It happened too quickly \u2013 it was a cascading failure which means the original failure got masked by the subsequent failures it created. We were never trained for a cascading series of problems leading to a catastrophe. That\u2019s not training. It was like saying the structure of the spacecraft was going to fail.\u201d A minute or so after the explosion Alan Glines, the communications engineer (INCO), reported to Kranz that the signal from the spacecraft had switched to the smaller omni antennas, which was probably due to the side panel hitting the big antenna on its way past. The weaker signal combined with the erratic behaviour of the spacecraft caused the receiver operators at Goldstone and Honeysuckle Creek and the other stations difficulty in holding onto the weak, fluctuating signal for the rest of the mission. Then Lovell announced the voltage on the A Bus was beginning to drop. An uneasy silence fell on"}, {"title": "rpj-common-crawl-2023-06", "text": "of ice? Had the Inertial Measurement Unit (IMU) gyros failed, having inadequate time to warm-up causing the capsule to skip off the atmosphere, or incinerate with the crew in a fiery death plunge to Earth? Of course, the crew finally did answer, but confirmation that Lovell, Haise and Swigert had survived reentry came nearly a minute and a half later than expected. Some might feel director Ron Howard may have over-sensationalized the re-entry scenes for dramatic effect. But in listening to the actual radio communications between Mission Control and the ARIA 4 aircraft that was searching for a signal from the Apollo 13 crew, the real drama is just as palpable \u2013 if not more \u2014 than in the movie. For virtually every reentry from Mercury through Apollo 12, the time of radio blackout was predictable, almost to the second. So why did Apollo 13\u2019s radio blackout period extend for 87 seconds longer than expected, longer than any other flight? The view in Mission Control after Apollo 13 landed safely. Credit: NASA. During the Apollo era, the radio blackout was a normal part of reentry. It was caused by ionized air surrounding the command module during its superheated reentry through the atmosphere, which interfered with radio waves. The radio blackout period for the space shuttle program ended in 1988 when NASA launched the Tracking and Data Relay Satellite System (TDRS), which allowed nearly constant communication between the spacecraft and Mission Control. It is difficult to find official NASA documentation about the extended radio blackout time for"}, {"title": "rpj-common-crawl-2021-04", "text": "flame where the rocket exhaust hit the descent stage. The burning of the materials of the descent stage no doubt caused the visible flame. 12. Given that during the Apollo 15 lift-off we are even able to hear the music from the tape recorder in the cabin, why don\u2019t we hear the sound of the engine as well? The reason the music can be heard clearly is that astronaut Al Worden played it into his microphone specifically so that it would be heard in mission control. He said \"I thought I was playing it only for Houston.\" Source (Entry at 171:37:25). The reason the engine was not also heard is that, as mentioned in the answer to question 11, it did not make a loud noise in the cabin. 13. The lift-off from the moon is possibly the most delicate moment of the entire mission. The astronauts must keep their total concentration, and they must be able to communicate with one another instantly, in case something were to go wrong. Why then put their safety at risk by playing loud music inside the cabin, which could have distracted them from the operations and could have kept them from communicating clearly in a moment of distress? (Audio/Video 1:30:00) Arguably, landing on the moon is a lot more delicate than lifting off, because during landing it might be necessary for the LEM pilot to take manual control to avoid an unsuitable landing site, as Neil Armstrong was forced to during Apollo 11. During liftoff it was less likely"}, {"title": "rpj-common-crawl-2023-06", "text": "inside a very narrow pie-shaped wedge and I think we were continually being pushed off that wedge. The reason was, we found out about 2-3 months after from analysis, was the lander\u2019s venting of cooling vapor. The way we cool the electronic systems in LM was to pass water through a heat exchanger, and that water evaporates into space. That evaporation \u2014 which would be insignificant during a normal lunar landing mission \u2014 was going on for the 4 days we were using the LM as a lifeboat, acting as a small force, forcing us off the initial trajectory.\u201d Coming in on a shallower trajectory would result in a longer period in the upper atmosphere where there was less deceleration of the spacecraft. In turn, the reduced pace of deceleration lengthened the time that the heat of reentry produced the ionized gasses that would block communications. The Apollo 13 spacecraft heads toward a splashdown in the South Pacific Ocean. Note the capsule and its parachutes just visible against a gap in the dark clouds. Credit: NASA. But NASA engineer Jerry Woodfill offers additional insight into the communication delays. He recently spoke with Jerry Bostick, the Flight Dynamics Officer (FIDO) for Apollo 13, who told him, \u201cMany believe the added time resulted from the communication signal skipping, like a stone, over layers of the upper atmosphere because of the shallow entry angle.\u201d \u201cBostick likened the radio signals to a stone skipping on a pond, and finally, the signal found a location to sink Earthward,\u201d Woodfill said. However,"}, {"title": "rpj-common-crawl-2022-05", "text": "station. Can be linked to ocean spotting sats too. They have cameras. Computer aided image recognition and AI is such that this is truly a fire and forget system. All it needs is the shape of a US carrier, a very general location and it will actively seek it out and then relay, the other 5 missiles communicating with it will go for the kill. I believe these can operate in swarms so there's no upper limit to how many can be networked in flight. The only real limit is their expense, so you'd only use any significant number on high value targets. Cool story but you have no clue on even the most basic problem and all what you said is kinda uselese BECAUSE the basic problem was always the plasma bubble that blocks communication and navigation. This phenomenon has been known for god knows how long now especially since most spacecraft experience it on reentry to some degree and that is why we have no real time footage of reentries, only perhaps from outside or after it has landed. We have no real way to communicate with our technology through plasma bubbles in any stable manner. Hypersonic missiles experience the same situation that they are coated by a plasma bubble when they fly making communications to the missile almost impossible along with any navigational and guidance systems on the missile itself unable to function properly. There has not been any easy or ready solution for this since the start of man spaceflights. So at"}], "hoverinfo": "text"}, {"x": [0.042905859649181366, 0.09138312190771103, -0.03911210224032402, 0.07901284098625183, 0.15244995057582855, 0.1339585930109024, 0.16026346385478973, 0.16054165363311768, 0.07108034193515778, 0.07108035683631897, 0.06533659249544144, 0.11571819335222244, -0.020895354449748993, 0.14125989377498627, 0.06068381294608116, 0.20296710729599, 0.12416224926710129, 0.0733158215880394, 0.10524268448352814, 0.18622887134552002, 0.11592927575111389, 0.09795649349689484, 0.06810474395751953, 0.04210928454995155, 0.18616975843906403, 0.16575214266777039, 0.16968633234500885, 0.14829200506210327, 0.15268690884113312, 0.06392861902713776, 0.08912903070449829, 0.04412487521767616, 0.15003108978271484, 0.09780988097190857, 0.1147981509566307, 0.2029668688774109, 0.10172361135482788, 0.1131061390042305, 0.04421671852469444, 0.04817686975002289, 0.12421081215143204, 0.124210886657238, 0.009690845385193825, 0.1547602266073227, 0.054372042417526245, 0.1853194236755371, 0.1853194236755371, 0.07476405799388885, 0.049609676003456116, -0.0009301382233388722, 0.13449591398239136, 0.11188329756259918, 0.16990384459495544, 0.16943714022636414, 0.09738107770681381, 0.08750391006469727, 0.10329505801200867, 0.10960522294044495, 0.08487096428871155, 0.14525777101516724, 0.0953526496887207, 0.09535234421491623, 0.13160954415798187, 0.06068381294608116, 0.04932976886630058, 0.13863691687583923, 0.13033315539360046, 0.12012232840061188, 0.002923104679211974, 0.06980641931295395], "y": [0.15626811981201172, 0.0573824904859066, 0.016510970890522003, 0.04564218968153, 0.03930264338850975, 0.038067348301410675, 0.001339948968961835, 0.022453630343079567, -0.023007778450846672, -0.02300778031349182, -0.012550665065646172, 0.0021385757718235254, 0.01828804798424244, 0.06850243359804153, 0.010230669751763344, 0.05254613608121872, 0.09211720526218414, 0.07253028452396393, 0.021231280639767647, 0.033103350549936295, 0.0260215662419796, 0.05442969873547554, 0.07949543744325638, 0.14444346725940704, 0.011946032755076885, 0.0527622289955616, 0.021263031288981438, -0.017515704035758972, 0.009164860472083092, 0.047996699810028076, 0.12227629125118256, 0.058628931641578674, 0.06083759292960167, 0.005319270770996809, -0.08109059929847717, 0.05254600569605827, 0.01814308390021324, -0.03184070810675621, -0.08074283599853516, -0.006570270285010338, -0.058548443019390106, -0.058548253029584885, 0.10987164825201035, 0.061954647302627563, 0.10246700048446655, 0.05127899348735809, 0.05127899348735809, -0.032721154391765594, 0.056496404111385345, 0.0035146886948496103, 0.014001364819705486, -0.004809462931007147, 0.01874733343720436, -0.012474033050239086, 0.0055232723243534565, 0.02182038500905037, 0.018050024285912514, -0.022279616445302963, -0.006668138317763805, -0.029118413105607033, -0.05187679082155228, -0.05187677964568138, 0.06452469527721405, 0.010230670683085918, 0.11221524327993393, 0.036801982671022415, 0.06331311911344528, 0.02780548296868801, 0.017259515821933746, -0.04924657195806503], "mode": "markers", "name": "Cluster 7", "marker": {"size": 8, "color": "rgb(252,205,229)"}, "text": ["Document 20", "Document 61", "Document 77", "Document 112", "Document 134", "Document 168", "Document 188", "Document 199", "Document 220", "Document 221", "Document 228", "Document 241", "Document 245", "Document 265", "Document 272", "Document 274", "Document 281", "Document 297", "Document 328", "Document 345", "Document 354", "Document 362", "Document 369", "Document 375", "Document 398", "Document 402", "Document 407", "Document 409", "Document 430", "Document 431", "Document 449", "Document 479", "Document 487", "Document 493", "Document 526", "Document 604", "Document 640", "Document 693", "Document 737", "Document 778", "Document 790", "Document 793", "Document 795", "Document 935", "Document 952", "Document 963", "Document 964", "Document 970", "Document 987", "Document 1012", "Document 1021", "Document 1058", "Document 1090", "Document 1178", "Document 1234", "Document 1245", "Document 1262", "Document 1316", "Document 1319", "Document 1342", "Document 1375", "Document 1376", "Document 1400", "Document 1425", "Document 1426", "Document 1427", "Document 1428", "Document 1432", "Document 1434", "Document 1486"], "customdata": [{"title": "pes2o", "text": "heat [1]. With enough heat, the gases in the air within the shock wave will ionize and, thus, an electron plasma is created. The presence of a plasma layer causes attenuation of the electromagnetic signals propagating through it. These signals are associated with a variety of radio frequency (RF) systems such as voice communications, telemetry, and global positioning system (GPS) data. The attenuation increases as the thickness and density of the plasma surrounding the reentry vehicle increases. An illustration of the plasma sheath surrounding a reentry vehicle is given in Figure 1. Regions of lower and higher plasma density near the vehicle are indicated. The associated effects can become so severe that complete loss of voice communications and even GPS acquisition can occur. This RF blackout can last anywhere from 90 s to 10 min depending on the trajectory and velocity of the reentry vehicle [3]. It has had severe consequences, for example, in the unmanned Genesis mission to collect samples of solar winds. During reentry of the capsule, a sensor failure caused a parachute to not deploy. If mission control had been in contact with it, a backup parachute could have been deployed to avoid the capsule from crashing into the Utah desert [4]. Similarly, hypersonic flight has been pursued with both manned and un-manned vehicles since 1961, e.g., with the X-15 hypersonic airplane which flew at Mach 6.7 using only rockets [5]. As with the space vehicle reentry scenario, sustained hypersonic flight also faces the potential loss of communications, telemetry and GPS signals. Renewed"}, {"title": "rpj-common-crawl-2022-05", "text": "plenty of interesting stuff that we\u2019re missing out on\u2014including phenomena we haven\u2019t thought of yet. What can we do about it? The good news is that we\u2019ve known about this problem for decades, and scientists have already come up with some ideas. In the 1980s, astronomers devised an experiment using the Challenger shuttle to make observations at frequencies below the plasma frequency. In the Plasma Depletion Experimentvi, Challenger astronauts fired the shuttle\u2019s orbital maneuvering subsystem engines as the spacecraft passed over radar and radio observatories, releasing 244 kilograms of carbon dioxide, water, and hydrogen exhaust. The exhaust caused the positive ions and electrons to combine and reform neutral atoms and molecules, creating a depletion in the ionospheric plasma. Decreasing the plasma density means longer-wavelength radio waves can pass through the atmosphere and reach the ground. In this experiment, the exhaust release was timed so that the absolute minimum plasma density could be reached: at night, in the winter, during the least active time of the solar cycle, at a location where the plasma density is unusually low under normal conditions\u2014the \u201cmid-latitude trough\u201d over Australiavii. Through the \u201cionospheric hole\u201d created in the experiment, they were able to observe radio waves from the Milky Way which are normally blocked from view. Just a peek, though\u2014the hole disappeared after a few hours. After the engine burn at about 3:00 AM, the galactic radio emissions at 1.704 MHz increased. The emissions at the other frequencies weren\u2019t affected as much since the lower frequencies still couldn\u2019t make it through the ionosphere"}, {"title": "rpj-common-crawl-2020-05", "text": "failed to reach the desired altitude, and though partially operational, could not fulfill mission objectives. The spacecraft reentered the earth's atmosphere over the Caribbean October 17, 1968. Two cesium-contact ion engines were launched aboard the ATS-4 spacecraft on August 10, 1968. Flight test objectives were to measure thrust and to examine electromagnetic compatibility with other spacecraft subsystems. The 5-cm-diameter thrusters were designed to operate at 0.02 kW and provide about 89 mN thrust at about 6700 s specific impulse. Thrusters had the capability to operate at 5 setpoints from 18 mN to 89 mN. Thrusters were configured so they could be used for East-West stationkeeping. Prior to launch, a 5-cm cesium thruster was life tested for 2245 hours at the 67 mN thrust level. During the launch process the Centaur stage did not achieve a second burn, and the spacecraft remained attached to the Centaur in a 218 km by 760 km orbit. It was estimated that the pressure at these altitudes was between 1.3 \u00d7 10-4 Pa and 1.3 \u00d7 10-7 Pa.35 Each of the two engines was tested on at least two occasions over the throttling range. Combined test time of the two engines was about 10 hours over a 55 day period. The spacecraft re-entered the atmosphere on October 17, 1968. The ATS-4 flight was the first successful orbital test of an ion engine. There was no evidence of IPS electromagnetic interference related to spacecraft subsystems. Measured values of neutralizer emission current were much less than the ion beam current implying inadequate neutralization."}, {"title": "pes2o", "text": "spacecraft \u2013 ionospheric plasma system. It was shown that the interaction of a ?0,8 \u2013 1.5 T magnetic field of a space debris object (in particular, a spent spacecraft) with the ionospheric plasma produces an electromagnetic drag force sufficient for removing it to a low orbit followed by its burn-up in the dense atmosphere. Along the third line, procedures were developed for ionospheric plasma probe diagnostics using onboard instrumentation that includes mutually orthogonal cylindrical electrical probes and a two-channel neutral-particle detector. It was shown that this instrumentation with the use of proprietary output signal interpretation algorithms and procedures allows one to locate sources of space-time disturbances in inospheric plasma parameters caused by natural and technogeneous catastrophic phenomena on the subsatellite track."}, {"title": "pes2o", "text": "input to ionospheric and thermospheric models."}, {"title": "rpj-common-crawl-2022-05", "text": "the sun is the ultimate driving force for most ionization processes, it's tempting to assume that Venus has more particles in a given area than Mars does because it orbits twice as closely to our star. Instead, the two planets have similar densities, which differ from Earth's measurements by only a factor of ten. At the same time, the layers affected by the meteoroids on Earth are very narrow, maybe only a mile or two wide, while Venus and Mars both have layers stretching six to eight miles. According to Withers, the difference may come from the presence of Earth's strong magnetic field, a feature lacking on the other two planets. But scientists aren't certain how much of a role the field actually plays. Finding the source To study Earth's ionosphere, scientists can launch rockets to take measurements in the region. But the process is more complicated for other planets. As a spacecraft travels through the solar system, a targeted radio signal sent back to Earth can be aimed through the ionosphere of a nearby planet. Plasma in the ionosphere causes small but detectable changes in the signal that allow scientists to learn about the upper atmosphere. This process \u2014 known as radio occultation \u2014 doesn't require any fancy equipment, only the radio the craft already uses to communicate with scientists on Earth. \"It's really one of the workhorse planetary science instruments,\" Withers said. Because it is so simple, the process has been applied to every planet ever visited by spacecraft. Only in recent years has"}, {"title": "rpj-common-crawl-2020-05", "text": "in the ionosphere, but most of the time the sun is relatively quiet, and our space environment still varies quite a bit,\u201d he said. \u201cWe think that variability is coming from weather on our own planet, which can be very powerful.\u201d This can happen, Immel said, when surface storms compress and heat the atmosphere, driving huge waves upward into space and causing charged particles to move across magnetic fields in unpredictable ways. This can also lead to extreme fluctuations of temperature in the ionosphere. \u201cThere are huge waves at an altitude above 100 kilometers (63 miles), with amplitudes as large as 50 degrees Kelvin, where the average temperature is about 300 degrees Kelvin (77 degrees Fahrenheit) \u2013 a 20-30 percent variation,\u201d he said. \u201cThat may sound small, but imagine a wave rolling through your neighborhood with a temperature swing of 100 degrees Kelvin, or 180 degrees Fahrenheit \u2013 from freezing to boiling! These waves can change the composition of the upper atmosphere and how the ionosphere grows during the day.\u201d ICON will explore these and other processes that control the dynamics and chemistry of the upper atmosphere and ionosphere. One question, for example, is why \u201cNorth America is, in a way, like tornado alley for space storms,\u201d Immel said, where huge masses of ionized plasma roll over the country and disrupt GPS and other communications. \u201cWe want to understand where this plasma comes from \u2013 Is it generated in situ? Does it grow in outer space? Or are we pulling plasma up from lower latitudes like"}, {"title": "rpj-common-crawl-2021-04", "text": "\"The neutral atmosphere responds very dramatically to quite small energy inputs,\" said Heelis. \"Even though the energy is put in at high latitudes -- closer to the poles -- the reaction at lower latitudes, near the equator, is significant.\" Heelis also described research on a previously-hard-to-view sweet spot in the atmosphere, where the charged particles of the ionosphere and the neutral particles of the atmosphere directly affect each other. The CINDI observations show that the neutral wind creates piles of neutral gas pushed up against ionospheric density variations - similar to how blowing snow piles up in drifts against a building wall. This results in density striations in the atmosphere that were never previously observed. Such density variations are necessary data to include when modeling interference with radio waves or excess drag on a travelling spacecraft. Rob Pfaff, project scientist for CINDI at NASA's Goddard Space Flight Center in Greenbelt, Maryland, and principal investigator for another C/NOFS instrument, the Vector Electric Field Investigation, is studying observations that speak to one of the original goals of the C/NOFS program: Why does the low latitude ionosphere at night become so turbulent that it can wreak havoc on communications and navigation radio signals? Developing the capability to predict such space weather disturbances has been a long-standing goal of the Air Force Research Laboratory. The C/NOFS low altitude observations were critical to form a complete picture of these disturbances, as the satellite ventured to the possible root of the largest ionospheric upheavals -- those that emanate from the bottom ledge"}, {"title": "rpj-common-crawl-2020-05", "text": "the planet\u2019s surface can also change conditions far above. Researchers are increasingly interested in the effects of rockets, too. This is because disturbances in the ionized and neutral particles of the ionosphere have consequences for satellites, such as causing errors in Global Positioning System navigation. In the past, scientists have observed numerous examples of V-shaped shockwaves in the ionosphere, as rockets have flown through the upper atmosphere along nearly horizontal trajectories. These have come from Chinese rockets, North Korean missile launches, and some of SpaceX\u2018s other, more conventional Falcon 9 launches. In the case of Formosat-5 mission, the rocket reached an altitude of 300km after about 5 minutes, and because of its vertical motion, it created not a V-shaped wave but rather giant, circular shock waves, according to a new paper in Space Weather. These circular waves extended over 1.8 million square km, or about four times the area of California, over the western United States and Pacific Ocean region. The scientists say these are the largest circular shockwaves known to have been induced by a rocket launch. A few minutes later, an \u201cionosphere hole,\u201d which appeared 13 minutes after launch, was potentially of more consequence for GPS systems. This occurred when exhaust plumes from the Falcon 9 rocket\u2019s second stage depleted plasma levels across a 900-km wide area, which the scientists say probably caused about a 1-meter error in GPS navigation programs. GPS effects The lead author of the new study, Charles C.H. Lin of the National Cheng Kung University in Taiwan, said a rocket"}, {"title": "rpj-common-crawl-2020-05", "text": "the planet\u2019s surface can also change conditions far above. Researchers are increasingly interested in the effects of rockets, too. This is because disturbances in the ionized and neutral particles of the ionosphere have consequences for satellites, such as causing errors in Global Positioning System navigation. In the past, scientists have observed numerous examples of V-shaped shockwaves in the ionosphere, as rockets have flown through the upper atmosphere along nearly horizontal trajectories. These have come from Chinese rockets, North Korean missile launches, and some of SpaceX\u2018s other, more conventional Falcon 9 launches. In the case of Formosat-5 mission, the rocket reached an altitude of 300km after about 5 minutes, and because of its vertical motion, it created not a V-shaped wave but rather giant, circular shock waves, according to a new paper in Space Weather. These circular waves extended over 1.8 million square km, or about four times the area of California, over the western United States and Pacific Ocean region. The scientists say these are the largest circular shockwaves known to have been induced by a rocket launch. A few minutes later, an \u201cionosphere hole,\u201d which appeared 13 minutes after launch, was potentially of more consequence for GPS systems. This occurred when exhaust plumes from the Falcon 9 rocket\u2019s second stage depleted plasma levels across a 900-km wide area, which the scientists say probably caused about a 1-meter error in GPS navigation programs. GPS effects The lead author of the new study, Charles C.H. Lin of the National Cheng Kung University in Taiwan, said a rocket"}, {"title": "rpj-common-crawl-2023-06", "text": "precisely forecast or test for all of the possible interference effects until the spacecraft were in orbit and the experiments were commissioned. During the interference campaign, the scientists investigated \"worst case scenarios\" by looking for any unforeseen effects that could perturb the space plasma (electrified gas) and so adversely affect the rest of the science payload. Once these were found, the challenge was to find out how to operate the instruments in question successfully while limiting their impact on the overall science data. One source of minor interference involving the Electron Drift Instrument (EDI) has been identified. EDI measures electrical fields around the spacecraft by firing beams of electrons into space and measuring the return time for each beam. These electron 'packets' appear to be causing some interference with the wave instruments, especially WHISPER, WBD and STAFF. \"We are continuing to look at the data to see whether EDI is influencing these instruments in all of their operational modes, commented Dr. Escoubet. \"However, we can reduce the interference by reducing the current sent by EDI, which is fine for normal operations.\" Two additional minor interactions between instruments have been uncovered during the campaign. One of these involves EDI's electron beams, which travel along a circle for distances ranging from a few tens of metres up to about 10 km and then come back to the spacecraft. \"The electrons from EDI are detected when they are fired in the direction of the PEACE instrument on the same spacecraft,\" said Dr. Escoubet. \"But this was done on purpose"}, {"title": "rpj-c4", "text": "Related Ionospheric Phenomena is re-released as a paperback, 40 years after the original publication. 2008 \u2013 Natural Radio Lab website is officially launched in January."}, {"title": "rpj-common-crawl-2019-30", "text": "capable of producing the blue corkscrew \"beam\" and white spiral whereas a corkscrew or some other type of spiral like formation has never been reported in any ionospheric heater experiment and the weak brightness of optical emissions from the tiny speckles during the one and only experiment so far to produce them is not even close to the brightness of the Norway spiral, nor did the experiment produce blue or white colors, they were green. Something to keep in mind is that ionospheric heaters are not capable of ionizing anything, they just excite the already free electrons in the ionosphere knocked free by UV light from the sun. I studied aerospace technology and have a knack for troubleshooting complex systems. Very true. For instance, you've not once explained how radio waves could possibly create spiral and corkscrew patterns in the sky. How exactly does that happen? Look... if you're not going to do even basic research into the subject, then please tell me and I'll leave this thread. ICBMs typically enter a low earth orbit. So if the third stage failed while in such a low or unstable orbit, then it would make sense to empty the fuel tanks to prevent an accidental explosion that would create even more space junk. http://en.wikipedia.org/wiki/Intercontinental_ballistic_missile http://en.wikipedia.org/wiki/Low_Earth_orbit Intercontinental ballistic missile Flight phases See also: Missile Defense#Classified by trajectory phase and Depressed trajectory The following flight phases can be distinguished: boost phase: 3 to 5 minutes (shorter for a solid rocket than for a liquid-propellant rocket); altitude at the end of"}, {"title": "rpj-common-crawl-2019-30", "text": "expansion due to energy from localised bombing raids would have an analogous, if opposite, effect on the ionosphere and thermosphere. A rise in the background thermospheric temperature would result in an enhanced loss rate, with the equilibrium between production and loss being established at a lower peak electron concentration. Such equilibrium would be reached within minutes of perturbation, well within the resolution of the ionospheric data. Grandin et al. (2015) studied the impact on foF2 of high-speed streams on Earth. They found that a thermospheric temperature increase of 20\u201350 K may result in a decrease in foF2 by 0.5\u20131.0 MHz. If the bombing resulted in the generation of shock waves or atmospheric gravity waves, their horizontal propagation speed would need to be of the order of 300 km h\u22121, while the vertical velocity component would need to be around 100 km h\u22121 in order to affect the atmosphere above Slough. There is evidence that turbulence generated in the lower thermosphere by space shuttle launches can propagate 1000 km horizontally within 8 h (Kelley et al., 2009). While this example was specific to the lower thermosphere at altitudes between 100 and 115 km, it nevertheless has a similar time constant to that observed for the ionospheric response to bombing in the current study. Such a mechanism may therefore contribute to the observed effect. Infrasonic waves generated by explosions are launched preferentially in a vertical direction (e.g. Blanc, 1985). Any impact on the upper atmosphere overhead would then require horizontal transport to move that region over Slough. For"}, {"title": "rpj-common-crawl-2022-05", "text": "in these cases also a general increase of the electron density to apogee. Finally, with rockets capable of reaching 480 km altitude, the F-layer of the ionosphere was probed on three occasions in 1958 (21 February, 27 August and 31 October), and it was demonstrated that, in contrast to then current ideas, the electron density did not decrease rapidly above the F layer maximum. During this period Gringauz and his group were engaged in the preparation of experiments for the first Soviet spacecraft then being developed in Korolev\u2019s Institute. He was very proud to have provided the famous transmitters on Sputnik 1 which made a triumphant announcement to the world following the successful launch of 4 October, 1957, In particular he liked to tell that he was the last to touch the Sputnik: \u201cI had to do the final check to make sure the transmitter was going to work there was a special cover in the nose cone, so I reached inside, checked the \u2018beep..beep..beep\u2019 signal and knew everything was alright... then the cone was sealed for the last time.\u201d There had been some debate as to whether or not the 20 and 40 MHz transmissions would be easily detectable through the ionosphere but Gringauz was confident that this would be the case, and his judgment was confirmed as correct, with the receiving distance being as much as 10,000 km. The transmissions continued for three weeks and were used to monitor conditions within the spacecraft. Sputnik 3, which weighed 1327 kg. was launched on 15 May,"}, {"title": "rpj-common-crawl-2022-05", "text": "by spacecraft launches. 15.7 Conclusions Contemporary ionospheric science has many aspects: as a branch of solarterrestrial physics and the earth\u2019s environment; the science of radiocommunications, e.g. predicting and forecasting; the mathematics of wave propagation in the ionosphere; man-made radio transmissions, and natural electromagnetic emissions, magnetic pulsations and other phenomena. As a natural plasma, often nonlinear and nonthermal, the ionosphere is a site for active experiments with radiowaves, powerful enough to produce observable ionospheric modi\ufb01cations, in the form of increased temperatures and plasma instabilities, and with chemical releases and particle beam experiments. Such ionospheric plasma physics experiments provide new physical insights, although they often raise more questions than they solve. Problems remain at the upper and lower boundaries; i.e. the interactions with the lower atmosphere and the magnetosphere, and how their e\ufb00ects spread worldwide. Large electric \ufb01elds generated in thunderstorms can a\ufb00ect the ionosphere. There are suggestions of topographic in\ufb02uences, e.g. of mountain ranges, on the ionosphere. The reverse question of ionospheric, geomagnetic and solar e\ufb00ects on weather and climate is contentious; possible relations between magnetic and solar disturbance and the weather have been found, but their physical mechanisms are not well established. The basic mechanisms of the ionosphere seem to be known, but surprises are possible in any active area of science, and many questions remain. The everyday monitoring of this important part of the environment is as vital for progress in the future as it has been in the past. 15.8 Bibliography JURSA, A.S. (Ed.): \u2018Handbook of geophysics and the space environment\u2019 (Air Force Geophysics"}, {"title": "pes2o", "text": "The ionospheric density falls off with the rate 1/r because the background neutral atmosphere is constantly ionised at a slow rate, adding plasma to the ionosphere as it expands into space. This breaks down once most of the atmosphere has been ionised. This is not relevant because it takes 10-100 days before this happens with an ionisation rate of the order of 10 \u22127 to 10 \u22126 s \u22121 (Galand et al. 2016). The 1/r dependence rather breaks down owing to the acceleration of the ions . It is known from observations that most of the ions at energies observable by the RPC-ICA instrument are moving anti-sunward (Nilsson et al. , 2015aBehar et al. 2016;Ber\u010di\u010d et al. 2018). At some point on the front of the comet ionosphere the density must thus drop much faster than 1/r. This may in practice happen because of the polarisation electric field, which has an anti-sunward component such that the initial boundary formation may be self-sustaining. The cloud model predicts a constant electric field inside the cloud. Let us consider the case of a constant uniform electric field E pointing opposite to the neutral gas expansion velocity of a comet. Let us also assume that the neutral gas velocity is negligible compared to the velocity the ions soon acquire through acceleration in the electric field. Newly produced ions start to move along the electric field and get gradually higher energy. For an observer somewhere downstream along this electric field, the energy scale is also a distance scale. The further away"}, {"title": "rpj-common-crawl-2021-04", "text": "pose a threat to space-based technology, so understanding them is important. Cluster has explored this process multiple times during the past decade and a half \u2013 finding it to affect heavier ions such as oxygen more than lighter ones, and also detecting strong, high-speed beams of ions rocketing back to Earth from the magnetotail nearly 100 times over the course of three years. More recently, scientists have explored the process of magnetic reconnection, one of the most efficient physical processes by which the solar wind enters Earth's magnetosphere and accelerates plasma. In this process, plasma interacts and exchanges energy with magnetic field lines; different lines reconfigure themselves, breaking, shifting around, and forging new connections by merging with other lines, releasing huge amounts of energy in the process. The magnetic reconnection region in Earth's magnetosphere. Credit: ESA/ATG Medialab Here, the cold ions are thought to be important. We know that cold ions affect the magnetic reconnection process, for example slowing down the reconnection rate at the boundary where the solar wind meets the magnetosphere (the magnetopause), but we are still unsure of the mechanisms at play. \"In essence, we need to figure out how cold plasma ends up at the magnetopause,\" said Philippe Escoubet, ESA's Project Scientist for the Cluster mission. \"There are a few different aspects to this; we need to know the processes involved in transporting it there, how these processes depend on the dynamic solar wind and the conditions of the magnetosphere, and where plasma is coming from in the first place \u2013 does"}, {"title": "rpj-common-crawl-2023-06", "text": "disturbance of the ionosphere reduced the total electron content by more than 60% over an area 1000 km in radius that lasted several hours, stopping all radio communication. After this experience, the military began to deliberately experiment with burning holes in the ionosphere, using the booster rocket, and later, the orbit maneuvering system. These experiments caused artificial \u2018air glows\u2019 as radioactive particles struck the gases in earth\u2019s lower atmosphere. During the 1980s there were about 500 to 600 rocket launches per year, culminating in 1500 in 1989. Each flight injected about 187 tons of ozone destroying chlorine and 7 tons of nitrogen into the ozone layer \u2013 both known to deplete it. Yet the burden of this destruction was blamed on under arm deodorant and refrigerators! Civilians were forced to cope with higher skin cancer rates, while no concern for flora and fauna effects, farming or stability of climate reached the civilian consciousness! In 1981, NASA began inducing ionospheric holes to investigate the artificial plasma instabilities and the modification of radio propagation paths. A six second Orbit Maneuvering System discharge in August 1985, caused an air glow covering 400,000 square kilometers over Connecticut. Between 1978 and 1990, the ozone layer in the Northern Hemisphere decreased by a further 4 \u2013 8 % [beyond the weapon testing 4%], and the Southern Hemisphere\u2019s ozone layer decreased by 5-10%. It is thought that a 20% decrease would wipe out the food web and make life impossible, yet there was no stopping! In fact the U.S. began launching nuclear powered"}, {"title": "rpj-common-crawl-2021-04", "text": "extending from the upper atmosphere to the space environment. For the Earth, the ionosphere extends from 80 km above the ground, where neutrals outnumber ions by over 8 orders of magnitude, to around 1000 km, where ions and neutrals have similar numbers. This region absorbs the majority of EUV and X-rays from the Sun. Energetic particles from the magnetosphere, the solar wind, and the cosmos slam into it. Billions of meteors deposit tons of materials in it, daily. From below, winds and turbulence in the Earth\u2019s atmosphere push it around. All these interactions make the ionosphere complex and interesting. NASA and the space community need accurate models of the ionosphere since the International Space Station and most of our spacecraft exist within it, and can experience harmful radiation and electric charging. The ionosphere was first discovered because of its impact on radio communication and its interference with Earth to Space communications and GPS remain critical issues. This talk will present the basics of ionospheric plasma physics, present a method of simulating ionospheric plasmas, the Particle-in_Cell (PIC) method. It will then show how we used this method to study a number of turbulent processes in the ionosphere and what we have learned from these studies. Host: Jan Egedal"}, {"title": "rpj-common-crawl-2020-05", "text": "Doppler Radar Probing the Bottomside Ionosphere Disturbed by Rocket Launches and Solar Terminator. Radio Physics and Radio Astronomy, 8 (2), 143\u2014162 (2003) [in Russian]. Copyright \u00a9 2020, Space Science and Technology"}, {"title": "pes2o", "text": "LARGE-SCALE REDUCTIONS IN THE ELECTRON DENSITY OF IONOSPHERIC F-REGION, OBSERVABLE ALONG ROCKET TRAJECTORIES AT LAUNCH Purpose. The object of the study are electron density depletions (\u2018holes\u2019) occurring in the ionospheric F-region under the action of rocket exhaust products. The purpose is to present and discuss the results of observations concerning the ionospheric holes that were detected in the course of a number of launches of medium-lift Kosmos vehicles from the Kapustin Yar spaceport. Nei- ther that cosmodrome, nor the rocket type had been subjects of similar analysis before. Design/methodology/approach. The observations at the Kapustin Yar cosmodrome were performed with a portable vertical Doppler sounder. The beats between a reference signal and the one reflected from the ionosphere were subjected to spectral analysis, which allowed identifying the principal mode of the Doppler frequency shift and establishing time dependences of that frequency shift. An ionosonde located nearby was used for monitoring the underlying state of the ionosphere. Findings. The measurements performed with the vertical Doppler sounder near the launch site of the medium-lift Kosmos rocket have allowed obtaining first estimates for the principal parameters of the ionospheric holes arising in the F-region along the vehicle trajectory, as well as for the accompanying quasi-periodic variations in the electron density. The spatial scale sizes of the holes have been found to be in excess of 300 km, while the electron density reductions may attain \u00bb 50 %. These results are in agreement with the data obtained by international researchers for effects from heavy- and super heavy-lift launch vehicles. Also, note"}, {"title": "rpj-common-crawl-2021-04", "text": "yelding estimates of the differential electron energy flux density at the spacecraft location. At altitudes below 200-250 km and for beam energies around 1 keV, it is shown that secondary electrons supply a significant contribution to the return current to the spacecraft and thereby reduce the spacecraft potential. Our numerical results are in good agreement with observations from the Charge 2 sounding rocket experiment. AB - The ionization created in the Earth\u2019s upper atmosphere by an electron beam emitted from a low altitude spacecraft is described by two coupled nonlinear differential electron transport equations for the up-going (along a magnetic field line) and down-going differential energy flux. The equations are solved numerically, using the mass spectrometer and incoherent scatter data (MSIS) atmospheric model and the international reference ionosphere (IRI) model, yelding estimates of the differential electron energy flux density at the spacecraft location. At altitudes below 200-250 km and for beam energies around 1 keV, it is shown that secondary electrons supply a significant contribution to the return current to the spacecraft and thereby reduce the spacecraft potential. Our numerical results are in good agreement with observations from the Charge 2 sounding rocket experiment. U2 - 10.1029/JA095iA08p12209 DO - 10.1029/JA095iA08p12209 JO - Journal of Geophysical Research JF - Journal of Geophysical Research IS - A8 Neubert T, Banks PM, Gilchrist BE, Fraser-Smith AC, Williamson PR, Raitt WJ et al. The interaction of an artificial electron beam with the earth's upper atmosphere: Effects on spacecraft charging and the near-plasma environment. Journal of Geophysical Research-space Physics. 1990 Aug"}, {"title": "pes2o", "text": "Analysis of Radio Frequency Blackout for a Blunt-Body Capsule in Atmospheric Reentry Missions A numerical analysis of electromagnetic waves around the atmospheric reentry demonstrator (ARD) of the European Space Agency (ESA) in an atmospheric reentry mission was conducted. During the ARD mission, which involves a 70% scaled-down configuration capsule of the Apollo command module, radio frequency blackout and strong plasma attenuation of radio waves in communications with data relay satellites and air planes were observed. The electromagnetic interference was caused by highly dense plasma derived from a strong shock wave generated in front of the capsule because of orbital speed during reentry. In this study, the physical properties of the plasma flow in the shock layer and wake region of the ESA ARD were obtained using a computational fluid dynamics technique. Then, electromagnetic waves were expressed using a frequency-dependent finite-difference time-domain method using the plasma properties. The analysis model was validated based on experimental flight data. A comparison of the measured and predicted results showed good agreement. The distribution of charged particles around the ESA ARD and the complicated behavior of electromagnetic waves, with attenuation and reflection, are clarified in detail. It is suggested that the analysis model could be an effective tool for investigating radio frequency blackout and plasma attenuation in radio wave communication."}, {"title": "rpj-common-crawl-2019-30", "text": "Left: The predicted distribution of plasma around the magnetic equator after sunset. Right: The observed distribution of plasma around the magnetic equator, made by NASA's TIMED Spacecraft. Notice the large, unexplained enhancements over the continents However, recent observations call this overly simplistic picture into question. Other missions, such as NASA's TIMED spacecraft [link] have shown ionospheric plasma distributed in unexpected patterns across the globe, with apparent correlations with landmasses. You might expect this to be explained by variations in the Sun\u2019s activity, which give rise to space weather or geomagnetic storms. Surprisingly, these variations are seen even when the Sun is very quiet, meaning that they are driven by other processes, which may include the more familiar weather we experience at ground level. Understanding what is causing the variations in the atmosphere is very important in the technological era we live in today. As a society, we are very dependent on communication and navigation networks around the globe \u2013 both space based, and ground based. We have also recently developed a strong reliance on broadcast navigation signals such as those provided by GPS satellites. The radio signals used for communication and navigation must propagate through the ionosphere, and non-uniform distributions of plasma in the ionosphere can act like bubbles in a lens or scratches in a mirror, distorting the signal, sometimes to the point of unintelligibility or unusability. Understanding what drives variations in the ionosphere is important so that we can better predict what types of signal distortions we may expect and where, as well as"}, {"title": "pes2o", "text": "density, composition, and intensity of the magnetic field. The EnVision and ISRO Venus Obiter radar operations are expected to results in the most pronounced acceleration of ions and electrons, an effect can be used to improve the local plasma diagnostics. INTRODUCTION Ionospheric sounding has been a standard tool for probing the ionosphere for many years. Principles of the sounding are based on the reflection of the radio waves from the ionized component of Earth's upper atmosphere (Appleton, 1927). Ionospheric sounders operate by transmitting a short pulse at a fixed frequency, and then detecting any echoes that are reflected. These echoes relate to the altitude where the plasma frequency is equal to the wave frequency. By measuring the time delay between the transmission of the pulse and the time that the echo is received, the range to the reflection point can be computed. By sequentially stepping the transmitter frequency after each transmit-receive cycle, the time delay, and hence the range to the reflection point, can be determined as a function of frequency. However, since radio waves return to the groundbased radar from only the portion of the ionosphere below the level of maximum electron density, no information about the ionosphere above this level can be retrieved. To perform topside sounding, ionosondes were fist mounted on rockets (Knecht et al., 1961) and later on satellites [Alouette (Lockwood, 1963), ISIS 1, 2 (McAfee, 1969)]. The situation with topside sounding (satellite-and rocketborne sounders) turned out to be less analogous to bottomside sounding (ground-based radars) than was expected. Longterm echoes were"}, {"title": "rpj-common-crawl-2020-05", "text": "complicated plasma physics processes that occur elsewhere in the cosmos but that are difficult or impossible to explore in the laboratory. Ionospheric heaters affect the propagation of radio signals; they generate airglow and radio emissions that can be observed from the ground; they create plasma density irregularities that can be studied using small coherent scatter radars; they provide access to chemical rate constants that are otherwise hard to quantify; they accelerate electrons, mimicking auroral processes; and finally, they modify plasma density and electron and ion temperatures and enhance the plasma and ion lines observed by incoherent scatter. The DOD operates and maintains the world\u2019s largest ionospheric modification facility, HAARP, near Gakona, Alaska. HAARP is not collocated with an incoherent scatter radar, and so its full potential has not been realized since the phenomena it creates cannot be fully diagnosed. Figure 8.26 shows an image of an artificial aurora created at the HAARP facility. Another ionospheric modification facility is under construction at the Arecibo Radio Observatory. While this facility will be modest in power compared to HAARP, its collocation with Arecibo, the world\u2019s most sensitive incoherent scatter radar, raises the prospect of discovery science in the areas of artificial and naturally occurring ionospheric phenomena. The Arecibo heater came about through close collaboration between DOD and NSF. The AIMI panel regards this kind of interagency cooperation as a model to be followed for the utilization of existing ionospheric modification facilities as well as the planning and development of new ones. AIMI Priority: Fully realize the potential of ionospheric"}, {"title": "rpj-common-crawl-2021-04", "text": "of the ionosphere at night. The observations revealed the presence of strong shears in the horizontal ionosphere motions at the base of the ionosphere, places where charged particles flow by each other in opposite directions. C/NOFS observed shears and undulations along this boundary. Such shears and undulations -- spotted throughout the nighttime, equatorial ionosphere -- are believed to be the source of large-scale instabilities that ultimately drive the detrimental scintillations. For more information about C/NOFS, visit: http://nssdc.gsfc.nasa.gov/nmc/spacecraftDisplay.do?id=2008-017A Susan Hendrix Susan.m.hendrix@nasa.gov @NASAGoddard http://www.nasa.gov/goddard 2015 AGU Fall Meeting EXPERIMENTS IN SPACE SATELLITE MISSIONS/SHUTTLES The US Air Force Communication/Navigation Outage Forecasting System (IMAGE) Changes In Earth's Ionosphere Cause What's Known As Scintillations (IMAGE) http://www.nasa.gov/press-release/goddard/plunging-into-the-ionosphere-satellite-s-last-days-improve-orbital-decay-predictions More in Space & Planetary A 'super-puff' planet like no other University of Montreal Hubble pinpoints supernova blast ESA/Hubble Information Centre Study: X-Rays surrounding 'Magnificent 7' may be traces of sought-after particle DOE/Lawrence Berkeley National Laboratory Astronomers document the rise and fall of a rarely observed stellar dance University of Washington View all in Space & Planetary"}, {"title": "rpj-common-crawl-2019-30", "text": "as well. The interaction altitude for the heating for all the observations is in the range of 160 km up to 200 km. As described previously, proton precipitation due to active geomagnetic conditions is considered as the reason for the presence of H+ ions known to be a minor background constituent in this altitude region. DMSP satellite observations over HAARP during the heating experiments and ground-based magnetometer and riometer data validate active geomagnetic conditions. The theory of parametric decay instability in multi-ion component plasma including H+ ions as a minority species described in previous work is expanded in light of simultaneously observed preexisting SEE features to interpret the newly reported observations. Impact of active geomagnetic conditions on the SEE spectrum as a diagnostic tool for proton precipitation event characterization is discussed. A Comparison of Science and Technology Funding for DoD\u2019s Space and Nonspace Programs Artificial intelligence for HAARP Multispectral signature libraries Environmental conditions that Ionospheric prediction HAARP Weather software for...Hardware and software for solar HAARP Electromagnetic interference for Plasma theory in the space Subproject details were not available Subproject Detection of Ionospheric Alfven Resonator Signatures in the Equatorial Ionosphere Simoes, Fernando; Klenzing, Jeffrey; Ivanov, Stoyan; Pfaff, Robert; Freudenreich, Henry; Bilitza, Dieter; Rowland, Douglas; Bromund, Kenneth; Liebrecht, Maria Carmen; Martin, Steven; The ionosphere response resulting from minimum solar activity during cycle 23/24 was unusual and offered unique opportunities for investigating space weather in the near-Earth environment. We report ultra low frequency electric field signatures related to the ionospheric Alfven resonator detected by the Communications/Navigation Outage Forecasting System"}, {"title": "pes2o", "text": "the trajectory is obtained. In this case the expected decrease of the asymptotic velocity would be \u22123.68(99) mm/sec, which coincides with the estimation of Anderson and his team. The error comes from the uncertainties in the effective area of the spacecraft during the flyby but the result, certainly, cannot be larger in magnitude that the observed \u22128 mm/sec decrease and we must conclude that a residual anomaly of \u22124.32(99) mm/sec is still unexplained. In the other flybys with perigees at 500 km over the Earth surface and above we obtain only minor corrections of a fraction of mm/sec which do not seriously change the results for the residual anomaly. The paper is organized as follows: In section 2 we discuss the ionosphere's model and the expression for the friction force and we provide the parameters for the Galileo, NEAR and Juno spacecraft. In section 3 we give the equations of motion for the perturbations and the parameters corresponding to the osculating keplerian orbit at perigee. The integration results are obtained in Section 4. Finally, in Section 5 we briefly discuss our results in connection to the flyby anomaly and its possible application to other planetary atmospheres. Atmospheric model for the thermosphere and spacecraft's friction The ionosphere is a part of the Earth's atmosphere that extends from altitudes ranging from 60 km to 1000 km. It includes the upper part of the mesosphere, the termosphere and the exosphere. Its name comes from the fact that it is composed mainly by ionized atoms and molecules; the ionization takes"}, {"title": "pes2o", "text": "by tuning the background magnetic field and collisional frequency. Our theoretical research can offer a fundamental basis in the real application involving the interaction between EM waves and plasma, such as re-entry blackout, plasma stealth, and deep space communication."}, {"title": "rpj-common-crawl-2019-30", "text": "Such shears and undulations -- spotted throughout the nighttime, equatorial ionosphere -- are believed to be the source of large-scale instabilities that ultimately drive the detrimental scintillations. For more information about C/NOFS, visit: http://nssdc.gsfc.nasa.gov/nmc/spacecraftDisplay.do?id=2008-017A TAGS: re-entry FILED UNDER: NASA Hack Space, Re-entry"}, {"title": "rpj-common-crawl-2020-05", "text": "The closure of the current across field lines in the collisional, electri- cal Iy conducting ionosphere accelerates the low-altitude ions via the J x B force or ponderomotive force. This force is the macroscale manifestation of the Lorentz force, which maintains charged particles in their orbits around magnetic field lines. It can also transfer stress from the ionosphere to the magnetosphere such as to enforce co-rotation of the cold magnetospheric ions. This mechanism is especially important in the jovian magnetosphere. In the terrestrial auroral ionosphere, the chain of momentum transfer is completed when the moving ionospheric ions transfer their momentum to the neutral gas, generating high-altitude winds. The overall coupling from the solar wind down to the ionosphere is a very complex process, and it is fair to say that while we now understand this process much better than even 58 a decade ago, it is not yet understood as well as we need to understand it. IMPACT AND RELEVANCE Planetary magnetospheres are important first and foremost because we live inside one. Earth is currently the only habitable planet, and that habitability may in part be due to the shield provided by Earth's magneto- sphere. That shield also protects our spacecraft and com- munication systems. At times, however, the shield is overwhelmed and it is not as effective. It is becoming more and more important to be able to predict when these ti mes of stress occur. Now the question of habitability extends beyond Earth. Other planets are magnetized and may once have had Earth-like fields"}, {"title": "rpj-arxiv", "text": "the ionosphere and thermosphere models used in this work. The IRI and GITM models provided reasonable estimates for the background TEC in both of the cases examined, as seen by comparison of the TEC maps Fig.~\\ref{fig_GITM_TEC_map_data} and Fig.~\\ref{fig_MAPGPS_TEC_data}. However, these models overestimated the height at which the F-region peak occurred without the depletion, as shown in Fig.~\\ref{fig_PA836_ionograms}. As electron production rates decrease with altitude, this disagreement in turn contributes to the overestimate of the recovery time by the simulation. Furthermore, the boundary conditions of the regional GITM simulation do not incorporate general global circulation patterns. Thus, the accuracy of the simulation is expected to degrade significantly with time, particularly post sunset when day-to-night transport is neglected. The GNSS TEC data were derived based on ionospheric pierce points at $450 \\, \\mathrm{km}$ altitude \\cite{rideout2006}. However, the numerical modelling and ionosonde data shown in Fig.~\\ref{fig_PA836_ionograms} indicate that the ionospheric plasma is predominantly concentrated at lower altitudes, particularly within the region affected by the depletion. Thus the depletion seen in Fig.~\\ref{subfig_MAPGPS_F5_TEC_data} may be somewhat distorted. The oblique angles at which the GNSS measurements were taken together with the vertical distribution of the ionosphere limited resolution in latitude and longitude. This issue could have helped obscure the narrow ionospheric depletion the simulation suggested would occur following the Jason-3 launch. Prior studies have indicated lifetimes of ionospheric depletions due to rocket launches ranging from $0.5$ to $6$ hours \\cite{park2016}. This range is consistent with observational data for the FORMOSAT-5 launch case and the simulation of the Jason-3 launch case, but not"}, {"title": "rpj-c4", "text": "HUNTSVILLE, Ala., Aug. 3, 2017 /PRNewswire-USNewswire/ \u2014 NASA and a team of Brazilian space researchers have announced a joint CubeSat mission to study phenomena in Earth\u2019s upper atmosphere \u2014 a region of charged particles called the ionosphere \u2014 capable of disrupting communications and navigation systems on the ground and potentially impacting satellites and human explorers in space. Two phenomena in the ionosphere \u2014 equatorial plasma bubbles and scintillation \u2014 have impacted radio communication systems, satellite technologies and global positioning system (GPS) signals for decades, said Jim Spann, chief scientist for the Science and Technology Directorate at NASA\u2019s Marshall Space Flight Center in Huntsville, Alabama. Equatorial plasma bubbles are regions of comparatively low density which may elongate into towering plumes during high-intensity periods. Scintillation is a unique type of atmospheric fluctuation that can interrupt radio frequencies, much like the \u201ctwinkling\u201d effect seen in starlight when optical frequencies are disrupted. The Scintillation Prediction Observations Research Task (SPORT) mission, funded by NASA\u2019s Science Mission Directorate in Washington, will observe these peculiar structures in order to understand what causes them, determine how to predict their behavior and assess ways to mitigate their effects. \u201cDegraded communications and GPS signals are known to be closely linked to these phenomena,\u201d Spann said. It\u2019s his goal to shed new light on these phenomena and inspire new operational solutions to contend with the disturbed conditions. \u201cAs society becomes more dependent every day on space-based technology \u2014 cell phones, self-driving cars, secure military communications \u2014 it\u2019s critically important we first understand the environment in which our"}, {"title": "rpj-common-crawl-2022-05", "text": "by spacecraft launches. 15.7 Conclusions Contemporary ionospheric science has many aspects: as a branch of solarterrestrial physics and the earth\u2019s environment; the science of radiocommunications, e.g. predicting and forecasting; the mathematics of wave propagation in the ionosphere; man-made radio transmissions, and natural electromagnetic emissions, magnetic pulsations and other phenomena. As a natural plasma, often nonlinear and nonthermal, the ionosphere is a site for active experiments with radiowaves, powerful enough to produce observable ionospheric modi\ufb01cations, in the form of increased temperatures and plasma instabilities, and with chemical releases and particle beam experiments. Such ionospheric plasma physics experiments provide new physical insights, although they often raise more questions than they solve. Problems remain at the upper and lower boundaries; i.e. the interactions with the lower atmosphere and the magnetosphere, and how their e\ufb00ects spread worldwide. Large electric \ufb01elds generated in thunderstorms can a\ufb00ect the ionosphere. There are suggestions of topographic in\ufb02uences, e.g. of mountain ranges, on the ionosphere. The reverse question of ionospheric, geomagnetic and solar e\ufb00ects on weather and climate is contentious; possible relations between magnetic and solar disturbance and the weather have been found, but their physical mechanisms are not well established. The basic mechanisms of the ionosphere seem to be known, but surprises are possible in any active area of science, and many questions remain. The everyday monitoring of this important part of the environment is as vital for progress in the future as it has been in the past. 15.8 Bibliography JURSA, A.S. (Ed.): \u2018Handbook of geophysics and the space environment\u2019 (Air Force Geophysics"}, {"title": "rpj-common-crawl-2022-05", "text": "used to probe the auroral ionosphere. By bouncing signals off ionospheric irregularities, which move with the field lines, one can trace their motion and infer magnetospheric convection. Spacecraft instruments include: Magnetometers, usually of the flux gate type. Usually these are at the end of booms, to keep them away from magnetic interference by the spacecraft and its electric circuits.[23] Electric sensors at the ends of opposing booms are used to measure potential differences between separated points, to derive electric fields associated with convection. The method works best at high plasma densities in low Earth orbit; far from Earth long booms are needed, to avoid shielding-out of electric forces. Radio sounders from the ground can bounce radio waves of varying frequency off the ionosphere, and by timing their return determine the electron density profile\u2014up to its peak, past which radio waves no longer return. Radio sounders in low Earth orbit aboard the Canadian Alouette 1 (1962) and Alouette 2 (1965), beamed radio waves earthward and observed the electron density profile of the \"topside ionosphere\". Other radio sounding methods were also tried in the ionosphere (e.g. on IMAGE). Particle detectors include a Geiger counter, as was used for the original observations of the Van Allen radiation belt. Scintillator detectors came later, and still later \"channeltron\" electron multipliers found particularly wide use. To derive charge and mass composition, as well as energies, a variety of mass spectrograph designs were used. For energies up to about 50 keV (which constitute most of the magnetospheric plasma) time-of-flight spectrometers (e.g. \"top-hat\" design)"}, {"title": "rpj-c4", "text": "Using Green Bank Observatory in West Virginia, PSI Associate Research Scientist Elizabeth A. Jensen\u2019s team observed radio signals from NASA's MESSENGER spacecraft passing through a solar eruption known as a Coronal Mass Ejections (CME) and discovered evidence for electrical currents and accelerated plasmas trailing in its wake. CMEs can cause communication disruptions and electrical grid failures as they hit Earth. MESSENGER, orbiting Mercury, was on the other side of the Sun from the Earth, in the right place at the right time for this measurement to be made. Understanding the structure of these events is necessary to properly prepare for their potential impacts on orbiting satellites and on Earth. This work was supported by NASA and ACS Consulting, LLC. Green Bank Observatory is supported by the National Science Foundation."}, {"title": "rpj-common-crawl-2020-05", "text": "terrestrial-weather-driven thermosphere interacts with the ionosphere\u2019s charged particles. Understanding how the neutral atmosphere affects the ions and vice versa is key to better understanding the complex space weather system surrounding our planet, which affects spacecraft and astronauts flying through it. The launch of AETHER would be no later than 2024. The principal investigator for AETHER is James Clemmons at the University of New Hampshire in Durham. Electrojet Zeeman Imaging Explorer (EZIE) NASA astronaut Tracy Caldwell Dyson pauses for a portrait while donning her spacesuit and going under water in the Neutral Buoyancy Lab, Monday, July 8, 2019 at NASA\u2019s Johnson Space Center in Houston, Texas. Photo Credit: (NASA/Bill Ingalls) EZIE would focus on an electric current known as the auroral electrojet, which circles through the atmosphere around 60 to 90 miles above Earth, near the poles. Using three SmallSats to measure magnetic fields, EZIE would observe the structure of electrojets and explore what causes them and how they evolve. Electrojets are part of a larger space weather system that can lead to oscillations in Earth\u2019s magnetic fields, creating geomagnetic storms that can interfere with spacecraft and \u2013 at their most intense \u2013 utility grids on the ground. Knowing how electrojets form and grow could contribute to ultimately predicting such storms. EZIE would launch as part of the agency\u2019s CubeSat Launch Initiative. EZIE also would launch no later than 2024. The principal investigator for EZIE is Jeng-Hwa Yee at the Johns Hopkins University Applied Physics Laboratory in Laurel, Maryland."}, {"title": "rpj-common-crawl-2021-04", "text": "ionization over time of the neutral cloud produced by the firing of a mono-propellant hydrazine thruster as well as the interactions of the resulting ion cloud with the ambient solar wind. Results are presented which show that the plasma in the region near to the spacecraft will be perturbed for an extended period of time with the formation of an interaction region around the spacecraft, a moderate amplitude density bow wave bounding the interaction region and evidence of an instability at the forefront of the interaction region which causes clumps of ions to be ejected from the main ion cloud quasi-periodically. East\u00e2\u20ac\u201cWest GEO Satellite Station-Keeping with Degraded Thruster Response Stoian Borissov Full Text Available The higher harmonic terms of Earth\u00e2\u20ac\u2122s gravitational potential slowly modify the nominal longitude of geostationary Earth orbit (GEO satellites, while the third-body presence (Moon and Sun mainly affects their latitude. For this reason, GEO satellites periodically need to perform station-keeping maneuvers, namely, east\u00e2\u20ac\u201cwest and north\u00e2\u20ac\u201csouth maneuvers to compensate for longitudinal and latitudinal variations, respectively. During the operational lifetime of GEO satellites, the thrusters\u00e2\u20ac\u2122 response when commanded to perform these maneuvers slowly departs from the original nominal impulsive behavior. This paper addresses the practical problem of how to perform reliable east\u00e2\u20ac\u201cwest station-keeping maneuvers when thruster response is degraded. The need for contingency intervention from ground-based satellite operators is reduced by breaking apart the scheduled automatic station-keeping maneuvers into smaller maneuvers. Orbital alignment and attitude are tracked on-board during and in between sub-maneuvers, and any off nominal variations are corrected for with subsequent maneuvers."}, {"title": "rpj-common-crawl-2023-06", "text": "power and dramatically flipped direction, flowing westward for a short period. \u201cIt\u2019s very surprising to see the electrojet be greatly reversed by something that happened on Earth\u2019s surface,\u201d said Joanne Wu, a physicist at University of California, Berkeley, and co-author on the new study. \u201cThis is something we\u2019ve only previously seen with strong geomagnetic storms, which are a form of weather in space caused by particles and radiation from the Sun.\u201d ESA\u2019s constellation of three Swarm satellites is designed to identify and measure precisely different magnetic signals. This will lead to new insight into many natural processes, from those occurring deep inside the planet, to weather in space caused by solar activity. Credit: ESA/ATG Medialab The new research, published today (May 10, 2022) in the journal Geophysical Research Letters, is adding to scientists\u2019 understanding of how the ionosphere is affected by events on the ground as well as from space. A strong equatorial electrojet is associated with redistribution of material in the ionosphere, which can disrupt GPS and radio signals that are transmitted through the region. Understanding how this complex area of our atmosphere reacts in the face of strong forces from below and above is a key part of NASA research. NASA\u2019s upcoming Geospace Dynamics Constellation, or GDC, mission will use a fleet of small satellites, much like weather sensors on the ground, to track the electrical currents and atmospheric winds coursing through the area. By better understanding what affects electrical currents in the ionosphere, scientists can be more prepared to predict severe problems caused"}, {"title": "rpj-common-crawl-2023-06", "text": "power and dramatically flipped direction, flowing westward for a short period. \u201cIt\u2019s very surprising to see the electrojet be greatly reversed by something that happened on Earth\u2019s surface,\u201d said Joanne Wu, a physicist at University of California, Berkeley, and co-author on the new study. \u201cThis is something we\u2019ve only previously seen with strong geomagnetic storms, which are a form of weather in space caused by particles and radiation from the Sun.\u201d ESA\u2019s constellation of three Swarm satellites is designed to identify and measure precisely different magnetic signals. This will lead to new insight into many natural processes, from those occurring deep inside the planet, to weather in space caused by solar activity. Credit: ESA/ATG Medialab The new research, published today (May 10, 2022) in the journal Geophysical Research Letters, is adding to scientists\u2019 understanding of how the ionosphere is affected by events on the ground as well as from space. A strong equatorial electrojet is associated with redistribution of material in the ionosphere, which can disrupt GPS and radio signals that are transmitted through the region. Understanding how this complex area of our atmosphere reacts in the face of strong forces from below and above is a key part of NASA research. NASA\u2019s upcoming Geospace Dynamics Constellation, or GDC, mission will use a fleet of small satellites, much like weather sensors on the ground, to track the electrical currents and atmospheric winds coursing through the area. By better understanding what affects electrical currents in the ionosphere, scientists can be more prepared to predict severe problems caused"}, {"title": "rpj-common-crawl-2019-30", "text": "a station blackout could be severe. Because of the concern about the frequency of loss of offsite power, the number of failures of emergency diesel generators, and the potentially severe consequences of a loss of all ac power, ''Station Blackout'' was designated as Unresolved Safety Issue (USI) A-44. This report presents the regulatory analysis for USI A-44. It includes: (1) a summary of the issue, (2) the proposed technical resolution, (3) alternative resolutions considered by the Nuclear Regulatory Commission (NRC) staff, (4) an assessment of the benefits and costs of the recommended resolution, (5) the decision rationale, and (6) the relationship between USI A-44 and other NRC programs and requirements Investigation of plasma\u00e2\u20ac\u201csurface interaction effects on pulsed electrostatic manipulation for reentry blackout alleviation Krishnamoorthy, S; Close, S The reentry blackout phenomenon affects most spacecraft entering a dense planetary atmosphere from space, due to the presence of a plasma layer that surrounds the spacecraft. This plasma layer is created by ionization of ambient air due to shock and frictional heating, and in some cases is further enhanced due to contamination by ablation products. This layer causes a strong attenuation of incoming and outgoing electromagnetic waves including those used for command and control, communication and telemetry over a period referred to as the \u00e2\u20ac\u02dcblackout period\u00e2\u20ac\u2122. The blackout period may last up to several minutes and is a major contributor to the landing error ellipse at best, and a serious safety hazard in the worst case, especially in the context of human spaceflight. In this work, we present a"}, {"title": "rpj-common-crawl-2020-05", "text": "through magnetic reconnection and viscous interaction, drive convective flow throughout the magnetosphere. The ionosphere, with its high conductance, regulates and modulates this convective flow. In addition, the neutral gas of the upper atmosphere, known as the thermosphere, can also influence magnetospheric flow through ion-neutral collisions. 9.2.1.4 Space Weather and the Magnetosphere \u201cSpace weather\u201d is the name given to the time-dependent conditions and changes that occur in near-Earth space to the magnetospheric plasmas and fields. These include changes in the plasma density, temperature, and spatial distributions, from the cold plasmasphere to the very energetic radiation belts. In particular, space weather implies changes that have significant impact on technology and society. For example, the variable ionosphere and plasmasphere alter geolocation signals from GPS and transmissions from communication spacecraft; strong magnetospheric currents create geomagnetically induced currents in power distribution systems; energetic particles cause radiation damage to microelectronics and spacefarers; and substorm-related satellite charging causes malfunctions and surface degradation. 9.2.1.5 Magnetospheric Questions That Flow from the Motivations The motivations underlying the study of solar and space physics3 apply directly to the study of Earth\u2019s magnetosphere and its interaction with the solar wind and upper atmosphere: Earth\u2019s magnetosphere (and those of other planets) is a fascinating, complex system, in which fundamental physical processes that operate throughout the universe combine with unique conditions of plasma sources, sinks, and drivers to create dynamic conditions that can affect humans and the technologies they depend on in space and sometimes on the ground. 3 See the introduction to Part II of this decadal survey report."}, {"title": "rpj-c4", "text": "Abstract: Radio frequency communication between the space launcher and the mission control are unusually disturbed by the exhaust plume present in rocket engines. This paper presents the computation of radio wave propagation through the exhaust plume. Thus, frequencydomain finite element method and time-domain discontinuous Galerkin method are implemented for computations in case of a ground domain experiments. Numerical results compared to those obtained from ground experiment show good approximation of the propagation through the plasma over a wide frequency band. For the launcher in flight, an asymptotic method is proposed and has the advantage to give a fast evaluation of the scattering solution. In this case, the exhaust plume area is considered as a perfectly conducting trapezium whose parameters are extracted from the distribution of the plasma permittivity. Results related to the asymptotic method appear to be in good agreement with results based on the full wave approaches."}, {"title": "rpj-common-crawl-2020-05", "text": "latitudinal position, direction and configuration of the vertical electric currents have been investigated. \u2026 not only the vertical component of the ionospheric plasma drift but also horizontal components play an important role in producing pre-earthquake TEC disturbances. * The ionosphere of the Earth is no doubt an important part of the global electric circuit and is a subject to dramatic perturbations related mainly with geomagnetic and solar activity. It also reacts on going from \u201cbelow\u201d impacts from different processes like thunderstorms, dust storms, radioactive pollutions, volcanic eruptions, earthquakes, etc. \u2026There is no common opinion in scientific society on the physical mechanism that could explain the penetration of the seismic preparation processes\u2019 impact into the ionosphere. \u2026 two channels of penetration are proposed: the wave channel (including Acoustic Gravity Waves) and electromagnetic channel. \u2026 We strongly believe that the ionospheric response on the pre-seismic processes is explained in terms of the electromagnetic channel \u2026 \u2026 Convective transportation of charged aerosols and their gravitational sedimentation in the atmosphere as well as radon and other radioactive elements emanation into the lower atmosphere over the faults leads to increase of the atmospheric radioactivity level during earthquake formation. It also causes enlargement of the ionization and electric conductivity of the near-ground atmosphere. \u2026 such electric fields are required to produce the observed TEC disturbances. \u2026vertical electric currents \u2026 between the Earth and ionosphere are required to produce such TEC disturbances. http://file.scirp.org/Html/7-8301717_24595.htm H.A.A.R.P. Very good article Dane. If only we can wake the masses. This US election has exposed a huge chunk"}, {"title": "rpj-common-crawl-2020-05", "text": "latitudinal position, direction and configuration of the vertical electric currents have been investigated. \u2026 not only the vertical component of the ionospheric plasma drift but also horizontal components play an important role in producing pre-earthquake TEC disturbances. * The ionosphere of the Earth is no doubt an important part of the global electric circuit and is a subject to dramatic perturbations related mainly with geomagnetic and solar activity. It also reacts on going from \u201cbelow\u201d impacts from different processes like thunderstorms, dust storms, radioactive pollutions, volcanic eruptions, earthquakes, etc. \u2026There is no common opinion in scientific society on the physical mechanism that could explain the penetration of the seismic preparation processes\u2019 impact into the ionosphere. \u2026 two channels of penetration are proposed: the wave channel (including Acoustic Gravity Waves) and electromagnetic channel. \u2026 We strongly believe that the ionospheric response on the pre-seismic processes is explained in terms of the electromagnetic channel \u2026 \u2026 Convective transportation of charged aerosols and their gravitational sedimentation in the atmosphere as well as radon and other radioactive elements emanation into the lower atmosphere over the faults leads to increase of the atmospheric radioactivity level during earthquake formation. It also causes enlargement of the ionization and electric conductivity of the near-ground atmosphere. \u2026 such electric fields are required to produce the observed TEC disturbances. \u2026vertical electric currents \u2026 between the Earth and ionosphere are required to produce such TEC disturbances. http://file.scirp.org/Html/7-8301717_24595.htm H.A.A.R.P. Very good article Dane. If only we can wake the masses. This US election has exposed a huge chunk"}, {"title": "rpj-common-crawl-2020-05", "text": "energy, thus providing a means of triggering ionospheric processes that potentially could be exploited for Department of Defence purposes, -electron acceleration for infrared (IR) and other optical emissions which could be used to control radio wave propagation properties, -generate geomagnetic field aligned ionization to control the reflection\\scattering properties of radio waves, -use oblique heating to produce effects on radio wave propagation, thus broadening the potential military applications of ionospheric enhancement technology. Poker Flat Rocket Launch (1968 to Present) The Pocker Flat Research Range is located about 50 km North of Fairbanks, Alaska, and it was established in 1968. It is operated by the Geophysical Institute with the University of Alaska Fairbanks, under NASA contract. About 250 major rocket launches have taken place from this site, and in 1994, a 16 metre long rocket was launched to help NASA \"understand chemical reactions in the atmosphere associated with global climate change\". Similar experiments, but using Chemical Release Modules (CRM) have been launched from Churchill, Manitoba. In 1980, Brian Whelan's \"Project Waterhole\", disrupted an aurora borealis, bringing it to a temporary halt. In February 1983, the chemical released into the ionosphere caused an aurora borealis over Churchill. In March 1989, two Black Brant X's and two Nike Orions rockets were launched over Canada, releasing barium at high altitudes and creating artificial clouds. These Churchill artificial clouds were observed from as far away as Los Alamos, New Mexico. The US Navy has also been carrying on High Power Auroral Stimulation (HIPAS) research in Alaska. Through a series of wires and"}, {"title": "pes2o", "text": "Spacecraft charging and ion wake formation in the near-Sun environment A three-dimensional (3-D), self-consistent code is employed to solve for the static potential structure surrounding a spacecraft in a high photoelectron environment. The numerical solutions show that, under certain conditions, a spacecraft can take on a negative potential in spite of strong photoelectron currents. The negative potential is due to an electrostatic barrier near the surface of the spacecraft that can reflect a large fraction of the photoelectron flux back to the spacecraft. This electrostatic barrier forms if (1) the photoelectron density at the surface of the spacecraft greatly exceeds the ambient plasma density, (2) the spacecraft size is significantly larger than local Debye length of the photoelectrons, and (3) the thermal electron energy is much larger than the characteristic energy of the escaping photoelectrons. All of these conditions are present near the Sun. The numerical solutions also show that the spacecraft's negative potential can be amplified by an ion wake. The negative potential of the ion wake prevents secondary electrons from escaping the part of spacecraft in contact with the wake. These findings may be important for future spacecraft missions that go nearer to the Sun, such as Solar Orbiter and Solar Probe Plus. I. Introduction Spacecraft charging and wake formation have been a concern since the launch of the first orbiters. This concern arrises for a variety of reasons including the safety of astronauts and the safeguarding of spacecraft electrical systems 1,2 . An understanding of and, in many cases, the control of spacecraft"}, {"title": "bm25", "text": "Dr. Robert E. Huffman (1931\u20132008) was an American space scientist and author. He specialized in ultraviolet spectroscopy in the earth's upper atmosphere. Working for the United States Air Force, Dr. Huffman managed the Horizon Ultraviolet Program (HUP) experiments on two Space Shuttle flights: Columbia (STS-4, 1982) and Discovery (AFP-675 on STS-39, 1991). Dr. Huffman was also the principal investigator for the Auroral Ionospheric Mapper (AIM) on the HILAT Spacecraft and the Auroral/Ionospheric Remote Sensor (AIRS) on the Polar BEAR Spacecraft. In 1983 the Auroral Ionospheric Mapper produced the first pictures of Aurora Borealis made under full daylight conditions. Although the aurora cannot be seen in the visible spectrum during daylight hours, Dr. Huffman's instrument was able to capture an image in the ultraviolet spectrum. In the early 1970s Dr. Huffman was Program Manager for Project Chaser, a series of launches of Aerobee 170 sounding rockets from Vandenberg AFB Probe Launch Complex C. The purpose of Project Chaser was to measure exhaust plumes from anti-ballistic missile systems launched simultaneously with Project Chaser. His memoir \"Adventures of a Star Warrior: Cold War Rocket Science on the Space Frontier\" was published posthumously. Awards Valedictorian Texas A&M University (1953) The Guenter Loeser Memorial Award by the Air Force Cambridge Research Laboratories (1968) The Marcus O'Day Award by the Air Force Cambridge Research Laboratories (1981) Johns Hopkins University Applied Physics Laboratory Annual Award for Outstanding Paper in an Unclassified Refereed Journal (1984) Outstanding Civilian Career Service Award, Department of the Air Force (1998) Bibliography Huffman, Robert E., (1992), \"Atmospheric Ultraviolet Remote"}, {"title": "bm25", "text": "plasma injected from the magnetotail. This increase in the ring current causes a worldwide depression of the horizontal geomagnetic field during a magnetic storm. riometer (Relative Ionospheric Opacity meter) A specially designed ground-level radio receiver for continuous monitoring of cosmic noise. The absorption of cosmic noise in the polar regions is very sensitive to the solar low-energy cosmic ray flux. Absorption events are known as PCAs (polar cap absorption) and are primarily associated with major solar flares. rudimentary A type of sunspot penumbra characterized by granular (rather than filamentary) structure, brighter intensity than the umbra, and narrow extent, and possibly only partially surrounding the umbra. Penumbrae are typically rudimentary during the sunspot formative and decay phases. satellite anomaly The usually undesirable response of spacecraft systems to variations in the space environment. High energy particles cause detector noise and/or physical damage to solar cells, electronics, and memory devices (single event upsets or \u201dbitflips\u201d). Large and varying low-to-medium energy particle fluxes can result in a charge buildup between spacecraft components especially during the eclipse season and during spacecraft maneuvers. Atmospheric drag on spacecraft below approximately 1,000 km can increase during geomagnetic storms, resulting in cross-track and in-track orbit errors and orientation problems. Various communication interference problems result during solar radio bursts from flares when the Sun is within the field of view of the ground tracking dish. Ionospheric irregularities during geomagnetic storms can cause radio telemetry scintillation and fading. S-band Radio frequencies between 1.55 and 5.20 GHz. For satellite communication. The term usually refers to frequencies used for"}, {"title": "bm25", "text": "space as the satellite passes through them. This information will be used in building models to understand the various structures in the ionosphere, such as plasma depletions and associated turbulence in the nightside, low-latitude ionosphere. These structures can interfere with radio signals between Earth and spacecraft in orbit, thus causing errors in tracking and loss of communication. ']; comboArray[462-1] = ['current', '', 'instrument', '','ACE Cosmic Ray Isotope Spectrometer', 'The Cosmic Ray Isotope Spectrometer (CRIS) measures the abundances of galactic cosmic ray isotopes. ']; comboArray[463-1] = ['current', '', 'instrument', '','Wind Magnetic Field Investigation', 'Magnetic Field Investigation (MFI) instrument, onboard the WIND spacecraft, was based on the magnetometers previously developed for the Voyager, ISPM, GIOTTO, and Mars Observer missions which represent state-of-the-art instruments with unparalleled performance. ']; comboArray[464-1] = ['current', '', 'instrument', '','C/NOFS Vector Electric Field Instrument', 'VEFI measures direct current (DC) electric fields, which cause the bulk plasma motion that drives the ionospheric plasma to be unstable. Additionally, it measures the quasi-DC electric fields within the plasma density depletions to reveal the motions of the depletions relative to the background ionosphere. VEFI also measures the vector AC electric field, which characterizes the ionospheric disturbances associated with spread-F irregularities. ']; comboArray[465-1] = ['current', '', 'instrument', '','Cluster Plasma Electron And Current Experiment', 'A Plasma Electron And Current Experiment instrument can measure the three dimensional velocity distribution of electrons in a space plasma, for an energy range from a few electronvolts to about 30 kiloelectronvolts. A PEACE instrument is flying on each of the four Cluster II spacecraft, which were"}, {"title": "bm25", "text": "Events on Friday, May 5th, 2017 Simulating the Ionosphere, one electron at a time Speaker: Meers Oppenheim, Boston University, Astronomy Department Abstract: All planetary atmospheres have a region where solar radiation ionizes the air, creating an ionosphere; a plasma extending from the upper atmosphere to the space environment. For the Earth, the ionosphere extends from 80 km above the ground, where neutrals outnumber ions by over 8 orders of magnitude, to around 1000 km, where ions and neutrals have similar numbers. This region absorbs the majority of EUV and X-rays from the Sun. Energetic particles from the magnetosphere, the solar wind, and the cosmos slam into it. Billions of meteors deposit tons of materials in it, daily. From below, winds and turbulence in the Earth\u2019s atmosphere push it around. All these interactions make the ionosphere complex and interesting. NASA and the space community need accurate models of the ionosphere since the International Space Station and most of our spacecraft exist within it, and can experience harmful radiation and electric charging. The ionosphere was first discovered because of its impact on radio communication and its interference with Earth to Space communications and GPS remain critical issues. This talk will present the basics of ionospheric plasma physics, present a method of simulating ionospheric plasmas, the Particle-in_Cell (PIC) method. It will then show how we used this method to study a number of turbulent processes in the ionosphere and what we have learned from these studies. Host: Jan Egedal"}, {"title": "bm25", "text": "interfere with communications and navigation systems, disturb spacecraft orbits because of increased drag, and cause electric utility blackouts over wide areas. Ionospheric effects at equatorial, auroral, and middle latitudes constitute a major category of space weather effects that need to be better characterized and understood. \u201cGeospace\u201d is the term used to refer to the ensemble of regions including Earth\u2019s magnetosphere, ionosphere, and theremosphere. DISTRIBUTED ARRAYS OF SMALL INSTRUMENTS\u2014THE NEXT LOGICAL STEP Space physics proper began in the late 1950s with the launch of the first Earth-orbiting satellites. The field is distinguished from astronomy and astrophysics as well as from earlier attempts to understand our space environment by its capability of measuring in situ the plasmas that surround Earth and pervade the solar system. However, despite the distinctive and defining role played by in situ observations, the importance of ground-based investigations (carried out with radars, magnetometers, riometers, ionosondes, all-sky cameras, coronagraphs, and neutron monitors) to pre-space-age knowledge of the Sun-Earth system has been crucial. Today, nearly half a century after the dawn of the space age, remote sensing from ground-based facilities remains essential to efforts to characterize and understand Earth\u2019 s space environment and to investigate the workings of its ultimate energy source, the Sun. One of the most serious obstacles to progress in understanding and predicting the space physics environment is the inadequate spatial distribution of ground-based measurements. This results, in part, because of the remoteness and lack of supporting infrastructure in some important regions, such as at polar latitudes, and, in part, because measurements in"}, {"title": "bm25", "text": "Ionospheric response to the shock and acoustic waves excited by the launch of the Shenzhou 10 spacecraft We used a dense GPS network in China to track the ionospheric response to waves excited by the launch of the rocket that carried Shenzhou 10 spacecraft on 11 June 2013. The long\u2010distance propagation of shock and acoustic waves were observed on both sides of the rocket's trajectory. On the southern side, the wave structures (characterized by a horizontal extension of ~1400 km and initial amplitudes of 0.3 total electron content unit (TECU) and 0.1 TECU for the shock and acoustic waves, respectively), traveled southwestward a distance of ~1500 km at mean velocities of 1011 m s\u22121 and 709 m s\u22121, respectively. On the northern side, northward propagating waves were seen to travel a distance of ~600 km with much smaller amplitudes of less than 0.05 TECU. Subsequent waves with amplitudes of less than 0.02 TECU could also be seen. Clear wave structures were found at a distance of ~600\u20132000 km from launch site."}, {"title": "bm25", "text": "situ techniques. Austrian Acad Sci, Space Res Inst, A-8010 Graz, Austria.. Univ New Hampshire, Inst Study Earth Oceans & Space, Durham, NH 03824 USA.. NASA, Goddard Space Flight Ctr, Greenbelt, MD USA.. SW Res Inst, San Antonio, TX USA.. Univ Calif Los Angeles, Dept Earth Planetary & Space Sci, Los Angeles, CA USA.. Each spacecraft of the recently launched magnetospheric multiscale MMS mission is equipped with Active Spacecraft Potential Control (ASPOC) instruments, which control the spacecraft potential in order to reduce spacecraft charging effects. ASPOC typically reduces the spacecraft potential to a few volts. On several occasions during the commissioning phase of the mission, the ASPOC instruments were operating only on one spacecraft at a time. Taking advantage of such intervals, we derive photoelectron curves and also perform reconstructions of the uncontrolled spacecraft potential for the spacecraft with active control and estimate the electron plasma density during those periods. We also establish the criteria under which our methods can be applied. Ions with energies less than tens of eV originate from the Terrestrial ionosphere and from several planets and moons in the solar system. The low energy indicates the origin of the plasma but also severely complicates detection of the positive ions onboard sunlit spacecraft at higher altitudes, which often become positively charged to several tens of Volts. We discuss some methods to observe low-energy ions, including a recently developed technique based on the detection of the wake behind a charged spacecraft in a supersonic flow. Recent results from this technique show that low-energy ions typically"}, {"title": "bm25", "text": "probe the auroral ionosphere. By bouncing signals off ionospheric irregularities, which move with the field lines, one can trace their motion and infer magnetospheric convection. Spacecraft instruments include: Magnetometers, usually of the flux gate type. Usually these are at the end of booms, to keep them away from magnetic interference by the spacecraft and its electric circuits.[23] Electric sensors at the ends of opposing booms are used to measure potential differences between separated points, to derive electric fields associated with convection. The method works best at high plasma densities in low Earth orbit; far from Earth long booms are needed, to avoid shielding-out of electric forces. Radio sounders from the ground can bounce radio waves of varying frequency off the ionosphere, and by timing their return determine the electron density profile\u2014up to its peak, past which radio waves no longer return. Radio sounders in low Earth orbit aboard the Canadian Alouette 1 (1962) and Alouette 2 (1965), beamed radio waves earthward and observed the electron density profile of the \"topside ionosphere\". Other radio sounding methods were also tried in the ionosphere (e.g. on IMAGE). Particle detectors include a Geiger counter, as was used for the original observations of the Van Allen radiation belt. Scintillator detectors came later, and still later \"channeltron\" electron multipliers found particularly wide use. To derive charge and mass composition, as well as energies, a variety of mass spectrograph designs were used. For energies up to about 50 keV (which constitute most of the magnetospheric plasma) time-of-flight spectrometers (e.g. \"top-hat\" design) are widely"}, {"title": "bm25", "text": "technology resides, then learn how to operate through and preserve it from potentially disruptive or damaging interference,\u201d Spann said. Understanding the phenomenaBuilding on decades of previous ground-based studies of plasma bubbles over equatorial regions, especially intensive research in Brazil and Peru, SPORT will help researchers determine what\u2019s happening in the ionosphere to stir up the bubbles, why they form along the equator and what causes them to appear at night. Plasma bubbles and scintillation are global equatorial and mid-latitude phenomena, made worse by the South American Magnetic Anomaly, where Earth\u2019s magnetic equator dips close to Earth. More about SPORTSPORT science mission data will be distributed from and archived at the EMBRACE space-weather forecasting center in Brazil\u2019s National Institute for Space Research (INPE) and mirrored at the Space Physics Data Facility at NASA\u2019s Goddard Space Flight Center in Greenbelt, Maryland. The SPORT mission management team is led by Marshall alongside its international partners, the Brazilian Space Agency in Bras\u00edlia, and the National Institute for Space Research and Technical Aeronautics Institute, both in S\u00e3o Jose dos Campos, S\u00e3o Paulo. Spann\u2019s team, which oversees the mission science, flight instruments and the CubeSat launch, includes researchers at Marshall; Goddard; Utah State University in Logan, Utah; The Aerospace Corporation in El Segundo, California; the University of Texas at Dallas; and the University of Alabama in Huntsville. NASA\u2019s Brazilian partners are overseeing the development of the spacecraft; integration and testing; mission operations; data management and dissemination; and the ground observation network. The science analysis will be conducted by the entire team. Be"}, {"title": "bm25", "text": "(image credit: Amptek) SSM (Special Sensor Magnetometer), a triaxial fluxgate magnetometer, PL sensor built by NASA/GSFC. The SSM measures geomagnetic fluctuations associated with solar geophysical phenomena (i.e., ionospheric currents flowing at high latitudes). In combination with the SSI/ES (or SSI/ES-2) and the SSJ/4, the SSM provides heating and electron density profiles in the high-latitude ionosphere. SSM takes and reports 12 readings/s for the Y and Z axes. Only 10 readings of the 12 readings per second are reported for the X axis due to telemetry limitations. The SSM's axes are aligned with the spacecraft's axes where X is downward and aligned to local vertical within 0.01 degree, Y is parallel to the velocity vector for spacecraft with ascending node in the afternoon/evening sector, and Z is away from the solar panel and anti-parallel to the orbit normal vector.) The measurement range is \u00b165535 nT for each axis, with a one-bit resolution of 2 nT. The first SSM flight started with F12 (launch 29.8, 1994). Note: The magnetic field has three sources: 1) the magnetic field from the solid Earth, 2) the magnetic field from electrical currents flowing in the ionosphere and magnetosphere, and 3) the magnetic field from the spacecraft. Measurement of source 2 is the principal objective of the SSM, the measurement of source 1 is a secondary objective, and measurement of source 3 is a nuisance which is eliminated from the data as much as possible during data processing. SSM-Boom (Special Sensor Magnetometer-Boom), an upgrade to SSM. Measures geomagnetic fluctuations associated with solar geophysical"}, {"title": "bm25", "text": "phase of the benchmarking activity is to reduce these uncertainties. In this presentation, we will focus on the sources of uncertainty in the ionospheric response to extreme geomagnetic storms. We will then discuss various research efforts required to better understand the underlying processes of ionospheric variability and how the uncertainties in ionospheric response to extreme space weather could be reduced and the estimates improved. Maintaining US Space Weather Capabilities after DMSP: Research to Operations Machuzak, J. S.; Gentile, L. C.; Burke, W. J.; Holeman, E. G.; Ober, D. M.; Wilson, G. R. The first Defense Meteorological Satellite Program (DMSP) spacecraft was launched in 1972; the last is scheduled to fly in 2020. Presently, there is no replacement for the space-weather monitoring sensors that now fly on DMSP. The present suite has provided comprehensive, long-term records that constitute a critical component of the US space weather corporate memory. Evolving operational needs and research accomplishments justify continued collection of space environmental data. Examples include measurements to: (1) Monitor the Dst index in real time as a driver of next-generation satellite drag models; (2) Quantify electromagnetic energy fluxes from deep space to the ionosphere/ thermosphere that heat neutrals, drive disturbance-dynamo winds and degrade precise orbit determinations; (3) Determine strengths of stormtime electric fields at high and low latitudes that lead to severe blackouts and spacecraft anomalies; (4) Specify variability of plasma density irregularities, equatorial plasma bubbles, and the Appleton anomaly to improve reliability of communication, navigation and surveillance links; (5) Characterize energetic particle fluxes responsible for auroral clutter and"}, {"title": "bm25", "text": "systems. The artificial clouds will be visible to residents of the Republic of the Marshall Islands during two rocket flights to occur between August 29 and September 9, the US space agency said. The Waves and Instabilities from a Neutral Dynamo (WINDY) mission will study a phenomenon that occurs in the ionosphere \u2013 a layer of charged particles in the upper atmosphere. Known as equatorial spread F (ESF) these disturbances occur after sunset at latitudes near the equator in part of the ionosphere known as the F region. The disturbances interfere with radio communication, navigation and imaging systems and pose a hazard to technology and society that depends on it. The WINDY mission consists of two NASA suborbital sounding rockets that will be launched nearly simultaneously in a window between 8 and 11 pm local time from August 29 through September 9 from the island of Roi-Namur . The Kwajalein Atoll in the Marshall Islands is near the magnetic equator, where post-sunset ionosphere storms are more intense, making the site an ideal location for these studies, NASA said. One rocket will carry a substance called tri-methyl aluminium (TMA), which will form the white artificial clouds that glow in the night sky. Scientists on the ground photograph the movement of these clouds to measure the winds and energetic particles that are in motion in the upper atmosphere. The clouds are expected to be visible for about 30 minutes. The first rocket launched, a two-stage 47-foot long Black Brant IX rocket, will carry and release both TMA and"}, {"title": "bm25", "text": "systems. The artificial clouds will be visible to residents of the Republic of the Marshall Islands during two rocket flights to occur between August 29 and September 9, the US space agency said. The Waves and Instabilities from a Neutral Dynamo (WINDY) mission will study a phenomenon that occurs in the ionosphere \u2013 a layer of charged particles in the upper atmosphere. Known as equatorial spread F (ESF) these disturbances occur after sunset at latitudes near the equator in part of the ionosphere known as the F region. The disturbances interfere with radio communication, navigation and imaging systems and pose a hazard to technology and society that depends on it. The WINDY mission consists of two NASA suborbital sounding rockets that will be launched nearly simultaneously in a window between 8 and 11 pm local time from August 29 through September 9 from the island of Roi-Namur . The Kwajalein Atoll in the Marshall Islands is near the magnetic equator, where post-sunset ionosphere storms are more intense, making the site an ideal location for these studies, NASA said. One rocket will carry a substance called tri-methyl aluminium (TMA), which will form the white artificial clouds that glow in the night sky. Scientists on the ground photograph the movement of these clouds to measure the winds and energetic particles that are in motion in the upper atmosphere. The clouds are expected to be visible for about 30 minutes. The first rocket launched, a two-stage 47-foot long Black Brant IX rocket, will carry and release both TMA and"}, {"title": "bm25", "text": "No 2-3(34) Supplement No 1(15) About the possibility of determining the speed of jets of radio galaxies and quasars from studies of the fine structure of their nodes at high angular resolution Abstract: The results of observations of 40 extra-galactic radio sources made on a 22-meter radio telescope of the Crimean Astrophysical Observatory at a frequency of 22 GHz in 1990\u20131994 are presented. Acoustic diagnostics of heterophase plasma Acoustic oscillations in the atmosphere as a possible channel of cosmic influence on the biosphere Analysis of the possibility of using magnetic-liquid devices in space technology Characteristics of recombination processes in the nighttime F-region of the ionosphere according to incoherent scattering Checking the list of optical twins of IR and radio sources from observations in the Andrushevskaya joint-stock company Comparison of the data of the Kharkov incoherent scatter radar with the international reference ionosphere model IRI-2001 Doppler radio sounding of disturbances in the E and F regions of the ionosphere during launches and flights of spacecraft Doppler radio sounding of the ionosphere as a means of monitoring the state of space weather Effect of nonconservation of the magnetic moment of fast protons on their confinement in the geomagnetic trap Energy and material science problems of launching into space and descent to Earth of the device with low overloads Experimental determination of temperature fields in samples of materials of space technology Frenay \u2013 Serre equations for the trajectory of a charged particle in a magnetic dipole Generation of Langmuir waves in a magnetized plasma with low-frequency turbulence Generation of"}, {"title": "bm25", "text": "in these cases also a general increase of the electron density to apogee. Finally, with rockets capable of reaching 480 km altitude, the F-layer of the ionosphere was probed on three occasions in 1958 (21 February, 27 August and 31 October), and it was demonstrated that, in contrast to then current ideas, the electron density did not decrease rapidly above the F layer maximum. During this period Gringauz and his group were engaged in the preparation of experiments for the first Soviet spacecraft then being developed in Korolev\u2019s Institute. He was very proud to have provided the famous transmitters on Sputnik 1 which made a triumphant announcement to the world following the successful launch of 4 October, 1957, In particular he liked to tell that he was the last to touch the Sputnik: \u201cI had to do the final check to make sure the transmitter was going to work there was a special cover in the nose cone, so I reached inside, checked the \u2018beep..beep..beep\u2019 signal and knew everything was alright... then the cone was sealed for the last time.\u201d There had been some debate as to whether or not the 20 and 40 MHz transmissions would be easily detectable through the ionosphere but Gringauz was confident that this would be the case, and his judgment was confirmed as correct, with the receiving distance being as much as 10,000 km. The transmissions continued for three weeks and were used to monitor conditions within the spacecraft. Sputnik 3, which weighed 1327 kg. was launched on 15 May,"}, {"title": "bm25", "text": "Albert Viggiano Albert A. Viggiano Space Vehicles Directorate, 3550 Aberdeen Ave SE Kirtland AFB 87117-5776 Education Ph.D. in Chemical Physics, Univ. of Colorado, Boulder 1980 B. Sc. in Chem. with highest honors, Univ. of Calif. Berkeley 1976 Work history/accomplishments: I am manager and chief scientist of the plasma chemistry laboratory. My group developed four state of the art instruments to study plasma kinetics over unmatched ranges of conditions. We specialize in measuring difficult to handle species such as atoms, O2(a1Dg), and H2SO4. Our forte is to continually push the envelope so that entirely new regimes of study become possible. Air Force/DoD applications of the research are wide ranging including reentry plasmas, the ionosphere, plasma assisted combustion, electric oxygen iodine laser, HAARP, energetic materials, and chemical weapon sensors. We have doubled the highest temperatures for which both ion and electron molecule kinetics could be studied. The former, along with a technique for studying internal energy dependences of ion molecule reactions, led to the AF Basic Research award. Development of a technique to study reactivity at high pressures has been valuable in understanding scramjet engines and produced the only examples of specific energy transfer parameters for ions. A comprehensive study on electron attachment to SF6 resolved numerous issues involving this well studied reaction and determined why the molecule does not quench plasmas at high temperature. I received the AFRL Science and Technology award for this work, which has been transitioned to the AF ionospheric and reentry programs. Most recently, we have developed a technique that has allowed us"}, {"title": "bm25", "text": "Direct observations of a surface eigenmode of the dayside magnetopause The abrupt boundary between a magnetosphere and the surrounding plasma, the magnetopause, has long been known to support surface waves. It was proposed that impulses acting on the boundary might lead to a trapping of these waves on the dayside by the ionosphere, resulting in a standing wave or eigenmode of the magnetopause surface. No direct observational evidence of this has been found to date and searches for indirect evidence have proved inconclusive, leading to speculation that this mechanism might not occur. By using fortuitous multipoint spacecraft observations during a rare isolated fast plasma jet impinging on the boundary, here we show that the resulting magnetopause motion and magnetospheric ultra-low frequency waves at well-defined frequencies are in agreement with and can only be explained by the magnetopause surface eigenmode. We therefore show through direct observations that this mechanism, which should impact upon the magnetospheric system globally, does in fact occur. P lanetary magnetic fields act as obstacles to solar/stellar winds with their interaction forming a well-defined region of space known as a magnetosphere. The outer boundary of a magnetosphere, the magnetopause, is arguably the most significant since it controls the flux of mass, energy, and momentum both into and out of the system, with the boundary's motion thus having wide ranging consequences. Magnetopause dynamics, for example, can cause loss-of-relativistic radiation belt electrons 1 ; result in field-aligned currents directing energy to the ionosphere 2 ; and launch numerous modes of magnetospheric ultra-low frequency (ULF) waves 3,4"}, {"title": "bm25", "text": "About the possibility of determining the speed of jets of radio galaxies and quasars from studies of the fine structure of their nodes at high angular resolution Abstract: The results of observations of 40 extra-galactic radio sources made on a 22-meter radio telescope of the Crimean Astrophysical Observatory at a frequency of 22 GHz in 1990\u20131994 are presented. Acoustic diagnostics of heterophase plasma Acoustic oscillations in the atmosphere as a possible channel of cosmic influence on the biosphere Analysis of the possibility of using magnetic-liquid devices in space technology Characteristics of recombination processes in the nighttime F-region of the ionosphere according to incoherent scattering Checking the list of optical twins of IR and radio sources from observations in the Andrushevskaya joint-stock company Comparison of the data of the Kharkov incoherent scatter radar with the international reference ionosphere model IRI-2001 Doppler radio sounding of disturbances in the E and F regions of the ionosphere during launches and flights of spacecraft Doppler radio sounding of the ionosphere as a means of monitoring the state of space weather Effect of nonconservation of the magnetic moment of fast protons on their confinement in the geomagnetic trap Energy and material science problems of launching into space and descent to Earth of the device with low overloads Experimental determination of temperature fields in samples of materials of space technology Frenay \u2013 Serre equations for the trajectory of a charged particle in a magnetic dipole Generation of Langmuir waves in a magnetized plasma with low-frequency turbulence Generation of kinetic Alfven waves in a"}, {"title": "bm25", "text": "location, intensity, and characteristics are greatly influenced by the underlying ionosphere. Strong M-I coupling by means of field-aligned currents creates a high-speed (>1000 m/s) westward plasma flow channel in the ionosphere at pre-midnight/post-noon local times which is readily observable by incoherent scatter and HF radars and in plasma drift observations by low-altitude spacecraft (e.g. DMSP). The fast ionospheric flows generate E-region irregularities providing for addition. . . Authors: Skov Mulligan, Fennell J.F., Roeder J.L., Blake J.B., and Claudepierre S.G. Abstract: The Van Allen Probes mission provides an unprecedented opportunity to make detailed measurements of electrons and protons in the inner magnetosphere during the weak solar maximum period of cycle 24. Data from the MagEIS suite of sensors measures energy spectra, fluxes, and yields electron deposition rates that can cause internal charging. We use omni-directional fluxes of electrons and protons to calculate the dose under varying materials and thicknesses of shielding (similar to Fennell et al., 2010). We show examples of charge deposition rates during times of nominal and high levels of penetrating fluxes in the inner magnetosphere covering the period from late 2012 through 2013. These charge deposition rates are related to charging levels quite possibly encountered. . . Abstract: The Van Allen Probes (formerly known as the Radiation Belt Storm Probes or RBSP) mission launched on 30 August 2012 as part of NASA\u2019s Living With a Star (LWS) Program. The ultimate goal of the mission is to understand how populations of relativistic electrons and penetrating ions in the Earth\u2019s Van Allen Radiation Belts are affected"}, {"title": "bm25", "text": "Assessment of Plasma Interactions and Flight Status of the HAYABUSA Asteroid Explorer Propelled by Microwave Discharge Ion Engines Microwave discharge ion engines \"mu10\" are dedicated to the main propulsion on the HAYABUSA asteroid explorer. In a development program, various tests and assessments were conducted on the ion engines and the spacecraft. They include endurance tests, an electromagnetic interference susceptibility test, an interference test between the plasma and communication microwave, a beam exhaust test on the spacecraft, assessments on the plasma interference with a solar array, and so on. The spacecraft was launched in deep space by the M-V rocket in May 2003. After vacuum exposure and several runs of baking for reduction of residual gas, the ion engine system established continuous acceleration of the spacecraft toward the asteroid ITOKAWA. The spacecraft passed through a perihelion of 0.86 astronomical unit (AU) in February 2004 and an aphelion of 1.7 AU in February 2005, becoming the first solar electric propulsion system to travel this far toward and away from the Sun. The HAYABUSA succeeded in rendezvousing with the target asteroid in September 2005"}, {"title": "bm25", "text": "The fluxgate magnetometer of the Low Orbit Pearl Satellites (LOPS): overview of in-flight performance and initial results Abstract. The Low Orbit Pearl Satellite series consists of six constellations, with each constellation consisting of three identical microsatellites that line up just like a string of pearls. The first constellation of three satellites were launched on 29 September 2017, with an inclination of \u223c 35.5\u2218 and \u223c 600 km altitude. Each satellite is equipped with three identical fluxgate magnetometers that measure the in situ magnetic field and its low-frequency fluctuations in the Earth's low-altitude orbit. The triple sensor configuration enables separation of stray field effects generated by the spacecraft from the ambient magnetic field (e.g., Zhang et al., 2006). This paper gives a general description of the magnetometer including the instrument design, calibration before launch, in-flight calibration, in-flight performance, and initial results. Unprecedented spatial coverage resolution of the magnetic field measurements allow for the investigation of the dynamic processes and electric currents of the ionosphere and magnetosphere, especially for the ring current and equatorial electrojet during both quiet geomagnetic conditions and storms. Magnetic field measurements from LOPS could be important for studying the method to separate their contributions of the Magnetosphere-Ionosphere (M-I) current system."}], "hoverinfo": "text"}, {"x": [0.04815344884991646, 0.04815344884991646, 0.04815366491675377, 0.1617080569267273, 0.09728753566741943, 0.02196442149579525, 0.0483202189207077, 0.14733755588531494, 0.10312087088823318, -0.0008947489550337195, 0.11809447407722473, -0.004889437463134527, 0.09045321494340897, 0.05449694022536278, 0.09361736476421356, 0.09184068441390991, 0.1617080569267273, 0.0394887775182724, 0.10312087088823318, 0.08985748887062073, 0.04287169873714447, 0.12910380959510803, -0.026589687913656235, 0.08451585471630096, 0.1473376452922821, 0.04815366491675377, 0.04815366491675377, 0.057185087352991104, 0.04143477976322174], "y": [-0.18093542754650116, -0.18093542754650116, -0.18093550205230713, -0.07480455189943314, -0.12461212277412415, -0.188021719455719, -0.10008439421653748, -0.08009136468172073, -0.16100725531578064, -0.1919262856245041, -0.11661846190690994, -0.16702565550804138, -0.16445276141166687, -0.12666326761245728, -0.12707895040512085, -0.12721550464630127, -0.07480455189943314, -0.17149832844734192, -0.16100725531578064, -0.15949341654777527, -0.12490038573741913, -0.10645496100187302, -0.17925509810447693, -0.18939045071601868, -0.08009114116430283, -0.18093550205230713, -0.18093550205230713, -0.2332688719034195, -0.20539213716983795], "mode": "markers", "name": "Cluster 8", "marker": {"size": 8, "color": "rgb(217,217,217)"}, "text": ["Document 36", "Document 37", "Document 39", "Document 54", "Document 79", "Document 116", "Document 158", "Document 171", "Document 208", "Document 209", "Document 366", "Document 380", "Document 405", "Document 492", "Document 500", "Document 591", "Document 632", "Document 721", "Document 813", "Document 829", "Document 1053", "Document 1099", "Document 1110", "Document 1228", "Document 1297", "Document 1300", "Document 1303", "Document 1321", "Document 1329"], "customdata": [{"title": "rpj-common-crawl-2020-05", "text": "California on Sept. 10, 2019. Photo credit: NASA/Randy Beaudoin \u201cWhen your launch pad is moving at 500/600 miles per hour, things happen,\u201d said Baez. \u201cThe first attempt got us because we lost positive communication with the aircraft and the ground, and our rule is to abort the flight and go back around and try it again. And we were able to execute it flawlessly.\u201d The region of space where ICON will conduct its study \u2013 the ionosphere \u2013 comprises of winds that are influenced by many different factors: Earth\u2019s seasons, the heating and cooling that takes place throughout the day, and bursts of radiation from the Sun. This region also is where radio communications and GPS signals travel, and fluctuations within the ionosphere can cause significant disruptions to these critical technologies. As a response to the recent scientific discovery that the ionosphere is significantly impacted by storms in Earth\u2019s lower atmosphere, Northrop Grumman designed, integrated and tested the ICON satellite under a contract from the University of California Berkeley\u2019s Space Sciences Laboratory. NASA\u2019s Launch Services Program at Kennedy is responsible for launch service acquisition, integration, analysis and launch management. The ICON mission is part of NASA\u2019s Explorer Program managed by the agency\u2019s Goddard Space Flight Center in Maryland for the Science Mission Directorate in Washington, which aims to provide frequent flight opportunities for small- to medium-sized spacecraft that are capable of being built, tested and launched in a shorter period of time. ICON is expected to improve the forecasts of extreme space weather by utilizing in-situ"}, {"title": "rpj-common-crawl-2020-05", "text": "California on Sept. 10, 2019. Photo credit: NASA/Randy Beaudoin \u201cWhen your launch pad is moving at 500/600 miles per hour, things happen,\u201d said Baez. \u201cThe first attempt got us because we lost positive communication with the aircraft and the ground, and our rule is to abort the flight and go back around and try it again. And we were able to execute it flawlessly.\u201d The region of space where ICON will conduct its study \u2013 the ionosphere \u2013 comprises of winds that are influenced by many different factors: Earth\u2019s seasons, the heating and cooling that takes place throughout the day, and bursts of radiation from the Sun. This region also is where radio communications and GPS signals travel, and fluctuations within the ionosphere can cause significant disruptions to these critical technologies. As a response to the recent scientific discovery that the ionosphere is significantly impacted by storms in Earth\u2019s lower atmosphere, Northrop Grumman designed, integrated and tested the ICON satellite under a contract from the University of California Berkeley\u2019s Space Sciences Laboratory. NASA\u2019s Launch Services Program at Kennedy is responsible for launch service acquisition, integration, analysis and launch management. The ICON mission is part of NASA\u2019s Explorer Program managed by the agency\u2019s Goddard Space Flight Center in Maryland for the Science Mission Directorate in Washington, which aims to provide frequent flight opportunities for small- to medium-sized spacecraft that are capable of being built, tested and launched in a shorter period of time. ICON is expected to improve the forecasts of extreme space weather by utilizing in-situ"}, {"title": "rpj-common-crawl-2020-05", "text": "California on Sept. 10, 2019. Photo credit: NASA/Randy Beaudoin \u201cWhen your launch pad is moving at 500/600 miles per hour, things happen,\u201d said Baez. \u201cThe first attempt got us because we lost positive communication with the aircraft and the ground, and our rule is to abort the flight and go back around and try it again. And we were able to execute it flawlessly.\u201d The region of space where ICON will conduct its study \u2013 the ionosphere \u2013 comprises of winds that are influenced by many different factors: Earth\u2019s seasons, the heating and cooling that takes place throughout the day, and bursts of radiation from the Sun. This region also is where radio communications and GPS signals travel, and fluctuations within the ionosphere can cause significant disruptions to these critical technologies. As a response to the recent scientific discovery that the ionosphere is significantly impacted by storms in Earth\u2019s lower atmosphere, Northrop Grumman designed, integrated and tested the ICON satellite under a contract from the University of California Berkeley\u2019s Space Sciences Laboratory. NASA\u2019s Launch Services Program at Kennedy is responsible for launch service acquisition, integration, analysis and launch management. The ICON mission is part of NASA\u2019s Explorer Program managed by the agency\u2019s Goddard Space Flight Center in Maryland for the Science Mission Directorate in Washington, which aims to provide frequent flight opportunities for small- to medium-sized spacecraft that are capable of being built, tested and launched in a shorter period of time. ICON is expected to improve the forecasts of extreme space weather by utilizing in-situ"}, {"title": "rpj-common-crawl-2020-05", "text": "through its eyes.\u201d As far as space goes, the ionosphere is as close to home as it gets. Its constant changes can affect astronauts, satellites and much of the communications signals modern society relies upon. Scientists want to understand these changes, so they can eventually better predict them and protect our interests in space. Space may look empty, but the ionosphere brims with electrically charged gases, solar radiation, and electric and magnetic fields. Turbulence in this sea of charged particles can manifest as disruptions that interfere with orbiting satellites or communication and navigation signals used, for example, to guide airplanes, ships and self-driving cars. Depending on the energy it absorbs from the Sun, the ionosphere grows and shrinks. For that reason, scientists long thought this part of space was only affected by what happens in the space above it. NASA\u2019s Ionospheric Connection Explorer, or ICON, will orbit in the far reaches of the upper atmosphere, the bottom edge of near-Earth space. From this vantage point, ICON observes both the upper atmosphere and a layer of charged particles called the ionosphere. (Credits: NASA\u2019s Goddard Space Flight Center/G. Duberstein) But over the past decade, a growing body of evidence has indicated the region is much more variable than we can explain with solar activity alone. The ionosphere\u2019s contents are not evenly distributed: Dense patches of its charged gases, called plasma, are scattered throughout. Eventually, researchers linked these patches to global weather patterns \u2014 large-scale events such as several hurricanes rushing across the ocean at once, or changes in"}, {"title": "rpj-common-crawl-2021-04", "text": "the surface. ICON explores the connections between the neutral atmosphere and the electrically charged ionosphere. In addition to interfering with communications signals, space weather in this important slice of the atmosphere can also prematurely decay spacecraft orbits and expose astronauts to radiation-borne health risks. - \u201cWe\u2019re really excited to see the first data appearing from the ICON mission,\u201d said Scott England, the ICON project scientist at Virginia Tech in Blacksburg, Virginia. \u201cFor me, the real power of these data isn\u2019t just seeing transformative things like the wind patterns throughout the whole upper atmosphere, but having all these observations available to us at once, so we can see the connections between the neutral and charged environment around Earth.\u201d \u2022 February 20, 2020: Just over six weeks after launch and early calibrations, NASA\u2019s Ionospheric Connection Explorer (ICON) mission was presented with a unique opportunity. ICON flew very close to the December 26 solar eclipse track that extended across Asia, and observed the major changes in upper atmospheric airglow that naturally occurred. ICON\u2019s four instruments, primed to look at the ionosphere, the dynamic region where Earth meets space, were in position to observe the effects. What happens when airglow \u2013the natural glow of Earth\u2019s atmosphere caused by solar radiation \u2013 is temporarily \u201cturned off\u201d when the sun is blocked by the moon\u2019s shadow for a few minutes? Preliminary data shows that all four instruments \u2013 MIGHTI, EUV, FUV and IVM \u2013 were able to see changes the eclipse wrought. 26) - The Michelson Interferometer for Global High-resolution Thermospheric Imaging"}, {"title": "rpj-common-crawl-2023-06", "text": "narrowed the cause of the communication loss to problems within the avionics or radio-frequency communications subsystems,\u201d NASA wrote in the blog post. \u201cThe team is currently unable to determine the health of the spacecraft, and the lack of a downlink signal could be indicative of a system failure.\u201d Oof, that doesn\u2019t sound good. ICON, launched in October 2019, is tasked with observing the way terrestrial weather interacts with space weather in Earth\u2019s ionosphere. It does so (or at least it did so) from an orbital outpost that\u2019s roughly 360 miles (580 kilometers) above the planet. The spacecraft carries four instruments to measure various characteristics of the ionosphere and capture ultra-violet images of the upper atmosphere. The ICON mission has offered a comprehensive view of this part of Earth\u2019s atmosphere which would otherwise require two or more orbiting spacecraft to gather, according to NASA. The mission was originally supposed to last for two years and has been operating on an extended timeline since December 2021. Hopefully NASA can squeeze more overtime from this important space weather satellite. More: Japan-U.S. Geotail Mission Officially Comes to an End After 30 Glorious Years ScienceSpaceflight"}, {"title": "rpj-common-crawl-2021-04", "text": "in currents in the region. The variations matter because all of our communications and GPS satellites send signals through the ionosphere. A disturbed ionosphere translates to disturbed signals, so scientists want to know just what causes the ionosphere to behave in specific ways.\u201d (NASA) Meanwhile, should the over-medicated start to actually figure out what is being done to them, the government has imposed gag orders on the National Weather Service (NWS) and the National Oceanic and Atmospheric Administration (NOAA) who might easily refute the ridiculous claims of NASA. Notably, every single person who works for NASA, the NWS or NOAA are paid with tax payer dollars.This means that we are paying to be medicated and poisoned. Here, to corroborate information being given by the NASA employee in the video, is the Code 8440 RMMO which states the exact purpose of using Wallops Flight Facility to launch a rocket containing lithium thermite: \u201cPurpose: The primary purpose of this mission was to test the loading methods for lithium canisters to be flown on the upcoming Kudeki (Kwajalein, April 2013) and Pfaff (Wallops, June 2013) missions, and verify their functionality under sounding rocket launch and space flight conditions. Rocket Type: Two-stage Terrier MK70 Improved-Orion Location: Wallops Range Launcher: MRL Date of Launch: January 29, 2013 Time: 17:50 EST Experiment results: Thermistor data looked nominal. Good report from airborne optical platform of recorded video and lithium clouds also visible by ground observation.\u2019 We also learn from this specific call that lithium has been dumped in our skies since 1970. If"}, {"title": "rpj-common-crawl-2020-05", "text": "flux as space weather bombards it from above and Earth weather from below, sometimes disrupting radio communications. \u201cThis protected layer, it\u2019s the top of our atmosphere. It\u2019s our frontier with space,\u201d said NASA\u2019s heliophysics division director, Nicola Fox. The more scientists know, the better spacecraft and astronauts can be protected in orbit through improved forecasting. The refrigerator-size Icon satellite will study the airglow formed from gases in the ionosphere and also measure the charged environment right around the 360-mile-high (580-kilometer-high) spacecraft. \u201cIt\u2019s a remarkable physics laboratory,\u201d said principal scientist Thomas Immel of the University of California, Berkeley, which is overseeing the two-year mission. He added: \u201cIcon goes where the action is.\u201d A NASA satellite launched last year, Gold, is also studying the upper atmosphere, but from much higher up. More missions are planned in coming years to study the ionosphere, including from the International Space Station. Ionosphere: The ionosphere is the ionized part of Earth's upper atmosphere, from about 60 km to 1,000 km altitude, a region that includes the thermosphere and parts of the mesosphere and exosphere. The ionosphere is ionized by solar radiation. Show Stuff The Dark Horde, LLC \u2013 http://www.thedarkhorde.com Twitter @DarkHorde TeePublic Store - Get your UBR goodies today! http://tee.pub/lic/2GQuXxn79dg UBR Truth Seekers Facebook Group: https://www.facebook.com/groups/216706068856746 UFO Buster Radio: https://www.facebook.com/UFOBusterRadio YouTube Channel: https://www.youtube.com/channel/UCggl8-aPBDo7wXJQ43TiluA To contact Manny: manny@ufobusterradio.com, or on Twitter @ufobusterradio Call the show anytime at (972) 290-1329 and leave us a message with your point of view, UFO sighting, and ghostly experiences or join the discussion on www.ufobusterradio.com For Skype Users:"}, {"title": "rpj-common-crawl-2020-05", "text": "NASA scientists hope to better understand far outer atmosphere with ICON mission by: Kristen Currie Posted: Oct 9, 2019 / 04:01 PM CDT / Updated: Oct 9, 2019 / 04:57 PM CDT NASA is set to launch a new satellite, the Ionospheric Connection Explorer (ICON), into orbit Wednesday night on the Northrop Grumman Pegasus XL rocket. Their hope is to better understand the ways in which the far outer atmosphere is affected by space weather and Earth-based turbulence. ICON is planned for a two year mission circling 360 miles above the Earth. Purple shading indicates \u2018ionosphere\u2019 \u2013 thick layer of charged particles 50 to 360 miles above the surface of the planet What is the ionosphere? The ionosphere is the outermost layer of the atmosphere stretching 30 miles to 600 miles above the surface. This part of the atmosphere is important as this is what makes radio communications and GPS navigation possible. ICON\u2019s goal As stated by NASA: \u201cPressure differences created by weather near Earth\u2019s surface can propagate into the very highest reaches of the upper atmosphere and influence the winds in this region. The exact role these winds\u2014and by extension, terrestrial weather\u2014play in shaping the ionosphere remains an outstanding question, and one that scientists hope ICON will answer.\u201d Exploring the Ionosphere, Earth\u2019s Interface to Space | NASA Unpredictable changes in the ionosphere can interfere with communication and navigation here at the surface. Changes in the electric current in the ionosphere can put strain on surface-based technologies and in some cases, causing outages. For more information"}, {"title": "rpj-common-crawl-2021-04", "text": "adding energy, she noted. The more scientists know, the better spacecraft and astronauts can be protected in orbit through improved forecasting. The refrigerator-size Icon satellite will study the airglow formed from gases in the ionosphere and also measure the charged environment right around the 360-mile-high (580-kilometer-high) spacecraft. \u201cIt\u2019s a remarkable physics laboratory,\u201d said principal scientist Thomas Immel of the University of California, Berkeley, which is overseeing the two-year mission. He added: \u201cIcon goes where the action is.\u201d A NASA satellite launched last year, Gold, is also studying the upper atmosphere, but from much higher up. More missions are planned in coming years to study the ionosphere, including from the International Space Station. Icon should have soared in 2017, but problems with Northrop Grumman\u2019s air-launched Pegasus rocket interfered. Despite the long delay, NASA said the $252 million mission did not exceed its price cap. Northrop Grumman also built the satellite. During a news conference earlier this week, NASA launch director Omar Baez apologized for the delay. \u201cWe wanted to get things right on this rocket,\u201d Baez said. \u201cWe have no second chances on these type of missions.\u201d He called the launch \u201can awesome and great one; this one\u2019s been a long time in coming.\u201d Baez said in the end, everything went well. \u201cThis is about as good as it gets,\u201d he said."}, {"title": "rpj-common-crawl-2019-30", "text": "the fundamental processes that govern our upper atmosphere and ionosphere is crucial to improve situational awareness that helps protect astronauts, spacecraft and humans on the ground. Two new NASA missions are teaming up to explore this little-understood area that\u2019s close to home but historically hard to observe. The Global-scale Observations of the Limb and Disk, or GOLD, instrument launches aboard a commercial communications satellite in January 2018, and the Ionospheric Connection Explorer, or ICON, spacecraft launches later in 2018. Together, they will provide the most comprehensive observations of the ionosphere we\u2019ve ever had. The ionosphere is a region of charged particles in near-Earth space that coexists with the neutral gases in the upper atmosphere, which are sometimes shaped by weather events in the lower atmosphere. Credits: NASA\u2019s Goddard Space Flight Center/Duberstein The two missions provide distinct but complementary perspectives: ICON, in low-Earth orbit, flies directly through and just above regions of interest, capturing detailed remote and in situ data on the forces that shape this area. GOLD, in geostationary orbit over the Western Hemisphere, will build up a full-disk view of the ionosphere and upper atmosphere every half hour, providing detailed large-scale measurements of related processes \u2014 a cadence which makes it the first mission to be able to monitor the true weather of the upper atmosphere, rather than the longer cycles of its climate. GOLD is also able to focus in on a tighter region and scan more quickly, to complement additional research plans as needed. From its geostationary orbit, GOLD will have a continual"}, {"title": "rpj-c4", "text": "a heavily modified Lockheed L1011 (christened Stargazer) before igniting the engines and arching upwards towards space to deploy its payload in a lower orbit. In order for the launch to succeed, Stargazer\u2019s crew must drop the vehicle in a \u201cdrop box\u201d measuring only 10 by 40 km \u2014 a narrow window to hit at cruising speeds. Once it makes it out into the Black, just what does ICON do? The Ionospheric Connection Explorer uses a series of instruments to study the interaction between Earth\u2019s high-altitude weather systems and \u201cspace weather\u201d phenomena in the ionosphere \u2014 which has a profound impact on the performance of satellites and spacecraft, and may well be the difference in just how many bars or \u201cG\u2019s\u201d your smartphone\u2019s network enjoys. After a one-week \u201cshakedown\u201d in orbit, it\u2019ll start powering up sensors built by UT Dallas, UC Berkeley, and the US Naval Research Laboratory, calibrating itself using the light of three full moons. Following that, it\u2019ll commence it\u2019s two-year mission to advance our understanding of space weather. After the briefing, our next stop, if you\u2019ll believe it, was mission control \u2014 not the same one that\u2019s used for crewed missions, mind you, but still the actual command and control stations used by NASA and partners for commercial launches, be it underslung Pegasus launches, or SpaceX Crew Resupply Services (CRS) launches aboard Falcon 9\u2019s. In the lobby of the USAF hangar used for comms and telemetry for the launch and mission. These particular control rooms are within the Cape Canaveral United States Air Force"}, {"title": "rpj-c4", "text": "and its launch. The satellite will end up orbiting Earth about 357 miles up (574 kilometers). The two year, $252 million ICON mission is designed to study Earth's ionosphere \u2014 a level of the atmosphere full of highly charged particles that are created by the sun's radiation. The layer interacts with those both above and below it, influenced by terrestrial weather as well as the sun. And the ionosphere is a crucial region for what scientists call space weather, the set of phenomena that include harmless glowing aurora and extreme bursts of solar radiation that can knock out satellites orbiting Earth and even power grids on the ground. ICON will partner in this quest with a mission called the Global-scale Observations of the Limb and Disk, or GOLD, which launched in January and resides at a much higher altitude, where it will capture larger-scale data about the ionosphere. ICON's launch has been delayed for a year due to concerns about how the rocket would perform."}, {"title": "rpj-common-crawl-2021-04", "text": "GPS satellites send signals through the ionosphere. A disturbed ionosphere translates to disturbed signals, so scientists want to know just what causes the ionosphere to behave in specific ways.\u201d (NASA) Meanwhile, should the over-medicated start to actually figure out what is being done to them, the government has imposed gag orders on the National Weather Service (NWS) and the National Oceanic and Atmospheric Administration (NOAA) who might easily refute the ridiculous claims of NASA. The US Navy admits to conducting electromagnetic warfare drills over the Olympic Peninsula. Reader submitted photo. Notably, every single person who works for NASA, the NWS or NOAA are paid with tax payer dollars.This means that we are paying to be medicated and poisoned. Here, to corroborate information being given by the NASA employee in the video, is the Code 8440 RMMO which states the exact purpose of using Wallops Flight Facility to launch a rocket containing lithium thermite: \u201cPurpose: The primary purpose of this mission was to test the loading methods for lithium canisters to be flown on the upcoming Kudeki (Kwajalein, April 2013) and Pfaff (Wallops, June 2013) missions, and verify their functionality under sounding rocket launch and space flight conditions. Rocket Type: Two-stage Terrier MK70 Improved-Orion Location: Wallops Range Launcher: MRL Date of Launch: January 29, 2013 Time: 17:50 EST Experiment results: Thermistor data looked nominal. Good report from airborne optical platform of recorded video and lithium clouds also visible by ground observation.\u2019 We also learn from this specific call that lithium has been dumped in our skies since"}, {"title": "rpj-wikipedia", "text": "at Dallas, measures the motion of charged particles in the ionosphere; and two ultraviolet imagers built at University of California, Berkeley, observe the airglow layers in the upper atmosphere in order to determine both ionospheric and thermospheric density and composition. Many low-Earth orbiting satellites, including the International Space Station (ISS), fly through the ionosphere and can be affected by its changing electric and magnetic fields. The ionosphere also acts as a conduit for many communications signals, such as radio waves and the signals that make GPS systems work. The ionosphere is where space weather manifests, creating unexpected conditions; electric currents can cause electrical charging of satellites, changing density can affect satellite orbits, and shifting magnetic fields can induce current in power systems, causing strain, disrupting communications and navigation or even triggering blackouts. Improved understanding of this environment can help predict such events and improve satellite safety and design. Launch planning Upon initial completion and delivery of the ICON observatory in 2016, launch plans centered around the launch range at Kwajalein Atoll in the Pacific Ocean. ICON was originally scheduled to launch in June 2017, but was repeatedly delayed because of problems with its Pegasus XL launch vehicle. The launch vehicle was mated to its air-launch aircraft Stargazer for a launch attempt in June 2018. This launch was cancelled days before because the rocket showed issues on the first leg of the ferry flight to Kwajalein. Given the availability of the launch range in Cape Canaveral, and a review of the suitability of this site, it was"}, {"title": "rpj-common-crawl-2020-05", "text": "panels successfully deployed, indicating it has power with all systems operating. After an approximately month-long commissioning period, ICON will begin sending back its first science data in November. ICON will study changes in a region of the upper atmosphere called the ionosphere. In addition to interfering with communications signals, space weather in the ionosphere can also prematurely decay spacecraft orbits and expose astronauts to radiation-borne health risks. Historically, this critical region of near-Earth space has been difficult to observe. Spacecraft can't travel through the low parts of the ionosphere and balloons can't travel high enough. \"ICON has an important job to do \u2013 to help us understand the dynamic space environment near our home,\" said Nicola Fox, director for heliophysics at NASA Headquarters in Washington. \"ICON will be the first mission to simultaneously track what's happening in Earth's upper atmosphere and in space to see how the two interact, causing the kind of changes that can disrupt our communications systems.\" ICON explores the connections between the neutral atmosphere and the electrically charged ionosphere with four instruments. Three of the instruments rely on one of the upper atmosphere's more spectacular phenomena: colorful bands called airglow. Airglow is created by a similar process that creates the aurora \u2013 gas is excited by radiation from the Sun and emits light. Though aurora are typically confined to extreme northern and southern latitudes, airglow happens constantly across the globe, and is much fainter. But it's still bright enough for ICON's instruments to build up a picture of the ionosphere's density, composition"}, {"title": "rpj-common-crawl-2020-05", "text": "through its eyes.\u201d As far as space goes, the ionosphere is as close to home as it gets. Its constant changes can affect astronauts, satellites and much of the communications signals modern society relies upon. Scientists want to understand these changes, so they can eventually better predict them and protect our interests in space. Space may look empty, but the ionosphere brims with electrically charged gases, solar radiation, and electric and magnetic fields. Turbulence in this sea of charged particles can manifest as disruptions that interfere with orbiting satellites or communication and navigation signals used, for example, to guide airplanes, ships and self-driving cars. Depending on the energy it absorbs from the Sun, the ionosphere grows and shrinks. For that reason, scientists long thought this part of space was only affected by what happens in the space above it. NASA\u2019s Ionospheric Connection Explorer, or ICON, will orbit in the far reaches of the upper atmosphere, the bottom edge of near-Earth space. From this vantage point, ICON observes both the upper atmosphere and a layer of charged particles called the ionosphere. (Credits: NASA\u2019s Goddard Space Flight Center/G. Duberstein) But over the past decade, a growing body of evidence has indicated the region is much more variable than we can explain with solar activity alone. The ionosphere\u2019s contents are not evenly distributed: Dense patches of its charged gases, called plasma, are scattered throughout. Eventually, researchers linked these patches to global weather patterns \u2014 large-scale events such as several hurricanes rushing across the ocean at once, or changes in"}, {"title": "rpj-common-crawl-2019-30", "text": "Home / Science / Two NASA satellites will investigate the Earth's ionosphere with SpaceX Falcon Heavy Two NASA satellites will investigate the Earth's ionosphere with SpaceX Falcon Heavy June 17, 2019 Science 1 Views NASA will launch two identical miniature satellites next week to understand how the Earth's atmosphere clouds the radio signals we rely on for communication and navigation. The pair will be among the 24 satellites flying into space for the third time with SpaceX's Falcon Heavy rocket. The start date for is set to June 24 after some delays. The two identical spaceships are Cubesat's miniature satellites, originally used only in near-Earth orbits, but today are sometimes used for interplanetary missions. These twin satellites, named E-TBEx, short for Enhanced Tandem Beacon Experiment, remain near the house. When orbiting near the Earth, they provide the scientists with important information on how radio signals can be interrupted as they traverse the upper atmosphere of the planet. Related: In photos: SpaceX's heavy triple rocket landing of Arabsat-6A The Earth's ionosphere, a layer in the upper atmosphere created by solar and cosmic rays is bombarded and therefore full of charged particles, contains \"structured bubbles\". These bubbles can distort radio signals that interfere with military and aviation communication as well as GPS signals, NASA said in a statement in particular, over the equator. If we learn more about these bubbles, NASA says we can avoid the signal problems they cause. However, scientists currently do not know when bubbles will form or how they will change over time. \"It's"}, {"title": "rpj-common-crawl-2020-05", "text": "NASA scientists hope to better understand far outer atmosphere with ICON mission by: Kristen Currie Posted: Oct 9, 2019 / 04:01 PM CDT / Updated: Oct 9, 2019 / 04:57 PM CDT NASA is set to launch a new satellite, the Ionospheric Connection Explorer (ICON), into orbit Wednesday night on the Northrop Grumman Pegasus XL rocket. Their hope is to better understand the ways in which the far outer atmosphere is affected by space weather and Earth-based turbulence. ICON is planned for a two year mission circling 360 miles above the Earth. Purple shading indicates \u2018ionosphere\u2019 \u2013 thick layer of charged particles 50 to 360 miles above the surface of the planet What is the ionosphere? The ionosphere is the outermost layer of the atmosphere stretching 30 miles to 600 miles above the surface. This part of the atmosphere is important as this is what makes radio communications and GPS navigation possible. ICON\u2019s goal As stated by NASA: \u201cPressure differences created by weather near Earth\u2019s surface can propagate into the very highest reaches of the upper atmosphere and influence the winds in this region. The exact role these winds\u2014and by extension, terrestrial weather\u2014play in shaping the ionosphere remains an outstanding question, and one that scientists hope ICON will answer.\u201d Exploring the Ionosphere, Earth\u2019s Interface to Space | NASA Unpredictable changes in the ionosphere can interfere with communication and navigation here at the surface. Changes in the electric current in the ionosphere can put strain on surface-based technologies and in some cases, causing outages. For more information"}, {"title": "rpj-common-crawl-2019-30", "text": "Home \u203a Aerospace \u203a NASA Previews Mission to Study Frontier of Space NASA Previews Mission to Study Frontier of Space By TugaKe \u2022 May 30, 2018 Processes in Earth\u2019s ionosphere create bright swaths of color in the sky, known as airglow, as seen here in an image taken from the International Space Station. NASA\u2019s Ionospheric Connection (ICON) mission will track airglow to observe how interactions between Earth\u2019s weather and the ionosphere create changes in our space environment. Credits: NASA NASA will host a media briefing at 1 p.m. EDT Monday, June 4, on the agency\u2019s mission to explore Earth\u2019s ionosphere and the processes there that impact life on Earth\u2019s surface. The event will air live on NASA Television, the agency\u2019s website and Facebook Live. Ionospheric Connection Explorer (ICON) will study the layer of charged particles extending from about 50 to 360 miles above Earth\u2019s surface, through which radio communications and GPS signals travel, and the processes there that can distort or even disrupt these signals. Knowledge gleaned from this mission will aid in mitigating its effects on satellites and communications technology worldwide. The event will be held at NASA\u2019s Goddard Space Flight Center in Greenbelt, Maryland. Participants will include: Willis Jenkins, ICON program executive at NASA Headquarters, Washington Thomas Immel, mission principal investigator at the University of California Berkeley\u2019s Space Sciences Laboratory Rebecca Bishop, ionospheric research scientist at Aerospace Corporation Douglas Rowland, mission scientist at Goddard Media who would like to attend the briefing or participate by phone must email their name, media affiliation and phone"}, {"title": "bm25", "text": "wind speeds as low as , even though the spacecraft is traveling at over (to stay in orbit). IVM collects in situ data about ions in the local environment around the spacecraft, whereas EUV and FUV are spectrographic imagers. EUV is a 1-dimension limb imager designed to observe height and density of the daytime ionosphere by detecting the glow of oxygen ions and other species at wavelengths between 55 and 85 nm. FUV is a 2-dimension imager that observes the limb and below at 135 and 155 nm, where bright emissions of atomic oxygen and molecular nitrogen are found The solar panel produces 780 watts, but the observatory's power consumption ranges between 209 and 265 watts when in science mode. Mission Operations Once launched, and for the duration of its two-year science mission, the ICON observatory is controlled and operated by the Mission Operations Center (MOC) at the Space Sciences Laboratory at University of California, Berkeley. The UCB MOC currently operates seven NASA satellites. ICON was placed into a 27.00\u00b0 inclination orbit, and communications are through Tracking and Data Relay Satellite System (TDRSS), the orbiting NASA communications network. Ground contacts with ICON are performed mainly from the Berkeley Ground Station, an dish, with backup contacts out of Wallops Flight Facility (WFF), Virginia and Santiago, Chile. Loss of Contact The NASA ICON team lost contact with the ICON spacecraft on 25 November 2022. A fail-safe system designed to reset the spacecraft computer after 8 days with no receipt of commands from the ground failed to restore communications"}, {"title": "bm25", "text": "ICON, short for Ionospheric Connection Explorer \u2014 rocketed into orbit following a two-year delay. The refrigerator-size ICON satellite will study the airglow formed from gases in the ionosphere and also measure the charged environment right around the spacecraft which is at a level of 580 kilometers above the Earth\u2019s surface. The ionosphere is the charged part of the upper atmosphere extending several hundred miles (kilometers) up. It\u2019s in constant flux as space weather bombards it from above and Earth weather from below, sometimes disrupting radio communications. Why study Ionosphere? There\u2019s too much going on in this region to be caused by just the sun. Hurricanes, tornadoes and other extreme weather conditions on Earth are also adding energy. The more scientists know the better spacecraft and astronauts can be protected in orbit through improved forecasting. A NASA satellite launched last year, Gold, is also studying the upper atmosphere, but from much Higher Up. PRIVACY RIGHTS & WRONGS TRAI had commenced a process of consultations to bring over the top (OTT) services like WhatsApp and Telegram under \u201clawful interception\u201d. The objective of the exercise is public security since criminals and terrorists are known to use end-to-end encryption offered by such services to fly under the radar. Parity has always been an issue since telecom providers complain that they are regulated and must respond to requests for information from governments and agencies. But the OTT sector is untrammelled. Is Interception Technologically Feasible, at all? Technology companies have argued that end-to-end encryption is completely private between the correspondents in the"}, {"title": "bm25", "text": "the L-1011 will put the airplane on an easterly heading before commanding the release of the winged Pegasus XL at an altitude of around 39,000 feet (11,900 meters). The drop time is set for 9:30 p.m. EDT on Oct. 9 (0130 GMT on Oct. 10). There\u2019s a 90-minute launch window available. Three solid-fueled rocket motors on the Pegasus XL launcher will propel the ICON spacecraft into a 357-mile-high (575-kilometer) orbit. ICON carries scientific instruments to investigate plasma waves in the ionosphere, a layer in the upper atmosphere where colorful auroras are generated. Changes in the ionosphere can also affect communications and navigation signals coming from satellites, and ICON will study how weather systems lower in the atmosphere can influence conditions at the edge of space. Like its Pegasus launcher, the ICON spacecraft was built by Northrop Grumman. ICON\u2019s ride into space has been delayed more than two years by concerns related to its Pegasus rocket. The mission was originally supposed to launch over the Pacific Ocean near Kwajalein Atoll, the home of a remote U.S. military test site in the Marshall Islands. NASA\u2019s ICON spacecraft was attached to its Pegasus XL rocket Sept. 10 inside Building 1555 at Vandenberg Air Force Base, California. Credit: NASA/Randy Beaudoin Engineers wanted more time to inspect the Pegasus rocket motors after they were mishandled during shipment to Vandenberg. That pushed the launch back from June to December 2017, the next availability in the military-run range at Kwajalein. Then managers decided to ground the mission to assess the reliability of bolt-cutters"}, {"title": "bm25", "text": "NASA launches satellite to explore the region where air meets space by Shiva BolakheOctober 16, 2019 NASA launched a satellite on Thursday night to explore the mysterious, dynamic region where air meets space. The satellite called Icon, short for Ionospheric Connection Explorer rocketed into orbit following a two-year delay. It was dropped from a plane flying over the Atlantic off the Florida coast. Five seconds after the satellite\u2019s release, the attached Pegasus rocket ignited, sending Icon on its way. The ionosphere is the charged part of the upper atmosphere extending several hundred miles (kilometers) up. It\u2019s in constant flux as space weather bombards it from above and Earth weather from below, sometimes disrupting radio communications. \u201cThis protected layer, it\u2019s the top of our atmosphere. It\u2019s our frontier with space,\u201d said NASA\u2019s heliophysics division director, Nicola Fox. Fox said there\u2019s too much going on in this region to be caused by just the sun. Hurricanes, tornadoes and other extreme weather conditions on Earth are also adding energy, she noted. The more scientists know, the better spacecraft and astronauts can be protected in orbit through improved forecasting. The refrigerator-size Icon satellite will study the airglow formed from gases in the ionosphere and also measure the charged environment right around the 360-mile-high (580-kilometer-high) spacecraft. \u201cIt\u2019s a remarkable physics laboratory,\u201d said principal scientist Thomas Immel of the University of California, Berkeley, which is overseeing the two-year mission. He added: \u201cIcon goes where the action is.\u201d A NASA satellite launched last year, Gold, is also studying the upper atmosphere, but from"}, {"title": "bm25", "text": "flux as space weather bombards it from above and Earth weather from below, sometimes disrupting radio communications. \u201cThis protected layer, it\u2019s the top of our atmosphere. It\u2019s our frontier with space,\u201d said NASA\u2019s heliophysics division director, Nicola Fox. The more scientists know, the better spacecraft and astronauts can be protected in orbit through improved forecasting. The refrigerator-size Icon satellite will study the airglow formed from gases in the ionosphere and also measure the charged environment right around the 360-mile-high (580-kilometer-high) spacecraft. \u201cIt\u2019s a remarkable physics laboratory,\u201d said principal scientist Thomas Immel of the University of California, Berkeley, which is overseeing the two-year mission. He added: \u201cIcon goes where the action is.\u201d A NASA satellite launched last year, Gold, is also studying the upper atmosphere, but from much higher up. More missions are planned in coming years to study the ionosphere, including from the International Space Station. Ionosphere: The ionosphere is the ionized part of Earth's upper atmosphere, from about 60 km to 1,000 km altitude, a region that includes the thermosphere and parts of the mesosphere and exosphere. The ionosphere is ionized by solar radiation. Show Stuff The Dark Horde, LLC \u2013 http://www.thedarkhorde.com Twitter @DarkHorde TeePublic Store - Get your UBR goodies today! http://tee.pub/lic/2GQuXxn79dg UBR Truth Seekers Facebook Group: https://www.facebook.com/groups/216706068856746 UFO Buster Radio: https://www.facebook.com/UFOBusterRadio YouTube Channel: https://www.youtube.com/channel/UCggl8-aPBDo7wXJQ43TiluA To contact Manny: manny@ufobusterradio.com, or on Twitter @ufobusterradio Call the show anytime at (972) 290-1329 and leave us a message with your point of view, UFO sighting, and ghostly experiences or join the discussion on www.ufobusterradio.com For Skype Users:"}, {"title": "bm25", "text": "California on Sept. 10, 2019. Photo credit: NASA/Randy Beaudoin \u201cWhen your launch pad is moving at 500/600 miles per hour, things happen,\u201d said Baez. \u201cThe first attempt got us because we lost positive communication with the aircraft and the ground, and our rule is to abort the flight and go back around and try it again. And we were able to execute it flawlessly.\u201d The region of space where ICON will conduct its study \u2013 the ionosphere \u2013 comprises of winds that are influenced by many different factors: Earth\u2019s seasons, the heating and cooling that takes place throughout the day, and bursts of radiation from the Sun. This region also is where radio communications and GPS signals travel, and fluctuations within the ionosphere can cause significant disruptions to these critical technologies. As a response to the recent scientific discovery that the ionosphere is significantly impacted by storms in Earth\u2019s lower atmosphere, Northrop Grumman designed, integrated and tested the ICON satellite under a contract from the University of California Berkeley\u2019s Space Sciences Laboratory. NASA\u2019s Launch Services Program at Kennedy is responsible for launch service acquisition, integration, analysis and launch management. The ICON mission is part of NASA\u2019s Explorer Program managed by the agency\u2019s Goddard Space Flight Center in Maryland for the Science Mission Directorate in Washington, which aims to provide frequent flight opportunities for small- to medium-sized spacecraft that are capable of being built, tested and launched in a shorter period of time. ICON is expected to improve the forecasts of extreme space weather by utilizing in-situ"}, {"title": "bm25", "text": "California on Sept. 10, 2019. Photo credit: NASA/Randy Beaudoin \u201cWhen your launch pad is moving at 500/600 miles per hour, things happen,\u201d said Baez. \u201cThe first attempt got us because we lost positive communication with the aircraft and the ground, and our rule is to abort the flight and go back around and try it again. And we were able to execute it flawlessly.\u201d The region of space where ICON will conduct its study \u2013 the ionosphere \u2013 comprises of winds that are influenced by many different factors: Earth\u2019s seasons, the heating and cooling that takes place throughout the day, and bursts of radiation from the Sun. This region also is where radio communications and GPS signals travel, and fluctuations within the ionosphere can cause significant disruptions to these critical technologies. As a response to the recent scientific discovery that the ionosphere is significantly impacted by storms in Earth\u2019s lower atmosphere, Northrop Grumman designed, integrated and tested the ICON satellite under a contract from the University of California Berkeley\u2019s Space Sciences Laboratory. NASA\u2019s Launch Services Program at Kennedy is responsible for launch service acquisition, integration, analysis and launch management. The ICON mission is part of NASA\u2019s Explorer Program managed by the agency\u2019s Goddard Space Flight Center in Maryland for the Science Mission Directorate in Washington, which aims to provide frequent flight opportunities for small- to medium-sized spacecraft that are capable of being built, tested and launched in a shorter period of time. ICON is expected to improve the forecasts of extreme space weather by utilizing in-situ"}, {"title": "bm25", "text": "ICON Satellite launched NASA launched a satellite on 10 October 2019 night to explore the mysterious, dynamic region where air meets space. The satellite \u2014 called ICON, short for Ionospheric Connection Explorer \u2014 rocketed into orbit following a two-year delay. It was dropped from a plane flying over the Atlantic off the Florida coast. Five seconds after the satellite\u2019s release, the attached Pegasus rocket ignited, sending Icon on its way. The ionosphere is the charged part of the upper atmosphere extending several hundred miles (kilometers) up. It\u2019s in constant flux as space weather bombards it from above and Earth weather from below, sometimes disrupting radio communications. This protected layer, it\u2019s the top of our atmosphere. It\u2019s our frontier with space, said NASA\u2019s heliophysics division director, Nicola Fox. The refrigerator-size ICON satellite will study the airglow formed from gases in the ionosphere and also measure the charged environment right around the spacecraft which is at a level of 580 kilometers above the Earth\u2019s surface. A NASA satellite launched last year, Gold, is also studying the upper atmosphere, but from much higher up. More missions are planned in coming years to study the ionosphere, including from the International Space Station. ICON should have soared in 2017, but problems with Northrop Grumman\u2019s air-launched Pegasus rocket interfered. Despite the long delay, NASA said the $252 million mission did not exceed its price cap. Share It Now:"}, {"title": "bm25", "text": "Ionospheric Connection Explorer (ICON) Satellite Reagan Test Site, Kwajalein Atoll Pegasus XL launch vehicle Launch Mass Mission Life The Ionospheric Connection Explorer (ICON) satellite is scheduled to be launched in November 2017. Image: courtesy of Orbital ATK. The satellite will include Far Ultra Violet Imaging Spectrograph. Image: courtesy of Nasa/UC Berkeley/ICON. The Michelson Interferometer for Global High-resolution Thermospheric Imaging (MIGHTI) instrument for the satellite was built by the Naval Research Laboratory. Image: courtesy of Nasa/UC Berkeley/ICON. The Ionospheric Connection Explorer (ICON) satellite aims to explore Earth\u2019s ionosphere and thermosphere and is expected to be launched in November 2017. The satellite will be placed 575km away from the low-Earth orbit at 27\u00b0 inclination. ICON is being developed by National Aeronautics and Space Administration (NASA) under the Heliophysics explorer programme in partnership with the University of California/Berkeley\u2019s Space Sciences Laboratory (UCB/SSL). ICON spacecraft design and development The spacecraft will have a launch mass of 272kg and will measure 3ft x 6ft. It will have articulated solar arrays, which can generate 780W of power. It will include three-axis stabilisation, data storage capacity of 16Gbit, and 3.5Mbps data downlink. Designed for a mission life of two years, the satellite will be based on the LEOStar\u2122-2 platform developed by Orbital ATK. The contract for ICON satellite design, development, observatory integration and test, and launch operations was awarded to Orbital ATK in 2013. The satellite\u2019s design and manufacturing was completed at Orbital\u2019s facility located in Dulles, Virginia, US, while its environmental testing was completed at Orbital ATK\u2019s facility located in Gilbert, Arizona,"}], "hoverinfo": "text"}, {"x": [-0.19054202735424042, -0.19505737721920013, -0.18743625283241272, -0.10498557239770889, -0.1229858547449112, -0.14956896007061005, -0.15007996559143066, -0.16705283522605896, -0.121819868683815, -0.1670602709054947, -0.1481357216835022, -0.1429993063211441, -0.1325446218252182, -0.13896353542804718, -0.19091802835464478, -0.15268009901046753, -0.178547203540802, -0.15996019542217255, -0.11781705170869827, -0.17017844319343567, -0.16710707545280457, -0.1771298199892044, -0.170147106051445, -0.12729305028915405, -0.19933997094631195, -0.12925350666046143, -0.17971691489219666, -0.1869228333234787, -0.1792323887348175, -0.14915847778320312, -0.2208840250968933, -0.1991785764694214, -0.1264757513999939, -0.12360486388206482, -0.10953870415687561, -0.22084611654281616, -0.13221362233161926, -0.17319563031196594, -0.11595518887042999, -0.20443673431873322, -0.18012189865112305, -0.15949372947216034, -0.14325545728206635], "y": [0.07278895378112793, -0.06657616794109344, 0.04952239990234375, -0.030774321407079697, -0.07987046986818314, -0.05663111060857773, -0.07417964935302734, -0.06171196699142456, -0.04107755795121193, 0.06440569460391998, -0.0830681174993515, 0.04157756268978119, -0.02399595081806183, -0.12614299356937408, -0.01254540216177702, -0.049558624625205994, 0.015571000054478645, 0.014598751440644264, -0.024360310286283493, 0.0008210961241275072, 0.061823900789022446, -0.025435378775000572, -0.04404247924685478, -0.04739115759730339, -0.0045320321805775166, 0.04048404470086098, -0.05190752074122429, 0.007926939986646175, 0.0024761701934039593, -0.05397110432386398, 0.06053825095295906, -0.009354520589113235, -0.09827401489019394, -0.07615756243467331, -0.02513410523533821, 0.06059341877698898, -0.0098873944953084, -0.03488778695464134, -0.027294369414448738, -0.05708836019039154, -0.011558089405298233, -0.005163703113794327, -0.046570055186748505], "mode": "markers", "name": "Cluster 9", "marker": {"size": 8, "color": "rgb(188,128,189)"}, "text": ["Document 947", "Document 1005", "Document 1007", "Document 1017", "Document 1022", "Document 1037", "Document 1042", "Document 1051", "Document 1071", "Document 1087", "Document 1103", "Document 1112", "Document 1119", "Document 1138", "Document 1142", "Document 1176", "Document 1182", "Document 1183", "Document 1189", "Document 1211", "Document 1232", "Document 1253", "Document 1255", "Document 1270", "Document 1286", "Document 1296", "Document 1309", "Document 1310", "Document 1312", "Document 1346", "Document 1360", "Document 1368", "Document 1369", "Document 1377", "Document 1386", "Document 1394", "Document 1417", "Document 1422", "Document 1431", "Document 1453", "Document 1458", "Document 1475", "Document 1483"], "customdata": [{"title": "rpj-common-crawl-2019-30", "text": "explains: \"Fortunately the engines produced no sparks. A spark would have caused an explosion and we would have been vaporized.\u201d Nearly lost in space... But minutes before the retro-rockets were supposed to fire, kicking off the descent through the atmosphere, the spacecraft\u2019s automatic re-entry system failed. The men would have to fire the rockets manually \u2013 something that had never been done, and required incredible precision. If the burn was too short, the Voskhod 2 would hit the atmosphere at too shallow an angle, bouncing back into space. But if the burn continued for too long, it would come down at too steep an angle. This would cause it to plummet at much too high a speed - and be destroyed. With the right burn duration, at the right time, the capsule would plunge through the atmosphere on a trajectory that would bring it down safely. Then actually lost... The rocket firing went well, but the cosmonauts had little control over where they would land. The best they could hope for was that the craft would touch down somewhere in the Soviet Union\u2019s vast landmass. Then spun like crazy... During the descent to Earth, the spacecraft\u2019s equipment module, which contained engines and propellant, failed to fully detach as planned. The cosmonauts were exposed to high G forces as both the equipment and descent modules of the spacecraft started tumbling. However, the ordeal ended when the cable linking the modules burned through, freeing the cosmonauts\u2019 capsule. Then frozen... As it got dark, the cosmonauts realised they would"}, {"title": "bm25", "text": "Shenzhou 2 () launched on January 9, 2001, was the second unmanned launch of the Shenzhou spacecraft. Inside the reentry capsule were a monkey, a dog and a rabbit in a test of the spaceship's life support systems. The reentry module separated from the rest of the spacecraft after just over seven days in orbit, with the orbital module staying in orbit for another 220 days. Shenzhou 2 tested the spacecraft much more rigorously than its predecessor Shenzhou 1. After being launched into a 196.5 by 333.8 km orbit, 20.5 hours after launch it circularised its orbit to 327.7 by 332.7 km. Around 1220 UTC on January 12 it once again changed its orbit to 329.3 by 339.4 km. A third orbit change came on January 15 328.7 by 345.4 km. As well as the animal cargo, there were 64 different scientific payloads. 15 were carried in the reentry module, 12 in the orbital module and 37 on the forward external pallet. These included a microgravity crystallography experiment; animal species including six mice, and small aquatic and terrestrial organisms; cosmic ray and particle detectors and a gamma ray burst detectors. To test the radio transmitting systems taped messages were broadcast from the spacecraft. Successful reentry and failed landing The signal for retrofire was sent at about 1015 UTC on January 16 as the spacecraft passed over the South Atlantic Ocean off the coast of South Africa. It landed in Inner Mongolia at 11:22 UTC. No photos were released of the landing capsule leading to some speculation"}, {"title": "bm25", "text": "eating and hygiene, and an airlock located above the Reentry module (the capsule), with the docking mechanism at the top. In the event of an emergency, it would be lifted away from the rocket along with the reentry module, and the fairing over the spacecraft was designed to successfully split apart either circumferentially just below the reentry module in such an emergency or longitudinally if the flight should be successful. Kliper was designed with the Orbital Module below its reentry module, and the docking mechanism below that. This was made possible by constructing a reentry module broader than the orbital module, so that a pair of rocket nozzles for orbital maneuvering could have been fitted alongside it, as the later Salyut space stations had. In connection with this new design, Kliper would feature a launch escape system that would enable it to detach from the carrier rocket if an abort of the mission during orbital ascent is required. An abort would be possible during every phase of the launch with the limitation of the first seconds after launch. Lifting body design On return from space, Kliper's lifting body design would not only allow a smoother descent into Earth's atmosphere than the capsule design, such as Soyuz; but also permit control. RKK Energia claimed that the craft would be able to land in a predetermined one-square-kilometre area. Artistic impressions showed that the Kliper would have resembled a cylinder topped by a cone. Originally, landing proposals involved both a landing by parachute and as an alternative, in a"}, {"title": "bm25", "text": "the station, two days after its launch. This model of resupply spacecraft, Progress 7K-TG, had been used for resupply missions to Soviet space stations since 1978. Progress 39 delivered 1,300 kg of supplies to the EO-4 crew, and remained docked to the station for 42 days. During this time, Progress 39 was used to boost the orbit of the space station. This was necessary due to the greater than normal atmospheric drag. The extra drag was caused by atmospheric expansion, which in turn was caused by the solar maximum occurring at the time, during solar cycle 22. The boost changed the Perigee and Apogee of the station from 325 km and 353 km AMSL to 340 km and 376 km, respectively. After the boost, Krikalev reported that he was unable to visually detect the change in altitude. The EO-4 crew filled Progress 39 with waste and excess equipment used during the Aragatz mission, and then the spacecraft undocked on February 7, and was intentionally destroyed during atmospheric reentry later that day. Progress 40 On February 10, the next resupply spacecraft, Progress 40 was launched, and it docked with Mir two days later. It remained docked to Mir for 18 days. During this time, it was announced that due to delays in the production of the Kristall module, the launch of the next Mir module, Kvant-2, would also be delayed. It was also announced that as a result, Mir would be left unmanned following EO-4. Progress 41 The final Progress resupply spacecraft of the expedition docked with"}, {"title": "bm25", "text": "Thor was a US space launch vehicle derived from the PGM-17 Thor intermediate-range ballistic missile. The Thor rocket was the first member of the Delta rocket family of space launch vehicles. The last launch of a direct derivative of the Thor missile occurred in 2018 as the first stage of the final Delta II. Thor-Able Thor was first used as a launch vehicle during the testing program of the warhead reentry vehicle for the Atlas missile. For these three tests a Thor core stage was topped by the Able second stage. Able used the Aerojet AJ-10-40 engine from the Vanguard second stage. The first such launch, 116, was lost on 23 April 1958 due to a turbopump failure in the main engine. The recovery of the reentry vehicles on the succeeding two attempts were not successful. Three mice, one on each vehicle, died in these tests. The Able stage from the Atlas reentry vehicle tests was upgraded to become the Able I with a third stage consisting of an unguided Altair X-248 solid-fuel rocket motor. A Thor Able I was used in an attempt to place the 84 lb (38 kg) Pioneer 0 spacecraft into lunar orbit where it would take pictures of the lunar surface with a TV camera. The mission ended prematurely at 73.6 seconds after launch on 17 August 1958 due to a turbopump failure. On 7 August 1959, a Thor-Able was used to successfully launch Explorer 6, the first satellite to transmit pictures of Earth taken from orbit. Ablestar Ablestar was a"}, {"title": "bm25", "text": "Progress M-12 () was a Russian uncrewed cargo spacecraft which was launched in 1992 to resupply the Mir space station. The thirtieth of sixty four Progress spacecraft to visit Mir, it used the Progress-M 11F615A55 configuration, and had the serial number 213. It carried supplies including food, water and oxygen for the EO-11 crew aboard Mir, as well as equipment for conducting scientific research, and fuel for adjusting the station's orbit and performing manoeuvres. Progress M-12 was launched at 21:29:25 GMT on 19 April 1992, atop a Soyuz-U2 carrier rocket flying from Site 1/5 at the Baikonur Cosmodrome. Following two days of free flight, it docked with the Forward port of the core module of Mir at 23:21:59 GMT on 21 April. During the 67 days for which Progress M-12 was docked, Mir was in an orbit of around , inclined at 51.6 degrees. Progress M-12 undocked from Mir at 21:34:44 GMT on 27 June, and was deorbited few hours later, to a destructive reentry over the Pacific Ocean at around 00:02:51 the next day. See also 1992 in spaceflight List of Progress flights List of uncrewed spaceflights to Mir References Spacecraft launched in 1992 Progress (spacecraft) missions"}, {"title": "bm25", "text": "Korabl-Sputnik 3 ( meaning Ship-Satellite 3) or Vostok-1K No.3, also known as Sputnik 6 in the West, was a Soviet spacecraft which was launched in 1960. It was a test flight of the Vostok spacecraft, carrying two dogs; Pcholka and Mushka (\"little bee\" and \"little fly\"; affectionate diminutives of \"pchela\" and \"mukha\", respectively), as well as a television camera and scientific instruments. Korabl-Sputnik 3 was launched at 07:30:04 UTC on 1 December 1960, atop a Vostok-L carrier rocket flying from Site 1/5 at the Baikonur Cosmodrome. It was successfully placed into low Earth orbit. The flight lasted one day, after which the spacecraft was deorbited ahead of its planned recovery. The deorbit burn began at 07:15 UTC on 2 December, however the engine did not cut off as planned at the end of the burn, and instead the spacecraft's fuel burned to depletion. This resulted in it reentering the atmosphere on a trajectory which might have permitted foreign powers to inspect the capsule. To prevent this, an explosive charge was detonated during reentry. Both Pchyolka and Mushka were killed in the resulting disintegration. They were the last dogs to die in a Soviet space mission, after Laika, who was never intended to survive her Sputnik 2 flight, and Chaika and Lisichka, perishing after the rocket carrying their \"Korabl Sputnik\" spacecraft disintegrated 20 seconds into the flight. Three weeks later, a follow-up launch to Korabl-Sputnik 3 also failed. On 22 December, the dogs Damka and Krasavka lifted off from LC-1 using a booster with an enhanced Blok"}, {"title": "bm25", "text": "Luna E-6 No.5, sometimes identified by NASA as Luna 1964B, was a Soviet spacecraft which was lost in a launch failure in 1964. It was a Luna Ye-6 spacecraft, the fifth of twelve to be launched. It was intended to be the first spacecraft to perform a soft landing on the Moon, a goal which would eventually be accomplished by the final Ye-6 spacecraft, Luna 9. Luna E-6 No.5 was launched at 08:08:28 UTC on 20 April 1964, atop a Molniya-M 8K78M carrier rocket, flying from Site 1/5 at the Baikonur Cosmodrome. The power system on the upper stage malfunctioned 340 seconds into the flight, causing the engine to cut off before reaching orbit. The upper stage and spacecraft disintegrated upon reentry into the atmosphere shortly afterwards. Prior to the release of information about its mission, NASA correctly identified that it had been an attempt to land a spacecraft on the Moon. References External links Zarya - Luna programme chronology Luna programme Spacecraft launched in 1964 Spacecraft launched by Molniya-M rockets"}, {"title": "bm25", "text": "new, manned moon ship. The first successful Zond (\"probe\") launch was on September 15, 1968, when Zond 5 was launched. A biological payload of turtles, wine flies, mealworms, plants, seeds, bacteria, and other living matter was included in the flight. On September 18, 1968, the spacecraft flew around the Moon. On September 21, 1968, the reentry capsule entered the earth's atmosphere, braked aerodynamically, and deployed parachutes at 7 km. The capsule splashed down in the Indian Ocean and was successfully recovered, but a failure of the reentry guidance system subjected the biological specimens to a ballistic 20G reentry. Zond 6 was launched on a lunar flyby mission on November 10, 1968. The spacecraft carried a biological payload similar to Zond 5. Zond 6 flew around the Moon on November 14, 1968. Unfortunately, the spacecraft lost a gasket on the return flight resulting in the loss of cabin atmosphere and destruction of the biological specimens. From 1966 to 1969, the U.S. launched three missions in the Biosatellite series. A total of six flights were planned. The first mission in the Biosatellite series, Biosatellite I, was launched on December 14, 1966, from Cape Kennedy by a Delta rocket. The scientific payload, consisting of 13 select biology and radiation experiments, was exposed to microgravity during 45 hours of Earth-orbital flight. Experimental biology packages on the spacecraft contained a variety of specimens, including insects, frog eggs, microorganisms, and plants. Reentry into the Earth's atmosphere was not achieved because the retrorocket failed to ignite and the biosatellite was never recovered. Although"}, {"title": "bm25", "text": "the reentry module by a bundle of wires. At around 07:35 UTC, the two parts of the spacecraft began reentry and went through strong gyrations as Vostok 1 neared Egypt. At this point the wires broke, the two modules separated, and the descent module settled into the proper reentry attitude. Gagarin telegraphed \"Everything is OK\" despite continuing gyrations; he later reported that he did not want to \"make noise\" as he had (correctly) reasoned that the gyrations did not endanger the mission (and were apparently caused by the spherical shape of the reentry module). As Gagarin continued his descent, he remained conscious as he experienced about 8 g during reentry. (Gagarin's own report states \"over 10 g\".) At 07:55 UTC, when Vostok 1 was still from the ground, the hatch of the spacecraft was released, and two seconds later Gagarin was ejected. At altitude, the main parachute was deployed from the Vostok spacecraft. Gagarin's parachute opened almost immediately, and about ten minutes later, at 08:05 UTC, Gagarin landed. Both he and the spacecraft landed via parachute south west of Engels, in the Saratov region at . A farmer and her granddaughter, Rita Nurskanova, observed the strange scene of a figure in a bright orange suit with a large white helmet landing near them by parachute. Gagarin later recalled, \"When they saw me in my space suit and the parachute dragging alongside as I walked, they started to back away in fear. I told them, don't be afraid, I am a Soviet citizen like you, who has"}, {"title": "bm25", "text": "Crews, Neubeck, Truly. Operational MOLs were to be launched on Titan IIIM rockets from Vandenberg AFB SLC-6 and Cape Canaveral AFS LC-40. Test flight OPS 0855 for MOL was launched on 3 November 1966 at 13:50:42 UTC on a Titan IIIC-9 from Cape Canaveral Launch Complex 40. The flight consisted of a MOL mockup built from a Titan II propellant tank, and the refurbished capsule from the Gemini 2 mission as a prototype Gemini B spacecraft. After the Gemini B prototype separated for a sub-orbital reentry, the MOL mockup continued into orbit and released three satellites. A hatch installed in the Gemini's heat shield\u2014intended to provide access to the MOL during manned operations\u2014was tested during the capsule's reentry. The Gemini capsule was recovered near Ascension Island in the South Atlantic by the USS La Salle after a flight of 33 minutes. The Gemini no.2 capsule used in the only flight of the MOL program is on display at the Air Force Space & Missile Museum at Cape Canaveral Air Force Station. A test article at the National Museum of the United States Air Force, Wright-Patterson AFB, Ohio, is the Gemini B spacecraft (sometimes confused with Blue Gemini). It is recognized by its distinctive \"US Air Force\" written on the side, and the circular hatch cut through the heat shield. Starting in 1965 a large optical system was added to the spacecraft for military reconnaissance. This camera system was codenamed Dorian and given the designation KH-10. The project was canceled on 10 June 1969 before any operational"}, {"title": "bm25", "text": "allow the crew of the Soyuz to take photographs of the solar corona. Another brief docking was made before the ships went their separate ways. The Soviets remained in space for five days, and the Americans for nine, during which the Apollo crew also conducted Earth observation experiments. Re-entry and aftermath The mission was considered a great success, both technically and as a public-relations exercise for both nations. The only serious problem was during reentry and splashdown of the Apollo craft, during which the crew were accidentally exposed to toxic nitrogen tetroxide fumes, caused by the reaction control system (RCS) oxidizer venting from the spacecraft and reentering a cabin air intake. The RCS was inadvertently left on during descent, and nitrogen tetroxide was sucked into the spacecraft as it drew in outside air. Brand briefly lost consciousness, while Stafford retrieved emergency oxygen masks, put one on Brand, and gave one to Slayton. The three astronauts were hospitalized for two weeks in Honolulu.[17] Brand took responsibility for the mishap; because of high noise levels in the cabin during reentry, he believes he was unable to hear Stafford call off one item of the reentry checklist, the closure of two switches which would have automatically shut off the RCS and initiated drogue parachute deployment. These procedures were manually performed later than usual, allowing the ingestion of the propellant fumes through the ventilation system.[18] The ASTP was the final flight of an Apollo spacecraft. Immediately after the launch of the Apollo spacecraft, preparations began to convert Launch Pad 39B"}, {"title": "bm25", "text": "Moscow Time. This time was chosen so that when the capsule started to fly over Africa, which was when the retrorockets would need to fire for reentry, the solar illumination would be ideal for the orientation system's sensors. At 18:00, once various physiological readings had been taken, the doctors instructed the cosmonauts not to discuss the upcoming missions. That evening Gagarin and Titov relaxed by listening to music, playing pool, and chatting about their childhoods. At 21:50, both men were offered sleeping pills, to ensure a good night's sleep, but they both declined. Physicians had attached sensors to the cosmonauts, to monitor their condition throughout the night, and they believed that both had slept well. Gagarin's biographers Doran and Bizony say that neither Gagarin nor Titov slept that night. Chief Designer Sergei Korolev did not sleep that night, due to anxiety caused by the imminent spaceflight. Gagarin statement before the mission Before the mission, Gagarin made a statement to the press, addressed to the Soviet Union and to the whole world: Flight At 05:30 Moscow time, on the morning of April 12, 1961, both Gagarin and his backup Titov were woken. They were given breakfast, assisted into their spacesuits, and then were transported to the launch pad. Gagarin entered the Vostok 1 spacecraft, and at 07:10 local time (04:10 UTC), the radio communication system was turned on. Once Gagarin was in the spacecraft, his picture appeared on television screens in the launch control room from an onboard camera. Launch would not occur for another two hours,"}, {"title": "bm25", "text": "lunar surface. Aug. 1-Jan. 31, 1968: The Lunar Orbiter-5 conducts a mission to map the Moon. Sept. 8-11: The Surveyor-5 lander reaches the lunar surface. Nov. 4: NASA Associate Administrator for Manned Space Flight George Mueller releases the planned schedule for Apollo missions to be flown in 1968 and 1969, leading to a lunar landing. Nov. 7 The Surveyor-6 lifts off. Nov. 9: The first Saturn-5 rocket launches an unmanned Apollo-4 spacecraft into the Earth orbit. Nov. 9: The Surveyor-6 lands on the lunar surface. Feb. 2: The 3rd attempt to conduct live test firing of the 3rd stage of the N1 rocket (Block V) at NII-229's EU-16 facility in Zagorsk. (52) Successful. (129) Feb. 7: The E-6LS lunar orbiter fails to reach the Earth's orbit. March 2: The UR-500K rocket launches the L1 spacecraft into a test flight announced as Zond-4. Its reentry capsule self-destructed during the reentry. April 7: The launch of the Luna-14 lunar orbiter to test DRK long-range communications system. April 14: A test flight of the unmanned Soyuz spacecraft, announced as Kosmos-212. April 23: An UR-500K rocket fails to deliver the L1 No. 7L spacecraft into orbit. June 15: The 1st attempt to conduct live test firing of the 2nd stage of the N1 rocket (Block B) at NII-229's EU-15 facility in Zagorsk. (52) Aborted. (129) June 23: The 2nd attempt to conduct live test firing of the 2nd stage of the N1 rocket (Block B) at NII-229's EU-15 facility in Zagorsk with six engines firing. (52) Successful. (129) July 14:"}, {"title": "bm25", "text": "radiate signals to and receive signals from the spacecraft, and a voice and data communications network to connect all mission elements.[1] The launch vehicle is used to propel the spacecraft from the Earth's surface, through the atmosphere, and into an orbit, the exact orbit being dependent upon mission configuration. The launch vehicle may be expendable or reusable. Reusable spacecraft The Space Shuttle Columbia seconds after engine ignition. The first reusable spacecraft, the X-15, was air-launched on a suborbital trajectory on July 19, 1963. The first partially reusable orbital spacecraft, the Space Shuttle, was launched by the USA on the 20th anniversary of Yuri Gagarin's flight, on April 12, 1981. During the Shuttle era, six orbiters were built, all of which have flown in the atmosphere and five of which have flown in space. The Enterprise was used only for approach and landing tests, launching from the back of a Boeing 747 and gliding to deadstick landings at Edwards AFB, California. The first Space Shuttle to fly into space was the Columbia, followed by the Challenger, Discovery, Atlantis, and Endeavour. The Endeavour was built to replace the Challenger when it was lost in January 1986. The Columbia broke up during reentry in February 2003. The first automatic partially reusable spacecraft was the Buran (Snowstorm), launched by the USSR on November 15, 1988, although it made only one flight. This spaceplane was designed for a crew and strongly resembled the U.S. Space Shuttle, although its drop-off boosters used liquid propellants and its main engines were located at the"}, {"title": "bm25", "text": "Miles O'Brien for Spaceflight Now's highly successful shuttle prelaunch webcasts. \"We have purposely been operating for the last few years under the radar because we did not want to be looked upon as some of these companies that later fizzle, but start out with fancy graphics about their credentials in 'New Space',\" Chiao says. The project's primary technical partner in Russia is NPO Mashinostroyenia (pronounced machine-ah-st-roy-a-ya (NPROM). The highly regarded company which builds the reusable Almaz reentry vehicles also built the Almaz space stations that were at the heart of the military reconnaissance system. Somewhat resembling civilian Salyut stations, but with a far different mission, the Almaz stations were renamed Salyut 2, 3 and 5 as a covert cover and launched in the 1970s. Salyut 2 failed before any cosmonauts could be launched to it, but Salyut 3 and 5 were generally successful in demonstrating manned military space capability. Two more civilian Salyuts (6 and 7) were launched, before Mir's launch in 1986. In addition to buying several Almaz reentry vehicles, the company has also bought two complete Almaz space station hulls. It has no plans to outfit and launch the stations, however, until substantial business experience with the reentry vehicle mounted on a service module laboratory. The Soviet Almaz TKS reentry vehicle/service module design planned for commercialization is remarkably similar to the equally secret 1960s U.S. Air Force Manned Orbiting Laboratory (MOL) reconnaissance spacecraft. That system would have used a Gemini spacecraft with a hatch in its heat shield to enable American military astronauts to"}, {"title": "bm25", "text": "Space capsule (8129 views - Astronomy & Space ) A space capsule is an often manned spacecraft which has a simple shape for the main section, without any wings or other features to create lift during atmospheric reentry. Capsules have been used in most of the manned space programs to date, including the world's first manned spacecraft Vostok and Mercury, as well as in later Soviet Voskhod, Soyuz, Zond/L1, L3, TKS, US Gemini, Apollo Command Module, Chinese Shenzhou and US, Russian and Indian manned spacecraft currently being developed. A capsule is the specified form for the Orion Multi-Purpose Crew Vehicle. A manned space capsule must have everything necessary for everyday life, including air, water and food. The space capsule must also protect astronauts from the cold and radiation of space. A capsule must be well insulated and have a system that controls the inside temperature and environment. It also must have a way that the astronauts would not be knocked around during launch or reentry. Additionally, since the inside will be weightless, there must be a way for the astronauts to stay in their seats during the flight. For this each seat has a system of straps and buckles. One of the most important things that a space capsule must have is a way to communicate with people back on Earth, or mission control. Space capsule This article may need to be rewritten entirely to comply with Wikipedia's quality standards. You can help. The discussion page may contain suggestions. (December 2013) This article's tone or style"}, {"title": "bm25", "text": "Earth; A cylindrical service module with solar panels attached, which contains the instruments and engines. The orbital and service modules are single-use and are destroyed upon reentry in the atmosphere. Though this might seem wasteful, it reduces the amount of heat shielding required for reentry, saving mass compared to designs containing all of the living space and life support in a single capsule. This allows smaller rockets to launch the spacecraft or can be used to increase the habitable space available to the crew (6.2 m3 (220 cu ft) in Apollo CM vs 7.5 m3 (260 cu ft) in Soyuz) in the mass budget. The orbital and reentry portions are habitable living space, with the service module containing the fuel, main engines and instrumentation. The Soyuz is not reusable; it is expendable. A new Soyuz spacecraft must be made for every mission.[6] Soyuz can carry up to three crew members and provide life support for about 30 person days. The life support system provides a nitrogen/oxygen atmosphere at sea level partial pressures. The atmosphere is regenerated through potassium superoxide (KO2) cylinders, which absorb most of the carbon dioxide (CO2) and water produced by the crew and regenerates the oxygen, and lithium hydroxide (LiOH) cylinders which absorb leftover CO2. The vehicle is protected during launch by a payload fairing, which is jettisoned along with the SAS at 2+1\u20442 minutes into launch. It has an automatic docking system. The ship can be operated automatically, or by a pilot independently of ground control. Launch escape system[edit] The Vostok spacecraft"}, {"title": "bm25", "text": "24; Stephanie Westerfeld, 17, ladies' singles competitor; Died: William F. Norrell, 64, U.S. Representative from Arkansas who had been sworn in for his 11th term six weeks earlier, two days after having a stroke while sitting in his office at the U.S. Capitol. February 16, 1961 (Thursday) Cyprus's first nationality law was enacted. The Sunday Lake mine at Wakefield, Michigan, closed. The Congress of Conf\u00e9d\u00e9ration Africaine de Football delegates took place in Cairo. February 17, 1961 (Friday) The Space Task Group requested that McDonnell design and install a manual bilge pump in Mercury spacecraft No. 7 to allow the removal of any seawater resulting from leakage after spacecraft impact. Information was released by NASA Headquarters that Space Task Group engineers directing Project Mercury had selected the flight trajectory for the Mercury-Atlas 2 (MA-2) mission. This trajectory was designed to provide the most severe reentry heating conditions which could be encountered on an emergency abort during an orbital flight attempt. The reentry heating rate was estimated to be 30 percent higher than a normal Mercury orbital reentry, and temperatures were predicted to be about 25 percent higher at certain locations on the afterbody of the spacecraft. In addition, the deceleration g-load was calculated to be about twice that expected for a normal reentry from orbit. Egress hatch procedures for recovery force operations were discussed at a Mercury coordination meeting. One suggestion involved the installation of a pull-ring for activating the hatch explosive charge. Another proposal was made for a paint outline of an emergency outlet that could"}, {"title": "bm25", "text": "X-20, or Dyna-Soar. Under development from 1960 to 1963, it was a design for a small single-seat suborbital or orbital shuttlecraft to be launched by a Titan rocket. The Dyna-Soar program was cancelled in 1963, before the vehicle was ever flown, in favor of model testing via the ASSET program. ASSET (Aerothermodynamic/ elastic Structural Systems Environmental Tests) was the name of six small gliders designed by the McDonnell Aircraft Corp. for the Air Force. The gliders were used primarily to test issues of aerodynamics and thermal protection. The successful project demonstrated between 1963 and 1965 that winged reentry vehicles could safely traverse the upper atmosphere. PRIME (Precision Recovery Including Maneuvering Entry) was the name for three Air Force launches made between 1966 and 1967. The launches explored the problems of maneuvering reentry at near-orbital speeds. After the third PRIME launch, the vehicle was found to be in satisfactory condition to be launched again, further demonstrating the reusability of reentry spacecraft. Other projects conducted during the 1960s, which provided data important to the design of the Space Shuttle orbiter, included the M2 and HL-10, both lifting bodies used to test vehicle handling at transonic speeds. With the announcement of the cancellation of the last three Apollo lunar landing missions in 1970, NASA made development of a reusable Space Shuttle \u0096 which would offer routine, repetitive, affordable flights to and from Earth orbit \u0096 its top-priority program, over the Space Station. Support for the Shuttle from the Department of Defense and the space industrial community provided leverage for"}, {"title": "bm25", "text": "towards de Sun by rotating de ship. An incompwete separation between de Service and Reentry Moduwes wed to emergency situations during Soyuz 5, Soyuz TMA-10 and Soyuz TMA-11, which wed to an incorrect reentry orientation (crew ingress hatch first). The faiwure of severaw expwosive bowts did not cut de connection between de Service/Reentry Moduwes on de watter two fwights. The Soyuz uses a medod simiwar to de US Apowwo command and service moduwe to deorbit itsewf. The spacecraft is turned engine-forward and de main engine is fired for deorbiting on de far side of Earf ahead of its pwanned wanding site. This reqwires de weast propewwant for reentry; de spacecraft travews on an ewwipticaw Hohmann transfer orbit to de entry interface point where atmospheric drag swows it enough to faww out of orbit. Earwy Soyuz spacecraft wouwd den have de Service and Orbitaw Moduwes detach simuwtaneouswy from de Descent Moduwe. As dey are connected by tubing and ewectricaw cabwes to de Descent Moduwe, dis wouwd aid in deir separation and avoid having de Descent Moduwe awter its orientation, uh-hah-hah-hah. Later Soyuz spacecraft detached de Orbitaw Moduwe before firing de main engine, which saved propewwant. Since de Soyuz TM-5 wanding issue, de Orbitaw Moduwe is once again detached onwy after de reentry firing, which wed to (but did not cause) emergency situations of Soyuz TMA-10 and TMA-11. The Orbitaw Moduwe cannot remain in orbit as an addition to a space station, as de airwock hatch between de Orbitaw and Reentry Moduwes is a part of de Reentry"}, {"title": "bm25", "text": "https://youtu.be/eeMxbFpcsa4 Soyuz MS-10 fails during launch Space Exploration RocketsInternational Space Station Human Spaceflight Above: The mission patch for the Soyuz MS-10. Soyuz spacecrafts are operated by Roscosmos, the Russian Space Agency, so the mission patch and the name of the Russian crew member (Ovchinin) are in the Russian alphabet, Cyrillic. Only Hague, the American astronaut's name, is in the Latin alphabet. Source: Wikimedia Commons Soyuz spacecrafts carry astronauts and cosmonauts to and from the International Space Station. These spacecrafts lift off from the Baikonur Cosmodrome in Kazakhstan. But on Thursday October 11, 2018, the rocket failed during launch. Crew members travel in a capsule attached to the rocket. When rockets fail to launch, the capsule automatically detaches and returns to Earth in ballistic mode. This means that the capsule, which is travelling extremely fast, has to quickly lose speed in order to reach the Earth safely. The capsule has to re-enter the Earth\u2019s atmosphere at an extremely steep angle. This angle increases atmospheric drag, a force that acts on an object opposite to the way in which it is moving. Atmospheric drag slows down the capsule. Ballistic reentry can be physically very tough on crew members. That\u2019s because in ballistic reentry, the G-force (the force of gravity on a body) on human bodies can be very high. Under normal circumstances, humans typically experience 1 G. When you ride a roller coaster, you feel an increase in G-force for a few fractions of a second. That\u2019s what makes those rides so thrilling. You even experience an increase"}, {"title": "bm25", "text": "After the launch of the first American satellite in 1958, manned space flight became the next goal. The spacecraft was produced by McDonnell Aircraft; it was cone shaped with room for one person together with supplies of water, food and oxygen for about one day in a pressurized cabin. It was launched from Cape Canaveral in Florida by a modified Atlas D or Redstone missile, and had an escape tower for protection from a failing rocket. The whole flight could be controlled from the ground through the Manned Space Flight Network, a system of tracking stations which also allowed communication with the astronaut. If necessary, the astronaut could take manual control. For reentry into Earth's atmosphere, small rockets were used to bring the spacecraft out of its orbit. A heat shield would protect the spacecraft from the heat of reentry, and a parachute would slow the craft for a water landing. Here both astronaut and spacecraft were picked up by helicopter and brought to a ship. From a slow start with humiliating mistakes, the Mercury Project became popular worldwide and the manned flights were followed by millions on radio and TV not only in United States, but around the world. Apart from the manned missions, Mercury had a total of 20 unmanned launches as a part of the development of the project. This also involved test animals, most famously the chimpanzees Ham and Enos. Mercury laid the groundwork for Project Gemini and the follow-on Apollo moon-landing program, which was announced a few weeks after the first"}, {"title": "bm25", "text": "transmissions from the Apollo 8 spacecraft - 6 in all. Apollo 8's television camera was a 4.5 pound RCA black-and-white camera. There was no monitor or viewfinder on the camera - so framing the picture [...] Footage on every Saturn I launch from SA-1 through SA-10, and the Saturn IB launches from AS-201 through AS-210, most with multiple angles. Audio from Saturn launch audio in surround with intense low frequency effects. Demontrates GT-1 launch vehicle performance, launch vehicle and spacecraft structural integrity, and work in tracking and guidance network. Demontrates GT-II reentry heat protection during maximum heating reentry. Launch and onboard film which i[...] Contains the television transmissions, an onboard film with views taken of the ascent from the surface, the approach of Eagle after lunar liftoff, views from orbit and life aboard Columbia, and some bonus material of EVA and landing training. This disc contains the complete 16 mm motion picture film exposed onboard the Apollo 8 spacecraft. In addition to footage of life aboard the spacraft, incredible views of the moon from lunar orbit were captured. The onboard film on this disc is [...] This disc contains 35 separate views of the launch of AS-205, Apollo 7. Launched on October 11, 1968, Apollo 7 was the first manned launch of a Saturn vehicle. Wally Schirra, Don Eisele and Walt Cunningham spent just over 10 days in Earth orbit [...] The Saturn family of launch vehicles remains one of the most remarkable achievements in the history of mankind. From the clustered Saturn I using Reddstone"}, {"title": "bm25", "text": "3.6 Fourth generation 3.6.1 Soyuz-TM (1986\u20132002) 3.6.2 Soyuz-TMA (2003\u20132012) 3.6.3 Soyuz TMA-M (2010\u20132016) 3.6.4 Soyuz MS (since 2016) 4 Related craft The first Soyuz flight was uncrewed and started on 28 November 1966. The first Soyuz mission with a crew, Soyuz 1, launched on 23 April 1967 but ended with a crash due to a parachute failure, killing cosmonaut Vladimir Komarov. The following flight was uncrewed. Soyuz 3, launched on 26 October 1968, became the program's first successful crewed mission. The only other flight to suffer a fatal accident, Soyuz 11, killed its crew of three when the cabin depressurized just before reentry. These are the only humans to date who are known to have died above the K\u00e1rm\u00e1n line.[1] Despite these early incidents, Soyuz is widely considered the world's safest, most cost-effective human spaceflight vehicle,[2] established by its unparalleled length of operational history.[3][4] Soyuz spacecraft were used to carry cosmonauts to and from Salyut and later Mir Soviet space stations, and are now used for transport to and from the International Space Station (ISS). At least one Soyuz spacecraft is docked to ISS at all times for use as an escape craft in the event of an emergency. The spacecraft is intended to be replaced by the six-person Orel spacecraft.[5] Design[edit] Diagram showing the three elements of the Soyuz TMA spacecraft. A Soyuz spacecraft consists of three parts (from front to back): A spheroid orbital module, which provides accommodation for the crew during their mission; A small aerodynamic reentry module, which returns the crew to"}, {"title": "bm25", "text": "the most hardy reader. However, there are odd and fascinating details to be found. For instance, during reentry in February 1974 the crew noticed that the pinkish plasma that formed around their spacecraft was not uniform but seemed concentrated in streaks, which concerned them because it indicated that the heat shield was not ablating equally. Although the Apollo program was mostly over, there was one more flight of an Apollo spacecraft planned. But perhaps the most interesting aspect of the crew debriefing is how their comments indicated that NASA\u2019s astronaut corps was changing. Skylab 4 was the first all rookie crew; the earlier crews were headed by Apollo moonwalkers. But the Skylab 4 crew of astronauts Carr, Gibson, and Pogue recognized that the astronaut job description was evolving. They were in space to do experiments, not to fly the spacecraft. Like many other books published by Apogee, these three each come with a DVD. The first DVD includes low-quality video of press interviews and the launch of both the workshop and Skylab 2. The second DVD includes a NASA \u201cSkylab 3\u201d documentary and launch footage. But this DVD includes perhaps the most interesting feature: a digital reconstruction of the workshop interior and a fly-through showing all the key equipment and experiments and other components. I kept wishing that the image was interactive and that I could stop and examine the equipment in greater detail. The final DVD includes launch footage, a status report, a couple of Skylab documentaries, NASA audio reports on the workshop\u2019s 1979 reentry,"}, {"title": "bm25", "text": "Donate to Megadodo Publications Apollo command and service module (Redirected from Apollo service module) Apollo 15 command and service module Endeavour in lunar orbit North American Rockwell Maxime Faget Crewed cislunar flight and lunar orbit Skylab crew shuttle Apollo-Soyuz Test Project Spacecraft type Design life 32,390 lb (14,690 kg) Earth orbit 63,500 lb (28,800 kg) Lunar Dry mass 26,300 lb (11,900 kg) 2,320 lb (1,050 kg) Crew capacity 218 cu ft (6.2 m3) Low Earth orbit Cislunar space Lunar orbit 36.2 ft (11.0 m) 12.8 ft (3.9 m) Maiden launch February 26, 1966 (AS-201) Last launch July 15, 1975 (Apollo-Soyuz) Last retirement Related spacecraft Flown with Apollo Block II CSM diagram \u2190 Gemini spacecraft Orion (spacecraft) \u2192 The Apollo command and service module (CSM) was one of two principal components of the United States Apollo spacecraft, used for the Apollo program, which landed astronauts on the Moon between 1969 and 1972. The CSM functioned as a mother ship, which carried a crew of three astronauts and the second Apollo spacecraft, the Apollo Lunar Module, to lunar orbit, and brought the astronauts back to Earth. It consisted of two parts: the conical command module, a cabin that housed the crew and carried equipment needed for atmospheric reentry and splashdown; and the cylindrical service module which provided propulsion, electrical power and storage for various consumables required during a mission. An umbilical connection transferred power and consumables between the two modules. Just before reentry of the command module on the return home, the umbilical connection was severed and the"}, {"title": "bm25", "text": "the earlier Mercury space capsule. The spacecraft consisted of a series of cone-shaped segments forming a reentry module and an adapter section. It had an overall length of 18 feet, 9.84 inches (5.736 meters) and a maximum diameter of 10 feet, 0.00 inches (3.048 meters) at the base of the equipment section. The reentry module was 11 feet (3.353 meters) long with a maximum diameter of 7 feet, 6.00 inches (2.347 meters). The Gemini re-entry heat shield was a spherical section with a radius of 12 feet, 0.00 inches (3.658 meters). The weight of the Gemini spacecraft varied from ship to ship. Gemini VII had a gross weight of 8,076.10 pounds (3,663.26 kilograms) at launch. It was shipped from St. Louis to Cape Kennedy in early October 1965. Gemini VII, photographed in Earth orbit from Gemini VI-A, 15\u201316 December 1965. (NASA) The Titan II GLV was a \u201cman-rated\u201d variant of the Martin SM-68B intercontinental ballistic missile. It was assembled at Martin Marietta\u2019s Middle River, Maryland, plant so as not to interfere with the production of the ICBM at Denver, Colorado. Twelve GLVs were ordered by the Air Force for the Gemini Program. The GLV-7 first and second stages were shipped from Middle River to Cape Kennedy on 9 October 1965. The Titan II GLV was a two-stage, liquid-fueled rocket. The first stage was 70 feet, 2.31 inches (21.395 meters) long with a diameter of 10 feet (3.048 meters). It was powered by an Aerojet Engineering Corporation LR87-7 engine which combined two combustion chambers and exhaust nozzles"}, {"title": "bm25", "text": "lift off from the lunar surface for the return trip, after being soft-landed by a larger landing propulsion module. The final choice of lunar orbit rendezvous changed the CSM's role to the translunar ferry used to transport the crew, along with a new spacecraft, the Lunar Excursion Module (LEM, later shortened to LM (Lunar Module) but still pronounced ) which would take two individuals to the lunar surface and return them to the CSM. Command and service module The command module (CM) was the conical crew cabin, designed to carry three astronauts from launch to lunar orbit and back to an Earth ocean landing. It was the only component of the Apollo spacecraft to survive without major configuration changes as the program evolved from the early Apollo study designs. Its exterior was covered with an ablative heat shield, and had its own reaction control system (RCS) engines to control its attitude and steer its atmospheric entry path. Parachutes were carried to slow its descent to splashdown. The module was tall, in diameter, and weighed approximately . A cylindrical service module (SM) supported the command module, with a service propulsion engine and an RCS with propellants, and a fuel cell power generation system with liquid hydrogen and liquid oxygen reactants. A high-gain S-band antenna was used for long-distance communications on the lunar flights. On the extended lunar missions, an orbital scientific instrument package was carried. The service module was discarded just before reentry. The module was long and in diameter. The initial lunar flight version weighed approximately"}, {"title": "bm25", "text": "the transfer of experiments and experiment racks to the complex, and the transfer of items for return to Earth from the station to the shuttle were among the objectives. Endeavour also boosted the station's altitude and performed a flyaround survey of the complex, including recording views of the station with an IMAX cargo bay camera. All objectives were completed without incident, and reentry and landing happened uneventfully on 1 May 2001. During this mission, astronaut Chris Hadfield made the first spacewalk by a Canadian. Spacewalks Wake-up calls NASA began a tradition of playing music to astronauts during the Gemini program, which was first used to wake up a flight crew during Apollo 15. Each track is specially chosen, often by their families, and usually has a special meaning to an individual member of the crew, or is applicable to their daily activities. See also List of human spaceflights List of International Space Station spacewalks List of Space Shuttle missions List of spacewalks and moonwalks 1965\u20131999 Outline of space science References Sources External links NASA mission summary STS-100 Video Highlights STS-100 Edwards Air Force Base Spacecraft launched in 2001"}, {"title": "bm25", "text": "concern raised during the Ames conference was that ballistic reentry would be associated with high G-forces. In response, Faget invented a form-fitting \u201csurvival couch\u201d to help pilots withstand the crushing deceleration. When volunteers rode the contour couch in a Navy centrifuge, they endured more than 20 Gs. Faget knew the problem had been solved. Ultimately, one characteristic of the ballistic vehicle clinched its selection: It was lightweight enough to be launched by the Atlas missile, whose payload capacity was 2,000 pounds. (The orbital version of the X-15 would have required a launcher more powerful than anything in existence.) By the end of 1958, NACA had become NASA, and Faget\u2019s capsule had been chosen for the agency\u2019s new effort, now christened Project Mercury. The Mercury spacecraft went on to put the first Americans in orbit\u2014but not before Soviet cosmonaut Yuri Gagarin, riding in a craft called Vostok, got there first. Taking advantage of the greater payload capacity of their R7 booster, the Soviets gave Vostok a spherical shape, like Harvey Allen\u2019s cannonball, so there was even less worry about controlling its orientation during reentry. But Faget\u2019s gently curved heat shield showed up in the next-generation Soviet spacecraft, called Soyuz\u2014just as it did in Gemini and Apollo. Even the space shuttle, the first winged spacecraft, reentered in the nose-high attitude of the X-15, using a modified blunt-body approach along with advanced insulating tiles to save its skin from the heat of reentry. And today, as the shuttle era draws to a close, NASA\u2019s newest manned vehicle, Orion, is"}, {"title": "bm25", "text": "His team was responsible for completion of the complex pad close-out procedures just prior to spacecraft launch, and he was the last person the astronauts would see prior to closing the hatch. The astronauts appreciated his taking absolute authority over, and responsibility for, the condition of the spacecraft and developed a good-humored rapport with him.[8] A cutaway illustration of the Gemini spacecraft NASA selected McDonnell Aircraft, which had been the prime contractor for the Project Mercury capsule, in 1961 to build the Gemini capsule, the first of which was delivered in 1963. The spacecraft was 18 feet 5 inches (5.61 m) long and 10 feet (3.0 m) wide, with a launch weight varying from 7,100 to 8,350 pounds (3,220 to 3,790 kg).[9] The Gemini crew capsule (referred to as the Reentry Module) was essentially an enlarged version of the Mercury capsule. Unlike Mercury, the retrorockets, electrical power, propulsion systems, oxygen, and water were located in a detachable Adapter Module behind the Reentry Module. A major design improvement in Gemini was to locate all internal spacecraft systems in modular components, which could be independently tested and replaced when necessary, without removing or disturbing other already tested components. Reentry module Many components in the capsule itself were reachable through their own small access doors. Unlike Mercury, Gemini used completely solid-state electronics, and its modular design made it very easy to repair.[10] Gemini's emergency launch escape system did not use an escape tower powered by a solid-fuel rocket, but instead used aircraft-style ejection seats. The tower was heavy and"}, {"title": "bm25", "text": "rocket launches the first prototype of the L1 circumlunar spacecraft announced as Kosmos-146. April 6: NASA launches its second Applications Technology Satellites, ATS-2, but the second stage failure of the launch vehicle leaves the spacecraft slowly tumbling in the wrong orbit, though some useful data was returned. April 24: Vladimir Komarov dies on landing during a test flight of the Soyuz-1 spacecraft. June 12: Venera-4, the first probe to enter the atmosphere of Venus, blasts off from Baikonur. July 2: Vela satellites make first detection of a gamma-ray burst from deep space. Oct. 10: The Outer Space Treaty is signed to represent the basic legal framework of international space law. Oct. 12: USSR launches the VKZ probe 4,400 kilometers up to study ionosphere. Oct. 30: The 7K-OK No. 6 (Kosmos-186) and the 7K-OK No. 5 (Kosmos-188) spacecraft conduct the world's first automated docking in space. Nov. 9: The first Saturn-5 rocket blasts off, carrying the unmanned Apollo-4 spacecraft. Zond-5 Soyuz-2, -3 Earthrise over the Moon Feb. 20: The USSR launches its first Sfera geodesic satellite. March 2: Proton launches a prototype of the L1 circumlunar spacecraft announced as Zond-4. March 27: Yuri Gagarin dies in a plane crash. April 4: The second Saturn-5 rocket launches an unmanned Apollo-6 spacecraft. April 9: The first sounding rocket (Veronique) is launched from Kourou, French Guiana, on a suborbital trajectory. April 15: A pair of unmanned Soyuz spacecraft completes a successful automated docking. April 23: The Proton rocket fails to deliver a prototype of the L1 circumlunar spacecraft. May 6:"}, {"title": "bm25", "text": "the Soviet space program, NASA and ESA. India became the first country to successfully get a spacecraft into Mars orbit on its maiden attempt. The ExoMars Trace Gas Orbiter arrived at Mars in 2016 and deployed the Schiaparelli EDM lander, a test lander that had partial success. Crash-landed on surface, but transmitted data during descent. The following entails a brief overview of Mars exploration, oriented towards orbiters and flybys; see also Mars landing and Mars rover. Mars 1M spacecraft. Between 1960 and 1969, the Soviet Union launched nine probes intended to reach Mars. They all failed: three at launch; three failed to reach near-Earth orbit; one during the burn to put the spacecraft into trans-Mars trajectory; and two during the interplanetary orbit. The Mars 1M programs (sometimes dubbed Marsnik in Western media) was the first Soviet unmanned spacecraft interplanetary exploration program, which consisted of two flyby probes launched towards Mars in October 1960, Mars 1960A and Mars 1960B (also known as Korabl 4 and Korabl 5 respectively). After launch, the third stage pumps on both launchers were unable to develop enough pressure to commence ignition, so Earth parking orbit was not achieved. The spacecraft reached an altitude of 120 km before reentry. Mars 1962A was a Mars fly-by mission, launched on October 24, 1962 and Mars 1962B an intended first Mars lander mission, launched in late December of the same year (1962). Both failed from either breaking up as they were going into Earth orbit or having the upper stage explode in orbit during the burn"}, {"title": "bm25", "text": "For satellites large enough to generate reentry debris that can reach the surface of the Earth, there are four choices: Manitowoc, WI, the Spacecraft Cemetery, a Graveyard Orbit, or the Space Garbage Truck. Let\u2019s look at these alternatives. Korabi-Sputnik 1 (aka Sputnik 4) was launched by the Soviet Union on 15 May 1960 and was reported to be a test of an orbital spacecraft with a recoverable, pressurized capsule capable of carrying a cosmonaut. At the time of its launch, Sputnik 4 was the largest satellite placed in orbit, with a weight of at least 5 tons. Sputnik 4 appears to have been a prototype of the Soviet Vostok spacecraft that carried the first human, Yuri Gagarin, into orbit on 12 April 1961. Due to a failure in the control or reentry system, the Sputnik 4 capsule did not return to Earth as planned, but instead, remained in orbit until 5 September 1962. On that day, Sputnik 4 reentered the Earth\u2019s atmosphere and broke up, with fragments landing in Lake Michigan and in downtown Manitowoc, WI. The following diagram from the 3 December 1962 issue of Aviation Week magazine shows the paths for Sputnik 4 fragments that landed on the main street of Manitowoc, Wisconsin. On a recent trip, I visited the site in Manitowoc where a large, hot fragment landed and embedded itself into the asphalt pavement of a main street. That site is commemorated by a brass ring in the street and a granite plaque on the sidewalk. The Sputnik 4 debris was analyzed"}, {"title": "bm25", "text": "burning for 5.5 seconds in sequence, with a slight overlap. These were mounted in the retrograde section of the adapter module, located just behind the capsule's heat shield.[3][4] Apollo program[edit] For lunar flights, the Apollo command and service module did not require retrorockets to return the command module to Earth, as the flight path took the module through the atmosphere, using atmospheric drag to reduce velocity. The test flights in Earth orbit required retrograde propulsion, which was provided by the large Service Propulsion Engine on the service module. The same engine was used as a retrorocket to slow the spacecraft for lunar orbit insertion. The Apollo Lunar Module used its descent stage engine to drop from orbit and land on the Moon. Retrorockets were used to back the S-IC and S-II stages off from the rest of the vehicle after their respective shutdowns during the Saturn V's launch to Earth parking orbit. Space Shuttle program[edit] The Space Shuttle Orbital maneuvering system provided the vehicle with a pair of powerful liquid-fueled rockets for both reentry and orbital maneuvering. One was sufficient for a successful reentry, and if both systems were to fail, the reaction control system could slow the vehicle enough for reentry. Landers[edit] Retrorockets are also used in landing spacecraft on other astronomical bodies, such as the Moon and Mars, as well as enabling a spacecraft to enter an orbit around such a body, when otherwise it would scoot past and off into space again. As pointed out above (in connection with Project Apollo) the main"}, {"title": "bm25", "text": "Source: NASA/Jerome Bascom-Pipp Apollo 11's FRT began on June 6 with a simulation of propellant loading. The range safety officer sent a launch holdfire command prior to the start of the terminal countdown sequence, as a test of range safety communications. The countdown resumed, with simulated umbilical ejection, holddown arm release, retraction of the tail service masts and swing arms, and liftoff at 2:17 p.m. on June 6. Electrical power to the vehicle came from ground support equipment rather than the batteries and fuel cells aboard the vehicle. An abbreviated simulated mission followed the liftoff, covering CSM propulsion tests and major operations through command module splashdown. Next, the team performed a backup guidance simulated mission. In this scenario, the guidance systems on the launch vehicle and CSM switched over to backup systems. This was to identify any potential sources of interference between the launch vehicle and spacecraft systems. The launch vehicle portion of a simulated flight included tests of the propellant dispersion (vehicle destruct) command systems. After the flight readiness test, rescue teams conducted emergency egress walkthroughs with the prime and backup astronaut crews. These tests familiarized the astronauts with the escape systems at the launch pad (Fig. 7.14). 7.14 The crew of Apollo 10 inspects the gondola for the slide wire system during emergency egress training. Source: NASA/Jerome Bascom-Pipp ## Post-FRT work Data from the FRT was analyzed over the weekend. The spacecraft radar system was checked. The fuel jackets and LOX domes in the S-IC's main engines were flushed and purged with nitrogen. Thrust"}, {"title": "bm25", "text": "November 18, Inner Mongolia Autonomous Region: Staff prepare to check the reentry module of the Shenzhou-11 spacecraft after its safe landing. Chinese astronauts Jing Haipeng and Chen Dong returned to Earth safely on November 18, completing the overwhelmingly successful Tiangong-2 and Shenzhou-11 manned space mission, which lasted over a month, making it the country\u2019s longest-ever manned space mission. At 1:11 p.m. Beijing Time that afternoon, Shenzhou-11\u2019s reentry module separated from the spacecraft\u2019s orbiting capsule before separating from the propelling capsule, ending the 33-day mission with a return to the planet. The reentry module landed safely at the expected site in central Inner Mongolia Autonomous Region at 1:59 p.m. This mission is a key step forward for China\u2019s plan to build a permanent manned space station. The core module of China\u2019s space station is expected to be launched around 2018, and the space station will enter full service around 2022, with capacity to continually operate for more than 10 years straight."}, {"title": "bm25", "text": "Exploration of Mars The spacecraft reached an altitude of 120 km before reentry. Mars 1962A was a Mars fly-by mission, launched on October 24, 1962 and Mars 1962B an intended first Mars lander mission, launched in late December of the same year (1962). Both failed from either breaking up as they were going into Earth orbit or having the upper stage explode in orbit during the burn to put the spacecraft into trans-Mars trajectory. Mars 1 (1962 Beta Nu 1), an automatic interplanetary spacecraft launched to Mars on November 1, 1962, was the first probe of the Soviet Mars probe program to achieve"}, {"title": "bm25", "text": "Soyuz (spacecraft) For the launch vehicle of the same name, see Soyuz (rocket family). Soyuz (Russian: \u0421\u043e\u044e\u0301\u0437, IPA: [s\u0250\u02c8jus], lit. 'Union') is a series of spacecraft designed for the Soviet space program by the Korolev Design Bureau (now RKK Energia) in the 1960s that remains in service today, having made more than 140 flights. The Soyuz succeeded the Voskhod spacecraft and was originally built as part of the Soviet crewed lunar programs. The Soyuz spacecraft is launched on a Soyuz rocket, the most reliable launch vehicle in the world to date.[1][2] The Soyuz rocket design is based on the Vostok launcher, which in turn was based on the 8K74 or R-7A Semyorka, a Soviet intercontinental ballistic missile. All Soyuz spacecraft are launched from the Baikonur Cosmodrome in Kazakhstan. Soyuz has served as the only means for Americans to make crewed space flights in the world since the retirement of the US Space Shuttle in 2011[3] and is heavily used in the International Space Station program. Soyuz spacecraft (TMA version) RKK Energia Soviet Union, Russian Federation Soviet space program (1967\u201391) Roscosmos (1991 onwards) Carry cosmonauts to orbit and back; originally intended for Soviet Moonshot and Salyut space station transportation. Design life Up to six months docked to station Low Earth orbit (circumlunar spaceflight during early program) Maiden launch (Uncrewed) November 28, 1966 (Crewed) Soyuz 1 April 23, 1967 Related spacecraft Shenzhou, Progress 2.1 Launch escape system 2.2 Orbital module 2.3 Descent module 2.4 Service module 2.5 Reentry procedure 2.6 Spacecraft systems 3.2 Soyuz 7K (part of the"}, {"title": "bm25", "text": "he spacecraft until it could be determined that the fuel cells could provide sufficient electrical power to continue the mission. Power was restored slowly over ten orbits. During the third day, the crew practiced orbital maneuvers for upcoming Agena rendezvous and docking missions. 16 of 17 planned experiments were carried out over the course of the mission. Reentery deceleration was 7.1 g. The actual landing point was 89 nautical miles short of predicted, at N. 29\u00b0 47\u2032, W. 69\u00b0 45\u2032. Total duration of the Gemini V mission was 190:55:17. The spacecraft and crew were recovered by the Essex-class aircraft carrier USS Lake Champlain (CVS -39). Gemini Spacecraft. (NASA Gemini IV Mission Report, Figure 3\u20132 at Page 3\u201325) The two-man Gemini spacecraft was built by the McDonnell Aircraft Corporation of St. Louis, the same company that built the earlier Mercury space capsule. The spacecraft consisted of a reentry module and an adapter section. It had an overall length of 19 feet (5.791 meters) and a diameter of 10 feet (3.048 meters) at the base of the adapter section. The reentry module was 11 feet (3.353 meters) long with a diameter of 7.5 feet (2.347 meters). The weight of the Gemini varied from ship to ship. At launch. Gemini Spacecraft 5 weighed 7,947.17 pounds (3,604.78 kilograms). At touchdown, after the parachute was jettisoned, it weighed 4,244.75 pounds (1,925.39 kilograms). Titan II GLV, (NASA Gemini IV Mission Report, Figure 3-1, at Page 3\u201323) The Titan II GLV was a \u201cman-rated\u201d variant of the Martin SM-68B intercontinental ballistic missile. It"}, {"title": "bm25", "text": "the rest of reentry and recovery were uneventful. The destroyers USS Stormes and USS Compton and a P5M aircraft were waiting for the spacecraft at Station 8, the predicted landing point. Three hours and 13 minutes after launch and nine minutes before splashdown, the aircraft spotted the spacecraft at an altitude of 5,000 feet (1,500 m) descending on its main parachute. The information was relayed to Stormes and Compton, who were 30 miles (48 km) away. The spacecraft recovery aids were all functioning, except for the SARAH beacon. During the descent, the aircraft continued to circle and report landing events. It remained in the area until Stormes arrived, an hour and 15 minutes after the landing. Stormes hauled Enos and his spacecraft aboard. On the deck of Stormes, the MA-5 hatch was blown explosively. It was released from outside the capsule by pulling a lanyard. Blowing the hatch caused the spacecraft \"picture\" window to crack. Mercury spacecraft # 9, used in the Mercury-Atlas 5 mission, on display at the Museum of Life and Science, in Durham, North Carolina. The spacecraft and Enos were both found to have survived the mission in good condition, although the chimp had removed all of the medical electrodes and the urine collection device from his body. On November 4, 1962, Enos died of dysentery caused by shigellosis, which was resistant to antibiotics of the time. He had been under constant observation for two months before his death. Pathologists at Holloman reported that they found no symptom that could be attributed or"}, {"title": "bm25", "text": "today and technology wordpress templates rotary hammer bosch \u201cNo Joy\u201d for Russian Progress Resupply Craft Author: Leonard David Progress M-27M \u2014 was launched April 28 from Area 31 of the Baikonur launch site. Credit: OAO RSC Energia Word is that Russian ground controllers have had \u201cno joy\u201d in attempting to establish control of the tumbling Russian Progress 59 supply ship. The logistics spacecraft \u2014 Progress M-27M \u2014 was launched April 28 from Area 31 of the Baikonur launch site at 10:09:50 Moscow Time. Progress M-27M being readied for launch. The spacecraft was to use a \u201cquick\u201d 4-orbit flight profile of 6 hours duration to rendezvous with the International Space Station (ISS). After launch, however, the Progress suffered a control problem, with this onboard video showing the spin-rate of the spacecraft. https://www.youtube.com/watch?v=YMiNjHjpunU No word as yet on any solid prediction of a possible reentry of the Progress \u2013 if indeed the craft remains out-of-control. There are reports of dozens of pieces of spacecraft debris associated with the Progress now in orbit \u2013 a meaningful suggestion that adds to the view the spacecraft is surely headed for an early, destructive reentry \u2013 negating its intended mission. Onboard supplies According to OAO RSC Energia, onboard the supply craft are propellant components, compressed oxygen, additional equipment needed to maintain the station in good working order, equipment for science experiments, medical supplies, personal belongings and food for the crew. Altogether, more than 5,200 pounds (2,359 kg) of cargo is inside the Progress, including 3,075 pounds (1,395 kg) of dry cargo, 1,089"}], "hoverinfo": "text"}, {"x": [0.1375962495803833, 0.03560176491737366, -0.1356997936964035, -0.012052830308675766, 0.1747233122587204, -0.15159878134727478, -0.08772958070039749, 0.10159213840961456, 0.049668364226818085, -0.16268803179264069], "y": [-0.011811306700110435, 0.0068181175738573074, 0.09422057121992111, -0.058389294892549515, 0.046944648027420044, -0.046115048229694366, 0.03458234667778015, 0.025030624121427536, -0.14647920429706573, -0.019059980288147926], "mode": "markers", "name": "Centroids", "marker": {"size": 12, "symbol": "star", "color": "black"}, "text": ["Centroid 0", "Centroid 1", "Centroid 2", "Centroid 3", "Centroid 4", "Centroid 5", "Centroid 6", "Centroid 7", "Centroid 8", "Centroid 9"], "hoverinfo": "text"}]]; const questions = ["What's the difference between a first, second and third degree burn?", "How come glass casts a shadow? Shouldn't light just pass through?", "Why does using a plastic bag help credit cards swipe?", "What does it mean when someone says, \"Bust my chops,\"?", "Why does the ionosphere interfere with spacecraft communications on reentry but not during launch?", "How I can hate my appearance and current health state at night before bed, and think of all the ways I can change, and then literally the next day, not care until the following night.", "What casues our weight to fluctuate during our sleep.", "Why is there a \"store brand\" of everything? How do stores obtain these products and why is it always at a lower price?", "For international versions of \"musical\" style movies (Ex. Footloose, Hairspray, High School Musical) how is the rhythmic timing / rhyme scheme / general understanding / story progressive lyrics of the songs affected by the language barrier?", "Why are vegetables really common in cooking, but not baking? And vice versa, why are fruits so common in baking, but not in cooking?"]; let currentPlot = null; function updateVisualization() { const select = document.getElementById('questionSelect'); const questionIndex = parseInt(select.value); const layout = { title: { text: `Question ${questionIndex + 1}: ${questions[questionIndex]}`, font: { size: 16 }, y: 0.95 }, xaxis: { title: 'PCA Component 1' }, yaxis: { title: 'PCA Component 2' }, hovermode: 'closest', showlegend: true, margin: { t: 100 } // Increase top margin to accommodate longer title }; if (currentPlot) { Plotly.purge('plot'); } currentPlot = Plotly.newPlot('plot', plotData[questionIndex], layout); // Add hover event handler document.getElementById('plot').on('plotly_hover', function(data) { const point = data.points[0]; const documentText = document.getElementById('documentText'); if (point.customdata) { documentText.style.display = 'block'; documentText.innerHTML = `
${point.customdata.title}
${point.customdata.text}
`; } else { documentText.style.display = 'none'; } }); // Hide text when not hovering document.getElementById('plot').on('plotly_unhover', function() { document.getElementById('documentText').style.display = 'none'; }); } // Initial plot updateVisualization();